trand_common_v1 0.2.105 → 0.2.107
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.
- package/dist/city/t-city-image.d.ts +10 -0
- package/dist/content/f-content-description.d.ts +166 -0
- package/dist/content/f-content-description.js +166 -0
- package/dist/content/f-content-description.js.map +1 -1
- package/dist/content/f-content-target.d.ts +61 -0
- package/dist/content/f-content-target.js +61 -0
- package/dist/content/f-content-target.js.map +1 -1
- package/dist/content/f-content.d.ts +0 -227
- package/dist/content/f-content.js +0 -227
- package/dist/content/f-content.js.map +1 -1
- package/dist/content/t-content-description.d.ts +31 -0
- package/dist/content/t-content-description.js +33 -1
- package/dist/content/t-content-description.js.map +1 -1
- package/dist/content/t-content-image.d.ts +10 -0
- package/dist/content/t-content-target.d.ts +19 -0
- package/dist/content/t-content-target.js +28 -1
- package/dist/content/t-content-target.js.map +1 -1
- package/dist/content/t-content.d.ts +0 -56
- package/dist/content/t-content.js +0 -66
- package/dist/content/t-content.js.map +1 -1
- package/dist/index.d.ts +9 -0
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -1
- package/dist/response/trand-response-category.d.ts +91 -0
- package/dist/response/trand-response-category.js +2 -0
- package/dist/response/trand-response-category.js.map +1 -0
- package/dist/response/trand-response-city.d.ts +90 -0
- package/dist/response/trand-response-city.js +2 -0
- package/dist/response/trand-response-city.js.map +1 -0
- package/dist/response/trand-response-completed-youtube-channel.d.ts +9 -0
- package/dist/response/trand-response-completed-youtube-channel.js +2 -0
- package/dist/response/trand-response-completed-youtube-channel.js.map +1 -0
- package/dist/response/trand-response-completed-youtube-video.d.ts +21 -0
- package/dist/response/trand-response-completed-youtube-video.js +2 -0
- package/dist/response/trand-response-completed-youtube-video.js.map +1 -0
- package/dist/response/trand-response-content.d.ts +164 -0
- package/dist/response/trand-response-content.js +2 -0
- package/dist/response/trand-response-content.js.map +1 -0
- package/dist/response/trand-response-search-result.d.ts +16 -0
- package/dist/response/trand-response-search-result.js +2 -0
- package/dist/response/trand-response-search-result.js.map +1 -0
- package/dist/response/trand-response-stag.d.ts +95 -0
- package/dist/response/trand-response-stag.js +2 -0
- package/dist/response/trand-response-stag.js.map +1 -0
- package/dist/response/trand-response-street.d.ts +103 -0
- package/dist/response/trand-response-street.js +2 -0
- package/dist/response/trand-response-street.js.map +1 -0
- package/dist/response/trand-response-tag.d.ts +19 -0
- package/dist/response/trand-response-tag.js +2 -0
- package/dist/response/trand-response-tag.js.map +1 -0
- package/dist/response/trand-response.d.ts +13 -509
- package/dist/stag/t-stag-image.d.ts +10 -0
- package/dist/street/t-street-image.d.ts +10 -0
- package/dist/street/t-street.d.ts +6 -1
- package/dist/street/t-street.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,3 +1,22 @@
|
|
|
1
1
|
export type TContentTarget = {
|
|
2
2
|
content_code: string;
|
|
3
|
+
is_target_for_family: boolean | null;
|
|
4
|
+
is_target_for_children: boolean | null;
|
|
5
|
+
is_target_for_couple: boolean | null;
|
|
6
|
+
is_target_for_friends: boolean | null;
|
|
7
|
+
is_target_for_solo: boolean | null;
|
|
8
|
+
target_age_start: number | null;
|
|
9
|
+
target_age_end: number | null;
|
|
10
|
+
target_sex: string | null;
|
|
11
|
+
target_time_start_h: number | null;
|
|
12
|
+
target_time_start_m: number | null;
|
|
13
|
+
target_time_end_h: number | null;
|
|
14
|
+
target_time_end_m: number | null;
|
|
3
15
|
};
|
|
16
|
+
export type TContentTargetInsert = {
|
|
17
|
+
content_code: string;
|
|
18
|
+
} & Partial<Omit<TContentTarget, "content_code">>;
|
|
19
|
+
export type TContentTargetUpdate = Partial<Omit<TContentTarget, "content_code">>;
|
|
20
|
+
export declare const KEYS_CONTENT_TARGET_STR: string[];
|
|
21
|
+
export declare const KEYS_CONTENT_TARGET_NUM: string[];
|
|
22
|
+
export declare const KEYS_CONTENT_TARGET_BOOL: string[];
|
|
@@ -1,2 +1,29 @@
|
|
|
1
|
-
|
|
1
|
+
/*
|
|
2
|
+
* DB 컬럼 목록 For Content Keys For String
|
|
3
|
+
*/
|
|
4
|
+
export const KEYS_CONTENT_TARGET_STR = [
|
|
5
|
+
"content_code",
|
|
6
|
+
"target_sex",
|
|
7
|
+
];
|
|
8
|
+
/*
|
|
9
|
+
* DB 컬럼 목록 For Content Keys For Number
|
|
10
|
+
*/
|
|
11
|
+
export const KEYS_CONTENT_TARGET_NUM = [
|
|
12
|
+
"target_age_start",
|
|
13
|
+
"target_age_end",
|
|
14
|
+
"target_time_start_h",
|
|
15
|
+
"target_time_start_m",
|
|
16
|
+
"target_time_end_h",
|
|
17
|
+
"target_time_end_m",
|
|
18
|
+
];
|
|
19
|
+
/*
|
|
20
|
+
* DB 컬럼 목록 For Content Keys For Boolean
|
|
21
|
+
*/
|
|
22
|
+
export const KEYS_CONTENT_TARGET_BOOL = [
|
|
23
|
+
"is_target_for_family",
|
|
24
|
+
"is_target_for_children",
|
|
25
|
+
"is_target_for_couple",
|
|
26
|
+
"is_target_for_friends",
|
|
27
|
+
"is_target_for_solo",
|
|
28
|
+
];
|
|
2
29
|
//# sourceMappingURL=t-content-target.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"t-content-target.js","sourceRoot":"","sources":["../../src/content/t-content-target.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"t-content-target.js","sourceRoot":"","sources":["../../src/content/t-content-target.ts"],"names":[],"mappings":"AA4BA;;GAEG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG;IACrC,cAAc;IACd,YAAY;CACb,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG;IACrC,kBAAkB;IAClB,gBAAgB;IAChB,qBAAqB;IACrB,qBAAqB;IACrB,mBAAmB;IACnB,mBAAmB;CACpB,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAG;IACtC,sBAAsB;IACtB,wBAAwB;IACxB,sBAAsB;IACtB,uBAAuB;IACvB,oBAAoB;CACrB,CAAC"}
|
|
@@ -9,40 +9,16 @@ export type TContentListAdmin = {
|
|
|
9
9
|
name: string;
|
|
10
10
|
native: string | null;
|
|
11
11
|
order_num: number;
|
|
12
|
-
phone: string | null;
|
|
13
|
-
address: string | null;
|
|
14
|
-
address_native: string | null;
|
|
15
12
|
google_maps_uri: string | null;
|
|
16
|
-
website_en: string | null;
|
|
17
|
-
website: string | null;
|
|
18
13
|
is_gp_fetched: boolean | null;
|
|
19
14
|
is_ta_fetched: boolean | null;
|
|
20
|
-
is_target_for_family: boolean | null;
|
|
21
|
-
is_target_for_children: boolean | null;
|
|
22
|
-
is_target_for_couple: boolean | null;
|
|
23
|
-
is_target_for_friends: boolean | null;
|
|
24
|
-
is_target_for_solo: boolean | null;
|
|
25
15
|
taking_minutes_start: number | null;
|
|
26
16
|
taking_minutes_end: number | null;
|
|
27
17
|
is_free_available: boolean | null;
|
|
28
18
|
price_symbol: string | null;
|
|
29
19
|
price_start: number | null;
|
|
30
20
|
price_end: number | null;
|
|
31
|
-
target_age_start: number | null;
|
|
32
|
-
target_age_end: number | null;
|
|
33
|
-
naver_map_url: string | null;
|
|
34
|
-
instagram_id: string | null;
|
|
35
|
-
youtube_ch_id: string | null;
|
|
36
|
-
google_place_url: string | null;
|
|
37
|
-
trip_advisor_url: string | null;
|
|
38
|
-
facebook: string | null;
|
|
39
|
-
naver_place_url: string | null;
|
|
40
|
-
kakao_place_url: string | null;
|
|
41
|
-
naver_reservation_url: string | null;
|
|
42
|
-
linkedin: string | null;
|
|
43
|
-
visit_korea: string | null;
|
|
44
21
|
is_reservation_required: boolean | null;
|
|
45
|
-
target_sex: string | null;
|
|
46
22
|
is_open_always: boolean;
|
|
47
23
|
period_start: string | null;
|
|
48
24
|
period_end: string | null;
|
|
@@ -63,7 +39,6 @@ export type TContentDetail = TContentListAdmin & {
|
|
|
63
39
|
name_es: string | null;
|
|
64
40
|
google_place_ids: string[] | string | null;
|
|
65
41
|
trip_advisor_location_ids: string[] | string | null;
|
|
66
|
-
description: string | null;
|
|
67
42
|
label_1: string | null;
|
|
68
43
|
label_2: string | null;
|
|
69
44
|
label_3: string | null;
|
|
@@ -94,19 +69,6 @@ export type TContentDetail = TContentListAdmin & {
|
|
|
94
69
|
latitude: number | null;
|
|
95
70
|
longitude: number | null;
|
|
96
71
|
radius_m: number | null;
|
|
97
|
-
reservation_guide: string | null;
|
|
98
|
-
reservation_guide_native: string | null;
|
|
99
|
-
ticketing_guide: string | null;
|
|
100
|
-
ticketing_guide_native: string | null;
|
|
101
|
-
target_time_start_h: number | null;
|
|
102
|
-
target_time_start_m: number | null;
|
|
103
|
-
target_time_end_h: number | null;
|
|
104
|
-
target_time_end_m: number | null;
|
|
105
|
-
official_youtube_video_1: string | null;
|
|
106
|
-
official_youtube_video_2: string | null;
|
|
107
|
-
official_youtube_video_3: string | null;
|
|
108
|
-
official_youtube_video_4: string | null;
|
|
109
|
-
official_youtube_video_5: string | null;
|
|
110
72
|
updated_at: string | null;
|
|
111
73
|
updated_count: number | null;
|
|
112
74
|
closed_at: string | null;
|
|
@@ -121,7 +83,6 @@ export type TContentDetailInsert = {
|
|
|
121
83
|
new_city_code: string;
|
|
122
84
|
} & Partial<Omit<TContentDetail, "country_code" | "content_code">>;
|
|
123
85
|
export type TContentDetailUpdate = {
|
|
124
|
-
content_code: string;
|
|
125
86
|
old_country_code?: string;
|
|
126
87
|
old_city_code?: string;
|
|
127
88
|
new_country_code?: string;
|
|
@@ -159,24 +120,7 @@ export type TContentListForPublicFrontList = {
|
|
|
159
120
|
address: string | null;
|
|
160
121
|
address_native: string | null;
|
|
161
122
|
google_maps_uri: string | null;
|
|
162
|
-
website_en: string | null;
|
|
163
123
|
is_free_available: boolean;
|
|
164
|
-
naver_map_url: string | null;
|
|
165
|
-
instagram_id: string | null;
|
|
166
|
-
youtube_ch_id: string | null;
|
|
167
|
-
google_place_url: string | null;
|
|
168
|
-
trip_advisor_url: string | null;
|
|
169
|
-
facebook: string | null;
|
|
170
|
-
naver_place_url: string | null;
|
|
171
|
-
kakao_place_url: string | null;
|
|
172
|
-
naver_reservation_url: string | null;
|
|
173
|
-
linkedin: string | null;
|
|
174
|
-
visit_korea: string | null;
|
|
175
|
-
official_youtube_video_1: string | null;
|
|
176
|
-
official_youtube_video_2: string | null;
|
|
177
|
-
official_youtube_video_3: string | null;
|
|
178
|
-
official_youtube_video_4: string | null;
|
|
179
|
-
official_youtube_video_5: string | null;
|
|
180
124
|
is_active: boolean;
|
|
181
125
|
is_display: boolean;
|
|
182
126
|
view_count: number;
|
|
@@ -12,40 +12,16 @@ export const DB_COLUMNS_CONTENT_LIST_FOR_ADMIN = [
|
|
|
12
12
|
"name",
|
|
13
13
|
"native",
|
|
14
14
|
"order_num",
|
|
15
|
-
"phone",
|
|
16
|
-
"address",
|
|
17
|
-
"address_native",
|
|
18
15
|
"google_maps_uri",
|
|
19
|
-
"website_en",
|
|
20
|
-
"website",
|
|
21
16
|
"is_gp_fetched",
|
|
22
17
|
"is_ta_fetched",
|
|
23
|
-
"is_target_for_family",
|
|
24
|
-
"is_target_for_children",
|
|
25
|
-
"is_target_for_couple",
|
|
26
|
-
"is_target_for_friends",
|
|
27
|
-
"is_target_for_solo",
|
|
28
18
|
"taking_minutes_start",
|
|
29
19
|
"taking_minutes_end",
|
|
30
20
|
"is_free_available",
|
|
31
21
|
"price_symbol",
|
|
32
22
|
"price_start",
|
|
33
23
|
"price_end",
|
|
34
|
-
"target_age_start",
|
|
35
|
-
"target_age_end",
|
|
36
|
-
"naver_map_url",
|
|
37
|
-
"instagram_id",
|
|
38
|
-
"youtube_ch_id",
|
|
39
|
-
"google_place_url",
|
|
40
|
-
"trip_advisor_url",
|
|
41
|
-
"facebook",
|
|
42
|
-
"naver_place_url",
|
|
43
|
-
"kakao_place_url",
|
|
44
|
-
"naver_reservation_url",
|
|
45
|
-
"linkedin",
|
|
46
|
-
"visit_korea",
|
|
47
24
|
"is_reservation_required",
|
|
48
|
-
"target_sex",
|
|
49
25
|
"is_open_always",
|
|
50
26
|
"period_start",
|
|
51
27
|
"period_end",
|
|
@@ -84,34 +60,10 @@ export const KEYS_CONTENT_STR = [
|
|
|
84
60
|
"address",
|
|
85
61
|
"address_native",
|
|
86
62
|
"google_maps_uri",
|
|
87
|
-
"website_en",
|
|
88
|
-
"website",
|
|
89
63
|
"price_symbol",
|
|
90
|
-
"naver_map_url",
|
|
91
|
-
"instagram_id",
|
|
92
|
-
"youtube_ch_id",
|
|
93
|
-
"google_place_url",
|
|
94
|
-
"trip_advisor_url",
|
|
95
|
-
"facebook",
|
|
96
|
-
"naver_place_url",
|
|
97
|
-
"kakao_place_url",
|
|
98
|
-
"naver_reservation_url",
|
|
99
|
-
"linkedin",
|
|
100
|
-
"visit_korea",
|
|
101
|
-
"target_sex",
|
|
102
64
|
"period_start",
|
|
103
65
|
"period_end",
|
|
104
|
-
"description",
|
|
105
66
|
"location",
|
|
106
|
-
"reservation_guide",
|
|
107
|
-
"reservation_guide_native",
|
|
108
|
-
"ticketing_guide",
|
|
109
|
-
"ticketing_guide_native",
|
|
110
|
-
"official_youtube_video_1",
|
|
111
|
-
"official_youtube_video_2",
|
|
112
|
-
"official_youtube_video_3",
|
|
113
|
-
"official_youtube_video_4",
|
|
114
|
-
"official_youtube_video_5",
|
|
115
67
|
"updated_at",
|
|
116
68
|
"closed_at",
|
|
117
69
|
"closed_by",
|
|
@@ -150,15 +102,9 @@ export const KEYS_CONTENT_NUM = [
|
|
|
150
102
|
"taking_minutes_end",
|
|
151
103
|
"price_start",
|
|
152
104
|
"price_end",
|
|
153
|
-
"target_age_start",
|
|
154
|
-
"target_age_end",
|
|
155
105
|
"latitude",
|
|
156
106
|
"longitude",
|
|
157
107
|
"radius_m",
|
|
158
|
-
"target_time_start_h",
|
|
159
|
-
"target_time_start_m",
|
|
160
|
-
"target_time_end_h",
|
|
161
|
-
"target_time_end_m",
|
|
162
108
|
"view_count",
|
|
163
109
|
"saved_count",
|
|
164
110
|
"shared_count",
|
|
@@ -168,23 +114,11 @@ export const KEYS_CONTENT_NUM = [
|
|
|
168
114
|
*/
|
|
169
115
|
export const KEYS_CONTENT_BOOL = [
|
|
170
116
|
"is_michelin",
|
|
171
|
-
"is_target_for_family",
|
|
172
|
-
"is_target_for_children",
|
|
173
|
-
"is_target_for_couple",
|
|
174
|
-
"is_target_for_friends",
|
|
175
|
-
"is_target_for_solo",
|
|
176
117
|
"is_free_available",
|
|
177
118
|
"is_reservation_required",
|
|
178
119
|
"is_open_always",
|
|
179
120
|
"is_active",
|
|
180
121
|
"is_display",
|
|
181
|
-
"sunday",
|
|
182
|
-
"monday",
|
|
183
|
-
"tuesday",
|
|
184
|
-
"wednesday",
|
|
185
|
-
"thursday",
|
|
186
|
-
"friday",
|
|
187
|
-
"saturday",
|
|
188
122
|
];
|
|
189
123
|
/*
|
|
190
124
|
* DB 컬럼 목록 For Content Keys For String Array
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"t-content.js","sourceRoot":"","sources":["../../src/content/t-content.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"t-content.js","sourceRoot":"","sources":["../../src/content/t-content.ts"],"names":[],"mappings":"AA0GA;;GAEG;AACH,MAAM,CAAC,MAAM,iCAAiC,GAAG;IAC/C,cAAc;IACd,cAAc;IACd,WAAW;IACX,aAAa;IACb,sBAAsB;IACtB,kBAAkB;IAClB,kBAAkB;IAClB,MAAM;IACN,QAAQ;IACR,WAAW;IACX,iBAAiB;IACjB,eAAe;IACf,eAAe;IACf,sBAAsB;IACtB,oBAAoB;IACpB,mBAAmB;IACnB,cAAc;IACd,aAAa;IACb,WAAW;IACX,yBAAyB;IACzB,gBAAgB;IAChB,cAAc;IACd,YAAY;IACZ,WAAW;IACX,YAAY;IACZ,YAAY;IACZ,aAAa;IACb,cAAc;IACd,eAAe;IACf,YAAY;IACZ,8BAA8B;IAC9B,WAAW;CACZ,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,SAAS;IACT,cAAc;IACd,cAAc;IACd,SAAS;IACT,kBAAkB;IAClB,eAAe;IACf,kBAAkB;IAClB,eAAe;IACf,cAAc;IACd,cAAc;IACd,WAAW;IACX,aAAa;IACb,sBAAsB;IACtB,kBAAkB;IAClB,kBAAkB;IAClB,MAAM;IACN,QAAQ;IACR,OAAO;IACP,SAAS;IACT,gBAAgB;IAChB,iBAAiB;IACjB,cAAc;IACd,cAAc;IACd,YAAY;IACZ,UAAU;IACV,YAAY;IACZ,WAAW;IACX,WAAW;IACX,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,kBAAkB;IAClB,2BAA2B;IAC3B,+BAA+B;IAC/B,0BAA0B;IAC1B,kBAAkB;IAClB,2BAA2B;IAC3B,+BAA+B;IAC/B,0BAA0B;IAC1B,kBAAkB;IAClB,2BAA2B;IAC3B,+BAA+B;IAC/B,0BAA0B;IAC1B,kBAAkB;IAClB,2BAA2B;IAC3B,+BAA+B;IAC/B,0BAA0B;IAC1B,kBAAkB;IAClB,2BAA2B;IAC3B,+BAA+B;IAC/B,0BAA0B;CAC3B,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,WAAW;IACX,sBAAsB;IACtB,oBAAoB;IACpB,aAAa;IACb,WAAW;IACX,UAAU;IACV,WAAW;IACX,UAAU;IACV,YAAY;IACZ,aAAa;IACb,cAAc;CACf,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,aAAa;IACb,mBAAmB;IACnB,yBAAyB;IACzB,gBAAgB;IAChB,WAAW;IACX,YAAY;CACb,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,kBAAkB,EAAE,2BAA2B,CAAC,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -79,6 +79,15 @@ export * from "./instagram_content/f-instagram-content.js";
|
|
|
79
79
|
export * from "./instagram_content/t-instagram-content.js";
|
|
80
80
|
export * from "./language/f-language.js";
|
|
81
81
|
export * from "./language/t-language.js";
|
|
82
|
+
export * from "./response/trand-response-category.js";
|
|
83
|
+
export * from "./response/trand-response-city.js";
|
|
84
|
+
export * from "./response/trand-response-completed-youtube-channel.js";
|
|
85
|
+
export * from "./response/trand-response-completed-youtube-video.js";
|
|
86
|
+
export * from "./response/trand-response-content.js";
|
|
87
|
+
export * from "./response/trand-response-search-result.js";
|
|
88
|
+
export * from "./response/trand-response-stag.js";
|
|
89
|
+
export * from "./response/trand-response-street.js";
|
|
90
|
+
export * from "./response/trand-response-tag.js";
|
|
82
91
|
export * from "./response/trand-response.js";
|
|
83
92
|
export * from "./stag/f-map-stag-content.js";
|
|
84
93
|
export * from "./stag/f-map-stag-instagram.js";
|
package/dist/index.js
CHANGED
|
@@ -79,6 +79,15 @@ export * from "./instagram_content/f-instagram-content.js";
|
|
|
79
79
|
export * from "./instagram_content/t-instagram-content.js";
|
|
80
80
|
export * from "./language/f-language.js";
|
|
81
81
|
export * from "./language/t-language.js";
|
|
82
|
+
export * from "./response/trand-response-category.js";
|
|
83
|
+
export * from "./response/trand-response-city.js";
|
|
84
|
+
export * from "./response/trand-response-completed-youtube-channel.js";
|
|
85
|
+
export * from "./response/trand-response-completed-youtube-video.js";
|
|
86
|
+
export * from "./response/trand-response-content.js";
|
|
87
|
+
export * from "./response/trand-response-search-result.js";
|
|
88
|
+
export * from "./response/trand-response-stag.js";
|
|
89
|
+
export * from "./response/trand-response-street.js";
|
|
90
|
+
export * from "./response/trand-response-tag.js";
|
|
82
91
|
export * from "./response/trand-response.js";
|
|
83
92
|
export * from "./stag/f-map-stag-content.js";
|
|
84
93
|
export * from "./stag/f-map-stag-instagram.js";
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AAEnC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,wCAAwC,CAAC;AACvD,cAAc,0BAA0B,CAAC;AACzC,cAAc,sCAAsC,CAAC;AACrD,cAAc,wCAAwC,CAAC;AACvD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,+BAA+B,CAAC;AAC9C,cAAc,wCAAwC,CAAC;AACvD,cAAc,0BAA0B,CAAC;AACzC,cAAc,sCAAsC,CAAC;AACrD,cAAc,wCAAwC,CAAC;AACvD,cAAc,4CAA4C,CAAC;AAE3D,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,kBAAkB,CAAC;AACjC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,oCAAoC,CAAC;AACnD,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,kBAAkB,CAAC;AACjC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,oCAAoC,CAAC;AAEnD,cAAc,4DAA4D,CAAC;AAC3E,cAAc,8DAA8D,CAAC;AAC7E,cAAc,4DAA4D,CAAC;AAC3E,cAAc,4EAA4E,CAAC;AAE3F,cAAc,wDAAwD,CAAC;AACvE,cAAc,oEAAoE,CAAC;AACnF,cAAc,qEAAqE,CAAC;AACpF,cAAc,wDAAwD,CAAC;AACvE,cAAc,wEAAwE,CAAC;AACvF,cAAc,yEAAyE,CAAC;AAExF,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC;AAEhD,cAAc,uCAAuC,CAAC;AACtD,cAAc,oCAAoC,CAAC;AACnD,cAAc,iCAAiC,CAAC;AAChD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,sCAAsC,CAAC;AACrD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,uCAAuC,CAAC;AACtD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,wBAAwB,CAAC;AACvC,cAAc,sCAAsC,CAAC;AACrD,cAAc,0CAA0C,CAAC;AACzD,cAAc,uCAAuC,CAAC;AACtD,cAAc,oCAAoC,CAAC;AACnD,cAAc,iCAAiC,CAAC;AAChD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,sCAAsC,CAAC;AACrD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,uCAAuC,CAAC;AACtD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,wBAAwB,CAAC;AACvC,cAAc,sCAAsC,CAAC;AACrD,cAAc,0CAA0C,CAAC;AAEzD,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AAEvC,cAAc,0CAA0C,CAAC;AACzD,cAAc,0CAA0C,CAAC;AAEzD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,4CAA4C,CAAC;AAE3D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,4CAA4C,CAAC;AAE3D,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AAEnC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,wCAAwC,CAAC;AACvD,cAAc,0BAA0B,CAAC;AACzC,cAAc,sCAAsC,CAAC;AACrD,cAAc,wCAAwC,CAAC;AACvD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,+BAA+B,CAAC;AAC9C,cAAc,wCAAwC,CAAC;AACvD,cAAc,0BAA0B,CAAC;AACzC,cAAc,sCAAsC,CAAC;AACrD,cAAc,wCAAwC,CAAC;AACvD,cAAc,4CAA4C,CAAC;AAE3D,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,kBAAkB,CAAC;AACjC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,oCAAoC,CAAC;AACnD,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,kBAAkB,CAAC;AACjC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,oCAAoC,CAAC;AAEnD,cAAc,4DAA4D,CAAC;AAC3E,cAAc,8DAA8D,CAAC;AAC7E,cAAc,4DAA4D,CAAC;AAC3E,cAAc,4EAA4E,CAAC;AAE3F,cAAc,wDAAwD,CAAC;AACvE,cAAc,oEAAoE,CAAC;AACnF,cAAc,qEAAqE,CAAC;AACpF,cAAc,wDAAwD,CAAC;AACvE,cAAc,wEAAwE,CAAC;AACvF,cAAc,yEAAyE,CAAC;AAExF,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC;AAEhD,cAAc,uCAAuC,CAAC;AACtD,cAAc,oCAAoC,CAAC;AACnD,cAAc,iCAAiC,CAAC;AAChD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,sCAAsC,CAAC;AACrD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,uCAAuC,CAAC;AACtD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,wBAAwB,CAAC;AACvC,cAAc,sCAAsC,CAAC;AACrD,cAAc,0CAA0C,CAAC;AACzD,cAAc,uCAAuC,CAAC;AACtD,cAAc,oCAAoC,CAAC;AACnD,cAAc,iCAAiC,CAAC;AAChD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,sCAAsC,CAAC;AACrD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,uCAAuC,CAAC;AACtD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,wBAAwB,CAAC;AACvC,cAAc,sCAAsC,CAAC;AACrD,cAAc,0CAA0C,CAAC;AAEzD,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AAEvC,cAAc,0CAA0C,CAAC;AACzD,cAAc,0CAA0C,CAAC;AAEzD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,4CAA4C,CAAC;AAE3D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,4CAA4C,CAAC;AAE3D,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AAEzC,cAAc,uCAAuC,CAAC;AACtD,cAAc,mCAAmC,CAAC;AAClD,cAAc,wDAAwD,CAAC;AACvE,cAAc,sDAAsD,CAAC;AACrE,cAAc,sCAAsC,CAAC;AACrD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,mCAAmC,CAAC;AAClD,cAAc,qCAAqC,CAAC;AACpD,cAAc,kCAAkC,CAAC;AACjD,cAAc,8BAA8B,CAAC;AAE7C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,oCAAoC,CAAC;AACnD,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,kBAAkB,CAAC;AACjC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,oCAAoC,CAAC;AACnD,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,kBAAkB,CAAC;AAEjC,cAAc,kCAAkC,CAAC;AACjD,cAAc,oCAAoC,CAAC;AACnD,cAAc,wCAAwC,CAAC;AACvD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,oCAAoC,CAAC;AACnD,cAAc,sBAAsB,CAAC;AACrC,cAAc,kCAAkC,CAAC;AACjD,cAAc,oCAAoC,CAAC;AACnD,cAAc,wCAAwC,CAAC;AACvD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,oCAAoC,CAAC;AACnD,cAAc,sBAAsB,CAAC;AAErC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gBAAgB,CAAC;AAE/B,cAAc,4CAA4C,CAAC;AAC3D,cAAc,4CAA4C,CAAC;AAE3D,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AAEtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { TCategoryDetail, TCategoryDetailInsert, TCategoryDetailUpdate } from "../category/t-category.js";
|
|
2
|
+
import { TCategoryI18n } from "../category/t-category-i18n.js";
|
|
3
|
+
import { TCategoryMetadataI18n } from "../category/t-category-metadata-i18n.js";
|
|
4
|
+
import { TMapCategoryContent } from "../category/t-map-category-content.js";
|
|
5
|
+
import { TMapCategoryInstagram } from "../category/t-map-category-instagram.js";
|
|
6
|
+
import { TMapCategoryYouTubeVideo } from "../category/t-map-category-youtube-video.js";
|
|
7
|
+
import { TCompletedYouTubeVideoListForPublicFront } from "../completed_youtube_video/t-completed-youtube-video.js";
|
|
8
|
+
import { TContentDetail } from "../content/t-content.js";
|
|
9
|
+
import { TInstagramContent } from "../instagram_content/t-instagram-content.js";
|
|
10
|
+
import { ResponseItemsFlat, ResponseItemsPaired, ResponseListBase } from "./trand-response.js";
|
|
11
|
+
import { CityInfoBase } from "./trand-response-city.js";
|
|
12
|
+
export type CategoryInfoBase = {
|
|
13
|
+
category_code: string;
|
|
14
|
+
name: string;
|
|
15
|
+
name_ko: string;
|
|
16
|
+
name_i18n: string;
|
|
17
|
+
description_i18n: string;
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* Category Detail - Admin
|
|
21
|
+
*/
|
|
22
|
+
export type ResponseCategoryDetailForAdmin = {
|
|
23
|
+
content: TCategoryDetail;
|
|
24
|
+
subCategories?: TCategoryDetail[];
|
|
25
|
+
i18n?: TCategoryI18n[];
|
|
26
|
+
metadataI18n?: TCategoryMetadataI18n[];
|
|
27
|
+
mapCategoryContent?: ResponseItemsFlat<TMapCategoryContent>;
|
|
28
|
+
mapCategoryYouTubeVideo?: ResponseItemsFlat<TMapCategoryYouTubeVideo>;
|
|
29
|
+
mapCategoryInstagram?: ResponseItemsFlat<TMapCategoryInstagram>;
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* Category YouTube Video List - Public
|
|
33
|
+
*/
|
|
34
|
+
export type ResponseCategoryYouTubeVideoListForPublic = {
|
|
35
|
+
cityInfo?: CityInfoBase;
|
|
36
|
+
categoryInfo?: CategoryInfoBase;
|
|
37
|
+
items: Array<{
|
|
38
|
+
map: TMapCategoryYouTubeVideo;
|
|
39
|
+
content: TCompletedYouTubeVideoListForPublicFront;
|
|
40
|
+
}>;
|
|
41
|
+
} & ResponseListBase;
|
|
42
|
+
/**
|
|
43
|
+
* Category YouTube Shorts List - Public
|
|
44
|
+
*/
|
|
45
|
+
export type ResponseCategoryYouTubeVideoShortsListForPublic = {
|
|
46
|
+
cityInfo?: CityInfoBase;
|
|
47
|
+
categoryInfo?: CategoryInfoBase;
|
|
48
|
+
items: Array<{
|
|
49
|
+
map: TMapCategoryYouTubeVideo;
|
|
50
|
+
content: TCompletedYouTubeVideoListForPublicFront;
|
|
51
|
+
}>;
|
|
52
|
+
} & ResponseListBase;
|
|
53
|
+
/**
|
|
54
|
+
* Category Content List - Public
|
|
55
|
+
*/
|
|
56
|
+
export type ResponseCategoryContentListForPublic = {
|
|
57
|
+
cityInfo?: CityInfoBase;
|
|
58
|
+
categoryInfo?: CategoryInfoBase;
|
|
59
|
+
items: Array<{
|
|
60
|
+
map: TMapCategoryContent;
|
|
61
|
+
content: TContentDetail;
|
|
62
|
+
}>;
|
|
63
|
+
} & ResponseListBase;
|
|
64
|
+
/**
|
|
65
|
+
* Category Detail - Public
|
|
66
|
+
*/
|
|
67
|
+
export type ResponseCategoryDetailForPublic = {
|
|
68
|
+
content: TCategoryDetail;
|
|
69
|
+
cityDetail?: {
|
|
70
|
+
city_code: string;
|
|
71
|
+
name: string;
|
|
72
|
+
native: string;
|
|
73
|
+
name_ko: string;
|
|
74
|
+
};
|
|
75
|
+
subCategories?: TCategoryDetail[];
|
|
76
|
+
i18n?: TCategoryI18n;
|
|
77
|
+
metadataI18n?: TCategoryMetadataI18n;
|
|
78
|
+
mapCategoryContent?: ResponseCategoryContentListForPublic;
|
|
79
|
+
mapCategoryYouTubeVideo?: ResponseCategoryYouTubeVideoListForPublic;
|
|
80
|
+
mapCategoryYouTubeVideoShorts?: ResponseCategoryYouTubeVideoShortsListForPublic;
|
|
81
|
+
mapCategoryInstagram?: ResponseItemsPaired<TMapCategoryInstagram, TInstagramContent>;
|
|
82
|
+
};
|
|
83
|
+
export type TCategoryAdminCreateForm = {
|
|
84
|
+
categoryInfo: TCategoryDetailInsert;
|
|
85
|
+
files: Record<string, File | null>;
|
|
86
|
+
};
|
|
87
|
+
export type TCategoryAdminUpdateForm = {
|
|
88
|
+
categoryInfo: TCategoryDetailUpdate;
|
|
89
|
+
files: Record<string, File | null>;
|
|
90
|
+
deletedImageKeys: Set<string>;
|
|
91
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"trand-response-category.js","sourceRoot":"","sources":["../../src/response/trand-response-category.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { TCategoryListForPublic } from "../category/t-category.js";
|
|
2
|
+
import { TCityDetail, TCityDetailInsert, TCityDetailUpdate } from "../city/t-city.js";
|
|
3
|
+
import { TCityI18n } from "../city/t-city-i18n.js";
|
|
4
|
+
import { TCityImage, TCityImageAdminInput } from "../city/t-city-image.js";
|
|
5
|
+
import { TCityMetadataI18n } from "../city/t-city-metadata-i18n.js";
|
|
6
|
+
import { TMapCityContent } from "../city/t-map-city-content.js";
|
|
7
|
+
import { TMapCityInstagram } from "../city/t-map-city-instagram.js";
|
|
8
|
+
import { TMapCityYouTubeVideo } from "../city/t-map-city-youtube-video.js";
|
|
9
|
+
import { TCompletedYouTubeVideoListForPublicFront } from "../completed_youtube_video/t-completed-youtube-video.js";
|
|
10
|
+
import { TContentDetail } from "../content/t-content.js";
|
|
11
|
+
import { TInstagramContent } from "../instagram_content/t-instagram-content.js";
|
|
12
|
+
import { ResponseItemsFlat, ResponseItemsPaired, ResponseListBase } from "./trand-response.js";
|
|
13
|
+
import { ResponseStreetListForPublic } from "./trand-response-street.js";
|
|
14
|
+
export type CityInfoBase = {
|
|
15
|
+
city_code: string;
|
|
16
|
+
name: string;
|
|
17
|
+
native: string;
|
|
18
|
+
name_ko: string;
|
|
19
|
+
name_i18n: string;
|
|
20
|
+
description_i18n: string;
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* City Detail - Admin
|
|
24
|
+
*/
|
|
25
|
+
export type ResponseCityDetailForAdmin = {
|
|
26
|
+
content: TCityDetail;
|
|
27
|
+
images?: TCityImage[];
|
|
28
|
+
i18n?: TCityI18n[];
|
|
29
|
+
metadataI18n?: TCityMetadataI18n[];
|
|
30
|
+
mapCityContent?: ResponseItemsFlat<TMapCityContent>;
|
|
31
|
+
mapCityYouTubeVideo?: ResponseItemsFlat<TMapCityYouTubeVideo>;
|
|
32
|
+
mapCityInstagram?: ResponseItemsFlat<TMapCityInstagram>;
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* City YouTube Video List - Public
|
|
36
|
+
*/
|
|
37
|
+
export type ResponseCityYouTubeVideoListForPublic = {
|
|
38
|
+
cityInfo: CityInfoBase;
|
|
39
|
+
items: Array<{
|
|
40
|
+
map: TMapCityYouTubeVideo;
|
|
41
|
+
content: TCompletedYouTubeVideoListForPublicFront;
|
|
42
|
+
}>;
|
|
43
|
+
} & ResponseListBase;
|
|
44
|
+
/**
|
|
45
|
+
* City YouTube Shorts List - Public
|
|
46
|
+
*/
|
|
47
|
+
export type ResponseCityYouTubeVideoShortsListForPublic = {
|
|
48
|
+
cityInfo: CityInfoBase;
|
|
49
|
+
items: Array<{
|
|
50
|
+
map: TMapCityYouTubeVideo;
|
|
51
|
+
content: TCompletedYouTubeVideoListForPublicFront;
|
|
52
|
+
}>;
|
|
53
|
+
} & ResponseListBase;
|
|
54
|
+
/**
|
|
55
|
+
* City Content List - Public
|
|
56
|
+
*/
|
|
57
|
+
export type ResponseCityContentListForPublic = {
|
|
58
|
+
cityInfo: CityInfoBase;
|
|
59
|
+
items: Array<{
|
|
60
|
+
map: TMapCityContent;
|
|
61
|
+
content: TContentDetail;
|
|
62
|
+
}>;
|
|
63
|
+
} & ResponseListBase;
|
|
64
|
+
/**
|
|
65
|
+
* City Detail - Public
|
|
66
|
+
*/
|
|
67
|
+
export type ResponseCityDetailForPublic = {
|
|
68
|
+
content: TCityDetail;
|
|
69
|
+
images?: TCityImage[];
|
|
70
|
+
i18n?: TCityI18n;
|
|
71
|
+
metadataI18n?: TCityMetadataI18n;
|
|
72
|
+
categories?: TCategoryListForPublic[];
|
|
73
|
+
streets?: ResponseStreetListForPublic;
|
|
74
|
+
mapCityContent?: ResponseCityContentListForPublic;
|
|
75
|
+
mapCityYouTubeVideo?: ResponseCityYouTubeVideoListForPublic;
|
|
76
|
+
mapCityYouTubeVideoShorts?: ResponseCityYouTubeVideoShortsListForPublic;
|
|
77
|
+
mapCityInstagram?: ResponseItemsPaired<TMapCityInstagram, TInstagramContent>;
|
|
78
|
+
};
|
|
79
|
+
export type TCityAdminCreateForm = {
|
|
80
|
+
cityInfo: TCityDetailInsert;
|
|
81
|
+
files: Record<string, File | null>;
|
|
82
|
+
images: TCityImageAdminInput[];
|
|
83
|
+
};
|
|
84
|
+
export type TCityAdminUpdateForm = {
|
|
85
|
+
cityInfo: TCityDetailUpdate;
|
|
86
|
+
files: Record<string, File | null>;
|
|
87
|
+
images: TCityImageAdminInput[];
|
|
88
|
+
deletedImageKeys: Set<string>;
|
|
89
|
+
deletedImageHashes: Set<string>;
|
|
90
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"trand-response-city.js","sourceRoot":"","sources":["../../src/response/trand-response-city.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { TCompletedYouTubeChannelDetail } from "../completed_youtube_channel/t-completed-youtube-channel.js";
|
|
2
|
+
import { TMapCompletedYouTubeChannelAndCountry } from "../completed_youtube_channel/t-map-completed-youtube-channel-and-country.js";
|
|
3
|
+
/**
|
|
4
|
+
* YouTube Channel Detail - Admin
|
|
5
|
+
*/
|
|
6
|
+
export type ResponseCompletedYouTubeChannelDetailForAdmin = {
|
|
7
|
+
content: TCompletedYouTubeChannelDetail;
|
|
8
|
+
mapYouTubeChannelCountry?: TMapCompletedYouTubeChannelAndCountry[];
|
|
9
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"trand-response-completed-youtube-channel.js","sourceRoot":"","sources":["../../src/response/trand-response-completed-youtube-channel.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { TMapCategoryYouTubeVideo } from "../category/t-map-category-youtube-video.js";
|
|
2
|
+
import { TMapCityYouTubeVideo } from "../city/t-map-city-youtube-video.js";
|
|
3
|
+
import { TCompletedYouTubeVideoDetail } from "../completed_youtube_video/t-completed-youtube-video.js";
|
|
4
|
+
import { TMapCompletedYouTubeVideoAndKeyword } from "../completed_youtube_video/t-map-completed-youtube-video-and-keyword.js";
|
|
5
|
+
import { TMapCompletedYouTubeVideoAndTimeline } from "../completed_youtube_video/t-map-completed-youtube-video-and-timeline.js";
|
|
6
|
+
import { TMapContentYouTubeVideo } from "../content/t-map-content-youtube-video.js";
|
|
7
|
+
import { TMapStagYouTubeVideo } from "../stag/t-map-stag-youtube-video.js";
|
|
8
|
+
import { TMapStreetYouTubeVideo } from "../street/t-map-street-youtube-video.js";
|
|
9
|
+
/**
|
|
10
|
+
* YouTube Video Detail - Admin
|
|
11
|
+
*/
|
|
12
|
+
export type ResponseCompletedYouTubeVideoDetailForAdmin = {
|
|
13
|
+
content: TCompletedYouTubeVideoDetail;
|
|
14
|
+
mapYouTubeVideoKeyword?: TMapCompletedYouTubeVideoAndKeyword[];
|
|
15
|
+
mapYouTubeVideoTimeline?: TMapCompletedYouTubeVideoAndTimeline[];
|
|
16
|
+
mapYouTubeVideoCity?: TMapCityYouTubeVideo[];
|
|
17
|
+
mapYouTubeVideoStreet?: TMapStreetYouTubeVideo[];
|
|
18
|
+
mapYouTubeVideoContent?: TMapContentYouTubeVideo[];
|
|
19
|
+
mapYouTubeVideoCategory?: TMapCategoryYouTubeVideo[];
|
|
20
|
+
mapYouTubeVideoStag?: TMapStagYouTubeVideo[];
|
|
21
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"trand-response-completed-youtube-video.js","sourceRoot":"","sources":["../../src/response/trand-response-completed-youtube-video.ts"],"names":[],"mappings":""}
|