Commit 13a41d54 by sujata

apc page

1 parent a5827d19
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
"dynamic-zone.details", "dynamic-zone.details",
"dynamic-zone.text", "dynamic-zone.text",
"dynamic-zone.element-two", "dynamic-zone.element-two",
"layout.card" "dynamic-zone.card"
] ]
}, },
"Clientel": { "Clientel": {
......
...@@ -110,6 +110,77 @@ export interface SharedMedia extends Struct.ComponentSchema { ...@@ -110,6 +110,77 @@ export interface SharedMedia extends Struct.ComponentSchema {
}; };
} }
export interface HomePeople extends Struct.ComponentSchema {
collectionName: 'components_home_people';
info: {
displayName: 'People';
description: '';
};
attributes: {
Heading: Schema.Attribute.String;
Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>;
peoplelist: Schema.Attribute.Component<'people.people-list', true>;
};
}
export interface HomeKnowlegeTab extends Struct.ComponentSchema {
collectionName: 'components_home_knowlege_tabs';
info: {
displayName: 'KnowlegeTab';
};
attributes: {
Title: Schema.Attribute.String;
Description: Schema.Attribute.Text;
CTA: Schema.Attribute.Component<'cta.cta', false>;
};
}
export interface HomeKnowledgeshack extends Struct.ComponentSchema {
collectionName: 'components_home_knowledgeshacks';
info: {
displayName: 'Knowledgeshack';
description: '';
};
attributes: {
Heading: Schema.Attribute.String;
Description: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images'>;
};
}
export interface HomeIndustry extends Struct.ComponentSchema {
collectionName: 'components_home_industries';
info: {
displayName: 'Industry';
description: '';
};
attributes: {
Subtitle: Schema.Attribute.String;
Title: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>;
};
}
export interface HomeHome extends Struct.ComponentSchema {
collectionName: 'components_home_homes';
info: {
displayName: 'Home Banner';
description: '';
};
attributes: {
Title: Schema.Attribute.String & Schema.Attribute.Required;
Subtitle: Schema.Attribute.String;
Description: Schema.Attribute.Text & Schema.Attribute.Required;
Mobilebanner: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
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 PeopleTeamMember extends Struct.ComponentSchema {
collectionName: 'components_people_team_members'; collectionName: 'components_people_team_members';
info: { info: {
...@@ -175,545 +246,474 @@ export interface PeopleAdvisoryBoard extends Struct.ComponentSchema { ...@@ -175,545 +246,474 @@ export interface PeopleAdvisoryBoard extends Struct.ComponentSchema {
}; };
} }
export interface HomePeople extends Struct.ComponentSchema { export interface DynamicZoneText extends Struct.ComponentSchema {
collectionName: 'components_home_people'; collectionName: 'components_dynamic_zone_texts';
info: { info: {
displayName: 'People'; displayName: 'Content';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; Heading: Schema.Attribute.String;
Description: Schema.Attribute.Text; Subtitle: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>; Description: Schema.Attribute.RichText &
peoplelist: Schema.Attribute.Component<'people.people-list', true>; Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface HomeKnowlegeTab extends Struct.ComponentSchema { export interface DynamicZoneTable extends Struct.ComponentSchema {
collectionName: 'components_home_knowlege_tabs'; collectionName: 'components_dynamic_zone_tables';
info: { info: {
displayName: 'KnowlegeTab'; displayName: 'table';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; tableData: Schema.Attribute.RichText &
Description: Schema.Attribute.Text; Schema.Attribute.CustomField<
CTA: Schema.Attribute.Component<'cta.cta', false>; 'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface HomeKnowledgeshack extends Struct.ComponentSchema { export interface DynamicZoneRulesList extends Struct.ComponentSchema {
collectionName: 'components_home_knowledgeshacks'; collectionName: 'components_dynamic_zone_rules_lists';
info: { info: {
displayName: 'Knowledgeshack'; displayName: 'RulesList';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.String; Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>; details: Schema.Attribute.Component<'dynamic-zone.details', false>;
}; };
} }
export interface HomeIndustry extends Struct.ComponentSchema { export interface DynamicZoneRulesApplication extends Struct.ComponentSchema {
collectionName: 'components_home_industries'; collectionName: 'components_dynamic_zone_rules_applications';
info: { info: {
displayName: 'Industry'; displayName: 'RulesApplication';
description: ''; description: '';
}; };
attributes: { attributes: {
Subtitle: Schema.Attribute.String; Heading: Schema.Attribute.String;
Title: Schema.Attribute.String & Schema.Attribute.Required; Subheading: Schema.Attribute.String;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>; Image: Schema.Attribute.Media<'images' | 'files'>;
CTA: Schema.Attribute.Component<'cta.cta', true>; RuleList: Schema.Attribute.Component<'dynamic-zone.rules-list', true>;
}; };
} }
export interface HomeHome extends Struct.ComponentSchema { export interface DynamicZoneKeyfeature extends Struct.ComponentSchema {
collectionName: 'components_home_homes'; collectionName: 'components_dynamic_zone_keyfeatures';
info: { info: {
displayName: 'Home Banner'; displayName: 'KeyFeature';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String & Schema.Attribute.Required; sectionTitle: Schema.Attribute.String;
Subtitle: Schema.Attribute.String; SectionSubtitle: Schema.Attribute.String;
Description: Schema.Attribute.Text & Schema.Attribute.Required; KeyFeatureList: Schema.Attribute.Component<'dynamic-zone.fact-list', true>;
Mobilebanner: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Desktopbanner: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
BackgroundBanner: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>;
}; };
} }
export interface LayoutWhatwedo extends Struct.ComponentSchema { export interface DynamicZoneFacts extends Struct.ComponentSchema {
collectionName: 'components_layout_whatwedos'; collectionName: 'components_dynamic_zone_facts';
info: { info: {
displayName: 'Whatwedo'; displayName: 'Facts';
description: '';
}; };
attributes: { attributes: {
Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required; Title: Schema.Attribute.String;
Title: Schema.Attribute.String & Schema.Attribute.Required; Subtitle: Schema.Attribute.Text;
Description: Schema.Attribute.Text; FactList: Schema.Attribute.Component<'dynamic-zone.fact-list', true>;
CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface LayoutWeOffer extends Struct.ComponentSchema { export interface DynamicZoneFactList extends Struct.ComponentSchema {
collectionName: 'components_layout_we_offers'; collectionName: 'components_dynamic_zone_fact_lists';
info: { info: {
displayName: 'WeOffer'; displayName: 'FactList';
}; };
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>; Icon: Schema.Attribute.Media<'images'>;
}; };
} }
export interface LayoutTechnicalexpertise extends Struct.ComponentSchema { export interface DynamicZoneElementTwo extends Struct.ComponentSchema {
collectionName: 'components_layout_technicalexpertises'; collectionName: 'components_dynamic_zone_element_twos';
info: { info: {
displayName: 'Technicalexpertise'; displayName: 'ElementTwo';
}; };
attributes: { attributes: {
SectionTitle: Schema.Attribute.String; Heading: Schema.Attribute.Component<'layout.heading', false>;
Subtitle: Schema.Attribute.String; ElementList: Schema.Attribute.Component<'dynamic-zone.element-list', true>;
Technicallist: Schema.Attribute.Component<'layout.technicalexp-tab', true>;
}; };
} }
export interface LayoutTechnicalexpTab extends Struct.ComponentSchema { export interface DynamicZoneElementOne extends Struct.ComponentSchema {
collectionName: 'components_layout_technicalexp_tabs'; collectionName: 'components_dynamic_zone_element_ones';
info: { info: {
displayName: 'TechnicalexpTab'; displayName: 'ElementOne';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Heading: Schema.Attribute.Component<'layout.heading', false>;
Description: Schema.Attribute.Text; ElementList: Schema.Attribute.Component<'dynamic-zone.element-list', true>;
}; };
} }
export interface LayoutTab extends Struct.ComponentSchema { export interface DynamicZoneElementList extends Struct.ComponentSchema {
collectionName: 'components_layout_tabs'; collectionName: 'components_dynamic_zone_element_lists';
info: { info: {
displayName: 'Tab'; displayName: 'ElementList';
}; };
attributes: { attributes: {
sectionTitle: Schema.Attribute.String; StepHeading: Schema.Attribute.String & Schema.Attribute.Required;
shortDescription: Schema.Attribute.Text; StepDescription: Schema.Attribute.String & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images'>; StepImg: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface LayoutServicelist extends Struct.ComponentSchema { export interface DynamicZoneDownloadBtn extends Struct.ComponentSchema {
collectionName: 'components_layout_servicelists'; collectionName: 'components_dynamic_zone_download_btns';
info: { info: {
displayName: 'Servicelist'; displayName: 'DownloadBtn';
description: '';
}; };
attributes: { attributes: {
Subtitle: Schema.Attribute.String;
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.String;
CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface LayoutPageBanner extends Struct.ComponentSchema { export interface DynamicZoneDetails extends Struct.ComponentSchema {
collectionName: 'components_layout_page_banners'; collectionName: 'components_dynamic_zone_details';
info: {
displayName: 'PageBanner';
};
attributes: {
Heading: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
};
}
export interface LayoutOverview extends Struct.ComponentSchema {
collectionName: 'components_layout_overviews';
info: { info: {
displayName: 'Overview'; displayName: 'Details';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Details: Schema.Attribute.RichText &
Subtitle: Schema.Attribute.Text;
Content: 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>;
}; };
} }
export interface LayoutIndustryOverview extends Struct.ComponentSchema { export interface DynamicZoneCard extends Struct.ComponentSchema {
collectionName: 'components_layout_industry_overviews'; collectionName: 'components_dynamic_zone_cards';
info: { info: {
displayName: 'IndustryOverview'; displayName: 'card';
description: '';
}; };
attributes: { attributes: {
subtitle: Schema.Attribute.String; Heading: Schema.Attribute.Component<'layout.heading', false>;
title: Schema.Attribute.String; carddetails: Schema.Attribute.Component<'layout.card-details', true>;
Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
}; };
} }
export interface LayoutHeading extends Struct.ComponentSchema { export interface DynamicZoneBackground extends Struct.ComponentSchema {
collectionName: 'components_layout_headings'; collectionName: 'components_dynamic_zone_backgrounds';
info: { info: {
displayName: 'heading'; displayName: 'RightsideImg';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Subtitle: Schema.Attribute.String; Subtitle: Schema.Attribute.String;
Description: Schema.Attribute.Text; Content: Schema.Attribute.RichText &
}; Schema.Attribute.CustomField<
} 'plugin::ckeditor5.CKEditor',
{
export interface LayoutFunctionalAreas extends Struct.ComponentSchema { preset: 'default';
collectionName: 'components_layout_functional_areas'; }
info: { >;
displayName: 'FunctionalAreas'; CTA: Schema.Attribute.Component<'cta.cta', false>;
}; Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
attributes: {
Title: Schema.Attribute.String & Schema.Attribute.Required;
Icon: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Description: Schema.Attribute.Text & Schema.Attribute.Required;
};
}
export interface LayoutCtaBanner extends Struct.ComponentSchema {
collectionName: 'components_layout_cta_banners';
info: {
displayName: 'CTABanner';
};
attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>;
}; };
} }
export interface LayoutConversionCode extends Struct.ComponentSchema { export interface DynamicZoneAbout extends Struct.ComponentSchema {
collectionName: 'components_layout_conversion_codes'; collectionName: 'components_dynamic_zone_abouts';
info: { info: {
displayName: 'ConversionCode'; displayName: 'LeftsideImg';
description: ''; description: '';
}; };
attributes: { attributes: {
scriptcode: Schema.Attribute.Text; Title: Schema.Attribute.String;
noscriptcode: Schema.Attribute.Text; 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 LayoutClientel extends Struct.ComponentSchema { export interface LayoutWhatwedo extends Struct.ComponentSchema {
collectionName: 'components_layout_clientels'; collectionName: 'components_layout_whatwedos';
info: { info: {
displayName: 'Clientel'; displayName: 'Whatwedo';
description: ''; description: '';
}; };
attributes: { attributes: {
logos: Schema.Attribute.Media<'images', true>; Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Title: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text;
CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface LayoutCfolist extends Struct.ComponentSchema { export interface LayoutWeOffer extends Struct.ComponentSchema {
collectionName: 'components_layout_cfolists'; collectionName: 'components_layout_we_offers';
info: { info: {
displayName: 'cfolist'; displayName: 'WeOffer';
}; };
attributes: { attributes: {
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Icon: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>; Description: Schema.Attribute.Text;
}; CTA: Schema.Attribute.Component<'cta.cta', false>;
}
export interface LayoutCfoService extends Struct.ComponentSchema {
collectionName: 'components_layout_cfo_services';
info: {
displayName: 'CFOService';
description: '';
};
attributes: {
IndustryServiceList: Schema.Attribute.Component<
'layout.cfo-service-tab',
true
>;
}; };
} }
export interface LayoutCfoServiceTab extends Struct.ComponentSchema { export interface LayoutTechnicalexpertise extends Struct.ComponentSchema {
collectionName: 'components_layout_cfo_service_tabs'; collectionName: 'components_layout_technicalexpertises';
info: { info: {
displayName: 'CFOServiceTab'; displayName: 'Technicalexpertise';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; SectionTitle: Schema.Attribute.String;
CfoList: Schema.Attribute.Component<'layout.cfolist', true>; Subtitle: Schema.Attribute.String;
Technicallist: Schema.Attribute.Component<'layout.technicalexp-tab', true>;
}; };
} }
export interface LayoutCard extends Struct.ComponentSchema { export interface LayoutTechnicalexpTab extends Struct.ComponentSchema {
collectionName: 'components_layout_cards'; collectionName: 'components_layout_technicalexp_tabs';
info: { info: {
displayName: 'card'; displayName: 'TechnicalexpTab';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>; Title: Schema.Attribute.String;
Description: Schema.Attribute.Text;
}; };
} }
export interface LayoutCardDetails extends Struct.ComponentSchema { export interface LayoutTab extends Struct.ComponentSchema {
collectionName: 'components_layout_card_details'; collectionName: 'components_layout_tabs';
info: { info: {
displayName: 'card-details'; displayName: 'Tab';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; sectionTitle: Schema.Attribute.String;
Description: Schema.Attribute.RichText & shortDescription: Schema.Attribute.Text;
Schema.Attribute.CustomField< Image: Schema.Attribute.Media<'images'>;
'plugin::ckeditor5.CKEditor', CTA: Schema.Attribute.Component<'cta.cta', false>;
{
preset: 'default';
}
>;
}; };
} }
export interface LayoutAreasExpertise extends Struct.ComponentSchema { export interface LayoutServicelist extends Struct.ComponentSchema {
collectionName: 'components_layout_areas_expertises'; collectionName: 'components_layout_servicelists';
info: { info: {
displayName: 'AreasExpertise'; displayName: 'Servicelist';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>;
}; };
} }
export interface DynamicZoneText extends Struct.ComponentSchema { export interface LayoutPageBanner extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_texts'; collectionName: 'components_layout_page_banners';
info: { info: {
displayName: 'Content'; displayName: 'PageBanner';
description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; Heading: Schema.Attribute.String;
Subtitle: Schema.Attribute.Text; Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Description: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface DynamicZoneTable extends Struct.ComponentSchema { export interface LayoutOverview extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_tables'; collectionName: 'components_layout_overviews';
info: { info: {
displayName: 'table'; displayName: 'Overview';
description: '';
}; };
attributes: { attributes: {
tableData: Schema.Attribute.RichText & Title: Schema.Attribute.String;
Subtitle: Schema.Attribute.Text;
Content: 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>;
}; };
} }
export interface DynamicZoneRulesList extends Struct.ComponentSchema { export interface LayoutIndustryOverview extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_rules_lists'; collectionName: 'components_layout_industry_overviews';
info: { info: {
displayName: 'RulesList'; displayName: 'IndustryOverview';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; subtitle: Schema.Attribute.String;
title: Schema.Attribute.String;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
details: Schema.Attribute.Component<'dynamic-zone.details', false>; Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
}; };
} }
export interface DynamicZoneRulesApplication extends Struct.ComponentSchema { export interface LayoutHeading extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_rules_applications'; collectionName: 'components_layout_headings';
info: { info: {
displayName: 'RulesApplication'; displayName: 'heading';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; Title: Schema.Attribute.String;
Subheading: Schema.Attribute.String; Subtitle: Schema.Attribute.String;
Description: Schema.Attribute.Text; 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 {
collectionName: 'components_dynamic_zone_keyfeatures';
info: {
displayName: 'KeyFeature';
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 { export interface LayoutFunctionalAreas extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_facts'; collectionName: 'components_layout_functional_areas';
info: { info: {
displayName: 'Facts'; displayName: 'FunctionalAreas';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String & Schema.Attribute.Required;
Subtitle: Schema.Attribute.Text; Icon: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
FactList: Schema.Attribute.Component<'dynamic-zone.fact-list', true>; Description: Schema.Attribute.Text & Schema.Attribute.Required;
}; };
} }
export interface DynamicZoneFactList extends Struct.ComponentSchema { export interface LayoutCtaBanner extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_fact_lists'; collectionName: 'components_layout_cta_banners';
info: { info: {
displayName: 'FactList'; displayName: 'CTABanner';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Heading: Schema.Attribute.Component<'layout.heading', false>;
Description: Schema.Attribute.Text;
Icon: Schema.Attribute.Media<'images'>;
}; };
} }
export interface DynamicZoneElementTwo extends Struct.ComponentSchema { export interface LayoutConversionCode extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_element_twos'; collectionName: 'components_layout_conversion_codes';
info: { info: {
displayName: 'ElementTwo'; displayName: 'ConversionCode';
description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>; scriptcode: Schema.Attribute.Text;
ElementList: Schema.Attribute.Component<'dynamic-zone.element-list', true>; noscriptcode: Schema.Attribute.Text;
}; };
} }
export interface DynamicZoneElementOne extends Struct.ComponentSchema { export interface LayoutClientel extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_element_ones'; collectionName: 'components_layout_clientels';
info: { info: {
displayName: 'ElementOne'; displayName: 'Clientel';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>; logos: Schema.Attribute.Media<'images', true>;
ElementList: Schema.Attribute.Component<'dynamic-zone.element-list', true>;
}; };
} }
export interface DynamicZoneElementList extends Struct.ComponentSchema { export interface LayoutCfolist extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_element_lists'; collectionName: 'components_layout_cfolists';
info: { info: {
displayName: 'ElementList'; displayName: 'cfolist';
}; };
attributes: { attributes: {
StepHeading: Schema.Attribute.String & Schema.Attribute.Required; Title: Schema.Attribute.String;
StepDescription: Schema.Attribute.String & Schema.Attribute.Required; Icon: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
StepImg: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
}; };
} }
export interface DynamicZoneDownloadBtn extends Struct.ComponentSchema { export interface LayoutCfoService extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_download_btns'; collectionName: 'components_layout_cfo_services';
info: { info: {
displayName: 'DownloadBtn'; displayName: 'CFOService';
description: ''; description: '';
}; };
attributes: { attributes: {
Subtitle: Schema.Attribute.String; IndustryServiceList: Schema.Attribute.Component<
Title: Schema.Attribute.String; 'layout.cfo-service-tab',
Description: Schema.Attribute.String; true
CTA: Schema.Attribute.Component<'cta.cta', false>; >;
}; };
} }
export interface DynamicZoneDetails extends Struct.ComponentSchema { export interface LayoutCfoServiceTab extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_details'; collectionName: 'components_layout_cfo_service_tabs';
info: { info: {
displayName: 'Details'; displayName: 'CFOServiceTab';
description: '';
}; };
attributes: { attributes: {
Details: Schema.Attribute.RichText & Title: Schema.Attribute.String;
Schema.Attribute.CustomField< CfoList: Schema.Attribute.Component<'layout.cfolist', true>;
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface DynamicZoneCard extends Struct.ComponentSchema { export interface LayoutCard extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_cards'; collectionName: 'components_layout_cards';
info: { info: {
displayName: 'card'; 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 DynamicZoneBackground extends Struct.ComponentSchema { export interface LayoutCardDetails extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_backgrounds'; collectionName: 'components_layout_card_details';
info: { info: {
displayName: 'RightsideImg'; displayName: 'card-details';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Subtitle: Schema.Attribute.String; Description: Schema.Attribute.RichText &
Content: 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 LayoutAreasExpertise extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_abouts'; collectionName: 'components_layout_areas_expertises';
info: { info: {
displayName: 'LeftsideImg'; displayName: 'AreasExpertise';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Subtitle: Schema.Attribute.String; Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>; Image: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', false>;
Content: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
...@@ -744,16 +744,31 @@ declare module '@strapi/strapi' { ...@@ -744,16 +744,31 @@ 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;
'people.team-member': PeopleTeamMember;
'people.team-leads': PeopleTeamLeads;
'people.people-list': PeoplePeopleList;
'people.overview': PeopleOverview;
'people.advisory-board': PeopleAdvisoryBoard;
'home.people': HomePeople; 'home.people': HomePeople;
'home.knowlege-tab': HomeKnowlegeTab; 'home.knowlege-tab': HomeKnowlegeTab;
'home.knowledgeshack': HomeKnowledgeshack; 'home.knowledgeshack': HomeKnowledgeshack;
'home.industry': HomeIndustry; 'home.industry': HomeIndustry;
'home.home': HomeHome; '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;
...@@ -774,21 +789,6 @@ declare module '@strapi/strapi' { ...@@ -774,21 +789,6 @@ declare module '@strapi/strapi' {
'layout.card': LayoutCard; 'layout.card': LayoutCard;
'layout.card-details': LayoutCardDetails; 'layout.card-details': LayoutCardDetails;
'layout.areas-expertise': LayoutAreasExpertise; 'layout.areas-expertise': LayoutAreasExpertise;
'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;
'cta.cta': CtaCta; 'cta.cta': CtaCta;
} }
} }
......
...@@ -552,7 +552,7 @@ export interface ApiApcApc extends Struct.SingleTypeSchema { ...@@ -552,7 +552,7 @@ export interface ApiApcApc extends Struct.SingleTypeSchema {
'dynamic-zone.details', 'dynamic-zone.details',
'dynamic-zone.text', 'dynamic-zone.text',
'dynamic-zone.element-two', 'dynamic-zone.element-two',
'layout.card', 'dynamic-zone.card',
] ]
>; >;
Clientel: Schema.Attribute.Component<'layout.clientel', true>; Clientel: Schema.Attribute.Component<'layout.clientel', true>;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!