Commit c5b32c04 by sujata

career compoents

1 parent 13a41d54
...@@ -30,6 +30,15 @@ ...@@ -30,6 +30,15 @@
"type": "component", "type": "component",
"repeatable": false, "repeatable": false,
"component": "shared.seo" "component": "shared.seo"
},
"CareerDetails": {
"type": "dynamiczone",
"components": [
"dynamic-zone.about",
"dynamic-zone.background",
"dynamic-zone.details",
"dynamic-zone.text"
]
} }
} }
} }
import type { Struct, Schema } from '@strapi/strapi'; import type { Struct, Schema } from '@strapi/strapi';
export interface PeopleTeamMember extends Struct.ComponentSchema {
collectionName: 'components_people_team_members';
info: {
displayName: 'TeamMember';
description: '';
};
attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required;
Linkdin: Schema.Attribute.String & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Designation: Schema.Attribute.String & Schema.Attribute.Required;
};
}
export interface PeopleTeamLeads extends Struct.ComponentSchema {
collectionName: 'components_people_team_leads';
info: {
displayName: 'Team Leads';
};
attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required;
Designation: Schema.Attribute.String & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Linkdin: Schema.Attribute.String & Schema.Attribute.Required;
};
}
export interface PeoplePeopleList extends Struct.ComponentSchema {
collectionName: 'components_people_people_lists';
info: {
displayName: 'people-list';
description: '';
};
attributes: {
heading: Schema.Attribute.String;
description: Schema.Attribute.String;
};
}
export interface PeopleOverview extends Struct.ComponentSchema {
collectionName: 'components_people_overviews';
info: {
displayName: 'Overview';
description: '';
};
attributes: {
Subtitle: Schema.Attribute.String;
Title: Schema.Attribute.String & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images'>;
Description: Schema.Attribute.Text;
};
}
export interface PeopleAdvisoryBoard extends Struct.ComponentSchema {
collectionName: 'components_people_advisory_boards';
info: {
displayName: 'Advisory Board';
};
attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.String & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images'>;
};
}
export interface SharedSlider extends Struct.ComponentSchema { export interface SharedSlider extends Struct.ComponentSchema {
collectionName: 'components_shared_sliders'; collectionName: 'components_shared_sliders';
info: { info: {
...@@ -110,351 +175,302 @@ export interface SharedMedia extends Struct.ComponentSchema { ...@@ -110,351 +175,302 @@ export interface SharedMedia extends Struct.ComponentSchema {
}; };
} }
export interface HomePeople extends Struct.ComponentSchema { export interface LayoutWhatwedo extends Struct.ComponentSchema {
collectionName: 'components_home_people'; collectionName: 'components_layout_whatwedos';
info: { info: {
displayName: 'People'; displayName: 'Whatwedo';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Title: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>; CTA: Schema.Attribute.Component<'cta.cta', false>;
peoplelist: Schema.Attribute.Component<'people.people-list', true>;
}; };
} }
export interface HomeKnowlegeTab extends Struct.ComponentSchema { export interface LayoutWeOffer extends Struct.ComponentSchema {
collectionName: 'components_home_knowlege_tabs'; collectionName: 'components_layout_we_offers';
info: { info: {
displayName: 'KnowlegeTab'; displayName: 'WeOffer';
}; };
attributes: { attributes: {
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
CTA: Schema.Attribute.Component<'cta.cta', false>; CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface HomeKnowledgeshack extends Struct.ComponentSchema { export interface LayoutTechnicalexpertise extends Struct.ComponentSchema {
collectionName: 'components_home_knowledgeshacks'; collectionName: 'components_layout_technicalexpertises';
info: { info: {
displayName: 'Knowledgeshack'; displayName: 'Technicalexpertise';
description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; SectionTitle: Schema.Attribute.String;
Description: Schema.Attribute.String; Subtitle: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images'>; Technicallist: Schema.Attribute.Component<'layout.technicalexp-tab', true>;
}; };
} }
export interface HomeIndustry extends Struct.ComponentSchema { export interface LayoutTechnicalexpTab extends Struct.ComponentSchema {
collectionName: 'components_home_industries'; collectionName: 'components_layout_technicalexp_tabs';
info: { info: {
displayName: 'Industry'; displayName: 'TechnicalexpTab';
description: '';
}; };
attributes: { attributes: {
Subtitle: Schema.Attribute.String; Title: Schema.Attribute.String;
Title: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>;
}; };
} }
export interface HomeHome extends Struct.ComponentSchema { export interface LayoutTab extends Struct.ComponentSchema {
collectionName: 'components_home_homes'; collectionName: 'components_layout_tabs';
info: { info: {
displayName: 'Home Banner'; displayName: 'Tab';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String & Schema.Attribute.Required; sectionTitle: Schema.Attribute.String;
Subtitle: Schema.Attribute.String; shortDescription: Schema.Attribute.Text;
Description: Schema.Attribute.Text & Schema.Attribute.Required; Image: Schema.Attribute.Media<'images'>;
Mobilebanner: Schema.Attribute.Media<'images'> & Schema.Attribute.Required; CTA: Schema.Attribute.Component<'cta.cta', false>;
Desktopbanner: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
BackgroundBanner: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>;
}; };
} }
export interface PeopleTeamMember extends Struct.ComponentSchema { export interface LayoutServicelist extends Struct.ComponentSchema {
collectionName: 'components_people_team_members'; collectionName: 'components_layout_servicelists';
info: { info: {
displayName: 'TeamMember'; displayName: 'Servicelist';
description: '';
}; };
attributes: { attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required; Title: Schema.Attribute.String;
Linkdin: Schema.Attribute.String & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Designation: Schema.Attribute.String & Schema.Attribute.Required;
}; };
} }
export interface PeopleTeamLeads extends Struct.ComponentSchema { export interface LayoutPageBanner extends Struct.ComponentSchema {
collectionName: 'components_people_team_leads'; collectionName: 'components_layout_page_banners';
info: { info: {
displayName: 'Team Leads'; displayName: 'PageBanner';
}; };
attributes: { attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required; Heading: Schema.Attribute.String;
Designation: Schema.Attribute.String & Schema.Attribute.Required; Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Linkdin: Schema.Attribute.String & Schema.Attribute.Required;
}; };
} }
export interface PeoplePeopleList extends Struct.ComponentSchema { export interface LayoutOverview extends Struct.ComponentSchema {
collectionName: 'components_people_people_lists'; collectionName: 'components_layout_overviews';
info: { info: {
displayName: 'people-list'; displayName: 'Overview';
description: ''; description: '';
}; };
attributes: { attributes: {
heading: Schema.Attribute.String; Title: Schema.Attribute.String;
description: Schema.Attribute.String; Subtitle: Schema.Attribute.Text;
Content: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface PeopleOverview extends Struct.ComponentSchema { export interface LayoutIndustryOverview extends Struct.ComponentSchema {
collectionName: 'components_people_overviews'; collectionName: 'components_layout_industry_overviews';
info: { info: {
displayName: 'Overview'; displayName: 'IndustryOverview';
description: ''; description: '';
}; };
attributes: { attributes: {
Subtitle: Schema.Attribute.String; subtitle: Schema.Attribute.String;
Title: Schema.Attribute.String & Schema.Attribute.Required; title: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images'>;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
}; };
} }
export interface PeopleAdvisoryBoard extends Struct.ComponentSchema { export interface LayoutHeading extends Struct.ComponentSchema {
collectionName: 'components_people_advisory_boards'; collectionName: 'components_layout_headings';
info: { info: {
displayName: 'Advisory Board'; displayName: 'heading';
description: '';
}; };
attributes: { attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required; Title: Schema.Attribute.String;
Description: Schema.Attribute.String & Schema.Attribute.Required; Subtitle: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images'>; Description: Schema.Attribute.Text;
}; };
} }
export interface DynamicZoneText extends Struct.ComponentSchema { export interface LayoutFunctionalAreas extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_texts'; collectionName: 'components_layout_functional_areas';
info: { info: {
displayName: 'Content'; displayName: 'FunctionalAreas';
description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; Title: Schema.Attribute.String & Schema.Attribute.Required;
Subtitle: Schema.Attribute.Text; Icon: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Description: Schema.Attribute.RichText & Description: Schema.Attribute.Text & Schema.Attribute.Required;
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface DynamicZoneTable extends Struct.ComponentSchema { export interface LayoutCtaBanner extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_tables'; collectionName: 'components_layout_cta_banners';
info: { info: {
displayName: 'table'; displayName: 'CTABanner';
}; };
attributes: { attributes: {
tableData: Schema.Attribute.RichText & Heading: Schema.Attribute.Component<'layout.heading', false>;
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface DynamicZoneRulesList extends Struct.ComponentSchema { export interface LayoutConversionCode extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_rules_lists'; collectionName: 'components_layout_conversion_codes';
info: { info: {
displayName: 'RulesList'; displayName: 'ConversionCode';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; scriptcode: Schema.Attribute.Text;
Description: Schema.Attribute.Text; noscriptcode: Schema.Attribute.Text;
details: Schema.Attribute.Component<'dynamic-zone.details', false>;
}; };
} }
export interface DynamicZoneRulesApplication extends Struct.ComponentSchema { export interface LayoutClientel extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_rules_applications'; collectionName: 'components_layout_clientels';
info: { info: {
displayName: 'RulesApplication'; displayName: 'Clientel';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; logos: Schema.Attribute.Media<'images', true>;
Subheading: Schema.Attribute.String;
Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images' | 'files'>;
RuleList: Schema.Attribute.Component<'dynamic-zone.rules-list', true>;
}; };
} }
export interface DynamicZoneKeyfeature extends Struct.ComponentSchema { export interface LayoutCfolist extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_keyfeatures'; collectionName: 'components_layout_cfolists';
info: { info: {
displayName: 'KeyFeature'; displayName: 'cfolist';
description: '';
};
attributes: {
sectionTitle: Schema.Attribute.String;
SectionSubtitle: Schema.Attribute.String;
KeyFeatureList: Schema.Attribute.Component<'dynamic-zone.fact-list', true>;
};
}
export interface DynamicZoneFacts extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_facts';
info: {
displayName: 'Facts';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Subtitle: Schema.Attribute.Text; Icon: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
FactList: Schema.Attribute.Component<'dynamic-zone.fact-list', true>;
}; };
} }
export interface DynamicZoneFactList extends Struct.ComponentSchema { export interface LayoutCfoService extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_fact_lists'; collectionName: 'components_layout_cfo_services';
info: { info: {
displayName: 'FactList'; displayName: 'CFOService';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; IndustryServiceList: Schema.Attribute.Component<
Description: Schema.Attribute.Text; 'layout.cfo-service-tab',
Icon: Schema.Attribute.Media<'images'>; true
>;
}; };
} }
export interface DynamicZoneElementTwo extends Struct.ComponentSchema { export interface LayoutCfoServiceTab extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_element_twos'; collectionName: 'components_layout_cfo_service_tabs';
info: { info: {
displayName: 'ElementTwo'; displayName: 'CFOServiceTab';
description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>; Title: Schema.Attribute.String;
ElementList: Schema.Attribute.Component<'dynamic-zone.element-list', true>; CfoList: Schema.Attribute.Component<'layout.cfolist', true>;
}; };
} }
export interface DynamicZoneElementOne extends Struct.ComponentSchema { export interface LayoutCard extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_element_ones'; collectionName: 'components_layout_cards';
info: { info: {
displayName: 'ElementOne'; displayName: 'card';
description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>; Heading: Schema.Attribute.Component<'layout.heading', false>;
ElementList: Schema.Attribute.Component<'dynamic-zone.element-list', true>;
}; };
} }
export interface DynamicZoneElementList extends Struct.ComponentSchema { export interface LayoutCardDetails extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_element_lists'; collectionName: 'components_layout_card_details';
info: { info: {
displayName: 'ElementList'; displayName: 'card-details';
}; };
attributes: { attributes: {
StepHeading: Schema.Attribute.String & Schema.Attribute.Required; Title: Schema.Attribute.String;
StepDescription: Schema.Attribute.String & Schema.Attribute.Required; Description: Schema.Attribute.RichText &
StepImg: Schema.Attribute.Media<'images'> & Schema.Attribute.Required; Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface DynamicZoneDownloadBtn extends Struct.ComponentSchema { export interface LayoutAreasExpertise extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_download_btns'; collectionName: 'components_layout_areas_expertises';
info: { info: {
displayName: 'DownloadBtn'; displayName: 'AreasExpertise';
description: ''; description: '';
}; };
attributes: { attributes: {
Subtitle: Schema.Attribute.String;
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.String; Description: Schema.Attribute.Text;
CTA: Schema.Attribute.Component<'cta.cta', false>; Image: Schema.Attribute.Media<'images'>;
};
}
export interface DynamicZoneDetails extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_details';
info: {
displayName: 'Details';
};
attributes: {
Details: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface DynamicZoneCard extends Struct.ComponentSchema { export interface CtaCta extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_cards'; collectionName: 'components_cta_ctas';
info: { info: {
displayName: 'card'; displayName: 'CTA';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>; text: Schema.Attribute.String &
carddetails: Schema.Attribute.Component<'layout.card-details', true>; Schema.Attribute.Required &
Schema.Attribute.DefaultTo<'text'>;
URL: Schema.Attribute.String;
target: Schema.Attribute.Enumeration<
['_blank', '_parent', '_self', '_top']
>;
varient: Schema.Attribute.Enumeration<['outline', 'fill']>;
}; };
} }
export interface DynamicZoneBackground extends Struct.ComponentSchema { export interface DynamicZoneText extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_backgrounds'; collectionName: 'components_dynamic_zone_texts';
info: { info: {
displayName: 'RightsideImg'; displayName: 'Content';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Heading: Schema.Attribute.String;
Subtitle: Schema.Attribute.String; Subtitle: Schema.Attribute.Text;
Content: Schema.Attribute.RichText & Description: Schema.Attribute.RichText &
Schema.Attribute.CustomField< Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor', 'plugin::ckeditor5.CKEditor',
{ {
preset: 'default'; preset: 'default';
} }
>; >;
CTA: Schema.Attribute.Component<'cta.cta', false>;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
}; };
} }
export interface DynamicZoneAbout extends Struct.ComponentSchema { export interface DynamicZoneTable extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_abouts'; collectionName: 'components_dynamic_zone_tables';
info: { info: {
displayName: 'LeftsideImg'; displayName: 'table';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; tableData: Schema.Attribute.RichText &
Subtitle: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', false>;
Content: Schema.Attribute.RichText &
Schema.Attribute.CustomField< Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor', 'plugin::ckeditor5.CKEditor',
{ {
...@@ -464,279 +480,268 @@ export interface DynamicZoneAbout extends Struct.ComponentSchema { ...@@ -464,279 +480,268 @@ export interface DynamicZoneAbout extends Struct.ComponentSchema {
}; };
} }
export interface LayoutWhatwedo extends Struct.ComponentSchema { export interface DynamicZoneRulesList extends Struct.ComponentSchema {
collectionName: 'components_layout_whatwedos'; collectionName: 'components_dynamic_zone_rules_lists';
info: { info: {
displayName: 'Whatwedo'; displayName: 'RulesList';
description: ''; description: '';
}; };
attributes: { attributes: {
Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required; Title: Schema.Attribute.String;
Title: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
CTA: Schema.Attribute.Component<'cta.cta', false>; details: Schema.Attribute.Component<'dynamic-zone.details', false>;
}; };
} }
export interface LayoutWeOffer extends Struct.ComponentSchema { export interface DynamicZoneRulesApplication extends Struct.ComponentSchema {
collectionName: 'components_layout_we_offers'; collectionName: 'components_dynamic_zone_rules_applications';
info: { info: {
displayName: 'WeOffer'; displayName: 'RulesApplication';
description: '';
}; };
attributes: { attributes: {
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>; Heading: Schema.Attribute.String;
Title: Schema.Attribute.String; Subheading: Schema.Attribute.String;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
CTA: Schema.Attribute.Component<'cta.cta', false>; Image: Schema.Attribute.Media<'images' | 'files'>;
RuleList: Schema.Attribute.Component<'dynamic-zone.rules-list', true>;
}; };
} }
export interface LayoutTechnicalexpertise extends Struct.ComponentSchema { export interface DynamicZoneKeyfeature extends Struct.ComponentSchema {
collectionName: 'components_layout_technicalexpertises'; collectionName: 'components_dynamic_zone_keyfeatures';
info: { info: {
displayName: 'Technicalexpertise'; displayName: 'KeyFeature';
description: '';
}; };
attributes: { attributes: {
SectionTitle: Schema.Attribute.String; sectionTitle: Schema.Attribute.String;
Subtitle: Schema.Attribute.String; SectionSubtitle: Schema.Attribute.String;
Technicallist: Schema.Attribute.Component<'layout.technicalexp-tab', true>; KeyFeatureList: Schema.Attribute.Component<'dynamic-zone.fact-list', true>;
}; };
} }
export interface LayoutTechnicalexpTab extends Struct.ComponentSchema { export interface DynamicZoneFacts extends Struct.ComponentSchema {
collectionName: 'components_layout_technicalexp_tabs'; collectionName: 'components_dynamic_zone_facts';
info: { info: {
displayName: 'TechnicalexpTab'; displayName: 'Facts';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.Text; Subtitle: Schema.Attribute.Text;
}; FactList: Schema.Attribute.Component<'dynamic-zone.fact-list', true>;
}
export interface LayoutTab extends Struct.ComponentSchema {
collectionName: 'components_layout_tabs';
info: {
displayName: 'Tab';
};
attributes: {
sectionTitle: Schema.Attribute.String;
shortDescription: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface LayoutServicelist extends Struct.ComponentSchema { export interface DynamicZoneFactList extends Struct.ComponentSchema {
collectionName: 'components_layout_servicelists'; collectionName: 'components_dynamic_zone_fact_lists';
info: { info: {
displayName: 'Servicelist'; displayName: 'FactList';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.Text;
Icon: Schema.Attribute.Media<'images'>;
}; };
} }
export interface LayoutPageBanner extends Struct.ComponentSchema { export interface DynamicZoneElementTwo extends Struct.ComponentSchema {
collectionName: 'components_layout_page_banners'; collectionName: 'components_dynamic_zone_element_twos';
info: { info: {
displayName: 'PageBanner'; displayName: 'ElementTwo';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; Heading: Schema.Attribute.Component<'layout.heading', false>;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>; ElementList: Schema.Attribute.Component<'dynamic-zone.element-list', true>;
}; };
} }
export interface LayoutOverview extends Struct.ComponentSchema { export interface DynamicZoneElementOne extends Struct.ComponentSchema {
collectionName: 'components_layout_overviews'; collectionName: 'components_dynamic_zone_element_ones';
info: { info: {
displayName: 'Overview'; displayName: 'ElementOne';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Heading: Schema.Attribute.Component<'layout.heading', false>;
Subtitle: Schema.Attribute.Text; ElementList: Schema.Attribute.Component<'dynamic-zone.element-list', true>;
Content: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface LayoutIndustryOverview extends Struct.ComponentSchema { export interface DynamicZoneElementList extends Struct.ComponentSchema {
collectionName: 'components_layout_industry_overviews'; collectionName: 'components_dynamic_zone_element_lists';
info: { info: {
displayName: 'IndustryOverview'; displayName: 'ElementList';
description: '';
}; };
attributes: { attributes: {
subtitle: Schema.Attribute.String; StepHeading: Schema.Attribute.String & Schema.Attribute.Required;
title: Schema.Attribute.String; StepDescription: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text; StepImg: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
}; };
} }
export interface LayoutHeading extends Struct.ComponentSchema { export interface DynamicZoneDownloadBtn extends Struct.ComponentSchema {
collectionName: 'components_layout_headings'; collectionName: 'components_dynamic_zone_download_btns';
info: { info: {
displayName: 'heading'; displayName: 'DownloadBtn';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String;
Subtitle: Schema.Attribute.String; Subtitle: Schema.Attribute.String;
Description: Schema.Attribute.Text; Title: Schema.Attribute.String;
Description: Schema.Attribute.String;
CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface LayoutFunctionalAreas extends Struct.ComponentSchema { export interface DynamicZoneDetails extends Struct.ComponentSchema {
collectionName: 'components_layout_functional_areas'; collectionName: 'components_dynamic_zone_details';
info: { info: {
displayName: 'FunctionalAreas'; displayName: 'Details';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String & Schema.Attribute.Required; Details: Schema.Attribute.RichText &
Icon: Schema.Attribute.Media<'images'> & Schema.Attribute.Required; Schema.Attribute.CustomField<
Description: Schema.Attribute.Text & Schema.Attribute.Required; 'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface LayoutCtaBanner extends Struct.ComponentSchema { export interface DynamicZoneCard extends Struct.ComponentSchema {
collectionName: 'components_layout_cta_banners'; collectionName: 'components_dynamic_zone_cards';
info: { info: {
displayName: 'CTABanner'; displayName: 'card';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>; Heading: Schema.Attribute.Component<'layout.heading', false>;
carddetails: Schema.Attribute.Component<'layout.card-details', true>;
}; };
} }
export interface LayoutConversionCode extends Struct.ComponentSchema { export interface DynamicZoneBackground extends Struct.ComponentSchema {
collectionName: 'components_layout_conversion_codes'; collectionName: 'components_dynamic_zone_backgrounds';
info: { info: {
displayName: 'ConversionCode'; displayName: 'RightsideImg';
description: ''; description: '';
}; };
attributes: { attributes: {
scriptcode: Schema.Attribute.Text; Title: Schema.Attribute.String;
noscriptcode: Schema.Attribute.Text; Subtitle: Schema.Attribute.String;
Content: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
CTA: Schema.Attribute.Component<'cta.cta', false>;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
}; };
} }
export interface LayoutClientel extends Struct.ComponentSchema { export interface DynamicZoneAbout extends Struct.ComponentSchema {
collectionName: 'components_layout_clientels'; collectionName: 'components_dynamic_zone_abouts';
info: { info: {
displayName: 'Clientel'; displayName: 'LeftsideImg';
description: ''; description: '';
}; };
attributes: { attributes: {
logos: Schema.Attribute.Media<'images', true>;
};
}
export interface LayoutCfolist extends Struct.ComponentSchema {
collectionName: 'components_layout_cfolists';
info: {
displayName: 'cfolist';
};
attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Icon: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>; Subtitle: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', false>;
Content: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface LayoutCfoService extends Struct.ComponentSchema { export interface HomePeople extends Struct.ComponentSchema {
collectionName: 'components_layout_cfo_services'; collectionName: 'components_home_people';
info: { info: {
displayName: 'CFOService'; displayName: 'People';
description: ''; description: '';
}; };
attributes: { attributes: {
IndustryServiceList: Schema.Attribute.Component< Heading: Schema.Attribute.String;
'layout.cfo-service-tab', Description: Schema.Attribute.Text;
true Image: Schema.Attribute.Media<'images'>;
>; peoplelist: Schema.Attribute.Component<'people.people-list', true>;
}; };
} }
export interface LayoutCfoServiceTab extends Struct.ComponentSchema { export interface HomeKnowlegeTab extends Struct.ComponentSchema {
collectionName: 'components_layout_cfo_service_tabs'; collectionName: 'components_home_knowlege_tabs';
info: { info: {
displayName: 'CFOServiceTab'; displayName: 'KnowlegeTab';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
CfoList: Schema.Attribute.Component<'layout.cfolist', true>; Description: Schema.Attribute.Text;
}; CTA: Schema.Attribute.Component<'cta.cta', false>;
}
export interface LayoutCard extends Struct.ComponentSchema {
collectionName: 'components_layout_cards';
info: {
displayName: 'card';
};
attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>;
}; };
} }
export interface LayoutCardDetails extends Struct.ComponentSchema { export interface HomeKnowledgeshack extends Struct.ComponentSchema {
collectionName: 'components_layout_card_details'; collectionName: 'components_home_knowledgeshacks';
info: { info: {
displayName: 'card-details'; displayName: 'Knowledgeshack';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Heading: Schema.Attribute.String;
Description: Schema.Attribute.RichText & Description: Schema.Attribute.String;
Schema.Attribute.CustomField< Image: Schema.Attribute.Media<'images'>;
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface LayoutAreasExpertise extends Struct.ComponentSchema { export interface HomeIndustry extends Struct.ComponentSchema {
collectionName: 'components_layout_areas_expertises'; collectionName: 'components_home_industries';
info: { info: {
displayName: 'AreasExpertise'; displayName: 'Industry';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Subtitle: Schema.Attribute.String;
Title: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>; Image: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>;
}; };
} }
export interface CtaCta extends Struct.ComponentSchema { export interface HomeHome extends Struct.ComponentSchema {
collectionName: 'components_cta_ctas'; collectionName: 'components_home_homes';
info: { info: {
displayName: 'CTA'; displayName: 'Home Banner';
description: '';
}; };
attributes: { attributes: {
text: Schema.Attribute.String & Title: Schema.Attribute.String & Schema.Attribute.Required;
Schema.Attribute.Required & Subtitle: Schema.Attribute.String;
Schema.Attribute.DefaultTo<'text'>; Description: Schema.Attribute.Text & Schema.Attribute.Required;
URL: Schema.Attribute.String; Mobilebanner: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
target: Schema.Attribute.Enumeration< Desktopbanner: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
['_blank', '_parent', '_self', '_top'] BackgroundBanner: Schema.Attribute.Media<'images'>;
>; CTA: Schema.Attribute.Component<'cta.cta', true>;
varient: Schema.Attribute.Enumeration<['outline', 'fill']>;
}; };
} }
declare module '@strapi/strapi' { declare module '@strapi/strapi' {
export module Public { export module Public {
export interface ComponentSchemas { export interface ComponentSchemas {
'people.team-member': PeopleTeamMember;
'people.team-leads': PeopleTeamLeads;
'people.people-list': PeoplePeopleList;
'people.overview': PeopleOverview;
'people.advisory-board': PeopleAdvisoryBoard;
'shared.slider': SharedSlider; 'shared.slider': SharedSlider;
'shared.seo': SharedSeo; 'shared.seo': SharedSeo;
'shared.rich-text': SharedRichText; 'shared.rich-text': SharedRichText;
...@@ -744,31 +749,6 @@ declare module '@strapi/strapi' { ...@@ -744,31 +749,6 @@ declare module '@strapi/strapi' {
'shared.page-schema': SharedPageSchema; 'shared.page-schema': SharedPageSchema;
'shared.meta-social': SharedMetaSocial; 'shared.meta-social': SharedMetaSocial;
'shared.media': SharedMedia; 'shared.media': SharedMedia;
'home.people': HomePeople;
'home.knowlege-tab': HomeKnowlegeTab;
'home.knowledgeshack': HomeKnowledgeshack;
'home.industry': HomeIndustry;
'home.home': HomeHome;
'people.team-member': PeopleTeamMember;
'people.team-leads': PeopleTeamLeads;
'people.people-list': PeoplePeopleList;
'people.overview': PeopleOverview;
'people.advisory-board': PeopleAdvisoryBoard;
'dynamic-zone.text': DynamicZoneText;
'dynamic-zone.table': DynamicZoneTable;
'dynamic-zone.rules-list': DynamicZoneRulesList;
'dynamic-zone.rules-application': DynamicZoneRulesApplication;
'dynamic-zone.keyfeature': DynamicZoneKeyfeature;
'dynamic-zone.facts': DynamicZoneFacts;
'dynamic-zone.fact-list': DynamicZoneFactList;
'dynamic-zone.element-two': DynamicZoneElementTwo;
'dynamic-zone.element-one': DynamicZoneElementOne;
'dynamic-zone.element-list': DynamicZoneElementList;
'dynamic-zone.download-btn': DynamicZoneDownloadBtn;
'dynamic-zone.details': DynamicZoneDetails;
'dynamic-zone.card': DynamicZoneCard;
'dynamic-zone.background': DynamicZoneBackground;
'dynamic-zone.about': DynamicZoneAbout;
'layout.whatwedo': LayoutWhatwedo; 'layout.whatwedo': LayoutWhatwedo;
'layout.we-offer': LayoutWeOffer; 'layout.we-offer': LayoutWeOffer;
'layout.technicalexpertise': LayoutTechnicalexpertise; 'layout.technicalexpertise': LayoutTechnicalexpertise;
...@@ -790,6 +770,26 @@ declare module '@strapi/strapi' { ...@@ -790,6 +770,26 @@ declare module '@strapi/strapi' {
'layout.card-details': LayoutCardDetails; 'layout.card-details': LayoutCardDetails;
'layout.areas-expertise': LayoutAreasExpertise; 'layout.areas-expertise': LayoutAreasExpertise;
'cta.cta': CtaCta; 'cta.cta': CtaCta;
'dynamic-zone.text': DynamicZoneText;
'dynamic-zone.table': DynamicZoneTable;
'dynamic-zone.rules-list': DynamicZoneRulesList;
'dynamic-zone.rules-application': DynamicZoneRulesApplication;
'dynamic-zone.keyfeature': DynamicZoneKeyfeature;
'dynamic-zone.facts': DynamicZoneFacts;
'dynamic-zone.fact-list': DynamicZoneFactList;
'dynamic-zone.element-two': DynamicZoneElementTwo;
'dynamic-zone.element-one': DynamicZoneElementOne;
'dynamic-zone.element-list': DynamicZoneElementList;
'dynamic-zone.download-btn': DynamicZoneDownloadBtn;
'dynamic-zone.details': DynamicZoneDetails;
'dynamic-zone.card': DynamicZoneCard;
'dynamic-zone.background': DynamicZoneBackground;
'dynamic-zone.about': DynamicZoneAbout;
'home.people': HomePeople;
'home.knowlege-tab': HomeKnowlegeTab;
'home.knowledgeshack': HomeKnowledgeshack;
'home.industry': HomeIndustry;
'home.home': HomeHome;
} }
} }
} }
...@@ -891,6 +891,14 @@ export interface ApiCareerPageCareerPage extends Struct.SingleTypeSchema { ...@@ -891,6 +891,14 @@ export interface ApiCareerPageCareerPage extends Struct.SingleTypeSchema {
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
Btn_link: Schema.Attribute.String; Btn_link: Schema.Attribute.String;
seo: Schema.Attribute.Component<'shared.seo', false>; seo: Schema.Attribute.Component<'shared.seo', false>;
CareerDetails: Schema.Attribute.DynamicZone<
[
'dynamic-zone.about',
'dynamic-zone.background',
'dynamic-zone.details',
'dynamic-zone.text',
]
>;
createdAt: Schema.Attribute.DateTime; createdAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime; updatedAt: Schema.Attribute.DateTime;
publishedAt: Schema.Attribute.DateTime; publishedAt: Schema.Attribute.DateTime;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!