trand_common_v1 0.1.16 → 0.1.18
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/types/types-db.d.ts +18 -12
- package/package.json +1 -1
package/dist/types/types-db.d.ts
CHANGED
|
@@ -67,6 +67,8 @@ export type CityList = {
|
|
|
67
67
|
city_code: string;
|
|
68
68
|
name: string;
|
|
69
69
|
country_code: string;
|
|
70
|
+
name_ko: string;
|
|
71
|
+
native: string | null;
|
|
70
72
|
};
|
|
71
73
|
export type Street = {
|
|
72
74
|
city_code: string;
|
|
@@ -208,8 +210,10 @@ export type PreContent = {
|
|
|
208
210
|
country_code: string;
|
|
209
211
|
city_code: string;
|
|
210
212
|
street_code: string | null;
|
|
211
|
-
|
|
212
|
-
|
|
213
|
+
name: string;
|
|
214
|
+
native: string | null;
|
|
215
|
+
name_ko: string | null;
|
|
216
|
+
native_ko: string | null;
|
|
213
217
|
related_content_code: string | null;
|
|
214
218
|
content_type: string | null;
|
|
215
219
|
description: string | null;
|
|
@@ -282,23 +286,25 @@ export type PreContent = {
|
|
|
282
286
|
is_ta_api_fetch_succeeded: boolean | null;
|
|
283
287
|
is_ta_api_fetch_failed: boolean | null;
|
|
284
288
|
ta_api_fetch_msg: string | null;
|
|
289
|
+
registered_as_content_at: string | null;
|
|
290
|
+
registered_content_code: string | null;
|
|
285
291
|
};
|
|
286
292
|
export type PreContentInsert = {
|
|
287
293
|
country_code: string;
|
|
288
294
|
city_code: string;
|
|
289
|
-
|
|
290
|
-
} & Partial<Omit<PreContent, "country_code" | "city_code" | "
|
|
295
|
+
name: string;
|
|
296
|
+
} & Partial<Omit<PreContent, "country_code" | "city_code" | "name">>;
|
|
291
297
|
export type PreContentUpdate = {
|
|
292
298
|
country_code: string;
|
|
293
299
|
city_code: string;
|
|
294
|
-
|
|
295
|
-
} & Partial<Omit<PreContent, "country_code" | "city_code" | "
|
|
300
|
+
name: string;
|
|
301
|
+
} & Partial<Omit<PreContent, "country_code" | "city_code" | "name">>;
|
|
296
302
|
export type FetchedContent = {
|
|
297
303
|
country_code: string;
|
|
298
304
|
city_code: string;
|
|
299
305
|
street_code: string | null;
|
|
300
|
-
|
|
301
|
-
|
|
306
|
+
name: string;
|
|
307
|
+
native: string | null;
|
|
302
308
|
gp_display_name: string | null;
|
|
303
309
|
ta_name: string | null;
|
|
304
310
|
related_content_code: string | null;
|
|
@@ -439,13 +445,13 @@ export type FetchedContent = {
|
|
|
439
445
|
export type FetchedContentInsert = {
|
|
440
446
|
country_code: string;
|
|
441
447
|
city_code: string;
|
|
442
|
-
|
|
443
|
-
} & Partial<Omit<FetchedContent, "country_code" | "city_code" | "
|
|
448
|
+
name: string;
|
|
449
|
+
} & Partial<Omit<FetchedContent, "country_code" | "city_code" | "name">>;
|
|
444
450
|
export type FetchedContentUpdate = {
|
|
445
451
|
country_code: string;
|
|
446
452
|
city_code: string;
|
|
447
|
-
|
|
448
|
-
} & Partial<Omit<FetchedContent, "country_code" | "city_code" | "
|
|
453
|
+
name: string;
|
|
454
|
+
} & Partial<Omit<FetchedContent, "country_code" | "city_code" | "name">>;
|
|
449
455
|
export type Content = {
|
|
450
456
|
country_code: string;
|
|
451
457
|
city_code: string | null;
|