53 lines
2.0 KiB
TypeScript
53 lines
2.0 KiB
TypeScript
// Interface automatically generated by schemas-to-ts
|
|
|
|
import { YogaContactUs } from './yoga-contact-us';
|
|
import { YogaGoogleMapsComponent } from './yoga-google-maps-component';
|
|
import { YogaSubscribeNowComponent } from './yoga-subscribe-now-component';
|
|
import { YogaFooter } from './yoga-footer';
|
|
import { YogaContactUs_Plain } from './yoga-contact-us';
|
|
import { YogaGoogleMapsComponent_Plain } from './yoga-google-maps-component';
|
|
import { YogaSubscribeNowComponent_Plain } from './yoga-subscribe-now-component';
|
|
import { YogaFooter_Plain } from './yoga-footer';
|
|
import { AdminPanelRelationPropertyModification } from '../common/AdminPanelRelationPropertyModification';
|
|
|
|
export interface ContactPage {
|
|
id: number;
|
|
attributes: {
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; header?: string;
|
|
description?: string;
|
|
contactUs?: { data: YogaContactUs };
|
|
google_maps?: { data: YogaGoogleMapsComponent };
|
|
subscribe?: { data: YogaSubscribeNowComponent };
|
|
footer?: { data: YogaFooter };
|
|
};
|
|
}
|
|
export interface ContactPage_Plain {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; header?: string;
|
|
description?: string;
|
|
contactUs?: YogaContactUs_Plain;
|
|
google_maps?: YogaGoogleMapsComponent_Plain;
|
|
subscribe?: YogaSubscribeNowComponent_Plain;
|
|
footer?: YogaFooter_Plain;
|
|
}
|
|
|
|
export interface ContactPage_NoRelations {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; header?: string;
|
|
description?: string;
|
|
contactUs?: number;
|
|
google_maps?: number;
|
|
subscribe?: number;
|
|
footer?: number;
|
|
}
|
|
|
|
export interface ContactPage_AdminPanelLifeCycle {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; header?: string;
|
|
description?: string;
|
|
contactUs?: AdminPanelRelationPropertyModification<YogaContactUs_Plain>;
|
|
google_maps?: AdminPanelRelationPropertyModification<YogaGoogleMapsComponent_Plain>;
|
|
subscribe?: AdminPanelRelationPropertyModification<YogaSubscribeNowComponent_Plain>;
|
|
footer?: AdminPanelRelationPropertyModification<YogaFooter_Plain>;
|
|
}
|