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

fix: external link

parent c4686167
...@@ -313,6 +313,7 @@ export * from './postCategory'; ...@@ -313,6 +313,7 @@ export * from './postCategory';
export * from './postCategoryBulkCreate'; export * from './postCategoryBulkCreate';
export * from './postCategoryMutate'; export * from './postCategoryMutate';
export * from './postContentStructure'; export * from './postContentStructure';
export * from './postEventDates';
export * from './postHistory'; export * from './postHistory';
export * from './postHistoryChanges'; export * from './postHistoryChanges';
export * from './postHistoryMutate'; export * from './postHistoryMutate';
...@@ -321,6 +322,7 @@ export * from './postHistoryMutateSnapshot'; ...@@ -321,6 +322,7 @@ export * from './postHistoryMutateSnapshot';
export * from './postHistorySnapshot'; export * from './postHistorySnapshot';
export * from './postMutate'; export * from './postMutate';
export * from './postMutateContentStructure'; export * from './postMutateContentStructure';
export * from './postMutateEventDates';
export * from './postTag'; export * from './postTag';
export * from './postTagBulkCreate'; export * from './postTagBulkCreate';
export * from './postTagMutate'; export * from './postTagMutate';
......
...@@ -6,12 +6,12 @@ ...@@ -6,12 +6,12 @@
* OpenAPI spec version: 1.0.0 * OpenAPI spec version: 1.0.0
*/ */
import type { PostContentStructure } from './postContentStructure'; import type { PostContentStructure } from './postContentStructure';
import type { PostEventDates } from './postEventDates';
export interface Post { export interface Post {
id?: string; id?: string;
title?: string; title?: string;
thumbnail_id?: string; thumbnail_id?: string;
external_link?: string;
content?: string; content?: string;
release_at?: string; release_at?: string;
is_active?: boolean; is_active?: boolean;
...@@ -35,5 +35,5 @@ export interface Post { ...@@ -35,5 +35,5 @@ export interface Post {
location?: string; location?: string;
participation_fee?: string; participation_fee?: string;
content_structure?: PostContentStructure; 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 @@ ...@@ -6,11 +6,11 @@
* OpenAPI spec version: 1.0.0 * OpenAPI spec version: 1.0.0
*/ */
import type { PostMutateContentStructure } from './postMutateContentStructure'; import type { PostMutateContentStructure } from './postMutateContentStructure';
import type { PostMutateEventDates } from './postMutateEventDates';
export interface PostMutate { export interface PostMutate {
title?: string; title?: string;
thumbnail_id?: string; thumbnail_id?: string;
external_link?: string;
content?: string; content?: string;
release_at?: string; release_at?: string;
is_active?: boolean; is_active?: boolean;
...@@ -30,5 +30,5 @@ export interface PostMutate { ...@@ -30,5 +30,5 @@ export interface PostMutate {
location?: string; location?: string;
participation_fee?: string; participation_fee?: string;
content_structure?: PostMutateContentStructure; 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