trand_common_v1 0.2.40 → 0.2.42
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.
|
@@ -60,21 +60,21 @@ export type ResponseCityDetailForAdmin = {
|
|
|
60
60
|
i18n?: TCityI18n[];
|
|
61
61
|
metadataI18n?: TCityMetadataI18n[];
|
|
62
62
|
mapCityContent?: {
|
|
63
|
-
|
|
63
|
+
items: TMapCityContent[];
|
|
64
64
|
start: number;
|
|
65
65
|
limit: number;
|
|
66
66
|
total: number;
|
|
67
67
|
hasMore: boolean;
|
|
68
68
|
};
|
|
69
69
|
mapCityYouTubeVideo?: {
|
|
70
|
-
|
|
70
|
+
items: TMapCityYouTubeVideo[];
|
|
71
71
|
start: number;
|
|
72
72
|
limit: number;
|
|
73
73
|
total: number;
|
|
74
74
|
hasMore: boolean;
|
|
75
75
|
};
|
|
76
76
|
mapCityInstagram?: {
|
|
77
|
-
|
|
77
|
+
items: TMapCityInstagram[];
|
|
78
78
|
start: number;
|
|
79
79
|
limit: number;
|
|
80
80
|
total: number;
|
|
@@ -92,7 +92,7 @@ export type ResponseCityDetailForPublic = {
|
|
|
92
92
|
categories?: TCategoryListForPublic[];
|
|
93
93
|
streets?: TStreetListForCityDetail[];
|
|
94
94
|
mapCityContent?: {
|
|
95
|
-
|
|
95
|
+
items: {
|
|
96
96
|
map: TMapCityContent;
|
|
97
97
|
content: TContentDetail;
|
|
98
98
|
}[];
|
|
@@ -102,7 +102,7 @@ export type ResponseCityDetailForPublic = {
|
|
|
102
102
|
hasMore: boolean;
|
|
103
103
|
};
|
|
104
104
|
mapCityYouTubeVideo?: {
|
|
105
|
-
|
|
105
|
+
items: {
|
|
106
106
|
map: TMapCityYouTubeVideo;
|
|
107
107
|
content: TCompletedYouTubeVideoListForPublicFront;
|
|
108
108
|
}[];
|
|
@@ -112,7 +112,7 @@ export type ResponseCityDetailForPublic = {
|
|
|
112
112
|
hasMore: boolean;
|
|
113
113
|
};
|
|
114
114
|
mapCityInstagram?: {
|
|
115
|
-
|
|
115
|
+
items: {
|
|
116
116
|
map: TMapCityInstagram;
|
|
117
117
|
content: TInstagramContent;
|
|
118
118
|
}[];
|
|
@@ -131,21 +131,21 @@ export type ResponseStreetDetailForAdmin = {
|
|
|
131
131
|
i18n?: TStreetI18n[];
|
|
132
132
|
metadataI18n?: TStreetMetadataI18n[];
|
|
133
133
|
mapStreetContent?: {
|
|
134
|
-
|
|
134
|
+
items: TMapStreetContent[];
|
|
135
135
|
start: number;
|
|
136
136
|
limit: number;
|
|
137
137
|
total: number;
|
|
138
138
|
hasMore: boolean;
|
|
139
139
|
};
|
|
140
140
|
mapStreetYouTubeVideo?: {
|
|
141
|
-
|
|
141
|
+
items: TMapStreetYouTubeVideo[];
|
|
142
142
|
start: number;
|
|
143
143
|
limit: number;
|
|
144
144
|
total: number;
|
|
145
145
|
hasMore: boolean;
|
|
146
146
|
};
|
|
147
147
|
mapStreetInstagram?: {
|
|
148
|
-
|
|
148
|
+
items: TMapStreetInstagram[];
|
|
149
149
|
start: number;
|
|
150
150
|
limit: number;
|
|
151
151
|
total: number;
|
|
@@ -167,7 +167,7 @@ export type ResponseStreetDetailForPublic = {
|
|
|
167
167
|
i18n?: TStreetI18n;
|
|
168
168
|
metadataI18n?: TStreetMetadataI18n;
|
|
169
169
|
mapStreetContent?: {
|
|
170
|
-
|
|
170
|
+
items: {
|
|
171
171
|
map: TMapStreetContent;
|
|
172
172
|
content: TContentDetail;
|
|
173
173
|
}[];
|
|
@@ -177,7 +177,7 @@ export type ResponseStreetDetailForPublic = {
|
|
|
177
177
|
hasMore: boolean;
|
|
178
178
|
};
|
|
179
179
|
mapStreetYouTubeVideo?: {
|
|
180
|
-
|
|
180
|
+
items: {
|
|
181
181
|
map: TMapStreetYouTubeVideo;
|
|
182
182
|
content: TCompletedYouTubeVideoListForPublicFront;
|
|
183
183
|
}[];
|
|
@@ -187,7 +187,7 @@ export type ResponseStreetDetailForPublic = {
|
|
|
187
187
|
hasMore: boolean;
|
|
188
188
|
};
|
|
189
189
|
mapStreetInstagram?: {
|
|
190
|
-
|
|
190
|
+
items: {
|
|
191
191
|
map: TMapStreetInstagram;
|
|
192
192
|
content: TInstagramContent;
|
|
193
193
|
}[];
|
|
@@ -206,21 +206,21 @@ export type ResponseCategoryDetailForAdmin = {
|
|
|
206
206
|
i18n?: TCategoryI18n[];
|
|
207
207
|
metadataI18n?: TCategoryMetadataI18n[];
|
|
208
208
|
mapCategoryContent?: {
|
|
209
|
-
|
|
209
|
+
items: TMapCategoryContent[];
|
|
210
210
|
start: number;
|
|
211
211
|
limit: number;
|
|
212
212
|
total: number;
|
|
213
213
|
hasMore: boolean;
|
|
214
214
|
};
|
|
215
215
|
mapCategoryYouTubeVideo?: {
|
|
216
|
-
|
|
216
|
+
items: TMapCategoryYouTubeVideo[];
|
|
217
217
|
start: number;
|
|
218
218
|
limit: number;
|
|
219
219
|
total: number;
|
|
220
220
|
hasMore: boolean;
|
|
221
221
|
};
|
|
222
222
|
mapCategoryInstagram?: {
|
|
223
|
-
|
|
223
|
+
items: TMapCategoryInstagram[];
|
|
224
224
|
start: number;
|
|
225
225
|
limit: number;
|
|
226
226
|
total: number;
|
|
@@ -242,7 +242,7 @@ export type ResponseCategoryDetailForPublic = {
|
|
|
242
242
|
i18n?: TCategoryI18n;
|
|
243
243
|
metadataI18n?: TCategoryMetadataI18n;
|
|
244
244
|
mapCategoryContent?: {
|
|
245
|
-
|
|
245
|
+
items: {
|
|
246
246
|
map: TMapCategoryContent;
|
|
247
247
|
content: TContentDetail;
|
|
248
248
|
}[];
|
|
@@ -252,7 +252,7 @@ export type ResponseCategoryDetailForPublic = {
|
|
|
252
252
|
hasMore: boolean;
|
|
253
253
|
};
|
|
254
254
|
mapCategoryYouTubeVideo?: {
|
|
255
|
-
|
|
255
|
+
items: {
|
|
256
256
|
map: TMapCategoryYouTubeVideo;
|
|
257
257
|
content: TCompletedYouTubeVideoListForPublicFront;
|
|
258
258
|
}[];
|
|
@@ -262,7 +262,7 @@ export type ResponseCategoryDetailForPublic = {
|
|
|
262
262
|
hasMore: boolean;
|
|
263
263
|
};
|
|
264
264
|
mapCategoryInstagram?: {
|
|
265
|
-
|
|
265
|
+
items: {
|
|
266
266
|
map: TMapCategoryInstagram;
|
|
267
267
|
content: TInstagramContent;
|
|
268
268
|
}[];
|
|
@@ -281,21 +281,21 @@ export type ResponseStagDetailForAdmin = {
|
|
|
281
281
|
i18n?: TStagI18n[];
|
|
282
282
|
metadataI18n?: TStagMetadataI18n[];
|
|
283
283
|
mapStagContent?: {
|
|
284
|
-
|
|
284
|
+
items: TMapStagContent[];
|
|
285
285
|
start: number;
|
|
286
286
|
limit: number;
|
|
287
287
|
total: number;
|
|
288
288
|
hasMore: boolean;
|
|
289
289
|
};
|
|
290
290
|
mapStagYouTubeVideo?: {
|
|
291
|
-
|
|
291
|
+
items: TMapStagYouTubeVideo[];
|
|
292
292
|
start: number;
|
|
293
293
|
limit: number;
|
|
294
294
|
total: number;
|
|
295
295
|
hasMore: boolean;
|
|
296
296
|
};
|
|
297
297
|
mapStagInstagram?: {
|
|
298
|
-
|
|
298
|
+
items: TMapStagInstagram[];
|
|
299
299
|
start: number;
|
|
300
300
|
limit: number;
|
|
301
301
|
total: number;
|
|
@@ -317,7 +317,7 @@ export type ResponseStagDetailForPublic = {
|
|
|
317
317
|
i18n?: TStagI18n;
|
|
318
318
|
metadataI18n?: TStagMetadataI18n;
|
|
319
319
|
mapStagContent?: {
|
|
320
|
-
|
|
320
|
+
items: {
|
|
321
321
|
map: TMapStagContent;
|
|
322
322
|
content: TContentDetail;
|
|
323
323
|
}[];
|
|
@@ -327,7 +327,7 @@ export type ResponseStagDetailForPublic = {
|
|
|
327
327
|
hasMore: boolean;
|
|
328
328
|
};
|
|
329
329
|
mapStagYouTubeVideo?: {
|
|
330
|
-
|
|
330
|
+
items: {
|
|
331
331
|
map: TMapStagYouTubeVideo;
|
|
332
332
|
content: TCompletedYouTubeVideoListForPublicFront;
|
|
333
333
|
}[];
|
|
@@ -337,7 +337,7 @@ export type ResponseStagDetailForPublic = {
|
|
|
337
337
|
hasMore: boolean;
|
|
338
338
|
};
|
|
339
339
|
mapStagInstagram?: {
|
|
340
|
-
|
|
340
|
+
items: {
|
|
341
341
|
map: TMapStagInstagram;
|
|
342
342
|
content: TInstagramContent;
|
|
343
343
|
}[];
|
|
@@ -414,7 +414,7 @@ export type ResponseContentDetailForPublic = {
|
|
|
414
414
|
};
|
|
415
415
|
}[];
|
|
416
416
|
mapContentInstagram?: {
|
|
417
|
-
|
|
417
|
+
items: {
|
|
418
418
|
map: TMapContentInstagram;
|
|
419
419
|
content: TInstagramContent;
|
|
420
420
|
}[];
|
|
@@ -424,7 +424,7 @@ export type ResponseContentDetailForPublic = {
|
|
|
424
424
|
hasMore: boolean;
|
|
425
425
|
};
|
|
426
426
|
mapContentYouTubeVideo?: {
|
|
427
|
-
|
|
427
|
+
items: {
|
|
428
428
|
map: TMapContentYouTubeVideo;
|
|
429
429
|
content: TCompletedYouTubeVideoListForPublicFront;
|
|
430
430
|
}[];
|
|
@@ -434,7 +434,7 @@ export type ResponseContentDetailForPublic = {
|
|
|
434
434
|
hasMore: boolean;
|
|
435
435
|
};
|
|
436
436
|
mapContentStag?: {
|
|
437
|
-
|
|
437
|
+
items: {
|
|
438
438
|
map: TMapStagContent;
|
|
439
439
|
content: TStagListForContentDetail;
|
|
440
440
|
}[];
|
|
@@ -444,7 +444,7 @@ export type ResponseContentDetailForPublic = {
|
|
|
444
444
|
hasMore: boolean;
|
|
445
445
|
};
|
|
446
446
|
mapContentTag?: {
|
|
447
|
-
|
|
447
|
+
items: {
|
|
448
448
|
map: TMapTagContent;
|
|
449
449
|
content: TTag;
|
|
450
450
|
}[];
|
|
@@ -10,6 +10,6 @@ export type TCategoryI18nInsert = {
|
|
|
10
10
|
name: string;
|
|
11
11
|
} & Partial<Omit<TCategoryI18n, "category_code" | "lang_code" | "name">>;
|
|
12
12
|
export type TCategoryI18nUpdate = {
|
|
13
|
-
|
|
13
|
+
category_code: string;
|
|
14
14
|
lang_code: string;
|
|
15
15
|
} & Partial<Omit<TCategoryI18n, "category_code" | "lang_code">>;
|
|
@@ -12,6 +12,6 @@ export type TCategoryMetadataI18nInsert = {
|
|
|
12
12
|
title: string;
|
|
13
13
|
} & Partial<Omit<TCategoryMetadataI18n, "category_code" | "lang_code" | "title">>;
|
|
14
14
|
export type TCategoryMetadataI18nUpdate = {
|
|
15
|
-
|
|
15
|
+
category_code: string;
|
|
16
16
|
lang_code: string;
|
|
17
17
|
} & Partial<Omit<TCategoryMetadataI18n, "category_code" | "lang_code">>;
|