Commit 3180e2c3 by Aman

new page aadded

1 parent 4776719b
{
"kind": "singleType",
"collectionName": "annual_report",
"info": {
"singularName": "annual-reports",
"pluralName": "annual-report",
"displayName": "Annual Reports",
"description": ""
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"seo": {
"type": "component",
"repeatable": false,
"component": "shared.seo"
},
"Banner": {
"type": "component",
"repeatable": false,
"component": "layout.page-banner"
},
"Listing": {
"displayName": "listing",
"type": "component",
"repeatable": true,
"component": "layout.listing"
}
}
}
'use strict';
/**
* annual-reports controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::annual-reports.annual-reports');
'use strict';
/**
* annual-reports router
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::annual-reports.annual-reports');
'use strict';
/**
* annual-reports service
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::annual-reports.annual-reports');
{
"collectionName": "components_layout_categories_listings",
"info": {
"displayName": "categoriesListing"
},
"options": {},
"attributes": {
"img": {
"allowedTypes": [
"images",
"files"
],
"type": "media",
"multiple": false
},
"name": {
"type": "string"
}
}
}
{
"collectionName": "components_layout_listings",
"info": {
"displayName": "listing",
"description": ""
},
"options": {},
"attributes": {
"Title": {
"type": "string"
},
"category": {
"displayName": "categoriesListing",
"type": "component",
"repeatable": true,
"component": "layout.categories-listing"
},
"date": {
"type": "string"
}
}
}
...@@ -110,6 +110,101 @@ export interface SharedMedia extends Struct.ComponentSchema { ...@@ -110,6 +110,101 @@ 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'>;
Desktopbanner: Schema.Attribute.Media<'images'>;
BackgroundBanner: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>;
};
}
export interface HomeAreasExpertiseTitle extends Struct.ComponentSchema {
collectionName: 'components_home_areas_expertise_titles';
info: {
displayName: 'AreasExpertiseTitle';
};
attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
};
}
export interface HomeAreaExpertiselists extends Struct.ComponentSchema {
collectionName: 'components_home_area_expertiselists';
info: {
displayName: 'AreaExpertiselists';
description: '';
};
attributes: {
Title: Schema.Attribute.String;
Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
};
}
export interface PeopleTeamMember extends Struct.ComponentSchema { export interface PeopleTeamMember extends Struct.ComponentSchema {
collectionName: 'components_people_team_members'; collectionName: 'components_people_team_members';
info: { info: {
...@@ -184,725 +279,654 @@ export interface PeopleAdvisoryBoard extends Struct.ComponentSchema { ...@@ -184,725 +279,654 @@ export interface PeopleAdvisoryBoard extends Struct.ComponentSchema {
}; };
} }
export interface LayoutWhatwedo extends Struct.ComponentSchema { export interface DynamicZoneWhatWedoBanner extends Struct.ComponentSchema {
collectionName: 'components_layout_whatwedos'; collectionName: 'components_dynamic_zone_what_wedo_banners';
info: { info: {
displayName: 'Whatwedo'; displayName: 'WhatWedoBanner';
description: ''; description: '';
}; };
attributes: { attributes: {
Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required; list: Schema.Attribute.Component<'dynamic-zone.list', true>;
Title: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text;
CTA: Schema.Attribute.Component<'cta.cta', false>; CTA: Schema.Attribute.Component<'cta.cta', false>;
BackgroundBanner: Schema.Attribute.Media<
'images' | 'files' | 'videos' | 'audios'
>;
Heading: Schema.Attribute.Component<'layout.heading', false>;
}; };
} }
export interface LayoutWeofferList extends Struct.ComponentSchema { export interface DynamicZoneWeOfferSec extends Struct.ComponentSchema {
collectionName: 'components_layout_weoffer_lists'; collectionName: 'components_dynamic_zone_we_offer_secs';
info: { info: {
displayName: 'WeofferList'; displayName: 'WeOfferSec';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Heading: Schema.Attribute.String;
Button: Schema.Attribute.Component<'cta.cta', false>;
ProductList: Schema.Attribute.Component<'layout.product-list', true>;
Description: Schema.Attribute.Text;
};
}
export interface LayoutWeOffer extends Struct.ComponentSchema {
collectionName: 'components_layout_we_offers';
info: {
displayName: 'WeOffer';
};
attributes: {
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Title: Schema.Attribute.String;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
CTA: Schema.Attribute.Component<'cta.cta', false>; WeOfferList: Schema.Attribute.Component<'layout.weoffer-list', true>;
}; };
} }
export interface LayoutTechnicalexpertise extends Struct.ComponentSchema { export interface DynamicZoneVariantcard extends Struct.ComponentSchema {
collectionName: 'components_layout_technicalexpertises'; collectionName: 'components_dynamic_zone_variantcards';
info: { info: {
displayName: 'Technicalexpertise'; displayName: 'Variantcard';
}; };
attributes: { attributes: {
SectionTitle: Schema.Attribute.String; Heading: Schema.Attribute.Component<'layout.heading', false>;
Subtitle: Schema.Attribute.String; carddetails: Schema.Attribute.Component<'layout.card-details', true>;
Technicallist: Schema.Attribute.Component<'layout.technicalexp-tab', true>;
}; };
} }
export interface LayoutTechnicalexpTab extends Struct.ComponentSchema { export interface DynamicZoneText extends Struct.ComponentSchema {
collectionName: 'components_layout_technicalexp_tabs'; collectionName: 'components_dynamic_zone_texts';
info: { info: {
displayName: 'TechnicalexpTab'; displayName: 'Content';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Heading: Schema.Attribute.String;
Description: Schema.Attribute.Text; Subtitle: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>; Description: Schema.Attribute.RichText &
}; Schema.Attribute.CustomField<
} 'plugin::ckeditor5.CKEditor',
{
export interface LayoutTab extends Struct.ComponentSchema { preset: 'default';
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 DynamicZoneTable extends Struct.ComponentSchema {
collectionName: 'components_layout_servicelists'; collectionName: 'components_dynamic_zone_tables';
info: { info: {
displayName: 'Servicelist'; displayName: 'table';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; tableData: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface LayoutProductList extends Struct.ComponentSchema { export interface DynamicZoneRulesList extends Struct.ComponentSchema {
collectionName: 'components_layout_product_lists'; collectionName: 'components_dynamic_zone_rules_lists';
info: { info: {
displayName: 'ProductList'; displayName: 'RulesList';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
Button: Schema.Attribute.Component<'cta.cta', false>; details: Schema.Attribute.Component<'dynamic-zone.details', false>;
}; };
} }
export interface LayoutPageBanner extends Struct.ComponentSchema { export interface DynamicZoneRulesApplication extends Struct.ComponentSchema {
collectionName: 'components_layout_page_banners'; collectionName: 'components_dynamic_zone_rules_applications';
info: { info: {
displayName: 'PageBanner'; displayName: 'RulesApplication';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; Heading: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>; Subheading: 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 LayoutOverview extends Struct.ComponentSchema { export interface DynamicZoneList extends Struct.ComponentSchema {
collectionName: 'components_layout_overviews'; collectionName: 'components_dynamic_zone_lists';
info: { info: {
displayName: 'Overview'; displayName: 'List';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Subtitle: Schema.Attribute.Text; 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>;
}; };
} }
export interface LayoutIndustryOverview extends Struct.ComponentSchema { export interface DynamicZoneKeyfeature extends Struct.ComponentSchema {
collectionName: 'components_layout_industry_overviews'; collectionName: 'components_dynamic_zone_keyfeatures';
info: { info: {
displayName: 'IndustryOverview'; displayName: 'KeyFeature';
description: ''; description: '';
}; };
attributes: { attributes: {
subtitle: Schema.Attribute.String; sectionTitle: Schema.Attribute.String;
title: Schema.Attribute.String; SectionSubtitle: Schema.Attribute.String;
Description: Schema.Attribute.Text; KeyFeatureList: Schema.Attribute.Component<'dynamic-zone.fact-list', true>;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
}; };
} }
export interface LayoutHeading extends Struct.ComponentSchema { export interface DynamicZoneImage extends Struct.ComponentSchema {
collectionName: 'components_layout_headings'; collectionName: 'components_dynamic_zone_images';
info: { info: {
displayName: 'heading'; displayName: 'Image';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Heading: Schema.Attribute.String;
Subtitle: Schema.Attribute.String; Description: Schema.Attribute.Text;
Description: Schema.Attribute.RichText & DesktopImg: Schema.Attribute.Media<
Schema.Attribute.CustomField< 'images' | 'files' | 'videos' | 'audios'
'plugin::ckeditor5.CKEditor', >;
{ MobileImg: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
preset: 'default';
}
>;
Linkdin: Schema.Attribute.String;
}; };
} }
export interface LayoutFunctionalAreas extends Struct.ComponentSchema { export interface DynamicZoneFaq extends Struct.ComponentSchema {
collectionName: 'components_layout_functional_areas'; collectionName: 'components_dynamic_zone_faqs';
info: {
displayName: 'FunctionalAreas';
};
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 LayoutFaqList extends Struct.ComponentSchema {
collectionName: 'components_layout_faq_lists';
info: { info: {
displayName: 'FAQList'; displayName: 'FAQ';
description: '';
}; };
attributes: { attributes: {
Question: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.RichText & Description: Schema.Attribute.Text;
Schema.Attribute.CustomField< FAQList: Schema.Attribute.Component<'dynamic-zone.faq-list', true>;
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface LayoutCtaBanner extends Struct.ComponentSchema { export interface DynamicZoneFaqList extends Struct.ComponentSchema {
collectionName: 'components_layout_cta_banners'; collectionName: 'components_dynamic_zone_faq_lists';
info: { info: {
displayName: 'CTABanner'; displayName: 'FaqList';
description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>; Title: Schema.Attribute.String;
Description: Schema.Attribute.Text;
}; };
} }
export interface LayoutConversionCode extends Struct.ComponentSchema { export interface DynamicZoneFacts extends Struct.ComponentSchema {
collectionName: 'components_layout_conversion_codes'; collectionName: 'components_dynamic_zone_facts';
info: { info: {
displayName: 'ConversionCode'; displayName: 'Facts';
description: '';
}; };
attributes: { attributes: {
scriptcode: Schema.Attribute.Text; Title: Schema.Attribute.String;
noscriptcode: Schema.Attribute.Text; Subtitle: Schema.Attribute.Text;
FactList: Schema.Attribute.Component<'dynamic-zone.fact-list', true>;
}; };
} }
export interface LayoutClientel extends Struct.ComponentSchema { export interface DynamicZoneFactList extends Struct.ComponentSchema {
collectionName: 'components_layout_clientels'; collectionName: 'components_dynamic_zone_fact_lists';
info: { info: {
displayName: 'Clientel'; displayName: 'FactList';
description: '';
}; };
attributes: { attributes: {
logos: Schema.Attribute.Media<'images', true>; Title: Schema.Attribute.String;
Description: Schema.Attribute.Text;
Icon: Schema.Attribute.Media<'images'>;
}; };
} }
export interface LayoutCfolist extends Struct.ComponentSchema { export interface DynamicZoneElementTwo extends Struct.ComponentSchema {
collectionName: 'components_layout_cfolists'; collectionName: 'components_dynamic_zone_element_twos';
info: { info: {
displayName: 'cfolist'; displayName: 'ElementTwo';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Heading: Schema.Attribute.Component<'layout.heading', false>;
Icon: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>; ElementList: Schema.Attribute.Component<'dynamic-zone.element-list', true>;
}; };
} }
export interface LayoutCfoService extends Struct.ComponentSchema { export interface DynamicZoneElementOne extends Struct.ComponentSchema {
collectionName: 'components_layout_cfo_services'; collectionName: 'components_dynamic_zone_element_ones';
info: { info: {
displayName: 'CFOService'; displayName: 'ElementOne';
description: ''; description: '';
}; };
attributes: { attributes: {
IndustryServiceList: Schema.Attribute.Component< Heading: Schema.Attribute.Component<'layout.heading', false>;
'layout.cfo-service-tab', ElementList: Schema.Attribute.Component<'dynamic-zone.element-list', true>;
true
>;
}; };
} }
export interface LayoutCfoServiceTab extends Struct.ComponentSchema { export interface DynamicZoneElementList extends Struct.ComponentSchema {
collectionName: 'components_layout_cfo_service_tabs'; collectionName: 'components_dynamic_zone_element_lists';
info: { info: {
displayName: 'CFOServiceTab'; displayName: 'ElementList';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; StepHeading: Schema.Attribute.String;
CfoList: Schema.Attribute.Component<'layout.cfolist', true>; StepDescription: Schema.Attribute.String;
StepImg: Schema.Attribute.Media<'images'>;
}; };
} }
export interface LayoutCard extends Struct.ComponentSchema { export interface DynamicZoneDownloadBtn extends Struct.ComponentSchema {
collectionName: 'components_layout_cards'; collectionName: 'components_dynamic_zone_download_btns';
info: { info: {
displayName: 'card'; displayName: 'DownloadBtn';
description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>; Subtitle: Schema.Attribute.String;
Title: Schema.Attribute.String;
Description: Schema.Attribute.String;
CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface LayoutCardDetails extends Struct.ComponentSchema { export interface DynamicZoneDetails extends Struct.ComponentSchema {
collectionName: 'components_layout_card_details'; collectionName: 'components_dynamic_zone_details';
info: { info: {
displayName: 'card-details'; displayName: 'Details';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Details: Schema.Attribute.RichText &
Description: Schema.Attribute.RichText &
Schema.Attribute.CustomField< Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor', 'plugin::ckeditor5.CKEditor',
{ {
preset: 'default'; preset: 'default';
} }
>; >;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
}; };
} }
export interface LayoutAreasExpertise extends Struct.ComponentSchema { export interface DynamicZoneCard extends Struct.ComponentSchema {
collectionName: 'components_layout_areas_expertises'; collectionName: 'components_dynamic_zone_cards';
info: { info: {
displayName: 'AreasExpertise'; displayName: 'card';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Heading: Schema.Attribute.Component<'layout.heading', false>;
Description: Schema.Attribute.Text; carddetails: Schema.Attribute.Component<'layout.card-details', true>;
}; };
} }
export interface HomePeople extends Struct.ComponentSchema { export interface DynamicZoneBackground extends Struct.ComponentSchema {
collectionName: 'components_home_people'; collectionName: 'components_dynamic_zone_backgrounds';
info: { info: {
displayName: 'People'; displayName: 'RightsideImg';
description: ''; description: '';
}; };
attributes: { 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; Title: Schema.Attribute.String;
Description: 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>; CTA: Schema.Attribute.Component<'cta.cta', false>;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
}; };
} }
export interface HomeKnowledgeshack extends Struct.ComponentSchema { export interface DynamicZoneAbout extends Struct.ComponentSchema {
collectionName: 'components_home_knowledgeshacks'; collectionName: 'components_dynamic_zone_abouts';
info: { info: {
displayName: 'Knowledgeshack'; displayName: 'LeftsideImg';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.String; Subtitle: Schema.Attribute.String;
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';
}
>;
}; };
} }
export interface HomeIndustry extends Struct.ComponentSchema { export interface LayoutWhatwedo extends Struct.ComponentSchema {
collectionName: 'components_home_industries'; collectionName: 'components_layout_whatwedos';
info: { info: {
displayName: 'Industry'; displayName: 'Whatwedo';
description: ''; description: '';
}; };
attributes: { attributes: {
Subtitle: Schema.Attribute.String; Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Title: Schema.Attribute.String & 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>;
CTA: Schema.Attribute.Component<'cta.cta', true>;
}; };
} }
export interface HomeHome extends Struct.ComponentSchema { export interface LayoutWeofferList extends Struct.ComponentSchema {
collectionName: 'components_home_homes'; collectionName: 'components_layout_weoffer_lists';
info: { info: {
displayName: 'Home Banner'; displayName: 'WeofferList';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String & Schema.Attribute.Required; Title: Schema.Attribute.String;
Subtitle: Schema.Attribute.String; Button: Schema.Attribute.Component<'cta.cta', false>;
Description: Schema.Attribute.Text & Schema.Attribute.Required; ProductList: Schema.Attribute.Component<'layout.product-list', true>;
Mobilebanner: Schema.Attribute.Media<'images'>; Description: Schema.Attribute.Text;
Desktopbanner: Schema.Attribute.Media<'images'>;
BackgroundBanner: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>;
}; };
} }
export interface HomeAreasExpertiseTitle extends Struct.ComponentSchema { export interface LayoutWeOffer extends Struct.ComponentSchema {
collectionName: 'components_home_areas_expertise_titles'; collectionName: 'components_layout_we_offers';
info: { info: {
displayName: 'AreasExpertiseTitle'; displayName: 'WeOffer';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>; Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
};
}
export interface HomeAreaExpertiselists extends Struct.ComponentSchema {
collectionName: 'components_home_area_expertiselists';
info: {
displayName: 'AreaExpertiselists';
description: '';
};
attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>; CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface DynamicZoneWhatWedoBanner extends Struct.ComponentSchema { export interface LayoutTechnicalexpertise extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_what_wedo_banners'; collectionName: 'components_layout_technicalexpertises';
info: { info: {
displayName: 'WhatWedoBanner'; displayName: 'Technicalexpertise';
description: '';
}; };
attributes: { attributes: {
list: Schema.Attribute.Component<'dynamic-zone.list', true>; SectionTitle: Schema.Attribute.String;
CTA: Schema.Attribute.Component<'cta.cta', false>; Subtitle: Schema.Attribute.String;
BackgroundBanner: Schema.Attribute.Media< Technicallist: Schema.Attribute.Component<'layout.technicalexp-tab', true>;
'images' | 'files' | 'videos' | 'audios'
>;
Heading: Schema.Attribute.Component<'layout.heading', false>;
}; };
} }
export interface DynamicZoneWeOfferSec extends Struct.ComponentSchema { export interface LayoutTechnicalexpTab extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_we_offer_secs'; collectionName: 'components_layout_technicalexp_tabs';
info: { info: {
displayName: 'WeOfferSec'; displayName: 'TechnicalexpTab';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
WeOfferList: Schema.Attribute.Component<'layout.weoffer-list', true>; Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
};
}
export interface DynamicZoneVariantcard extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_variantcards';
info: {
displayName: 'Variantcard';
};
attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>;
carddetails: Schema.Attribute.Component<'layout.card-details', true>;
}; };
} }
export interface DynamicZoneText extends Struct.ComponentSchema { export interface LayoutTab extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_texts'; collectionName: 'components_layout_tabs';
info: { info: {
displayName: 'Content'; displayName: 'Tab';
description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; sectionTitle: Schema.Attribute.String;
Subtitle: Schema.Attribute.Text; shortDescription: Schema.Attribute.Text;
Description: Schema.Attribute.RichText & Image: Schema.Attribute.Media<'images'>;
Schema.Attribute.CustomField< CTA: Schema.Attribute.Component<'cta.cta', false>;
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface DynamicZoneTable extends Struct.ComponentSchema { export interface LayoutServicelist extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_tables'; collectionName: 'components_layout_servicelists';
info: { info: {
displayName: 'table'; displayName: 'Servicelist';
}; };
attributes: { attributes: {
tableData: Schema.Attribute.RichText & Title: Schema.Attribute.String;
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface DynamicZoneRulesList extends Struct.ComponentSchema { export interface LayoutProductList extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_rules_lists'; collectionName: 'components_layout_product_lists';
info: { info: {
displayName: 'RulesList'; displayName: 'ProductList';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
details: Schema.Attribute.Component<'dynamic-zone.details', false>; Button: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface DynamicZoneRulesApplication extends Struct.ComponentSchema { export interface LayoutPageBanner extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_rules_applications'; collectionName: 'components_layout_page_banners';
info: { info: {
displayName: 'RulesApplication'; displayName: 'PageBanner';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; Heading: Schema.Attribute.String;
Subheading: Schema.Attribute.String; Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
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 DynamicZoneList extends Struct.ComponentSchema { export interface LayoutOverview extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_lists'; collectionName: 'components_layout_overviews';
info: { info: {
displayName: 'List'; displayName: 'Overview';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: 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 DynamicZoneKeyfeature extends Struct.ComponentSchema { export interface LayoutListing extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_keyfeatures'; collectionName: 'components_layout_listings';
info: { info: {
displayName: 'KeyFeature'; displayName: 'listing';
description: ''; description: '';
}; };
attributes: { attributes: {
sectionTitle: Schema.Attribute.String; Title: Schema.Attribute.String;
SectionSubtitle: Schema.Attribute.String; category: Schema.Attribute.Component<'layout.categories-listing', true>;
KeyFeatureList: Schema.Attribute.Component<'dynamic-zone.fact-list', true>; date: Schema.Attribute.String;
}; };
} }
export interface DynamicZoneImage extends Struct.ComponentSchema { export interface LayoutIndustryOverview extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_images'; collectionName: 'components_layout_industry_overviews';
info: { info: {
displayName: 'Image'; displayName: 'IndustryOverview';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; subtitle: Schema.Attribute.String;
title: Schema.Attribute.String;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
DesktopImg: Schema.Attribute.Media< Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
'images' | 'files' | 'videos' | 'audios'
>;
MobileImg: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
}; };
} }
export interface DynamicZoneFaq extends Struct.ComponentSchema { export interface LayoutHeading extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_faqs'; collectionName: 'components_layout_headings';
info: { info: {
displayName: 'FAQ'; displayName: 'heading';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.Text; Subtitle: Schema.Attribute.String;
FAQList: Schema.Attribute.Component<'dynamic-zone.faq-list', true>; Description: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
Linkdin: Schema.Attribute.String;
}; };
} }
export interface DynamicZoneFaqList extends Struct.ComponentSchema { export interface LayoutFunctionalAreas extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_faq_lists'; collectionName: 'components_layout_functional_areas';
info: { info: {
displayName: 'FaqList'; displayName: 'FunctionalAreas';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text; Icon: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Description: Schema.Attribute.Text & Schema.Attribute.Required;
}; };
} }
export interface DynamicZoneFacts extends Struct.ComponentSchema { export interface LayoutFaqList extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_facts'; collectionName: 'components_layout_faq_lists';
info: { info: {
displayName: 'Facts'; displayName: 'FAQList';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Question: Schema.Attribute.String;
Subtitle: Schema.Attribute.Text; Description: Schema.Attribute.RichText &
FactList: Schema.Attribute.Component<'dynamic-zone.fact-list', true>; Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
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';
description: '';
}; };
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: {
Title: Schema.Attribute.String;
Icon: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
};
}
export interface LayoutCfoService extends Struct.ComponentSchema {
collectionName: 'components_layout_cfo_services';
info: {
displayName: 'CFOService';
description: ''; description: '';
}; };
attributes: { attributes: {
StepHeading: Schema.Attribute.String; IndustryServiceList: Schema.Attribute.Component<
StepDescription: Schema.Attribute.String; 'layout.cfo-service-tab',
StepImg: Schema.Attribute.Media<'images'>; true
>;
}; };
} }
export interface DynamicZoneDownloadBtn extends Struct.ComponentSchema { export interface LayoutCfoServiceTab extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_download_btns'; collectionName: 'components_layout_cfo_service_tabs';
info: { info: {
displayName: 'DownloadBtn'; displayName: 'CFOServiceTab';
description: ''; description: '';
}; };
attributes: { attributes: {
Subtitle: Schema.Attribute.String;
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.String; CfoList: Schema.Attribute.Component<'layout.cfolist', true>;
CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface DynamicZoneDetails extends Struct.ComponentSchema { export interface LayoutCategoriesListing extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_details'; collectionName: 'components_layout_categories_listings';
info: { info: {
displayName: 'Details'; displayName: 'categoriesListing';
}; };
attributes: { attributes: {
Details: Schema.Attribute.RichText & img: Schema.Attribute.Media<'images' | 'files'>;
Schema.Attribute.CustomField< name: Schema.Attribute.String;
'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';
description: '';
}; };
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: ''; 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'>; 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'>;
CTA: Schema.Attribute.Component<'cta.cta', false>;
Content: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
...@@ -933,34 +957,6 @@ declare module '@strapi/strapi' { ...@@ -933,34 +957,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;
'people.team-member': PeopleTeamMember;
'people.team-leads': PeopleTeamLeads;
'people.people-list': PeoplePeopleList;
'people.overview': PeopleOverview;
'people.advisory-board': PeopleAdvisoryBoard;
'layout.whatwedo': LayoutWhatwedo;
'layout.weoffer-list': LayoutWeofferList;
'layout.we-offer': LayoutWeOffer;
'layout.technicalexpertise': LayoutTechnicalexpertise;
'layout.technicalexp-tab': LayoutTechnicalexpTab;
'layout.tab': LayoutTab;
'layout.servicelist': LayoutServicelist;
'layout.product-list': LayoutProductList;
'layout.page-banner': LayoutPageBanner;
'layout.overview': LayoutOverview;
'layout.industry-overview': LayoutIndustryOverview;
'layout.heading': LayoutHeading;
'layout.functional-areas': LayoutFunctionalAreas;
'layout.faq-list': LayoutFaqList;
'layout.cta-banner': LayoutCtaBanner;
'layout.conversion-code': LayoutConversionCode;
'layout.clientel': LayoutClientel;
'layout.cfolist': LayoutCfolist;
'layout.cfo-service': LayoutCfoService;
'layout.cfo-service-tab': LayoutCfoServiceTab;
'layout.card': LayoutCard;
'layout.card-details': LayoutCardDetails;
'layout.areas-expertise': LayoutAreasExpertise;
'home.people': HomePeople; 'home.people': HomePeople;
'home.knowlege-tab': HomeKnowlegeTab; 'home.knowlege-tab': HomeKnowlegeTab;
'home.knowledgeshack': HomeKnowledgeshack; 'home.knowledgeshack': HomeKnowledgeshack;
...@@ -968,6 +964,11 @@ declare module '@strapi/strapi' { ...@@ -968,6 +964,11 @@ declare module '@strapi/strapi' {
'home.home': HomeHome; 'home.home': HomeHome;
'home.areas-expertise-title': HomeAreasExpertiseTitle; 'home.areas-expertise-title': HomeAreasExpertiseTitle;
'home.area-expertiselists': HomeAreaExpertiselists; 'home.area-expertiselists': HomeAreaExpertiselists;
'people.team-member': PeopleTeamMember;
'people.team-leads': PeopleTeamLeads;
'people.people-list': PeoplePeopleList;
'people.overview': PeopleOverview;
'people.advisory-board': PeopleAdvisoryBoard;
'dynamic-zone.what-wedo-banner': DynamicZoneWhatWedoBanner; 'dynamic-zone.what-wedo-banner': DynamicZoneWhatWedoBanner;
'dynamic-zone.we-offer-sec': DynamicZoneWeOfferSec; 'dynamic-zone.we-offer-sec': DynamicZoneWeOfferSec;
'dynamic-zone.variantcard': DynamicZoneVariantcard; 'dynamic-zone.variantcard': DynamicZoneVariantcard;
...@@ -990,6 +991,31 @@ declare module '@strapi/strapi' { ...@@ -990,6 +991,31 @@ declare module '@strapi/strapi' {
'dynamic-zone.card': DynamicZoneCard; 'dynamic-zone.card': DynamicZoneCard;
'dynamic-zone.background': DynamicZoneBackground; 'dynamic-zone.background': DynamicZoneBackground;
'dynamic-zone.about': DynamicZoneAbout; 'dynamic-zone.about': DynamicZoneAbout;
'layout.whatwedo': LayoutWhatwedo;
'layout.weoffer-list': LayoutWeofferList;
'layout.we-offer': LayoutWeOffer;
'layout.technicalexpertise': LayoutTechnicalexpertise;
'layout.technicalexp-tab': LayoutTechnicalexpTab;
'layout.tab': LayoutTab;
'layout.servicelist': LayoutServicelist;
'layout.product-list': LayoutProductList;
'layout.page-banner': LayoutPageBanner;
'layout.overview': LayoutOverview;
'layout.listing': LayoutListing;
'layout.industry-overview': LayoutIndustryOverview;
'layout.heading': LayoutHeading;
'layout.functional-areas': LayoutFunctionalAreas;
'layout.faq-list': LayoutFaqList;
'layout.cta-banner': LayoutCtaBanner;
'layout.conversion-code': LayoutConversionCode;
'layout.clientel': LayoutClientel;
'layout.cfolist': LayoutCfolist;
'layout.cfo-service': LayoutCfoService;
'layout.cfo-service-tab': LayoutCfoServiceTab;
'layout.categories-listing': LayoutCategoriesListing;
'layout.card': LayoutCard;
'layout.card-details': LayoutCardDetails;
'layout.areas-expertise': LayoutAreasExpertise;
'cta.cta': CtaCta; 'cta.cta': CtaCta;
} }
} }
......
...@@ -531,6 +531,37 @@ export interface ApiAdvisoryServicesPageAdvisoryServicesPage ...@@ -531,6 +531,37 @@ export interface ApiAdvisoryServicesPageAdvisoryServicesPage
}; };
} }
export interface ApiAnnualReportsAnnualReports extends Struct.SingleTypeSchema {
collectionName: 'annual_report';
info: {
singularName: 'annual-reports';
pluralName: 'annual-report';
displayName: 'Annual Reports';
description: '';
};
options: {
draftAndPublish: true;
};
attributes: {
seo: Schema.Attribute.Component<'shared.seo', false>;
Banner: Schema.Attribute.Component<'layout.page-banner', false>;
Listing: Schema.Attribute.Component<'layout.listing', true>;
createdAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime;
publishedAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<
'oneToMany',
'api::annual-reports.annual-reports'
> &
Schema.Attribute.Private;
};
}
export interface ApiApcApc extends Struct.SingleTypeSchema { export interface ApiApcApc extends Struct.SingleTypeSchema {
collectionName: 'apcs'; collectionName: 'apcs';
info: { info: {
...@@ -2227,6 +2258,7 @@ declare module '@strapi/strapi' { ...@@ -2227,6 +2258,7 @@ declare module '@strapi/strapi' {
'plugin::users-permissions.role': PluginUsersPermissionsRole; 'plugin::users-permissions.role': PluginUsersPermissionsRole;
'plugin::users-permissions.user': PluginUsersPermissionsUser; 'plugin::users-permissions.user': PluginUsersPermissionsUser;
'api::advisory-services-page.advisory-services-page': ApiAdvisoryServicesPageAdvisoryServicesPage; 'api::advisory-services-page.advisory-services-page': ApiAdvisoryServicesPageAdvisoryServicesPage;
'api::annual-reports.annual-reports': ApiAnnualReportsAnnualReports;
'api::apc.apc': ApiApcApc; 'api::apc.apc': ApiApcApc;
'api::article.article': ApiArticleArticle; 'api::article.article': ApiArticleArticle;
'api::author.author': ApiAuthorAuthor; 'api::author.author': ApiAuthorAuthor;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!