blog component

This commit is contained in:
Schneider Roland
2025-01-20 22:21:03 +01:00
parent 1437ba2fe3
commit a068aeb375
38 changed files with 1679 additions and 44 deletions

View File

@@ -0,0 +1,42 @@
// Interface automatically generated by schemas-to-ts
import { YogaBlogPost } from './yoga-blog-post';
import { YogaBlogPost_Plain } from './yoga-blog-post';
import { AdminPanelRelationPropertyModification } from '../common/AdminPanelRelationPropertyModification';
export interface YogaBlogPostsComponent {
id: number;
attributes: {
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
title?: string;
header?: string;
description?: string;
posts: { data: YogaBlogPost[] };
};
}
export interface YogaBlogPostsComponent_Plain {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
title?: string;
header?: string;
description?: string;
posts: YogaBlogPost_Plain[];
}
export interface YogaBlogPostsComponent_NoRelations {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
title?: string;
header?: string;
description?: string;
posts: number[];
}
export interface YogaBlogPostsComponent_AdminPanelLifeCycle {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
title?: string;
header?: string;
description?: string;
posts: AdminPanelRelationPropertyModification<YogaBlogPost_Plain>;
}