trand_common_v1 0.2.117 → 0.2.118
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.
|
@@ -157,6 +157,8 @@ export type TContentAdminCreateForm = {
|
|
|
157
157
|
businessHours: Partial<Omit<TContentBusinessHours, "content_code">>[];
|
|
158
158
|
files: Record<string, File | null>;
|
|
159
159
|
images: TContentImageAdminInput[];
|
|
160
|
+
google_place_id: string | null;
|
|
161
|
+
trip_advisor_location_id: string | null;
|
|
160
162
|
};
|
|
161
163
|
export type TContentAdminUpdateForm = {
|
|
162
164
|
contentInfo: TContentDetailUpdate;
|
|
@@ -167,4 +169,6 @@ export type TContentAdminUpdateForm = {
|
|
|
167
169
|
images: TContentImageAdminInput[];
|
|
168
170
|
deletedImageKeys: Set<string>;
|
|
169
171
|
deletedImageHashes: Set<string>;
|
|
172
|
+
google_place_id: string | null;
|
|
173
|
+
trip_advisor_location_id: string | null;
|
|
170
174
|
};
|