|
@@ -369,6 +369,118 @@ export interface AdminUser extends Struct.CollectionTypeSchema {
|
|
|
};
|
|
};
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+export interface ApiFooterContentPageFooterContentPage
|
|
|
|
|
+ extends Struct.CollectionTypeSchema {
|
|
|
|
|
+ collectionName: 'footer_content_pages';
|
|
|
|
|
+ info: {
|
|
|
|
|
+ description: '';
|
|
|
|
|
+ displayName: 'FooterContentPage';
|
|
|
|
|
+ pluralName: 'footer-content-pages';
|
|
|
|
|
+ singularName: 'footer-content-page';
|
|
|
|
|
+ };
|
|
|
|
|
+ options: {
|
|
|
|
|
+ draftAndPublish: true;
|
|
|
|
|
+ };
|
|
|
|
|
+ attributes: {
|
|
|
|
|
+ createdAt: Schema.Attribute.DateTime;
|
|
|
|
|
+ createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
|
|
|
|
+ Schema.Attribute.Private;
|
|
|
|
|
+ Label: Schema.Attribute.String;
|
|
|
|
|
+ locale: Schema.Attribute.String & Schema.Attribute.Private;
|
|
|
|
|
+ localizations: Schema.Attribute.Relation<
|
|
|
|
|
+ 'oneToMany',
|
|
|
|
|
+ 'api::footer-content-page.footer-content-page'
|
|
|
|
|
+ > &
|
|
|
|
|
+ Schema.Attribute.Private;
|
|
|
|
|
+ page: Schema.Attribute.Relation<'oneToOne', 'api::page.page'>;
|
|
|
|
|
+ publishedAt: Schema.Attribute.DateTime;
|
|
|
|
|
+ updatedAt: Schema.Attribute.DateTime;
|
|
|
|
|
+ updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
|
|
|
|
+ Schema.Attribute.Private;
|
|
|
|
|
+ };
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+export interface ApiHotelHotel extends Struct.CollectionTypeSchema {
|
|
|
|
|
+ collectionName: 'hotels';
|
|
|
|
|
+ info: {
|
|
|
|
|
+ displayName: 'Hotel';
|
|
|
|
|
+ pluralName: 'hotels';
|
|
|
|
|
+ singularName: 'hotel';
|
|
|
|
|
+ };
|
|
|
|
|
+ options: {
|
|
|
|
|
+ draftAndPublish: true;
|
|
|
|
|
+ };
|
|
|
|
|
+ attributes: {
|
|
|
|
|
+ createdAt: Schema.Attribute.DateTime;
|
|
|
|
|
+ createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
|
|
|
|
+ Schema.Attribute.Private;
|
|
|
|
|
+ Description: Schema.Attribute.Blocks;
|
|
|
|
|
+ locale: Schema.Attribute.String & Schema.Attribute.Private;
|
|
|
|
|
+ localizations: Schema.Attribute.Relation<'oneToMany', 'api::hotel.hotel'> &
|
|
|
|
|
+ Schema.Attribute.Private;
|
|
|
|
|
+ Name: Schema.Attribute.String;
|
|
|
|
|
+ publishedAt: Schema.Attribute.DateTime;
|
|
|
|
|
+ updatedAt: Schema.Attribute.DateTime;
|
|
|
|
|
+ updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
|
|
|
|
+ Schema.Attribute.Private;
|
|
|
|
|
+ };
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+export interface ApiNavigationNavigation extends Struct.CollectionTypeSchema {
|
|
|
|
|
+ collectionName: 'navigations';
|
|
|
|
|
+ info: {
|
|
|
|
|
+ displayName: 'Navigation';
|
|
|
|
|
+ pluralName: 'navigations';
|
|
|
|
|
+ singularName: 'navigation';
|
|
|
|
|
+ };
|
|
|
|
|
+ options: {
|
|
|
|
|
+ draftAndPublish: true;
|
|
|
|
|
+ };
|
|
|
|
|
+ attributes: {
|
|
|
|
|
+ createdAt: Schema.Attribute.DateTime;
|
|
|
|
|
+ createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
|
|
|
|
+ Schema.Attribute.Private;
|
|
|
|
|
+ Label: Schema.Attribute.String;
|
|
|
|
|
+ locale: Schema.Attribute.String & Schema.Attribute.Private;
|
|
|
|
|
+ localizations: Schema.Attribute.Relation<
|
|
|
|
|
+ 'oneToMany',
|
|
|
|
|
+ 'api::navigation.navigation'
|
|
|
|
|
+ > &
|
|
|
|
|
+ Schema.Attribute.Private;
|
|
|
|
|
+ page: Schema.Attribute.Relation<'oneToOne', 'api::page.page'>;
|
|
|
|
|
+ publishedAt: Schema.Attribute.DateTime;
|
|
|
|
|
+ updatedAt: Schema.Attribute.DateTime;
|
|
|
|
|
+ updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
|
|
|
|
+ Schema.Attribute.Private;
|
|
|
|
|
+ };
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+export interface ApiPagePage extends Struct.CollectionTypeSchema {
|
|
|
|
|
+ collectionName: 'pages';
|
|
|
|
|
+ info: {
|
|
|
|
|
+ displayName: 'Page';
|
|
|
|
|
+ pluralName: 'pages';
|
|
|
|
|
+ singularName: 'page';
|
|
|
|
|
+ };
|
|
|
|
|
+ options: {
|
|
|
|
|
+ draftAndPublish: true;
|
|
|
|
|
+ };
|
|
|
|
|
+ attributes: {
|
|
|
|
|
+ Content: Schema.Attribute.Blocks;
|
|
|
|
|
+ createdAt: Schema.Attribute.DateTime;
|
|
|
|
|
+ createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
|
|
|
|
+ Schema.Attribute.Private;
|
|
|
|
|
+ locale: Schema.Attribute.String & Schema.Attribute.Private;
|
|
|
|
|
+ localizations: Schema.Attribute.Relation<'oneToMany', 'api::page.page'> &
|
|
|
|
|
+ Schema.Attribute.Private;
|
|
|
|
|
+ publishedAt: Schema.Attribute.DateTime;
|
|
|
|
|
+ Title: Schema.Attribute.String;
|
|
|
|
|
+ updatedAt: Schema.Attribute.DateTime;
|
|
|
|
|
+ updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
|
|
|
|
+ Schema.Attribute.Private;
|
|
|
|
|
+ };
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
export interface ApiTimelineTimeline extends Struct.CollectionTypeSchema {
|
|
export interface ApiTimelineTimeline extends Struct.CollectionTypeSchema {
|
|
|
collectionName: 'timelines';
|
|
collectionName: 'timelines';
|
|
|
info: {
|
|
info: {
|
|
@@ -908,6 +1020,10 @@ declare module '@strapi/strapi' {
|
|
|
'admin::transfer-token': AdminTransferToken;
|
|
'admin::transfer-token': AdminTransferToken;
|
|
|
'admin::transfer-token-permission': AdminTransferTokenPermission;
|
|
'admin::transfer-token-permission': AdminTransferTokenPermission;
|
|
|
'admin::user': AdminUser;
|
|
'admin::user': AdminUser;
|
|
|
|
|
+ 'api::footer-content-page.footer-content-page': ApiFooterContentPageFooterContentPage;
|
|
|
|
|
+ 'api::hotel.hotel': ApiHotelHotel;
|
|
|
|
|
+ 'api::navigation.navigation': ApiNavigationNavigation;
|
|
|
|
|
+ 'api::page.page': ApiPagePage;
|
|
|
'api::timeline.timeline': ApiTimelineTimeline;
|
|
'api::timeline.timeline': ApiTimelineTimeline;
|
|
|
'plugin::content-releases.release': PluginContentReleasesRelease;
|
|
'plugin::content-releases.release': PluginContentReleasesRelease;
|
|
|
'plugin::content-releases.release-action': PluginContentReleasesReleaseAction;
|
|
'plugin::content-releases.release-action': PluginContentReleasesReleaseAction;
|