trand_common_v1 0.2.122 → 0.2.124
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -37,8 +37,6 @@ export type ResponseContentDetailForAdmin = {
|
|
|
37
37
|
showTimetable?: TContentShowTimetable[];
|
|
38
38
|
price?: TContentPrice[];
|
|
39
39
|
image?: TContentImage[];
|
|
40
|
-
i18n?: TContentI18n[];
|
|
41
|
-
metadataI18n?: TContentMetadataI18n[];
|
|
42
40
|
keyword?: TContentKeyword[];
|
|
43
41
|
mapContentCategory?: TMapCategoryContent[];
|
|
44
42
|
mapContentCity?: TMapCityContent[];
|
|
@@ -167,10 +165,8 @@ export type TContentAdminUpdateForm = {
|
|
|
167
165
|
businessHours: Partial<Omit<TContentBusinessHours, "content_code">>[];
|
|
168
166
|
files: Record<string, File | null>;
|
|
169
167
|
images: TContentImageAdminInput[];
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
deletedImagePaths: Set<string>;
|
|
173
|
-
deletedImageHashes: Set<string>;
|
|
168
|
+
deletedThumbnails: Map<string, string>;
|
|
169
|
+
deletedImages: Map<string, string>;
|
|
174
170
|
google_place_id: string | null;
|
|
175
171
|
trip_advisor_location_id: string | null;
|
|
176
172
|
};
|