convert about types from component to collection-type
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
// Interface automatically generated by schemas-to-ts
|
||||
|
||||
import { Media } from '../components/shared/Media';
|
||||
import { Media_Plain } from '../components/shared/Media';
|
||||
import { AdminPanelRelationPropertyModification } from '../common/AdminPanelRelationPropertyModification';
|
||||
|
||||
export interface YogaCustomerFeedback {
|
||||
id: number;
|
||||
attributes: {
|
||||
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
|
||||
customerName?: string;
|
||||
feedback?: string;
|
||||
customerImage?: { data: Media };
|
||||
customerDescription?: string;
|
||||
};
|
||||
}
|
||||
export interface YogaCustomerFeedback_Plain {
|
||||
id: number;
|
||||
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
|
||||
customerName?: string;
|
||||
feedback?: string;
|
||||
customerImage?: Media_Plain;
|
||||
customerDescription?: string;
|
||||
}
|
||||
|
||||
export interface YogaCustomerFeedback_NoRelations {
|
||||
id: number;
|
||||
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
|
||||
customerName?: string;
|
||||
feedback?: string;
|
||||
customerImage?: number;
|
||||
customerDescription?: string;
|
||||
}
|
||||
|
||||
export interface YogaCustomerFeedback_AdminPanelLifeCycle {
|
||||
id: number;
|
||||
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
|
||||
customerName?: string;
|
||||
feedback?: string;
|
||||
customerImage?: AdminPanelRelationPropertyModification<Media_Plain>;
|
||||
customerDescription?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user