trand_common_v1 0.2.57 → 0.2.59
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/t-map-category-content.d.ts +3 -0
- package/dist/types/t-map-category-instagram.d.ts +6 -0
- package/dist/types/t-map-category-youtube-video.d.ts +6 -0
- package/dist/types/t-map-city-content.d.ts +4 -4
- package/dist/types/t-map-city-instagram.d.ts +6 -0
- package/dist/types/t-map-city-youtube-video.d.ts +6 -0
- package/dist/types/t-map-stag-content.d.ts +9 -0
- package/dist/types/t-map-stag-instagram.d.ts +9 -0
- package/dist/types/t-map-stag-youtube-video.d.ts +9 -0
- package/dist/types/t-map-street-content.d.ts +6 -0
- package/dist/types/t-map-street-instagram.d.ts +6 -0
- package/dist/types/t-map-street-youtube-video.d.ts +6 -0
- package/dist/types/t-map-tag-content.d.ts +9 -0
- package/package.json +1 -1
|
@@ -4,6 +4,12 @@ export type TMapCategoryInstagram = {
|
|
|
4
4
|
is_selected: boolean;
|
|
5
5
|
order_num: number;
|
|
6
6
|
added_at: string;
|
|
7
|
+
street_code?: string;
|
|
8
|
+
street_name?: string;
|
|
9
|
+
street_native?: string;
|
|
10
|
+
content_code?: string;
|
|
11
|
+
content_name?: string;
|
|
12
|
+
content_native?: string;
|
|
7
13
|
};
|
|
8
14
|
export type TMapCategoryInstagramInsert = {
|
|
9
15
|
category_code: string;
|
|
@@ -4,6 +4,12 @@ export type TMapCategoryYouTubeVideo = {
|
|
|
4
4
|
is_selected: boolean;
|
|
5
5
|
order_num: number;
|
|
6
6
|
added_at: string;
|
|
7
|
+
street_code?: string;
|
|
8
|
+
street_name?: string;
|
|
9
|
+
street_native?: string;
|
|
10
|
+
content_code?: string;
|
|
11
|
+
content_name?: string;
|
|
12
|
+
content_native?: string;
|
|
7
13
|
};
|
|
8
14
|
export type TMapCategoryYouTubeVideoInsert = {
|
|
9
15
|
category_code: string;
|
|
@@ -5,10 +5,10 @@ export type TMapCityContent = {
|
|
|
5
5
|
order_num: number;
|
|
6
6
|
added_at: string;
|
|
7
7
|
city_name: string;
|
|
8
|
-
city_native
|
|
9
|
-
street_code
|
|
10
|
-
street_name
|
|
11
|
-
street_native
|
|
8
|
+
city_native?: string;
|
|
9
|
+
street_code?: string;
|
|
10
|
+
street_name?: string;
|
|
11
|
+
street_native?: string;
|
|
12
12
|
};
|
|
13
13
|
export type TMapCityContentInsert = {
|
|
14
14
|
city_code: string;
|
|
@@ -4,6 +4,12 @@ export type TMapCityInstagram = {
|
|
|
4
4
|
is_selected: boolean;
|
|
5
5
|
order_num: number;
|
|
6
6
|
added_at: string;
|
|
7
|
+
street_code?: string;
|
|
8
|
+
street_name?: string;
|
|
9
|
+
street_native?: string;
|
|
10
|
+
content_code?: string;
|
|
11
|
+
content_name?: string;
|
|
12
|
+
content_native?: string;
|
|
7
13
|
};
|
|
8
14
|
export type TMapCityInstagramInsert = {
|
|
9
15
|
city_code: string;
|
|
@@ -4,6 +4,12 @@ export type TMapCityYouTubeVideo = {
|
|
|
4
4
|
is_selected: boolean;
|
|
5
5
|
order_num: number;
|
|
6
6
|
added_at: string;
|
|
7
|
+
street_code?: string;
|
|
8
|
+
street_name?: string;
|
|
9
|
+
street_native?: string;
|
|
10
|
+
content_code?: string;
|
|
11
|
+
content_name?: string;
|
|
12
|
+
content_native?: string;
|
|
7
13
|
};
|
|
8
14
|
export type TMapCityYouTubeVideoInsert = {
|
|
9
15
|
city_code: string;
|
|
@@ -4,6 +4,15 @@ export type TMapStagContent = {
|
|
|
4
4
|
is_selected: boolean;
|
|
5
5
|
order_num: number;
|
|
6
6
|
added_at: string;
|
|
7
|
+
city_code?: string;
|
|
8
|
+
city_name?: string;
|
|
9
|
+
city_native?: string;
|
|
10
|
+
street_code?: string;
|
|
11
|
+
street_name?: string;
|
|
12
|
+
street_native?: string;
|
|
13
|
+
category_code?: string;
|
|
14
|
+
category_name?: string;
|
|
15
|
+
category_native?: string;
|
|
7
16
|
};
|
|
8
17
|
export type TMapStagContentInsert = {
|
|
9
18
|
stag_code: string;
|
|
@@ -4,6 +4,15 @@ export type TMapStagInstagram = {
|
|
|
4
4
|
is_selected: boolean;
|
|
5
5
|
order_num: number;
|
|
6
6
|
added_at: string;
|
|
7
|
+
city_code?: string;
|
|
8
|
+
city_name?: string;
|
|
9
|
+
city_native?: string;
|
|
10
|
+
street_code?: string;
|
|
11
|
+
street_name?: string;
|
|
12
|
+
street_native?: string;
|
|
13
|
+
content_code?: string;
|
|
14
|
+
content_name?: string;
|
|
15
|
+
content_native?: string;
|
|
7
16
|
};
|
|
8
17
|
export type TMapStagInstagramInsert = {
|
|
9
18
|
stag_code: string;
|
|
@@ -4,6 +4,15 @@ export type TMapStagYouTubeVideo = {
|
|
|
4
4
|
is_selected: boolean;
|
|
5
5
|
order_num: number;
|
|
6
6
|
added_at: string;
|
|
7
|
+
city_code?: string;
|
|
8
|
+
city_name?: string;
|
|
9
|
+
city_native?: string;
|
|
10
|
+
street_code?: string;
|
|
11
|
+
street_name?: string;
|
|
12
|
+
street_native?: string;
|
|
13
|
+
content_code?: string;
|
|
14
|
+
content_name?: string;
|
|
15
|
+
content_native?: string;
|
|
7
16
|
};
|
|
8
17
|
export type TMapStagYouTubeVideoInsert = {
|
|
9
18
|
stag_code: string;
|
|
@@ -4,6 +4,12 @@ export type TMapStreetContent = {
|
|
|
4
4
|
is_selected: boolean;
|
|
5
5
|
order_num: number;
|
|
6
6
|
added_at: string;
|
|
7
|
+
category_code?: string;
|
|
8
|
+
category_name?: string;
|
|
9
|
+
category_name_ko?: string;
|
|
10
|
+
stag_code?: string;
|
|
11
|
+
stag_name?: string;
|
|
12
|
+
stag_native?: string;
|
|
7
13
|
};
|
|
8
14
|
export type TMapStreetContentInsert = {
|
|
9
15
|
street_code: string;
|
|
@@ -4,6 +4,12 @@ export type TMapStreetInstagram = {
|
|
|
4
4
|
is_selected: boolean;
|
|
5
5
|
order_num: number;
|
|
6
6
|
added_at: string;
|
|
7
|
+
stag_code?: string;
|
|
8
|
+
stag_name?: string;
|
|
9
|
+
stag_native?: string;
|
|
10
|
+
content_code?: string;
|
|
11
|
+
content_name?: string;
|
|
12
|
+
content_native?: string;
|
|
7
13
|
};
|
|
8
14
|
export type TMapStreetInstagramInsert = {
|
|
9
15
|
street_code: string;
|
|
@@ -4,6 +4,12 @@ export type TMapStreetYouTubeVideo = {
|
|
|
4
4
|
is_selected: boolean;
|
|
5
5
|
order_num: number;
|
|
6
6
|
added_at: string;
|
|
7
|
+
stag_code?: string;
|
|
8
|
+
stag_name?: string;
|
|
9
|
+
stag_native?: string;
|
|
10
|
+
content_code?: string;
|
|
11
|
+
content_name?: string;
|
|
12
|
+
content_native?: string;
|
|
7
13
|
};
|
|
8
14
|
export type TMapStreetYouTubeVideoInsert = {
|
|
9
15
|
street_code: string;
|
|
@@ -3,6 +3,15 @@ export type TMapTagContent = {
|
|
|
3
3
|
content_code: string;
|
|
4
4
|
order_num: number;
|
|
5
5
|
added_at: string;
|
|
6
|
+
city_code?: string;
|
|
7
|
+
city_name?: string;
|
|
8
|
+
city_native?: string;
|
|
9
|
+
street_code?: string;
|
|
10
|
+
street_name?: string;
|
|
11
|
+
street_native?: string;
|
|
12
|
+
stag_code?: string;
|
|
13
|
+
stag_name?: string;
|
|
14
|
+
stag_native?: string;
|
|
6
15
|
};
|
|
7
16
|
export type TMapTagContentInsert = {
|
|
8
17
|
tag: string;
|