trand_common_v1 0.2.104 → 0.2.106
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 +1 -7
- package/dist/street/t-street.js.map +1 -1
- package/package.json +1 -1
|
@@ -15,3 +15,13 @@ export type TCityImageInsert = {
|
|
|
15
15
|
url: string;
|
|
16
16
|
} & Partial<Omit<TCityImage, "city_code" | "hash_code" | "url">>;
|
|
17
17
|
export type TCityImageUpdate = Partial<Omit<TCityImage, "city_code" | "hash_code">>;
|
|
18
|
+
export type TCityImageAdminInput = {
|
|
19
|
+
city_code?: string;
|
|
20
|
+
hash_code?: string;
|
|
21
|
+
file: File | null;
|
|
22
|
+
label: string | null;
|
|
23
|
+
src_name: string | null;
|
|
24
|
+
src_platform: string | null;
|
|
25
|
+
src_url: string | null;
|
|
26
|
+
order_num: number;
|
|
27
|
+
};
|
|
@@ -6,4 +6,170 @@ export declare const F_CONTENT_DESCRIPTION: {
|
|
|
6
6
|
max_length: number;
|
|
7
7
|
placeholder: string;
|
|
8
8
|
};
|
|
9
|
+
description: {
|
|
10
|
+
id: string;
|
|
11
|
+
label: string;
|
|
12
|
+
is_required: boolean;
|
|
13
|
+
max_length: number;
|
|
14
|
+
placeholder: string;
|
|
15
|
+
};
|
|
16
|
+
phone: {
|
|
17
|
+
id: string;
|
|
18
|
+
label: string;
|
|
19
|
+
is_required: boolean;
|
|
20
|
+
max_length: number;
|
|
21
|
+
placeholder: string;
|
|
22
|
+
};
|
|
23
|
+
address: {
|
|
24
|
+
id: string;
|
|
25
|
+
label: string;
|
|
26
|
+
is_required: boolean;
|
|
27
|
+
max_length: number;
|
|
28
|
+
placeholder: string;
|
|
29
|
+
};
|
|
30
|
+
address_native: {
|
|
31
|
+
id: string;
|
|
32
|
+
label: string;
|
|
33
|
+
is_required: boolean;
|
|
34
|
+
max_length: number;
|
|
35
|
+
placeholder: string;
|
|
36
|
+
};
|
|
37
|
+
website_en: {
|
|
38
|
+
id: string;
|
|
39
|
+
label: string;
|
|
40
|
+
is_required: boolean;
|
|
41
|
+
max_length: number;
|
|
42
|
+
};
|
|
43
|
+
website: {
|
|
44
|
+
id: string;
|
|
45
|
+
label: string;
|
|
46
|
+
is_required: boolean;
|
|
47
|
+
max_length: number;
|
|
48
|
+
};
|
|
49
|
+
naver_map_url: {
|
|
50
|
+
id: string;
|
|
51
|
+
label: string;
|
|
52
|
+
is_required: boolean;
|
|
53
|
+
max_length: number;
|
|
54
|
+
};
|
|
55
|
+
instagram_id: {
|
|
56
|
+
id: string;
|
|
57
|
+
label: string;
|
|
58
|
+
is_required: boolean;
|
|
59
|
+
max_length: number;
|
|
60
|
+
};
|
|
61
|
+
youtube_ch_id: {
|
|
62
|
+
id: string;
|
|
63
|
+
label: string;
|
|
64
|
+
is_required: boolean;
|
|
65
|
+
max_length: number;
|
|
66
|
+
placeholder: string;
|
|
67
|
+
};
|
|
68
|
+
google_place_url: {
|
|
69
|
+
id: string;
|
|
70
|
+
label: string;
|
|
71
|
+
is_required: boolean;
|
|
72
|
+
max_length: number;
|
|
73
|
+
};
|
|
74
|
+
trip_advisor_url: {
|
|
75
|
+
id: string;
|
|
76
|
+
label: string;
|
|
77
|
+
is_required: boolean;
|
|
78
|
+
max_length: number;
|
|
79
|
+
};
|
|
80
|
+
facebook: {
|
|
81
|
+
id: string;
|
|
82
|
+
label: string;
|
|
83
|
+
is_required: boolean;
|
|
84
|
+
max_length: number;
|
|
85
|
+
};
|
|
86
|
+
naver_place_url: {
|
|
87
|
+
id: string;
|
|
88
|
+
label: string;
|
|
89
|
+
is_required: boolean;
|
|
90
|
+
max_length: number;
|
|
91
|
+
};
|
|
92
|
+
kakao_place_url: {
|
|
93
|
+
id: string;
|
|
94
|
+
label: string;
|
|
95
|
+
is_required: boolean;
|
|
96
|
+
max_length: number;
|
|
97
|
+
};
|
|
98
|
+
naver_reservation_url: {
|
|
99
|
+
id: string;
|
|
100
|
+
label: string;
|
|
101
|
+
is_required: boolean;
|
|
102
|
+
max_length: number;
|
|
103
|
+
};
|
|
104
|
+
linkedin: {
|
|
105
|
+
id: string;
|
|
106
|
+
label: string;
|
|
107
|
+
is_required: boolean;
|
|
108
|
+
max_length: number;
|
|
109
|
+
};
|
|
110
|
+
visit_korea: {
|
|
111
|
+
id: string;
|
|
112
|
+
label: string;
|
|
113
|
+
is_required: boolean;
|
|
114
|
+
max_length: number;
|
|
115
|
+
};
|
|
116
|
+
reservation_guide: {
|
|
117
|
+
id: string;
|
|
118
|
+
label: string;
|
|
119
|
+
is_required: boolean;
|
|
120
|
+
max_length: number;
|
|
121
|
+
};
|
|
122
|
+
reservation_guide_native: {
|
|
123
|
+
id: string;
|
|
124
|
+
label: string;
|
|
125
|
+
is_required: boolean;
|
|
126
|
+
max_length: number;
|
|
127
|
+
};
|
|
128
|
+
ticketing_guide: {
|
|
129
|
+
id: string;
|
|
130
|
+
label: string;
|
|
131
|
+
is_required: boolean;
|
|
132
|
+
max_length: number;
|
|
133
|
+
};
|
|
134
|
+
ticketing_guide_native: {
|
|
135
|
+
id: string;
|
|
136
|
+
label: string;
|
|
137
|
+
is_required: boolean;
|
|
138
|
+
max_length: number;
|
|
139
|
+
};
|
|
140
|
+
official_youtube_video_1: {
|
|
141
|
+
id: string;
|
|
142
|
+
label: string;
|
|
143
|
+
is_required: boolean;
|
|
144
|
+
max_length: number;
|
|
145
|
+
placeholder: string;
|
|
146
|
+
};
|
|
147
|
+
official_youtube_video_2: {
|
|
148
|
+
id: string;
|
|
149
|
+
label: string;
|
|
150
|
+
is_required: boolean;
|
|
151
|
+
max_length: number;
|
|
152
|
+
placeholder: string;
|
|
153
|
+
};
|
|
154
|
+
official_youtube_video_3: {
|
|
155
|
+
id: string;
|
|
156
|
+
label: string;
|
|
157
|
+
is_required: boolean;
|
|
158
|
+
max_length: number;
|
|
159
|
+
placeholder: string;
|
|
160
|
+
};
|
|
161
|
+
official_youtube_video_4: {
|
|
162
|
+
id: string;
|
|
163
|
+
label: string;
|
|
164
|
+
is_required: boolean;
|
|
165
|
+
max_length: number;
|
|
166
|
+
placeholder: string;
|
|
167
|
+
};
|
|
168
|
+
official_youtube_video_5: {
|
|
169
|
+
id: string;
|
|
170
|
+
label: string;
|
|
171
|
+
is_required: boolean;
|
|
172
|
+
max_length: number;
|
|
173
|
+
placeholder: string;
|
|
174
|
+
};
|
|
9
175
|
};
|
|
@@ -6,5 +6,171 @@ export const F_CONTENT_DESCRIPTION = {
|
|
|
6
6
|
max_length: 127,
|
|
7
7
|
placeholder: "ex. ojeje-gwanghwamun-seoul",
|
|
8
8
|
},
|
|
9
|
+
description: {
|
|
10
|
+
id: "description",
|
|
11
|
+
label: "Description",
|
|
12
|
+
is_required: false,
|
|
13
|
+
max_length: 2045,
|
|
14
|
+
placeholder: "ex. Gyeongbokgung Palace is a palace in Seoul, South Korea.",
|
|
15
|
+
},
|
|
16
|
+
phone: {
|
|
17
|
+
id: "phone",
|
|
18
|
+
label: "Phone",
|
|
19
|
+
is_required: false,
|
|
20
|
+
max_length: 45,
|
|
21
|
+
placeholder: "ex. +82-2-123-4567",
|
|
22
|
+
},
|
|
23
|
+
address: {
|
|
24
|
+
id: "address",
|
|
25
|
+
label: "Address",
|
|
26
|
+
is_required: false,
|
|
27
|
+
max_length: 255,
|
|
28
|
+
placeholder: "ex. 123, Sejong-ro, Jongno-gu, Seoul, South Korea",
|
|
29
|
+
},
|
|
30
|
+
address_native: {
|
|
31
|
+
id: "address_native",
|
|
32
|
+
label: "Address Native",
|
|
33
|
+
is_required: false,
|
|
34
|
+
max_length: 255,
|
|
35
|
+
placeholder: "ex. 123, 세조로 123 서울시 종로구 서울",
|
|
36
|
+
},
|
|
37
|
+
website_en: {
|
|
38
|
+
id: "website_en",
|
|
39
|
+
label: "Website En",
|
|
40
|
+
is_required: false,
|
|
41
|
+
max_length: 255,
|
|
42
|
+
},
|
|
43
|
+
website: {
|
|
44
|
+
id: "website",
|
|
45
|
+
label: "Website",
|
|
46
|
+
is_required: false,
|
|
47
|
+
max_length: 255,
|
|
48
|
+
},
|
|
49
|
+
naver_map_url: {
|
|
50
|
+
id: "naver_map_url",
|
|
51
|
+
label: "Naver Map Url",
|
|
52
|
+
is_required: false,
|
|
53
|
+
max_length: 255,
|
|
54
|
+
},
|
|
55
|
+
instagram_id: {
|
|
56
|
+
id: "instagram_id",
|
|
57
|
+
label: "Instagram ID",
|
|
58
|
+
is_required: false,
|
|
59
|
+
max_length: 48,
|
|
60
|
+
},
|
|
61
|
+
youtube_ch_id: {
|
|
62
|
+
id: "youtube_ch_id",
|
|
63
|
+
label: "Youtube Channel Id",
|
|
64
|
+
is_required: false,
|
|
65
|
+
max_length: 48,
|
|
66
|
+
placeholder: "ex. EzIc0fcn-Zg",
|
|
67
|
+
},
|
|
68
|
+
google_place_url: {
|
|
69
|
+
id: "google_place_url",
|
|
70
|
+
label: "Google Place Url",
|
|
71
|
+
is_required: false,
|
|
72
|
+
max_length: 1023,
|
|
73
|
+
},
|
|
74
|
+
trip_advisor_url: {
|
|
75
|
+
id: "trip_advisor_url",
|
|
76
|
+
label: "Trip Advisor Url",
|
|
77
|
+
is_required: false,
|
|
78
|
+
max_length: 1023,
|
|
79
|
+
},
|
|
80
|
+
facebook: {
|
|
81
|
+
id: "facebook",
|
|
82
|
+
label: "Facebook",
|
|
83
|
+
is_required: false,
|
|
84
|
+
max_length: 255,
|
|
85
|
+
},
|
|
86
|
+
naver_place_url: {
|
|
87
|
+
id: "naver_place_url",
|
|
88
|
+
label: "Naver Place Url",
|
|
89
|
+
is_required: false,
|
|
90
|
+
max_length: 1023,
|
|
91
|
+
},
|
|
92
|
+
kakao_place_url: {
|
|
93
|
+
id: "kakao_place_url",
|
|
94
|
+
label: "Kakao Place Url",
|
|
95
|
+
is_required: false,
|
|
96
|
+
max_length: 1023,
|
|
97
|
+
},
|
|
98
|
+
naver_reservation_url: {
|
|
99
|
+
id: "naver_reservation_url",
|
|
100
|
+
label: "Naver Reservation Url",
|
|
101
|
+
is_required: false,
|
|
102
|
+
max_length: 1023,
|
|
103
|
+
},
|
|
104
|
+
linkedin: {
|
|
105
|
+
id: "linkedin",
|
|
106
|
+
label: "Linkedin",
|
|
107
|
+
is_required: false,
|
|
108
|
+
max_length: 1023,
|
|
109
|
+
},
|
|
110
|
+
visit_korea: {
|
|
111
|
+
id: "visit_korea",
|
|
112
|
+
label: "Visit Korea",
|
|
113
|
+
is_required: false,
|
|
114
|
+
max_length: 1023,
|
|
115
|
+
},
|
|
116
|
+
reservation_guide: {
|
|
117
|
+
id: "reservation_guide",
|
|
118
|
+
label: "Reservation Guide",
|
|
119
|
+
is_required: false,
|
|
120
|
+
max_length: 1023,
|
|
121
|
+
},
|
|
122
|
+
reservation_guide_native: {
|
|
123
|
+
id: "reservation_guide_native",
|
|
124
|
+
label: "Reservation Guide Native",
|
|
125
|
+
is_required: false,
|
|
126
|
+
max_length: 1023,
|
|
127
|
+
},
|
|
128
|
+
ticketing_guide: {
|
|
129
|
+
id: "ticketing_guide",
|
|
130
|
+
label: "Ticketing Guide",
|
|
131
|
+
is_required: false,
|
|
132
|
+
max_length: 1023,
|
|
133
|
+
},
|
|
134
|
+
ticketing_guide_native: {
|
|
135
|
+
id: "ticketing_guide_native",
|
|
136
|
+
label: "Ticketing Guide Native",
|
|
137
|
+
is_required: false,
|
|
138
|
+
max_length: 1023,
|
|
139
|
+
},
|
|
140
|
+
official_youtube_video_1: {
|
|
141
|
+
id: "official_youtube_video_1",
|
|
142
|
+
label: "Official Youtube Video 1",
|
|
143
|
+
is_required: false,
|
|
144
|
+
max_length: 36,
|
|
145
|
+
placeholder: "ex. EzIc0fcn-Zg",
|
|
146
|
+
},
|
|
147
|
+
official_youtube_video_2: {
|
|
148
|
+
id: "official_youtube_video_2",
|
|
149
|
+
label: "Official Youtube Video 2",
|
|
150
|
+
is_required: false,
|
|
151
|
+
max_length: 36,
|
|
152
|
+
placeholder: "ex. EzIc0fcn-Zg",
|
|
153
|
+
},
|
|
154
|
+
official_youtube_video_3: {
|
|
155
|
+
id: "official_youtube_video_3",
|
|
156
|
+
label: "Official Youtube Video 3",
|
|
157
|
+
is_required: false,
|
|
158
|
+
max_length: 36,
|
|
159
|
+
placeholder: "ex. EzIc0fcn-Zg",
|
|
160
|
+
},
|
|
161
|
+
official_youtube_video_4: {
|
|
162
|
+
id: "official_youtube_video_4",
|
|
163
|
+
label: "Official Youtube Video 4",
|
|
164
|
+
is_required: false,
|
|
165
|
+
max_length: 36,
|
|
166
|
+
placeholder: "ex. EzIc0fcn-Zg",
|
|
167
|
+
},
|
|
168
|
+
official_youtube_video_5: {
|
|
169
|
+
id: "official_youtube_video_5",
|
|
170
|
+
label: "Official Youtube Video 5",
|
|
171
|
+
is_required: false,
|
|
172
|
+
max_length: 36,
|
|
173
|
+
placeholder: "ex. EzIc0fcn-Zg",
|
|
174
|
+
},
|
|
9
175
|
};
|
|
10
176
|
//# sourceMappingURL=f-content-description.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"f-content-description.js","sourceRoot":"","sources":["../../src/content/f-content-description.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,qBAAqB,GAAG;IACnC,YAAY,EAAE;QACZ,EAAE,EAAE,cAAc;QAClB,KAAK,EAAE,cAAc;QACrB,WAAW,EAAE,IAAI;QACjB,UAAU,EAAE,GAAG;QACf,WAAW,EAAE,6BAA6B;KAC3C;CACF,CAAC"}
|
|
1
|
+
{"version":3,"file":"f-content-description.js","sourceRoot":"","sources":["../../src/content/f-content-description.ts"],"names":[],"mappings":"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"}
|
|
@@ -6,4 +6,65 @@ export declare const F_CONTENT_TARGET: {
|
|
|
6
6
|
max_length: number;
|
|
7
7
|
placeholder: string;
|
|
8
8
|
};
|
|
9
|
+
is_target_for_family: {
|
|
10
|
+
id: string;
|
|
11
|
+
label: string;
|
|
12
|
+
is_required: boolean;
|
|
13
|
+
};
|
|
14
|
+
is_target_for_children: {
|
|
15
|
+
id: string;
|
|
16
|
+
label: string;
|
|
17
|
+
is_required: boolean;
|
|
18
|
+
};
|
|
19
|
+
is_target_for_couple: {
|
|
20
|
+
id: string;
|
|
21
|
+
label: string;
|
|
22
|
+
is_required: boolean;
|
|
23
|
+
};
|
|
24
|
+
is_target_for_friends: {
|
|
25
|
+
id: string;
|
|
26
|
+
label: string;
|
|
27
|
+
is_required: boolean;
|
|
28
|
+
};
|
|
29
|
+
is_target_for_solo: {
|
|
30
|
+
id: string;
|
|
31
|
+
label: string;
|
|
32
|
+
is_required: boolean;
|
|
33
|
+
};
|
|
34
|
+
target_age_start: {
|
|
35
|
+
id: string;
|
|
36
|
+
label: string;
|
|
37
|
+
is_required: boolean;
|
|
38
|
+
};
|
|
39
|
+
target_age_end: {
|
|
40
|
+
id: string;
|
|
41
|
+
label: string;
|
|
42
|
+
is_required: boolean;
|
|
43
|
+
};
|
|
44
|
+
target_sex: {
|
|
45
|
+
id: string;
|
|
46
|
+
label: string;
|
|
47
|
+
is_required: boolean;
|
|
48
|
+
max_length: number;
|
|
49
|
+
};
|
|
50
|
+
target_time_start_h: {
|
|
51
|
+
id: string;
|
|
52
|
+
label: string;
|
|
53
|
+
is_required: boolean;
|
|
54
|
+
};
|
|
55
|
+
target_time_start_m: {
|
|
56
|
+
id: string;
|
|
57
|
+
label: string;
|
|
58
|
+
is_required: boolean;
|
|
59
|
+
};
|
|
60
|
+
target_time_end_h: {
|
|
61
|
+
id: string;
|
|
62
|
+
label: string;
|
|
63
|
+
is_required: boolean;
|
|
64
|
+
};
|
|
65
|
+
target_time_end_m: {
|
|
66
|
+
id: string;
|
|
67
|
+
label: string;
|
|
68
|
+
is_required: boolean;
|
|
69
|
+
};
|
|
9
70
|
};
|
|
@@ -6,5 +6,66 @@ export const F_CONTENT_TARGET = {
|
|
|
6
6
|
max_length: 127,
|
|
7
7
|
placeholder: "ex. ojeje-gwanghwamun-seoul",
|
|
8
8
|
},
|
|
9
|
+
is_target_for_family: {
|
|
10
|
+
id: "is_target_for_family",
|
|
11
|
+
label: "Is Target For Family",
|
|
12
|
+
is_required: false,
|
|
13
|
+
},
|
|
14
|
+
is_target_for_children: {
|
|
15
|
+
id: "is_target_for_children",
|
|
16
|
+
label: "Is Target For Children",
|
|
17
|
+
is_required: false,
|
|
18
|
+
},
|
|
19
|
+
is_target_for_couple: {
|
|
20
|
+
id: "is_target_for_couple",
|
|
21
|
+
label: "Is Target For Couple",
|
|
22
|
+
is_required: false,
|
|
23
|
+
},
|
|
24
|
+
is_target_for_friends: {
|
|
25
|
+
id: "is_target_for_friends",
|
|
26
|
+
label: "Is Target For Friends",
|
|
27
|
+
is_required: false,
|
|
28
|
+
},
|
|
29
|
+
is_target_for_solo: {
|
|
30
|
+
id: "is_target_for_solo",
|
|
31
|
+
label: "Is Target For Solo",
|
|
32
|
+
is_required: false,
|
|
33
|
+
},
|
|
34
|
+
target_age_start: {
|
|
35
|
+
id: "target_age_start",
|
|
36
|
+
label: "Target Age Start",
|
|
37
|
+
is_required: false,
|
|
38
|
+
},
|
|
39
|
+
target_age_end: {
|
|
40
|
+
id: "target_age_end",
|
|
41
|
+
label: "Target Age End",
|
|
42
|
+
is_required: false,
|
|
43
|
+
},
|
|
44
|
+
target_sex: {
|
|
45
|
+
id: "target_sex",
|
|
46
|
+
label: "Target Sex",
|
|
47
|
+
is_required: false,
|
|
48
|
+
max_length: 20,
|
|
49
|
+
},
|
|
50
|
+
target_time_start_h: {
|
|
51
|
+
id: "target_time_start_h",
|
|
52
|
+
label: "Target Time Start H",
|
|
53
|
+
is_required: false,
|
|
54
|
+
},
|
|
55
|
+
target_time_start_m: {
|
|
56
|
+
id: "target_time_start_m",
|
|
57
|
+
label: "Target Time Start M",
|
|
58
|
+
is_required: false,
|
|
59
|
+
},
|
|
60
|
+
target_time_end_h: {
|
|
61
|
+
id: "target_time_end_h",
|
|
62
|
+
label: "Target Time End H",
|
|
63
|
+
is_required: false,
|
|
64
|
+
},
|
|
65
|
+
target_time_end_m: {
|
|
66
|
+
id: "target_time_end_m",
|
|
67
|
+
label: "Target Time End M",
|
|
68
|
+
is_required: false,
|
|
69
|
+
},
|
|
9
70
|
};
|
|
10
71
|
//# sourceMappingURL=f-content-target.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"f-content-target.js","sourceRoot":"","sources":["../../src/content/f-content-target.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,YAAY,EAAE;QACZ,EAAE,EAAE,cAAc;QAClB,KAAK,EAAE,cAAc;QACrB,WAAW,EAAE,IAAI;QACjB,UAAU,EAAE,GAAG;QACf,WAAW,EAAE,6BAA6B;KAC3C;CACF,CAAC"}
|
|
1
|
+
{"version":3,"file":"f-content-target.js","sourceRoot":"","sources":["../../src/content/f-content-target.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,YAAY,EAAE;QACZ,EAAE,EAAE,cAAc;QAClB,KAAK,EAAE,cAAc;QACrB,WAAW,EAAE,IAAI;QACjB,UAAU,EAAE,GAAG;QACf,WAAW,EAAE,6BAA6B;KAC3C;IACD,oBAAoB,EAAE;QACpB,EAAE,EAAE,sBAAsB;QAC1B,KAAK,EAAE,sBAAsB;QAC7B,WAAW,EAAE,KAAK;KACnB;IACD,sBAAsB,EAAE;QACtB,EAAE,EAAE,wBAAwB;QAC5B,KAAK,EAAE,wBAAwB;QAC/B,WAAW,EAAE,KAAK;KACnB;IACD,oBAAoB,EAAE;QACpB,EAAE,EAAE,sBAAsB;QAC1B,KAAK,EAAE,sBAAsB;QAC7B,WAAW,EAAE,KAAK;KACnB;IACD,qBAAqB,EAAE;QACrB,EAAE,EAAE,uBAAuB;QAC3B,KAAK,EAAE,uBAAuB;QAC9B,WAAW,EAAE,KAAK;KACnB;IACD,kBAAkB,EAAE;QAClB,EAAE,EAAE,oBAAoB;QACxB,KAAK,EAAE,oBAAoB;QAC3B,WAAW,EAAE,KAAK;KACnB;IACD,gBAAgB,EAAE;QAChB,EAAE,EAAE,kBAAkB;QACtB,KAAK,EAAE,kBAAkB;QACzB,WAAW,EAAE,KAAK;KACnB;IACD,cAAc,EAAE;QACd,EAAE,EAAE,gBAAgB;QACpB,KAAK,EAAE,gBAAgB;QACvB,WAAW,EAAE,KAAK;KACnB;IACD,UAAU,EAAE;QACV,EAAE,EAAE,YAAY;QAChB,KAAK,EAAE,YAAY;QACnB,WAAW,EAAE,KAAK;QAClB,UAAU,EAAE,EAAE;KACf;IACD,mBAAmB,EAAE;QACnB,EAAE,EAAE,qBAAqB;QACzB,KAAK,EAAE,qBAAqB;QAC5B,WAAW,EAAE,KAAK;KACnB;IACD,mBAAmB,EAAE;QACnB,EAAE,EAAE,qBAAqB;QACzB,KAAK,EAAE,qBAAqB;QAC5B,WAAW,EAAE,KAAK;KACnB;IACD,iBAAiB,EAAE;QACjB,EAAE,EAAE,mBAAmB;QACvB,KAAK,EAAE,mBAAmB;QAC1B,WAAW,EAAE,KAAK;KACnB;IACD,iBAAiB,EAAE;QACjB,EAAE,EAAE,mBAAmB;QACvB,KAAK,EAAE,mBAAmB;QAC1B,WAAW,EAAE,KAAK;KACnB;CACF,CAAC"}
|