|
|
@@ -381,17 +381,26 @@ export interface ApiFooterContentPageFooterContentPage
|
|
|
options: {
|
|
|
draftAndPublish: true;
|
|
|
};
|
|
|
+ pluginOptions: {
|
|
|
+ i18n: {
|
|
|
+ localized: 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;
|
|
|
+ Label: Schema.Attribute.String &
|
|
|
+ Schema.Attribute.SetPluginOptions<{
|
|
|
+ i18n: {
|
|
|
+ localized: true;
|
|
|
+ };
|
|
|
+ }>;
|
|
|
+ locale: Schema.Attribute.String;
|
|
|
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;
|
|
|
@@ -403,6 +412,7 @@ export interface ApiFooterContentPageFooterContentPage
|
|
|
export interface ApiHotelHotel extends Struct.CollectionTypeSchema {
|
|
|
collectionName: 'hotels';
|
|
|
info: {
|
|
|
+ description: '';
|
|
|
displayName: 'Hotel';
|
|
|
pluralName: 'hotels';
|
|
|
singularName: 'hotel';
|
|
|
@@ -410,15 +420,29 @@ export interface ApiHotelHotel extends Struct.CollectionTypeSchema {
|
|
|
options: {
|
|
|
draftAndPublish: true;
|
|
|
};
|
|
|
+ pluginOptions: {
|
|
|
+ i18n: {
|
|
|
+ localized: 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;
|
|
|
+ Description: Schema.Attribute.Blocks &
|
|
|
+ Schema.Attribute.SetPluginOptions<{
|
|
|
+ i18n: {
|
|
|
+ localized: true;
|
|
|
+ };
|
|
|
+ }>;
|
|
|
+ locale: Schema.Attribute.String;
|
|
|
+ localizations: Schema.Attribute.Relation<'oneToMany', 'api::hotel.hotel'>;
|
|
|
+ Name: Schema.Attribute.String &
|
|
|
+ Schema.Attribute.SetPluginOptions<{
|
|
|
+ i18n: {
|
|
|
+ localized: true;
|
|
|
+ };
|
|
|
+ }>;
|
|
|
publishedAt: Schema.Attribute.DateTime;
|
|
|
updatedAt: Schema.Attribute.DateTime;
|
|
|
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
|
|
@@ -429,6 +453,7 @@ export interface ApiHotelHotel extends Struct.CollectionTypeSchema {
|
|
|
export interface ApiNavigationNavigation extends Struct.CollectionTypeSchema {
|
|
|
collectionName: 'navigations';
|
|
|
info: {
|
|
|
+ description: '';
|
|
|
displayName: 'Navigation';
|
|
|
pluralName: 'navigations';
|
|
|
singularName: 'navigation';
|
|
|
@@ -436,17 +461,26 @@ export interface ApiNavigationNavigation extends Struct.CollectionTypeSchema {
|
|
|
options: {
|
|
|
draftAndPublish: true;
|
|
|
};
|
|
|
+ pluginOptions: {
|
|
|
+ i18n: {
|
|
|
+ localized: 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;
|
|
|
+ Label: Schema.Attribute.String &
|
|
|
+ Schema.Attribute.SetPluginOptions<{
|
|
|
+ i18n: {
|
|
|
+ localized: true;
|
|
|
+ };
|
|
|
+ }>;
|
|
|
+ locale: Schema.Attribute.String;
|
|
|
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;
|
|
|
@@ -458,6 +492,7 @@ export interface ApiNavigationNavigation extends Struct.CollectionTypeSchema {
|
|
|
export interface ApiPagePage extends Struct.CollectionTypeSchema {
|
|
|
collectionName: 'pages';
|
|
|
info: {
|
|
|
+ description: '';
|
|
|
displayName: 'Page';
|
|
|
pluralName: 'pages';
|
|
|
singularName: 'page';
|
|
|
@@ -465,16 +500,31 @@ export interface ApiPagePage extends Struct.CollectionTypeSchema {
|
|
|
options: {
|
|
|
draftAndPublish: true;
|
|
|
};
|
|
|
+ pluginOptions: {
|
|
|
+ i18n: {
|
|
|
+ localized: true;
|
|
|
+ };
|
|
|
+ };
|
|
|
attributes: {
|
|
|
- Content: Schema.Attribute.Blocks;
|
|
|
+ Content: Schema.Attribute.Blocks &
|
|
|
+ Schema.Attribute.SetPluginOptions<{
|
|
|
+ i18n: {
|
|
|
+ localized: true;
|
|
|
+ };
|
|
|
+ }>;
|
|
|
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;
|
|
|
+ locale: Schema.Attribute.String;
|
|
|
+ localizations: Schema.Attribute.Relation<'oneToMany', 'api::page.page'>;
|
|
|
+ OtherContent: Schema.Attribute.RichText;
|
|
|
publishedAt: Schema.Attribute.DateTime;
|
|
|
- Title: Schema.Attribute.String;
|
|
|
+ Title: Schema.Attribute.String &
|
|
|
+ Schema.Attribute.SetPluginOptions<{
|
|
|
+ i18n: {
|
|
|
+ localized: true;
|
|
|
+ };
|
|
|
+ }>;
|
|
|
updatedAt: Schema.Attribute.DateTime;
|
|
|
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
|
|
Schema.Attribute.Private;
|
|
|
@@ -484,6 +534,7 @@ export interface ApiPagePage extends Struct.CollectionTypeSchema {
|
|
|
export interface ApiTimelineTimeline extends Struct.CollectionTypeSchema {
|
|
|
collectionName: 'timelines';
|
|
|
info: {
|
|
|
+ description: '';
|
|
|
displayName: 'Timeline';
|
|
|
pluralName: 'timelines';
|
|
|
singularName: 'timeline';
|
|
|
@@ -491,20 +542,44 @@ export interface ApiTimelineTimeline extends Struct.CollectionTypeSchema {
|
|
|
options: {
|
|
|
draftAndPublish: true;
|
|
|
};
|
|
|
+ pluginOptions: {
|
|
|
+ i18n: {
|
|
|
+ localized: true;
|
|
|
+ };
|
|
|
+ };
|
|
|
attributes: {
|
|
|
createdAt: Schema.Attribute.DateTime;
|
|
|
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
|
|
Schema.Attribute.Private;
|
|
|
- date: Schema.Attribute.Date;
|
|
|
- discription: Schema.Attribute.Text;
|
|
|
- icon: Schema.Attribute.Media<'images' | 'files'>;
|
|
|
- label: Schema.Attribute.String;
|
|
|
- locale: Schema.Attribute.String & Schema.Attribute.Private;
|
|
|
+ date: Schema.Attribute.Date &
|
|
|
+ Schema.Attribute.SetPluginOptions<{
|
|
|
+ i18n: {
|
|
|
+ localized: true;
|
|
|
+ };
|
|
|
+ }>;
|
|
|
+ discription: Schema.Attribute.Text &
|
|
|
+ Schema.Attribute.SetPluginOptions<{
|
|
|
+ i18n: {
|
|
|
+ localized: true;
|
|
|
+ };
|
|
|
+ }>;
|
|
|
+ icon: Schema.Attribute.Media<'images' | 'files'> &
|
|
|
+ Schema.Attribute.SetPluginOptions<{
|
|
|
+ i18n: {
|
|
|
+ localized: true;
|
|
|
+ };
|
|
|
+ }>;
|
|
|
+ label: Schema.Attribute.String &
|
|
|
+ Schema.Attribute.SetPluginOptions<{
|
|
|
+ i18n: {
|
|
|
+ localized: true;
|
|
|
+ };
|
|
|
+ }>;
|
|
|
+ locale: Schema.Attribute.String;
|
|
|
localizations: Schema.Attribute.Relation<
|
|
|
'oneToMany',
|
|
|
'api::timeline.timeline'
|
|
|
- > &
|
|
|
- Schema.Attribute.Private;
|
|
|
+ >;
|
|
|
publishedAt: Schema.Attribute.DateTime;
|
|
|
updatedAt: Schema.Attribute.DateTime;
|
|
|
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|