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