add prices page
This commit is contained in:
50
yoga-cms/types/generated/contentTypes.d.ts
vendored
50
yoga-cms/types/generated/contentTypes.d.ts
vendored
@@ -700,6 +700,55 @@ export interface ApiPersonPerson extends Struct.SingleTypeSchema {
|
||||
};
|
||||
}
|
||||
|
||||
export interface ApiPricesPagePricesPage extends Struct.SingleTypeSchema {
|
||||
collectionName: 'prices_pages';
|
||||
info: {
|
||||
displayName: 'PricesPage';
|
||||
pluralName: 'prices-pages';
|
||||
singularName: 'prices-page';
|
||||
};
|
||||
options: {
|
||||
draftAndPublish: true;
|
||||
};
|
||||
attributes: {
|
||||
blogs: Schema.Attribute.Relation<
|
||||
'oneToOne',
|
||||
'api::yoga-blog-posts-component.yoga-blog-posts-component'
|
||||
>;
|
||||
createdAt: Schema.Attribute.DateTime;
|
||||
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
||||
Schema.Attribute.Private;
|
||||
description: Schema.Attribute.Text;
|
||||
discount: Schema.Attribute.Relation<
|
||||
'oneToOne',
|
||||
'api::yoga-discount-component.yoga-discount-component'
|
||||
>;
|
||||
footer: Schema.Attribute.Relation<
|
||||
'oneToOne',
|
||||
'api::yoga-footer.yoga-footer'
|
||||
>;
|
||||
header: Schema.Attribute.String;
|
||||
locale: Schema.Attribute.String & Schema.Attribute.Private;
|
||||
localizations: Schema.Attribute.Relation<
|
||||
'oneToMany',
|
||||
'api::prices-page.prices-page'
|
||||
> &
|
||||
Schema.Attribute.Private;
|
||||
price: Schema.Attribute.Relation<
|
||||
'oneToOne',
|
||||
'api::yoga-price-component.yoga-price-component'
|
||||
>;
|
||||
publishedAt: Schema.Attribute.DateTime;
|
||||
subscribe: Schema.Attribute.Relation<
|
||||
'oneToOne',
|
||||
'api::yoga-subscribe-now-component.yoga-subscribe-now-component'
|
||||
>;
|
||||
updatedAt: Schema.Attribute.DateTime;
|
||||
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
||||
Schema.Attribute.Private;
|
||||
};
|
||||
}
|
||||
|
||||
export interface ApiServicesPageServicesPage extends Struct.SingleTypeSchema {
|
||||
collectionName: 'services_pages';
|
||||
info: {
|
||||
@@ -2252,6 +2301,7 @@ declare module '@strapi/strapi' {
|
||||
'api::home.home': ApiHomeHome;
|
||||
'api::page.page': ApiPagePage;
|
||||
'api::person.person': ApiPersonPerson;
|
||||
'api::prices-page.prices-page': ApiPricesPagePricesPage;
|
||||
'api::services-page.services-page': ApiServicesPageServicesPage;
|
||||
'api::yoga-about-us-component.yoga-about-us-component': ApiYogaAboutUsComponentYogaAboutUsComponent;
|
||||
'api::yoga-about-us-with-boxes-component.yoga-about-us-with-boxes-component': ApiYogaAboutUsWithBoxesComponentYogaAboutUsWithBoxesComponent;
|
||||
|
||||
Reference in New Issue
Block a user