43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
// Interface automatically generated by schemas-to-ts
|
|
|
|
import { YogaAchivement } from './yoga-achivement';
|
|
import { YogaAchivement_Plain } from './yoga-achivement';
|
|
import { AdminPanelRelationPropertyModification } from '../common/AdminPanelRelationPropertyModification';
|
|
|
|
export interface YogaAchivementsComponent {
|
|
id: number;
|
|
attributes: {
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
|
header?: string;
|
|
description?: string;
|
|
name?: string;
|
|
achievements: { data: YogaAchivement[] };
|
|
};
|
|
}
|
|
export interface YogaAchivementsComponent_Plain {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
|
header?: string;
|
|
description?: string;
|
|
name?: string;
|
|
achievements: YogaAchivement_Plain[];
|
|
}
|
|
|
|
export interface YogaAchivementsComponent_NoRelations {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
|
header?: string;
|
|
description?: string;
|
|
name?: string;
|
|
achievements: number[];
|
|
}
|
|
|
|
export interface YogaAchivementsComponent_AdminPanelLifeCycle {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
|
header?: string;
|
|
description?: string;
|
|
name?: string;
|
|
achievements: AdminPanelRelationPropertyModification<YogaAchivement_Plain>;
|
|
}
|