Commit 7a923e35 by sujata

client services compoent update

1 parent ef899e3f
...@@ -32,6 +32,16 @@ ...@@ -32,6 +32,16 @@
"type": "component", "type": "component",
"repeatable": true, "repeatable": true,
"component": "home.industry" "component": "home.industry"
},
"Overview": {
"type": "component",
"repeatable": false,
"component": "dynamic-zone.background"
},
"seo": {
"type": "component",
"repeatable": false,
"component": "shared.seo"
} }
} }
} }
...@@ -442,23 +442,6 @@ export interface HomeHome extends Struct.ComponentSchema { ...@@ -442,23 +442,6 @@ export interface HomeHome 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']>;
};
}
export interface DynamicZoneTable extends Struct.ComponentSchema { export interface DynamicZoneTable extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_tables'; collectionName: 'components_dynamic_zone_tables';
info: { info: {
...@@ -647,6 +630,23 @@ export interface DynamicZoneAbout extends Struct.ComponentSchema { ...@@ -647,6 +630,23 @@ 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 {
...@@ -683,7 +683,6 @@ declare module '@strapi/strapi' { ...@@ -683,7 +683,6 @@ declare module '@strapi/strapi' {
'home.knowledgeshack': HomeKnowledgeshack; 'home.knowledgeshack': HomeKnowledgeshack;
'home.industry': HomeIndustry; 'home.industry': HomeIndustry;
'home.home': HomeHome; 'home.home': HomeHome;
'cta.cta': CtaCta;
'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;
...@@ -697,6 +696,7 @@ declare module '@strapi/strapi' { ...@@ -697,6 +696,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;
} }
} }
} }
...@@ -962,6 +962,8 @@ export interface ApiClientServicingClientServicing ...@@ -962,6 +962,8 @@ export interface ApiClientServicingClientServicing
true true
>; >;
Industry: Schema.Attribute.Component<'home.industry', true>; Industry: Schema.Attribute.Component<'home.industry', true>;
Overview: Schema.Attribute.Component<'dynamic-zone.background', false>;
seo: Schema.Attribute.Component<'shared.seo', false>;
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!