convert about types from component to collection-type
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
// Interface automatically generated by schemas-to-ts
|
||||
|
||||
import { YogaCustomerFeedback } from './yoga-customer-feedback';
|
||||
import { YogaCustomerFeedback_Plain } from './yoga-customer-feedback';
|
||||
import { AdminPanelRelationPropertyModification } from '../common/AdminPanelRelationPropertyModification';
|
||||
|
||||
export interface YogaCustomerFeedbackComponent {
|
||||
id: number;
|
||||
attributes: {
|
||||
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
|
||||
feedbacks: { data: YogaCustomerFeedback[] };
|
||||
};
|
||||
}
|
||||
export interface YogaCustomerFeedbackComponent_Plain {
|
||||
id: number;
|
||||
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
|
||||
feedbacks: YogaCustomerFeedback_Plain[];
|
||||
}
|
||||
|
||||
export interface YogaCustomerFeedbackComponent_NoRelations {
|
||||
id: number;
|
||||
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
|
||||
feedbacks: number[];
|
||||
}
|
||||
|
||||
export interface YogaCustomerFeedbackComponent_AdminPanelLifeCycle {
|
||||
id: number;
|
||||
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
|
||||
feedbacks: AdminPanelRelationPropertyModification<YogaCustomerFeedback_Plain>;
|
||||
}
|
||||
Reference in New Issue
Block a user