dplus_common_v1 0.1.20 → 0.1.22
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/consts/common.d.ts +7 -0
- package/dist/db-types/db-event-user-report-types.d.ts +75 -0
- package/dist/db-types/db-event-user-report-types.js +2 -0
- package/dist/db-types/db-event-user-report-types.js.map +1 -0
- package/dist/fields/field-event-user-report.d.ts +315 -0
- package/dist/fields/field-event-user-report.js +316 -0
- package/dist/fields/field-event-user-report.js.map +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/consts/common.d.ts
CHANGED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
export type TEventUserReport = {
|
|
2
|
+
hash_code: string;
|
|
3
|
+
date: Date;
|
|
4
|
+
time: Date | null;
|
|
5
|
+
tz: string;
|
|
6
|
+
user_tz: string;
|
|
7
|
+
duration: number | null;
|
|
8
|
+
title: string;
|
|
9
|
+
description: string | null;
|
|
10
|
+
address: string | null;
|
|
11
|
+
accept_language: string | null;
|
|
12
|
+
reported_at: Date;
|
|
13
|
+
reported_by: string | null;
|
|
14
|
+
};
|
|
15
|
+
export type TEventUserReportInsert = {
|
|
16
|
+
hash_code: string;
|
|
17
|
+
date: Date;
|
|
18
|
+
title: string;
|
|
19
|
+
user_tz: string;
|
|
20
|
+
} & Partial<Omit<TEventUserReport, "hash_code" | "date" | "title" | "user_tz">>;
|
|
21
|
+
export type TEventUserReportUpdate = {
|
|
22
|
+
hash_code: string;
|
|
23
|
+
} & Partial<Omit<TEventUserReport, "hash_code">>;
|
|
24
|
+
export type TEventUserReportAdded = {
|
|
25
|
+
hash_code: string;
|
|
26
|
+
date: Date;
|
|
27
|
+
time: Date | null;
|
|
28
|
+
tz: string;
|
|
29
|
+
user_tz: string;
|
|
30
|
+
duration: number | null;
|
|
31
|
+
title: string;
|
|
32
|
+
description: string | null;
|
|
33
|
+
address: string | null;
|
|
34
|
+
accept_language: string | null;
|
|
35
|
+
reported_at: Date;
|
|
36
|
+
reported_by: string | null;
|
|
37
|
+
handled_at: Date;
|
|
38
|
+
handled_by: string | null;
|
|
39
|
+
};
|
|
40
|
+
export type TEventUserReportAddedInsert = {
|
|
41
|
+
hash_code: string;
|
|
42
|
+
date: Date;
|
|
43
|
+
title: string;
|
|
44
|
+
user_tz: string;
|
|
45
|
+
} & Partial<Omit<TEventUserReportAdded, "hash_code" | "date" | "title" | "user_tz">>;
|
|
46
|
+
export type TEventUserReportAddedUpdate = {
|
|
47
|
+
hash_code: string;
|
|
48
|
+
} & Partial<Omit<TEventUserReportAdded, "hash_code">>;
|
|
49
|
+
export type TEventUserReportIgnored = {
|
|
50
|
+
hash_code: string;
|
|
51
|
+
date: Date;
|
|
52
|
+
time: Date | null;
|
|
53
|
+
tz: string;
|
|
54
|
+
user_tz: string;
|
|
55
|
+
duration: number | null;
|
|
56
|
+
title: string;
|
|
57
|
+
description: string | null;
|
|
58
|
+
address: string | null;
|
|
59
|
+
address_eng: string | null;
|
|
60
|
+
address_native: string | null;
|
|
61
|
+
accept_language: string | null;
|
|
62
|
+
reported_at: Date;
|
|
63
|
+
reported_by: string | null;
|
|
64
|
+
handled_at: Date;
|
|
65
|
+
handled_by: string | null;
|
|
66
|
+
};
|
|
67
|
+
export type TEventUserReportIgnoredInsert = {
|
|
68
|
+
hash_code: string;
|
|
69
|
+
date: Date;
|
|
70
|
+
title: string;
|
|
71
|
+
user_tz: string;
|
|
72
|
+
} & Partial<Omit<TEventUserReportIgnored, "hash_code" | "date" | "title" | "user_tz">>;
|
|
73
|
+
export type TEventUserReportIgnoredUpdate = {
|
|
74
|
+
hash_code: string;
|
|
75
|
+
} & Partial<Omit<TEventUserReportIgnored, "hash_code">>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"db-event-user-report-types.js","sourceRoot":"","sources":["../../src/db-types/db-event-user-report-types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,315 @@
|
|
|
1
|
+
export declare const F_EVENT_USER_REPORTED: {
|
|
2
|
+
hash_code: {
|
|
3
|
+
id: string;
|
|
4
|
+
label: string;
|
|
5
|
+
is_required: boolean;
|
|
6
|
+
max_length: number;
|
|
7
|
+
placeholder: string;
|
|
8
|
+
};
|
|
9
|
+
date: {
|
|
10
|
+
id: string;
|
|
11
|
+
label: string;
|
|
12
|
+
is_required: boolean;
|
|
13
|
+
placeholder: string;
|
|
14
|
+
};
|
|
15
|
+
time: {
|
|
16
|
+
id: string;
|
|
17
|
+
label: string;
|
|
18
|
+
is_required: boolean;
|
|
19
|
+
placeholder: string;
|
|
20
|
+
};
|
|
21
|
+
tz: {
|
|
22
|
+
id: string;
|
|
23
|
+
label: string;
|
|
24
|
+
is_required: boolean;
|
|
25
|
+
placeholder: string;
|
|
26
|
+
};
|
|
27
|
+
user_tz: {
|
|
28
|
+
id: string;
|
|
29
|
+
label: string;
|
|
30
|
+
is_required: boolean;
|
|
31
|
+
placeholder: string;
|
|
32
|
+
};
|
|
33
|
+
duration: {
|
|
34
|
+
id: string;
|
|
35
|
+
label: string;
|
|
36
|
+
is_required: boolean;
|
|
37
|
+
placeholder: string;
|
|
38
|
+
};
|
|
39
|
+
title: {
|
|
40
|
+
id: string;
|
|
41
|
+
label: string;
|
|
42
|
+
is_required: boolean;
|
|
43
|
+
max_length: number;
|
|
44
|
+
placeholder: string;
|
|
45
|
+
};
|
|
46
|
+
description: {
|
|
47
|
+
id: string;
|
|
48
|
+
label: string;
|
|
49
|
+
is_required: boolean;
|
|
50
|
+
max_length: number;
|
|
51
|
+
placeholder: string;
|
|
52
|
+
};
|
|
53
|
+
address: {
|
|
54
|
+
id: string;
|
|
55
|
+
label: string;
|
|
56
|
+
is_required: boolean;
|
|
57
|
+
max_length: number;
|
|
58
|
+
placeholder: string;
|
|
59
|
+
};
|
|
60
|
+
accept_language: {
|
|
61
|
+
id: string;
|
|
62
|
+
label: string;
|
|
63
|
+
is_required: boolean;
|
|
64
|
+
max_length: number;
|
|
65
|
+
placeholder: string;
|
|
66
|
+
};
|
|
67
|
+
reported_at: {
|
|
68
|
+
id: string;
|
|
69
|
+
label: string;
|
|
70
|
+
is_required: boolean;
|
|
71
|
+
placeholder: string;
|
|
72
|
+
};
|
|
73
|
+
reported_by: {
|
|
74
|
+
id: string;
|
|
75
|
+
label: string;
|
|
76
|
+
is_required: boolean;
|
|
77
|
+
max_length: number;
|
|
78
|
+
placeholder: string;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
export declare const F_EVENT_USER_REPORTED_ADDED: {
|
|
82
|
+
hash_code: {
|
|
83
|
+
id: string;
|
|
84
|
+
label: string;
|
|
85
|
+
is_required: boolean;
|
|
86
|
+
max_length: number;
|
|
87
|
+
placeholder: string;
|
|
88
|
+
};
|
|
89
|
+
date: {
|
|
90
|
+
id: string;
|
|
91
|
+
label: string;
|
|
92
|
+
is_required: boolean;
|
|
93
|
+
placeholder: string;
|
|
94
|
+
};
|
|
95
|
+
time: {
|
|
96
|
+
id: string;
|
|
97
|
+
label: string;
|
|
98
|
+
is_required: boolean;
|
|
99
|
+
placeholder: string;
|
|
100
|
+
};
|
|
101
|
+
tz: {
|
|
102
|
+
id: string;
|
|
103
|
+
label: string;
|
|
104
|
+
is_required: boolean;
|
|
105
|
+
placeholder: string;
|
|
106
|
+
};
|
|
107
|
+
user_tz: {
|
|
108
|
+
id: string;
|
|
109
|
+
label: string;
|
|
110
|
+
is_required: boolean;
|
|
111
|
+
placeholder: string;
|
|
112
|
+
};
|
|
113
|
+
duration: {
|
|
114
|
+
id: string;
|
|
115
|
+
label: string;
|
|
116
|
+
is_required: boolean;
|
|
117
|
+
placeholder: string;
|
|
118
|
+
};
|
|
119
|
+
title: {
|
|
120
|
+
id: string;
|
|
121
|
+
label: string;
|
|
122
|
+
is_required: boolean;
|
|
123
|
+
max_length: number;
|
|
124
|
+
};
|
|
125
|
+
description: {
|
|
126
|
+
id: string;
|
|
127
|
+
label: string;
|
|
128
|
+
is_required: boolean;
|
|
129
|
+
max_length: number;
|
|
130
|
+
placeholder: string;
|
|
131
|
+
};
|
|
132
|
+
target_country_code: {
|
|
133
|
+
id: string;
|
|
134
|
+
label: string;
|
|
135
|
+
is_required: boolean;
|
|
136
|
+
max_length: number;
|
|
137
|
+
};
|
|
138
|
+
target_city_code: {
|
|
139
|
+
id: string;
|
|
140
|
+
label: string;
|
|
141
|
+
is_required: boolean;
|
|
142
|
+
max_length: number;
|
|
143
|
+
};
|
|
144
|
+
url: {
|
|
145
|
+
id: string;
|
|
146
|
+
label: string;
|
|
147
|
+
is_required: boolean;
|
|
148
|
+
max_length: number;
|
|
149
|
+
};
|
|
150
|
+
thumbnail_url: {
|
|
151
|
+
id: string;
|
|
152
|
+
label: string;
|
|
153
|
+
is_required: boolean;
|
|
154
|
+
max_length: number;
|
|
155
|
+
};
|
|
156
|
+
latitude: {
|
|
157
|
+
id: string;
|
|
158
|
+
label: string;
|
|
159
|
+
is_required: boolean;
|
|
160
|
+
max_length: number;
|
|
161
|
+
};
|
|
162
|
+
longitude: {
|
|
163
|
+
id: string;
|
|
164
|
+
label: string;
|
|
165
|
+
is_required: boolean;
|
|
166
|
+
max_length: number;
|
|
167
|
+
};
|
|
168
|
+
address_eng: {
|
|
169
|
+
id: string;
|
|
170
|
+
label: string;
|
|
171
|
+
is_required: boolean;
|
|
172
|
+
max_length: number;
|
|
173
|
+
};
|
|
174
|
+
address_native: {
|
|
175
|
+
id: string;
|
|
176
|
+
label: string;
|
|
177
|
+
is_required: boolean;
|
|
178
|
+
max_length: number;
|
|
179
|
+
};
|
|
180
|
+
accept_language: {
|
|
181
|
+
id: string;
|
|
182
|
+
label: string;
|
|
183
|
+
is_required: boolean;
|
|
184
|
+
max_length: number;
|
|
185
|
+
placeholder: string;
|
|
186
|
+
};
|
|
187
|
+
reported_at: {
|
|
188
|
+
id: string;
|
|
189
|
+
label: string;
|
|
190
|
+
is_required: boolean;
|
|
191
|
+
placeholder: string;
|
|
192
|
+
};
|
|
193
|
+
reported_by: {
|
|
194
|
+
id: string;
|
|
195
|
+
label: string;
|
|
196
|
+
is_required: boolean;
|
|
197
|
+
max_length: number;
|
|
198
|
+
placeholder: string;
|
|
199
|
+
};
|
|
200
|
+
handled_at: {
|
|
201
|
+
id: string;
|
|
202
|
+
label: string;
|
|
203
|
+
is_required: boolean;
|
|
204
|
+
placeholder: string;
|
|
205
|
+
};
|
|
206
|
+
handled_by: {
|
|
207
|
+
id: string;
|
|
208
|
+
label: string;
|
|
209
|
+
is_required: boolean;
|
|
210
|
+
max_length: number;
|
|
211
|
+
placeholder: string;
|
|
212
|
+
};
|
|
213
|
+
};
|
|
214
|
+
export declare const F_EVENT_USER_REPORTED_IGNORED: {
|
|
215
|
+
hash_code: {
|
|
216
|
+
id: string;
|
|
217
|
+
label: string;
|
|
218
|
+
is_required: boolean;
|
|
219
|
+
max_length: number;
|
|
220
|
+
placeholder: string;
|
|
221
|
+
};
|
|
222
|
+
date: {
|
|
223
|
+
id: string;
|
|
224
|
+
label: string;
|
|
225
|
+
is_required: boolean;
|
|
226
|
+
placeholder: string;
|
|
227
|
+
};
|
|
228
|
+
time: {
|
|
229
|
+
id: string;
|
|
230
|
+
label: string;
|
|
231
|
+
is_required: boolean;
|
|
232
|
+
placeholder: string;
|
|
233
|
+
};
|
|
234
|
+
tz: {
|
|
235
|
+
id: string;
|
|
236
|
+
label: string;
|
|
237
|
+
is_required: boolean;
|
|
238
|
+
placeholder: string;
|
|
239
|
+
};
|
|
240
|
+
user_tz: {
|
|
241
|
+
id: string;
|
|
242
|
+
label: string;
|
|
243
|
+
is_required: boolean;
|
|
244
|
+
placeholder: string;
|
|
245
|
+
};
|
|
246
|
+
duration: {
|
|
247
|
+
id: string;
|
|
248
|
+
label: string;
|
|
249
|
+
is_required: boolean;
|
|
250
|
+
placeholder: string;
|
|
251
|
+
};
|
|
252
|
+
title: {
|
|
253
|
+
id: string;
|
|
254
|
+
label: string;
|
|
255
|
+
is_required: boolean;
|
|
256
|
+
max_length: number;
|
|
257
|
+
};
|
|
258
|
+
description: {
|
|
259
|
+
id: string;
|
|
260
|
+
label: string;
|
|
261
|
+
is_required: boolean;
|
|
262
|
+
max_length: number;
|
|
263
|
+
};
|
|
264
|
+
address: {
|
|
265
|
+
id: string;
|
|
266
|
+
label: string;
|
|
267
|
+
is_required: boolean;
|
|
268
|
+
max_length: number;
|
|
269
|
+
};
|
|
270
|
+
address_eng: {
|
|
271
|
+
id: string;
|
|
272
|
+
label: string;
|
|
273
|
+
is_required: boolean;
|
|
274
|
+
max_length: number;
|
|
275
|
+
};
|
|
276
|
+
address_native: {
|
|
277
|
+
id: string;
|
|
278
|
+
label: string;
|
|
279
|
+
is_required: boolean;
|
|
280
|
+
max_length: number;
|
|
281
|
+
};
|
|
282
|
+
accept_language: {
|
|
283
|
+
id: string;
|
|
284
|
+
label: string;
|
|
285
|
+
is_required: boolean;
|
|
286
|
+
max_length: number;
|
|
287
|
+
placeholder: string;
|
|
288
|
+
};
|
|
289
|
+
reported_at: {
|
|
290
|
+
id: string;
|
|
291
|
+
label: string;
|
|
292
|
+
is_required: boolean;
|
|
293
|
+
placeholder: string;
|
|
294
|
+
};
|
|
295
|
+
reported_by: {
|
|
296
|
+
id: string;
|
|
297
|
+
label: string;
|
|
298
|
+
is_required: boolean;
|
|
299
|
+
max_length: number;
|
|
300
|
+
placeholder: string;
|
|
301
|
+
};
|
|
302
|
+
handled_at: {
|
|
303
|
+
id: string;
|
|
304
|
+
label: string;
|
|
305
|
+
is_required: boolean;
|
|
306
|
+
placeholder: string;
|
|
307
|
+
};
|
|
308
|
+
handled_by: {
|
|
309
|
+
id: string;
|
|
310
|
+
label: string;
|
|
311
|
+
is_required: boolean;
|
|
312
|
+
max_length: number;
|
|
313
|
+
placeholder: string;
|
|
314
|
+
};
|
|
315
|
+
};
|
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
export const F_EVENT_USER_REPORTED = {
|
|
2
|
+
hash_code: {
|
|
3
|
+
id: "hash_code",
|
|
4
|
+
label: "Hash Code",
|
|
5
|
+
is_required: true,
|
|
6
|
+
max_length: 24,
|
|
7
|
+
placeholder: "ex. 12adadfaea426614174000",
|
|
8
|
+
},
|
|
9
|
+
date: {
|
|
10
|
+
id: "date",
|
|
11
|
+
label: "Date",
|
|
12
|
+
is_required: true,
|
|
13
|
+
placeholder: "ex. 2025-01-01",
|
|
14
|
+
},
|
|
15
|
+
time: {
|
|
16
|
+
id: "time",
|
|
17
|
+
label: "Time",
|
|
18
|
+
is_required: false,
|
|
19
|
+
placeholder: "ex. 12:00:00",
|
|
20
|
+
},
|
|
21
|
+
tz: {
|
|
22
|
+
id: "tz",
|
|
23
|
+
label: "Time Zone",
|
|
24
|
+
is_required: true,
|
|
25
|
+
placeholder: "ex. Asia/Seoul",
|
|
26
|
+
},
|
|
27
|
+
user_tz: {
|
|
28
|
+
id: "user_tz",
|
|
29
|
+
label: "User Time Zone",
|
|
30
|
+
is_required: true,
|
|
31
|
+
placeholder: "ex. Asia/Seoul",
|
|
32
|
+
},
|
|
33
|
+
duration: {
|
|
34
|
+
id: "duration",
|
|
35
|
+
label: "Duration",
|
|
36
|
+
is_required: false,
|
|
37
|
+
placeholder: "ex. 120",
|
|
38
|
+
},
|
|
39
|
+
title: {
|
|
40
|
+
id: "title",
|
|
41
|
+
label: "Title",
|
|
42
|
+
is_required: true,
|
|
43
|
+
max_length: 120,
|
|
44
|
+
placeholder: "ex. Event Title",
|
|
45
|
+
},
|
|
46
|
+
description: {
|
|
47
|
+
id: "description",
|
|
48
|
+
label: "Description",
|
|
49
|
+
is_required: false,
|
|
50
|
+
max_length: 500,
|
|
51
|
+
placeholder: "ex. Event Description",
|
|
52
|
+
},
|
|
53
|
+
address: {
|
|
54
|
+
id: "address",
|
|
55
|
+
label: "Address",
|
|
56
|
+
is_required: false,
|
|
57
|
+
max_length: 500,
|
|
58
|
+
placeholder: "ex. Event Address",
|
|
59
|
+
},
|
|
60
|
+
accept_language: {
|
|
61
|
+
id: "accept_language",
|
|
62
|
+
label: "Accept Language",
|
|
63
|
+
is_required: false,
|
|
64
|
+
max_length: 250,
|
|
65
|
+
placeholder: "ex. en, ko",
|
|
66
|
+
},
|
|
67
|
+
reported_at: {
|
|
68
|
+
id: "reported_at",
|
|
69
|
+
label: "Reported At",
|
|
70
|
+
is_required: true,
|
|
71
|
+
placeholder: "ex. 2025-01-01 12:00:00",
|
|
72
|
+
},
|
|
73
|
+
reported_by: {
|
|
74
|
+
id: "reported_by",
|
|
75
|
+
label: "Reported By",
|
|
76
|
+
is_required: true,
|
|
77
|
+
max_length: 100,
|
|
78
|
+
placeholder: "ex. John Doe",
|
|
79
|
+
},
|
|
80
|
+
};
|
|
81
|
+
export const F_EVENT_USER_REPORTED_ADDED = {
|
|
82
|
+
hash_code: {
|
|
83
|
+
id: "hash_code",
|
|
84
|
+
label: "Hash Code",
|
|
85
|
+
is_required: true,
|
|
86
|
+
max_length: 24,
|
|
87
|
+
placeholder: "ex. 12adadfaea426614174000",
|
|
88
|
+
},
|
|
89
|
+
date: {
|
|
90
|
+
id: "date",
|
|
91
|
+
label: "Date",
|
|
92
|
+
is_required: true,
|
|
93
|
+
placeholder: "ex. 2025-01-01",
|
|
94
|
+
},
|
|
95
|
+
time: {
|
|
96
|
+
id: "time",
|
|
97
|
+
label: "Time",
|
|
98
|
+
is_required: false,
|
|
99
|
+
placeholder: "ex. 12:00:00",
|
|
100
|
+
},
|
|
101
|
+
tz: {
|
|
102
|
+
id: "tz",
|
|
103
|
+
label: "Time Zone",
|
|
104
|
+
is_required: true,
|
|
105
|
+
placeholder: "ex. Asia/Seoul",
|
|
106
|
+
},
|
|
107
|
+
user_tz: {
|
|
108
|
+
id: "user_tz",
|
|
109
|
+
label: "User Time Zone",
|
|
110
|
+
is_required: true,
|
|
111
|
+
placeholder: "ex. Asia/Seoul",
|
|
112
|
+
},
|
|
113
|
+
duration: {
|
|
114
|
+
id: "duration",
|
|
115
|
+
label: "Duration",
|
|
116
|
+
is_required: false,
|
|
117
|
+
placeholder: "ex. 120",
|
|
118
|
+
},
|
|
119
|
+
title: {
|
|
120
|
+
id: "title",
|
|
121
|
+
label: "Title",
|
|
122
|
+
is_required: true,
|
|
123
|
+
max_length: 120,
|
|
124
|
+
},
|
|
125
|
+
description: {
|
|
126
|
+
id: "description",
|
|
127
|
+
label: "Description",
|
|
128
|
+
is_required: false,
|
|
129
|
+
max_length: 500,
|
|
130
|
+
placeholder: "ex. Event Description",
|
|
131
|
+
},
|
|
132
|
+
target_country_code: {
|
|
133
|
+
id: "target_country_code",
|
|
134
|
+
label: "Target Country Code",
|
|
135
|
+
is_required: true,
|
|
136
|
+
max_length: 2,
|
|
137
|
+
},
|
|
138
|
+
target_city_code: {
|
|
139
|
+
id: "target_city_code",
|
|
140
|
+
label: "Target City Code",
|
|
141
|
+
is_required: false,
|
|
142
|
+
max_length: 60,
|
|
143
|
+
},
|
|
144
|
+
url: {
|
|
145
|
+
id: "url",
|
|
146
|
+
label: "URL",
|
|
147
|
+
is_required: false,
|
|
148
|
+
max_length: 250,
|
|
149
|
+
},
|
|
150
|
+
thumbnail_url: {
|
|
151
|
+
id: "thumbnail_url",
|
|
152
|
+
label: "Thumbnail URL",
|
|
153
|
+
is_required: false,
|
|
154
|
+
max_length: 250,
|
|
155
|
+
},
|
|
156
|
+
latitude: {
|
|
157
|
+
id: "latitude",
|
|
158
|
+
label: "Latitude",
|
|
159
|
+
is_required: false,
|
|
160
|
+
max_length: 10,
|
|
161
|
+
},
|
|
162
|
+
longitude: {
|
|
163
|
+
id: "longitude",
|
|
164
|
+
label: "Longitude",
|
|
165
|
+
is_required: false,
|
|
166
|
+
max_length: 10,
|
|
167
|
+
},
|
|
168
|
+
address_eng: {
|
|
169
|
+
id: "address_eng",
|
|
170
|
+
label: "Address (English)",
|
|
171
|
+
is_required: false,
|
|
172
|
+
max_length: 500,
|
|
173
|
+
},
|
|
174
|
+
address_native: {
|
|
175
|
+
id: "address_native",
|
|
176
|
+
label: "Address (Native)",
|
|
177
|
+
is_required: false,
|
|
178
|
+
max_length: 500,
|
|
179
|
+
},
|
|
180
|
+
accept_language: {
|
|
181
|
+
id: "accept_language",
|
|
182
|
+
label: "Accept Language",
|
|
183
|
+
is_required: false,
|
|
184
|
+
max_length: 250,
|
|
185
|
+
placeholder: "ex. en, ko",
|
|
186
|
+
},
|
|
187
|
+
reported_at: {
|
|
188
|
+
id: "reported_at",
|
|
189
|
+
label: "Reported At",
|
|
190
|
+
is_required: true,
|
|
191
|
+
placeholder: "ex. 2025-01-01 12:00:00",
|
|
192
|
+
},
|
|
193
|
+
reported_by: {
|
|
194
|
+
id: "reported_by",
|
|
195
|
+
label: "Reported By",
|
|
196
|
+
is_required: true,
|
|
197
|
+
max_length: 100,
|
|
198
|
+
placeholder: "ex. John Doe",
|
|
199
|
+
},
|
|
200
|
+
handled_at: {
|
|
201
|
+
id: "handled_at",
|
|
202
|
+
label: "Handled At",
|
|
203
|
+
is_required: true,
|
|
204
|
+
placeholder: "ex. 2025-01-01 12:00:00",
|
|
205
|
+
},
|
|
206
|
+
handled_by: {
|
|
207
|
+
id: "handled_by",
|
|
208
|
+
label: "Handled By",
|
|
209
|
+
is_required: true,
|
|
210
|
+
max_length: 100,
|
|
211
|
+
placeholder: "ex. John Doe",
|
|
212
|
+
},
|
|
213
|
+
};
|
|
214
|
+
export const F_EVENT_USER_REPORTED_IGNORED = {
|
|
215
|
+
hash_code: {
|
|
216
|
+
id: "hash_code",
|
|
217
|
+
label: "Hash Code",
|
|
218
|
+
is_required: true,
|
|
219
|
+
max_length: 24,
|
|
220
|
+
placeholder: "ex. 12adadfaea426614174000",
|
|
221
|
+
},
|
|
222
|
+
date: {
|
|
223
|
+
id: "date",
|
|
224
|
+
label: "Date",
|
|
225
|
+
is_required: true,
|
|
226
|
+
placeholder: "ex. 2025-01-01",
|
|
227
|
+
},
|
|
228
|
+
time: {
|
|
229
|
+
id: "time",
|
|
230
|
+
label: "Time",
|
|
231
|
+
is_required: false,
|
|
232
|
+
placeholder: "ex. 12:00:00",
|
|
233
|
+
},
|
|
234
|
+
tz: {
|
|
235
|
+
id: "tz",
|
|
236
|
+
label: "Time Zone",
|
|
237
|
+
is_required: true,
|
|
238
|
+
placeholder: "ex. Asia/Seoul",
|
|
239
|
+
},
|
|
240
|
+
user_tz: {
|
|
241
|
+
id: "user_tz",
|
|
242
|
+
label: "User Time Zone",
|
|
243
|
+
is_required: true,
|
|
244
|
+
placeholder: "ex. Asia/Seoul",
|
|
245
|
+
},
|
|
246
|
+
duration: {
|
|
247
|
+
id: "duration",
|
|
248
|
+
label: "Duration",
|
|
249
|
+
is_required: false,
|
|
250
|
+
placeholder: "ex. 120",
|
|
251
|
+
},
|
|
252
|
+
title: {
|
|
253
|
+
id: "title",
|
|
254
|
+
label: "Title",
|
|
255
|
+
is_required: true,
|
|
256
|
+
max_length: 120,
|
|
257
|
+
},
|
|
258
|
+
description: {
|
|
259
|
+
id: "description",
|
|
260
|
+
label: "Description",
|
|
261
|
+
is_required: false,
|
|
262
|
+
max_length: 500,
|
|
263
|
+
},
|
|
264
|
+
address: {
|
|
265
|
+
id: "address",
|
|
266
|
+
label: "Address",
|
|
267
|
+
is_required: false,
|
|
268
|
+
max_length: 500,
|
|
269
|
+
},
|
|
270
|
+
address_eng: {
|
|
271
|
+
id: "address_eng",
|
|
272
|
+
label: "Address (English)",
|
|
273
|
+
is_required: false,
|
|
274
|
+
max_length: 500,
|
|
275
|
+
},
|
|
276
|
+
address_native: {
|
|
277
|
+
id: "address_native",
|
|
278
|
+
label: "Address (Native)",
|
|
279
|
+
is_required: false,
|
|
280
|
+
max_length: 500,
|
|
281
|
+
},
|
|
282
|
+
accept_language: {
|
|
283
|
+
id: "accept_language",
|
|
284
|
+
label: "Accept Language",
|
|
285
|
+
is_required: false,
|
|
286
|
+
max_length: 250,
|
|
287
|
+
placeholder: "ex. en, ko",
|
|
288
|
+
},
|
|
289
|
+
reported_at: {
|
|
290
|
+
id: "reported_at",
|
|
291
|
+
label: "Reported At",
|
|
292
|
+
is_required: true,
|
|
293
|
+
placeholder: "ex. 2025-01-01 12:00:00",
|
|
294
|
+
},
|
|
295
|
+
reported_by: {
|
|
296
|
+
id: "reported_by",
|
|
297
|
+
label: "Reported By",
|
|
298
|
+
is_required: true,
|
|
299
|
+
max_length: 100,
|
|
300
|
+
placeholder: "ex. John Doe",
|
|
301
|
+
},
|
|
302
|
+
handled_at: {
|
|
303
|
+
id: "handled_at",
|
|
304
|
+
label: "Handled At",
|
|
305
|
+
is_required: true,
|
|
306
|
+
placeholder: "ex. 2025-01-01 12:00:00",
|
|
307
|
+
},
|
|
308
|
+
handled_by: {
|
|
309
|
+
id: "handled_by",
|
|
310
|
+
label: "Handled By",
|
|
311
|
+
is_required: true,
|
|
312
|
+
max_length: 100,
|
|
313
|
+
placeholder: "ex. John Doe",
|
|
314
|
+
},
|
|
315
|
+
};
|
|
316
|
+
//# sourceMappingURL=field-event-user-report.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"field-event-user-report.js","sourceRoot":"","sources":["../../src/fields/field-event-user-report.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export * from "./db-types/db-service-provider-types.js";
|
|
|
26
26
|
export * from "./db-types/db-stag-types.js";
|
|
27
27
|
export * from "./db-types/db-tag-types.js";
|
|
28
28
|
export * from "./db-types/db-team-types.js";
|
|
29
|
-
export * from "./db-types/db-user-report-types.js";
|
|
29
|
+
export * from "./db-types/db-event-user-report-types.js";
|
|
30
30
|
export * from "./db-types/db-user-types.js";
|
|
31
31
|
export * from "./dplus-types/dplus-response-types.js";
|
|
32
32
|
export * from "./fields/field-administrator.js";
|
|
@@ -53,5 +53,5 @@ export * from "./fields/field-service-provider.js";
|
|
|
53
53
|
export * from "./fields/field-stag.js";
|
|
54
54
|
export * from "./fields/field-tag.js";
|
|
55
55
|
export * from "./fields/field-team.js";
|
|
56
|
-
export * from "./fields/field-user-report.js";
|
|
56
|
+
export * from "./fields/field-event-user-report.js";
|
|
57
57
|
export * from "./fields/field-user.js";
|
package/dist/index.js
CHANGED
|
@@ -26,7 +26,7 @@ export * from "./db-types/db-service-provider-types.js";
|
|
|
26
26
|
export * from "./db-types/db-stag-types.js";
|
|
27
27
|
export * from "./db-types/db-tag-types.js";
|
|
28
28
|
export * from "./db-types/db-team-types.js";
|
|
29
|
-
export * from "./db-types/db-user-report-types.js";
|
|
29
|
+
export * from "./db-types/db-event-user-report-types.js";
|
|
30
30
|
export * from "./db-types/db-user-types.js";
|
|
31
31
|
export * from "./dplus-types/dplus-response-types.js";
|
|
32
32
|
export * from "./fields/field-administrator.js";
|
|
@@ -53,6 +53,6 @@ export * from "./fields/field-service-provider.js";
|
|
|
53
53
|
export * from "./fields/field-stag.js";
|
|
54
54
|
export * from "./fields/field-tag.js";
|
|
55
55
|
export * from "./fields/field-team.js";
|
|
56
|
-
export * from "./fields/field-user-report.js";
|
|
56
|
+
export * from "./fields/field-event-user-report.js";
|
|
57
57
|
export * from "./fields/field-user.js";
|
|
58
58
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC;AAEhD,cAAc,sCAAsC,CAAC;AACrD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iCAAiC,CAAC;AAChD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mCAAmC,CAAC;AAClD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iCAAiC,CAAC;AAChD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,uCAAuC,CAAC;AACtD,cAAc,wCAAwC,CAAC;AACvD,cAAc,yCAAyC,CAAC;AACxD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC;AAEhD,cAAc,sCAAsC,CAAC;AACrD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iCAAiC,CAAC;AAChD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mCAAmC,CAAC;AAClD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iCAAiC,CAAC;AAChD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,uCAAuC,CAAC;AACtD,cAAc,wCAAwC,CAAC;AACvD,cAAc,yCAAyC,CAAC;AACxD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,0CAA0C,CAAC;AACzD,cAAc,6BAA6B,CAAC;AAE5C,cAAc,uCAAuC,CAAC;AAEtD,cAAc,iCAAiC,CAAC;AAChD,cAAc,yBAAyB,CAAC;AACxC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,yBAAyB,CAAC;AACxC,cAAc,0BAA0B,CAAC;AACzC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,uBAAuB,CAAC;AACtC,cAAc,wCAAwC,CAAC;AACvD,cAAc,uBAAuB,CAAC;AACtC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,kCAAkC,CAAC;AACjD,cAAc,mCAAmC,CAAC;AAClD,cAAc,oCAAoC,CAAC;AACnD,cAAc,wBAAwB,CAAC;AACvC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qCAAqC,CAAC;AACpD,cAAc,wBAAwB,CAAC"}
|