Commit e38dd80e by sujata

google tag manger

1 parent e885bac1
{
"collectionName": "components_google_manger_google_mangers",
"info": {
"displayName": "GoogleManger"
},
"options": {},
"attributes": {
"GtmTag": {
"type": "string"
}
}
}
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: {
...@@ -281,71 +346,6 @@ export interface LayoutAreasExpertise extends Struct.ComponentSchema { ...@@ -281,71 +346,6 @@ export interface LayoutAreasExpertise extends Struct.ComponentSchema {
}; };
} }
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 HomePeople extends Struct.ComponentSchema { export interface HomePeople extends Struct.ComponentSchema {
collectionName: 'components_home_people'; collectionName: 'components_home_people';
info: { info: {
...@@ -417,20 +417,13 @@ export interface HomeHome extends Struct.ComponentSchema { ...@@ -417,20 +417,13 @@ export interface HomeHome extends Struct.ComponentSchema {
}; };
} }
export interface CtaCta extends Struct.ComponentSchema { export interface GoogleMangerGoogleManger extends Struct.ComponentSchema {
collectionName: 'components_cta_ctas'; collectionName: 'components_google_manger_google_mangers';
info: { info: {
displayName: 'CTA'; displayName: 'GoogleManger';
}; };
attributes: { attributes: {
text: Schema.Attribute.String & GtmTag: Schema.Attribute.String;
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']>;
}; };
} }
...@@ -622,9 +615,31 @@ export interface DynamicZoneAbout extends Struct.ComponentSchema { ...@@ -622,9 +615,31 @@ export interface DynamicZoneAbout extends Struct.ComponentSchema {
}; };
} }
export interface CtaCta extends Struct.ComponentSchema {
collectionName: 'components_cta_ctas';
info: {
displayName: 'CTA';
};
attributes: {
text: Schema.Attribute.String &
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']>;
};
}
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;
...@@ -646,17 +661,12 @@ declare module '@strapi/strapi' { ...@@ -646,17 +661,12 @@ declare module '@strapi/strapi' {
'layout.cfo-service': LayoutCfoService; 'layout.cfo-service': LayoutCfoService;
'layout.cfo-service-tab': LayoutCfoServiceTab; 'layout.cfo-service-tab': LayoutCfoServiceTab;
'layout.areas-expertise': LayoutAreasExpertise; 'layout.areas-expertise': LayoutAreasExpertise;
'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;
'cta.cta': CtaCta; 'google-manger.google-manger': GoogleMangerGoogleManger;
'dynamic-zone.table': DynamicZoneTable; 'dynamic-zone.table': DynamicZoneTable;
'dynamic-zone.rules-list': DynamicZoneRulesList; 'dynamic-zone.rules-list': DynamicZoneRulesList;
'dynamic-zone.rules-application': DynamicZoneRulesApplication; 'dynamic-zone.rules-application': DynamicZoneRulesApplication;
...@@ -670,6 +680,7 @@ declare module '@strapi/strapi' { ...@@ -670,6 +680,7 @@ declare module '@strapi/strapi' {
'dynamic-zone.details': DynamicZoneDetails; 'dynamic-zone.details': DynamicZoneDetails;
'dynamic-zone.background': DynamicZoneBackground; 'dynamic-zone.background': DynamicZoneBackground;
'dynamic-zone.about': DynamicZoneAbout; 'dynamic-zone.about': DynamicZoneAbout;
'cta.cta': CtaCta;
} }
} }
} }
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!