Commit 659627b6 authored by Phạm Quang Bảo's avatar Phạm Quang Bảo

[tag]0.1-vcci

parents 7e655e3f be52fc3e
Pipeline #53055 passed with stages
in 4 minutes and 41 seconds
......@@ -313,6 +313,7 @@ export * from './postCategory';
export * from './postCategoryBulkCreate';
export * from './postCategoryMutate';
export * from './postContentStructure';
export * from './postEventDates';
export * from './postHistory';
export * from './postHistoryChanges';
export * from './postHistoryMutate';
......@@ -321,6 +322,7 @@ export * from './postHistoryMutateSnapshot';
export * from './postHistorySnapshot';
export * from './postMutate';
export * from './postMutateContentStructure';
export * from './postMutateEventDates';
export * from './postTag';
export * from './postTagBulkCreate';
export * from './postTagMutate';
......
......@@ -6,12 +6,12 @@
* OpenAPI spec version: 1.0.0
*/
import type { PostContentStructure } from './postContentStructure';
import type { PostEventDates } from './postEventDates';
export interface Post {
id?: string;
title?: string;
thumbnail_id?: string;
external_link?: string;
content?: string;
release_at?: string;
is_active?: boolean;
......@@ -35,5 +35,5 @@ export interface Post {
location?: string;
participation_fee?: string;
content_structure?: PostContentStructure;
event_dates?: string;
event_dates?: PostEventDates;
}
/**
* Generated by orval v7.17.0 🍺
* Do not edit manually.
* VietProDev CMS Backend API
* Generated API documentation
* OpenAPI spec version: 1.0.0
*/
export type PostEventDates = { [key: string]: unknown };
......@@ -6,11 +6,11 @@
* OpenAPI spec version: 1.0.0
*/
import type { PostMutateContentStructure } from './postMutateContentStructure';
import type { PostMutateEventDates } from './postMutateEventDates';
export interface PostMutate {
title?: string;
thumbnail_id?: string;
external_link?: string;
content?: string;
release_at?: string;
is_active?: boolean;
......@@ -30,5 +30,5 @@ export interface PostMutate {
location?: string;
participation_fee?: string;
content_structure?: PostMutateContentStructure;
event_dates?: string;
event_dates?: PostMutateEventDates;
}
/**
* Generated by orval v7.17.0 🍺
* Do not edit manually.
* VietProDev CMS Backend API
* Generated API documentation
* OpenAPI spec version: 1.0.0
*/
export type PostMutateEventDates = { [key: string]: unknown };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment