trand_common_v1 0.2.103 → 0.2.105
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/category/t-category-i18n.d.ts +4 -1
- package/dist/category/t-category-metadata-i18n.d.ts +4 -1
- package/dist/city/t-city-i18n.d.ts +4 -1
- package/dist/city/t-city-metadata-i18n.d.ts +4 -1
- package/dist/content/t-content-i18n.d.ts +4 -1
- package/dist/content/t-content-metadata-i18n.d.ts +4 -1
- package/dist/stag/t-stag-i18n.d.ts +4 -1
- package/dist/stag/t-stag-metadata-i18n.d.ts +4 -1
- package/dist/street/t-street-i18n.d.ts +4 -1
- package/dist/street/t-street-metadata-i18n.d.ts +4 -1
- package/dist/street/t-street.d.ts +1 -7
- package/dist/street/t-street.js.map +1 -1
- package/package.json +1 -1
|
@@ -9,4 +9,7 @@ export type TCategoryI18nInsert = {
|
|
|
9
9
|
lang_code: string;
|
|
10
10
|
name: string;
|
|
11
11
|
} & Partial<Omit<TCategoryI18n, "category_code" | "lang_code" | "name">>;
|
|
12
|
-
export type TCategoryI18nUpdate =
|
|
12
|
+
export type TCategoryI18nUpdate = {
|
|
13
|
+
category_code: string;
|
|
14
|
+
lang_code: string;
|
|
15
|
+
} & Partial<Omit<TCategoryI18n, "category_code" | "lang_code">>;
|
|
@@ -11,4 +11,7 @@ export type TCategoryMetadataI18nInsert = {
|
|
|
11
11
|
lang_code: string;
|
|
12
12
|
title: string;
|
|
13
13
|
} & Partial<Omit<TCategoryMetadataI18n, "category_code" | "lang_code" | "title">>;
|
|
14
|
-
export type TCategoryMetadataI18nUpdate =
|
|
14
|
+
export type TCategoryMetadataI18nUpdate = {
|
|
15
|
+
category_code: string;
|
|
16
|
+
lang_code: string;
|
|
17
|
+
} & Partial<Omit<TCategoryMetadataI18n, "category_code" | "lang_code">>;
|
|
@@ -9,4 +9,7 @@ export type TCityI18nInsert = {
|
|
|
9
9
|
lang_code: string;
|
|
10
10
|
name: string;
|
|
11
11
|
} & Partial<Omit<TCityI18n, "city_code" | "lang_code" | "name">>;
|
|
12
|
-
export type TCityI18nUpdate =
|
|
12
|
+
export type TCityI18nUpdate = {
|
|
13
|
+
city_code: string;
|
|
14
|
+
lang_code: string;
|
|
15
|
+
} & Partial<Omit<TCityI18n, "city_code" | "lang_code">>;
|
|
@@ -11,4 +11,7 @@ export type TCityMetadataI18nInsert = {
|
|
|
11
11
|
lang_code: string;
|
|
12
12
|
title: string;
|
|
13
13
|
} & Partial<Omit<TCityMetadataI18n, "city_code" | "lang_code" | "title">>;
|
|
14
|
-
export type TCityMetadataI18nUpdate =
|
|
14
|
+
export type TCityMetadataI18nUpdate = {
|
|
15
|
+
city_code: string;
|
|
16
|
+
lang_code: string;
|
|
17
|
+
} & Partial<Omit<TCityMetadataI18n, "city_code" | "lang_code">>;
|
|
@@ -9,4 +9,7 @@ export type TContentI18nInsert = {
|
|
|
9
9
|
lang_code: string;
|
|
10
10
|
name: string;
|
|
11
11
|
} & Partial<Omit<TContentI18n, "content_code" | "lang_code" | "name">>;
|
|
12
|
-
export type TContentI18nUpdate =
|
|
12
|
+
export type TContentI18nUpdate = {
|
|
13
|
+
content_code: string;
|
|
14
|
+
lang_code: string;
|
|
15
|
+
} & Partial<Omit<TContentI18n, "content_code" | "lang_code">>;
|
|
@@ -11,4 +11,7 @@ export type TContentMetadataI18nInsert = {
|
|
|
11
11
|
lang_code: string;
|
|
12
12
|
title: string;
|
|
13
13
|
} & Partial<Omit<TContentMetadataI18n, "content_code" | "lang_code" | "title">>;
|
|
14
|
-
export type TContentMetadataI18nUpdate =
|
|
14
|
+
export type TContentMetadataI18nUpdate = {
|
|
15
|
+
content_code: string;
|
|
16
|
+
lang_code: string;
|
|
17
|
+
} & Partial<Omit<TContentMetadataI18n, "content_code" | "lang_code">>;
|
|
@@ -9,4 +9,7 @@ export type TStagI18nInsert = {
|
|
|
9
9
|
lang_code: string;
|
|
10
10
|
name: string;
|
|
11
11
|
} & Partial<Omit<TStagI18n, "stag_code" | "lang_code" | "name">>;
|
|
12
|
-
export type TStagI18nUpdate =
|
|
12
|
+
export type TStagI18nUpdate = {
|
|
13
|
+
stag_code: string;
|
|
14
|
+
lang_code: string;
|
|
15
|
+
} & Partial<Omit<TStagI18n, "stag_code" | "lang_code">>;
|
|
@@ -11,4 +11,7 @@ export type TStagMetadataI18nInsert = {
|
|
|
11
11
|
lang_code: string;
|
|
12
12
|
title: string;
|
|
13
13
|
} & Partial<Omit<TStagMetadataI18n, "stag_code" | "lang_code" | "title">>;
|
|
14
|
-
export type TStagMetadataI18nUpdate =
|
|
14
|
+
export type TStagMetadataI18nUpdate = {
|
|
15
|
+
stag_code: string;
|
|
16
|
+
lang_code: string;
|
|
17
|
+
} & Partial<Omit<TStagMetadataI18n, "stag_code" | "lang_code">>;
|
|
@@ -10,4 +10,7 @@ export type TStreetI18nInsert = {
|
|
|
10
10
|
lang_code: string;
|
|
11
11
|
name: string;
|
|
12
12
|
} & Partial<Omit<TStreetI18n, "street_code" | "lang_code" | "name">>;
|
|
13
|
-
export type TStreetI18nUpdate =
|
|
13
|
+
export type TStreetI18nUpdate = {
|
|
14
|
+
street_code: string;
|
|
15
|
+
lang_code: string;
|
|
16
|
+
} & Partial<Omit<TStreetI18n, "street_code" | "lang_code">>;
|
|
@@ -11,4 +11,7 @@ export type TStreetMetadataI18nInsert = {
|
|
|
11
11
|
lang_code: string;
|
|
12
12
|
title: string;
|
|
13
13
|
} & Partial<Omit<TStreetMetadataI18n, "street_code" | "lang_code" | "title">>;
|
|
14
|
-
export type TStreetMetadataI18nUpdate =
|
|
14
|
+
export type TStreetMetadataI18nUpdate = {
|
|
15
|
+
street_code: string;
|
|
16
|
+
lang_code: string;
|
|
17
|
+
} & Partial<Omit<TStreetMetadataI18n, "street_code" | "lang_code">>;
|
|
@@ -85,13 +85,7 @@ export type TStreetDetailInsert = {
|
|
|
85
85
|
google_map_url: string;
|
|
86
86
|
naver_map_url: string;
|
|
87
87
|
} & Partial<Omit<TStreetDetail, "country_code" | "city_code" | "street_code" | "name" | "name_ko" | "location" | "latitude" | "longitude" | "address" | "address_native" | "google_map_url" | "naver_map_url">>;
|
|
88
|
-
export type TStreetDetailUpdate =
|
|
89
|
-
street_code: string;
|
|
90
|
-
old_country_code?: string;
|
|
91
|
-
old_city_code?: string;
|
|
92
|
-
new_country_code?: string;
|
|
93
|
-
new_city_code?: string;
|
|
94
|
-
} & Partial<Omit<TStreetDetail, "street_code">>;
|
|
88
|
+
export type TStreetDetailUpdate = Partial<Omit<TStreetDetail, "street_code">>;
|
|
95
89
|
export declare const DB_COLUMNS_STREET_OPTION: string[];
|
|
96
90
|
export declare const DB_COLUMNS_STREET_LIST_FOR_ADMIN: string[];
|
|
97
91
|
export declare const KEYS_STREET_STR: string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"t-street.js","sourceRoot":"","sources":["../../src/street/t-street.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"t-street.js","sourceRoot":"","sources":["../../src/street/t-street.ts"],"names":[],"mappings":"AA4HA;;GAEG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,cAAc,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,WAAW,EAAE,YAAY,EAAE,eAAe,EAAE,YAAY,EAAE,aAAa,EAAE,cAAc,CAAC,CAAC;AAE3M;;GAEG;AACH,MAAM,CAAC,MAAM,gCAAgC,GAAG;IAC9C,cAAc;IACd,WAAW;IACX,aAAa;IACb,MAAM;IACN,QAAQ;IACR,SAAS;IACT,WAAW;IACX,KAAK;IACL,YAAY;IACZ,eAAe;IACf,cAAc;IACd,gBAAgB;IAChB,gBAAgB;IAChB,eAAe;IACf,WAAW;IACX,YAAY;IACZ,eAAe;IACf,YAAY;IACZ,aAAa;IACb,cAAc;CACf,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,kBAAkB;IAClB,eAAe;IACf,kBAAkB;IAClB,eAAe;IACf,cAAc;IACd,WAAW;IACX,aAAa;IACb,MAAM;IACN,QAAQ;IACR,SAAS;IACT,SAAS;IACT,cAAc;IACd,cAAc;IACd,SAAS;IACT,KAAK;IACL,YAAY;IACZ,aAAa;IACb,gBAAgB;IAChB,UAAU;IACV,eAAe;IACf,cAAc;IACd,qBAAqB;IACrB,iBAAiB;IACjB,oBAAoB;IACpB,gBAAgB;IAChB,uBAAuB;IACvB,mBAAmB;IACnB,UAAU;IACV,SAAS;IACT,gBAAgB;IAChB,gBAAgB;IAChB,eAAe;IACf,YAAY;IACZ,YAAY;IACZ,YAAY;IACZ,gBAAgB;IAChB,gBAAgB;IAChB,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;;;GAGG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,WAAW,EAAE,UAAU,EAAE,WAAW,EAAE,UAAU,EAAE,eAAe,EAAE,YAAY,EAAE,aAAa,EAAE,cAAc,CAAC,CAAC;AAEhJ;;;GAGG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,CAAC;AAE5D;;;GAGG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,gBAAgB,CAAC,CAAC"}
|