trand_common_v1 0.2.81 → 0.2.82
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.
|
@@ -108,21 +108,6 @@ export type ResponseCityDetailForAdmin = {
|
|
|
108
108
|
mapCityYouTubeVideo?: ResponseItemsFlat<TMapCityYouTubeVideo>;
|
|
109
109
|
mapCityInstagram?: ResponseItemsFlat<TMapCityInstagram>;
|
|
110
110
|
};
|
|
111
|
-
/**
|
|
112
|
-
* City Detail - Public
|
|
113
|
-
*/
|
|
114
|
-
export type ResponseCityDetailForPublic = {
|
|
115
|
-
content: TCityDetail;
|
|
116
|
-
images?: TCityImage[];
|
|
117
|
-
i18n?: TCityI18n;
|
|
118
|
-
metadataI18n?: TCityMetadataI18n;
|
|
119
|
-
categories?: TCategoryListForPublic[];
|
|
120
|
-
streets?: TStreetListForCityDetail[];
|
|
121
|
-
mapCityContent?: ResponseItemsPaired<TMapCityContent, TContentDetail>;
|
|
122
|
-
mapCityYouTubeVideo?: ResponseItemsPaired<TMapCityYouTubeVideo, TCompletedYouTubeVideoListForPublicFront>;
|
|
123
|
-
mapCityYouTubeVideoShorts?: ResponseItemsPaired<TMapCityYouTubeVideo, TCompletedYouTubeVideoListForPublicFront>;
|
|
124
|
-
mapCityInstagram?: ResponseItemsPaired<TMapCityInstagram, TInstagramContent>;
|
|
125
|
-
};
|
|
126
111
|
/**
|
|
127
112
|
* City Street List - Public
|
|
128
113
|
*/
|
|
@@ -160,6 +145,21 @@ export type ResponseCityContentListForPublic = {
|
|
|
160
145
|
content: TContentDetail;
|
|
161
146
|
}>;
|
|
162
147
|
} & ResponseListBase;
|
|
148
|
+
/**
|
|
149
|
+
* City Detail - Public
|
|
150
|
+
*/
|
|
151
|
+
export type ResponseCityDetailForPublic = {
|
|
152
|
+
content: TCityDetail;
|
|
153
|
+
images?: TCityImage[];
|
|
154
|
+
i18n?: TCityI18n;
|
|
155
|
+
metadataI18n?: TCityMetadataI18n;
|
|
156
|
+
categories?: TCategoryListForPublic[];
|
|
157
|
+
streets?: ResponseStreetListForPublic;
|
|
158
|
+
mapCityContent?: ResponseCityContentListForPublic;
|
|
159
|
+
mapCityYouTubeVideo?: ResponseCityYouTubeVideoListForPublic;
|
|
160
|
+
mapCityYouTubeVideoShorts?: ResponseCityYouTubeVideoShortsListForPublic;
|
|
161
|
+
mapCityInstagram?: ResponseItemsPaired<TMapCityInstagram, TInstagramContent>;
|
|
162
|
+
};
|
|
163
163
|
/**
|
|
164
164
|
* Street Detail - Admin
|
|
165
165
|
*/
|
|
@@ -172,25 +172,6 @@ export type ResponseStreetDetailForAdmin = {
|
|
|
172
172
|
mapStreetYouTubeVideo?: ResponseItemsFlat<TMapStreetYouTubeVideo>;
|
|
173
173
|
mapStreetInstagram?: ResponseItemsFlat<TMapStreetInstagram>;
|
|
174
174
|
};
|
|
175
|
-
/**
|
|
176
|
-
* Street Detail - Public
|
|
177
|
-
*/
|
|
178
|
-
export type ResponseStreetDetailForPublic = {
|
|
179
|
-
content: TStreetDetail;
|
|
180
|
-
cityDetail: {
|
|
181
|
-
city_code: string;
|
|
182
|
-
name: string;
|
|
183
|
-
native: string;
|
|
184
|
-
name_ko: string;
|
|
185
|
-
};
|
|
186
|
-
images?: TStreetImage[];
|
|
187
|
-
i18n?: TStreetI18n;
|
|
188
|
-
metadataI18n?: TStreetMetadataI18n;
|
|
189
|
-
mapStreetContent?: ResponseItemsPaired<TMapStreetContent, TContentDetail>;
|
|
190
|
-
mapStreetYouTubeVideo?: ResponseItemsPaired<TMapStreetYouTubeVideo, TCompletedYouTubeVideoListForPublicFront>;
|
|
191
|
-
mapStreetYouTubeVideoShorts?: ResponseItemsPaired<TMapStreetYouTubeVideo, TCompletedYouTubeVideoListForPublicFront>;
|
|
192
|
-
mapStreetInstagram?: ResponseItemsPaired<TMapStreetInstagram, TInstagramContent>;
|
|
193
|
-
};
|
|
194
175
|
/**
|
|
195
176
|
* Street YouTube Video List - Public
|
|
196
177
|
*/
|
|
@@ -224,6 +205,25 @@ export type ResponseStreetContentListForPublic = {
|
|
|
224
205
|
content: TContentDetail;
|
|
225
206
|
}>;
|
|
226
207
|
} & ResponseListBase;
|
|
208
|
+
/**
|
|
209
|
+
* Street Detail - Public
|
|
210
|
+
*/
|
|
211
|
+
export type ResponseStreetDetailForPublic = {
|
|
212
|
+
content: TStreetDetail;
|
|
213
|
+
cityDetail: {
|
|
214
|
+
city_code: string;
|
|
215
|
+
name: string;
|
|
216
|
+
native: string;
|
|
217
|
+
name_ko: string;
|
|
218
|
+
};
|
|
219
|
+
images?: TStreetImage[];
|
|
220
|
+
i18n?: TStreetI18n;
|
|
221
|
+
metadataI18n?: TStreetMetadataI18n;
|
|
222
|
+
mapStreetContent?: ResponseStreetContentListForPublic;
|
|
223
|
+
mapStreetYouTubeVideo?: ResponseStreetYouTubeVideoListForPublic;
|
|
224
|
+
mapStreetYouTubeVideoShorts?: ResponseStreetYouTubeVideoShortsListForPublic;
|
|
225
|
+
mapStreetInstagram?: ResponseItemsPaired<TMapStreetInstagram, TInstagramContent>;
|
|
226
|
+
};
|
|
227
227
|
/**
|
|
228
228
|
* Category Detail - Admin
|
|
229
229
|
*/
|
|
@@ -236,25 +236,6 @@ export type ResponseCategoryDetailForAdmin = {
|
|
|
236
236
|
mapCategoryYouTubeVideo?: ResponseItemsFlat<TMapCategoryYouTubeVideo>;
|
|
237
237
|
mapCategoryInstagram?: ResponseItemsFlat<TMapCategoryInstagram>;
|
|
238
238
|
};
|
|
239
|
-
/**
|
|
240
|
-
* Category Detail - Public
|
|
241
|
-
*/
|
|
242
|
-
export type ResponseCategoryDetailForPublic = {
|
|
243
|
-
content: TCategoryDetail;
|
|
244
|
-
cityDetail?: {
|
|
245
|
-
city_code: string;
|
|
246
|
-
name: string;
|
|
247
|
-
native: string;
|
|
248
|
-
name_ko: string;
|
|
249
|
-
};
|
|
250
|
-
subCategories?: TCategoryDetail[];
|
|
251
|
-
i18n?: TCategoryI18n;
|
|
252
|
-
metadataI18n?: TCategoryMetadataI18n;
|
|
253
|
-
mapCategoryContent?: ResponseItemsPaired<TMapCategoryContent, TContentDetail>;
|
|
254
|
-
mapCategoryYouTubeVideo?: ResponseItemsPaired<TMapCategoryYouTubeVideo, TCompletedYouTubeVideoListForPublicFront>;
|
|
255
|
-
mapCategoryYouTubeVideoShorts?: ResponseItemsPaired<TMapCategoryYouTubeVideo, TCompletedYouTubeVideoListForPublicFront>;
|
|
256
|
-
mapCategoryInstagram?: ResponseItemsPaired<TMapCategoryInstagram, TInstagramContent>;
|
|
257
|
-
};
|
|
258
239
|
/**
|
|
259
240
|
* Category YouTube Video List - Public
|
|
260
241
|
*/
|
|
@@ -288,6 +269,25 @@ export type ResponseCategoryContentListForPublic = {
|
|
|
288
269
|
content: TContentDetail;
|
|
289
270
|
}>;
|
|
290
271
|
} & ResponseListBase;
|
|
272
|
+
/**
|
|
273
|
+
* Category Detail - Public
|
|
274
|
+
*/
|
|
275
|
+
export type ResponseCategoryDetailForPublic = {
|
|
276
|
+
content: TCategoryDetail;
|
|
277
|
+
cityDetail?: {
|
|
278
|
+
city_code: string;
|
|
279
|
+
name: string;
|
|
280
|
+
native: string;
|
|
281
|
+
name_ko: string;
|
|
282
|
+
};
|
|
283
|
+
subCategories?: TCategoryDetail[];
|
|
284
|
+
i18n?: TCategoryI18n;
|
|
285
|
+
metadataI18n?: TCategoryMetadataI18n;
|
|
286
|
+
mapCategoryContent?: ResponseCategoryContentListForPublic;
|
|
287
|
+
mapCategoryYouTubeVideo?: ResponseCategoryYouTubeVideoListForPublic;
|
|
288
|
+
mapCategoryYouTubeVideoShorts?: ResponseCategoryYouTubeVideoShortsListForPublic;
|
|
289
|
+
mapCategoryInstagram?: ResponseItemsPaired<TMapCategoryInstagram, TInstagramContent>;
|
|
290
|
+
};
|
|
291
291
|
/**
|
|
292
292
|
* Stag Detail - Admin
|
|
293
293
|
*/
|
|
@@ -300,25 +300,6 @@ export type ResponseStagDetailForAdmin = {
|
|
|
300
300
|
mapStagYouTubeVideo?: ResponseItemsFlat<TMapStagYouTubeVideo>;
|
|
301
301
|
mapStagInstagram?: ResponseItemsFlat<TMapStagInstagram>;
|
|
302
302
|
};
|
|
303
|
-
/**
|
|
304
|
-
* Stag Detail - Public
|
|
305
|
-
*/
|
|
306
|
-
export type ResponseStagDetailForPublic = {
|
|
307
|
-
content: TStagDetail;
|
|
308
|
-
cityDetail?: {
|
|
309
|
-
city_code: string;
|
|
310
|
-
name: string;
|
|
311
|
-
native: string;
|
|
312
|
-
name_ko: string;
|
|
313
|
-
};
|
|
314
|
-
images?: TStagImage[];
|
|
315
|
-
i18n?: TStagI18n;
|
|
316
|
-
metadataI18n?: TStagMetadataI18n;
|
|
317
|
-
mapStagContent?: ResponseItemsPaired<TMapStagContent, TContentDetail>;
|
|
318
|
-
mapStagYouTubeVideo?: ResponseItemsPaired<TMapStagYouTubeVideo, TCompletedYouTubeVideoListForPublicFront>;
|
|
319
|
-
mapStagYouTubeVideoShorts?: ResponseItemsPaired<TMapStagYouTubeVideo, TCompletedYouTubeVideoListForPublicFront>;
|
|
320
|
-
mapStagInstagram?: ResponseItemsPaired<TMapStagInstagram, TInstagramContent>;
|
|
321
|
-
};
|
|
322
303
|
/**
|
|
323
304
|
* Stag YouTube Video List - Public
|
|
324
305
|
*/
|
|
@@ -352,6 +333,25 @@ export type ResponseStagContentListForPublic = {
|
|
|
352
333
|
content: TContentDetail;
|
|
353
334
|
}>;
|
|
354
335
|
} & ResponseListBase;
|
|
336
|
+
/**
|
|
337
|
+
* Stag Detail - Public
|
|
338
|
+
*/
|
|
339
|
+
export type ResponseStagDetailForPublic = {
|
|
340
|
+
content: TStagDetail;
|
|
341
|
+
cityDetail?: {
|
|
342
|
+
city_code: string;
|
|
343
|
+
name: string;
|
|
344
|
+
native: string;
|
|
345
|
+
name_ko: string;
|
|
346
|
+
};
|
|
347
|
+
images?: TStagImage[];
|
|
348
|
+
i18n?: TStagI18n;
|
|
349
|
+
metadataI18n?: TStagMetadataI18n;
|
|
350
|
+
mapStagContent?: ResponseStagContentListForPublic;
|
|
351
|
+
mapStagYouTubeVideo?: ResponseStagYouTubeVideoListForPublic;
|
|
352
|
+
mapStagYouTubeVideoShorts?: ResponseStagYouTubeVideoShortsListForPublic;
|
|
353
|
+
mapStagInstagram?: ResponseItemsPaired<TMapStagInstagram, TInstagramContent>;
|
|
354
|
+
};
|
|
355
355
|
/**
|
|
356
356
|
* Content Detail - Admin
|
|
357
357
|
*/
|