trand_common_v1 0.2.42 → 0.2.43

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.
@@ -5,3 +5,11 @@ export type TMapCategoryContent = {
5
5
  order_num: number;
6
6
  added_at: string;
7
7
  };
8
+ export type TMapCategoryContentInsert = {
9
+ category_code: string;
10
+ content_code: string;
11
+ } & Partial<Omit<TMapCategoryContent, "category_code" | "content_code">>;
12
+ export type TMapCategoryContentUpdate = {
13
+ category_code: string;
14
+ content_code: string;
15
+ } & Partial<Omit<TMapCategoryContent, "category_code" | "content_code">>;
@@ -5,3 +5,11 @@ export type TMapCategoryInstagram = {
5
5
  order_num: number;
6
6
  added_at: string;
7
7
  };
8
+ export type TMapCategoryInstagramInsert = {
9
+ category_code: string;
10
+ insta_hash_code: string;
11
+ } & Partial<Omit<TMapCategoryInstagram, "category_code" | "insta_hash_code">>;
12
+ export type TMapCategoryInstagramUpdate = {
13
+ category_code: string;
14
+ insta_hash_code: string;
15
+ } & Partial<Omit<TMapCategoryInstagram, "category_code" | "insta_hash_code">>;
@@ -5,3 +5,11 @@ export type TMapCategoryYouTubeVideo = {
5
5
  order_num: number;
6
6
  added_at: string;
7
7
  };
8
+ export type TMapCategoryYouTubeVideoInsert = {
9
+ category_code: string;
10
+ video_id: string;
11
+ } & Partial<Omit<TMapCategoryYouTubeVideo, "category_code" | "video_id">>;
12
+ export type TMapCategoryYouTubeVideoUpdate = {
13
+ category_code: string;
14
+ video_id: string;
15
+ } & Partial<Omit<TMapCategoryYouTubeVideo, "category_code" | "video_id">>;
@@ -5,3 +5,11 @@ export type TMapCityContent = {
5
5
  order_num: number;
6
6
  added_at: string;
7
7
  };
8
+ export type TMapCityContentInsert = {
9
+ city_code: string;
10
+ content_code: string;
11
+ } & Partial<Omit<TMapCityContent, "city_code" | "content_code">>;
12
+ export type TMapCityContentUpdate = {
13
+ city_code: string;
14
+ content_code: string;
15
+ } & Partial<Omit<TMapCityContent, "city_code" | "content_code">>;
@@ -5,3 +5,11 @@ export type TMapCityInstagram = {
5
5
  order_num: number;
6
6
  added_at: string;
7
7
  };
8
+ export type TMapCityInstagramInsert = {
9
+ city_code: string;
10
+ insta_hash_code: string;
11
+ } & Partial<Omit<TMapCityInstagram, "city_code" | "insta_hash_code">>;
12
+ export type TMapCityInstagramUpdate = {
13
+ city_code: string;
14
+ insta_hash_code: string;
15
+ } & Partial<Omit<TMapCityInstagram, "city_code" | "insta_hash_code">>;
@@ -5,3 +5,11 @@ export type TMapCityYouTubeVideo = {
5
5
  order_num: number;
6
6
  added_at: string;
7
7
  };
8
+ export type TMapCityYouTubeVideoInsert = {
9
+ city_code: string;
10
+ video_id: string;
11
+ } & Partial<Omit<TMapCityYouTubeVideo, "city_code" | "video_id">>;
12
+ export type TMapCityYouTubeVideoUpdate = {
13
+ city_code: string;
14
+ video_id: string;
15
+ } & Partial<Omit<TMapCityYouTubeVideo, "city_code" | "video_id">>;
@@ -4,3 +4,11 @@ export type TMapCompletedYouTubeChannelAndCountry = {
4
4
  order_num: number;
5
5
  added_at: string;
6
6
  };
7
+ export type TMapCompletedYouTubeChannelAndCountryInsert = {
8
+ channel_id: string;
9
+ country_code: string;
10
+ } & Partial<Omit<TMapCompletedYouTubeChannelAndCountry, "channel_id" | "country_code">>;
11
+ export type TMapCompletedYouTubeChannelAndCountryUpdate = {
12
+ channel_id: string;
13
+ country_code: string;
14
+ } & Partial<Omit<TMapCompletedYouTubeChannelAndCountry, "channel_id" | "country_code">>;
@@ -5,3 +5,11 @@ export type TMapContentInstagram = {
5
5
  order_num: number;
6
6
  added_at: string;
7
7
  };
8
+ export type TMapContentInstagramInsert = {
9
+ content_code: string;
10
+ insta_hash_code: string;
11
+ } & Partial<Omit<TMapContentInstagram, "content_code" | "insta_hash_code">>;
12
+ export type TMapContentInstagramUpdate = {
13
+ content_code: string;
14
+ insta_hash_code: string;
15
+ } & Partial<Omit<TMapContentInstagram, "content_code" | "insta_hash_code">>;
@@ -5,3 +5,11 @@ export type TMapContentYouTubeVideo = {
5
5
  order_num: number;
6
6
  added_at: string;
7
7
  };
8
+ export type TMapContentYouTubeVideoInsert = {
9
+ content_code: string;
10
+ video_id: string;
11
+ } & Partial<Omit<TMapContentYouTubeVideo, "content_code" | "video_id">>;
12
+ export type TMapContentYouTubeVideoUpdate = {
13
+ content_code: string;
14
+ video_id: string;
15
+ } & Partial<Omit<TMapContentYouTubeVideo, "content_code" | "video_id">>;
@@ -5,3 +5,11 @@ export type TMapStagContent = {
5
5
  order_num: number;
6
6
  added_at: string;
7
7
  };
8
+ export type TMapStagContentInsert = {
9
+ stag_code: string;
10
+ content_code: string;
11
+ } & Partial<Omit<TMapStagContent, "stag_code" | "content_code">>;
12
+ export type TMapStagContentUpdate = {
13
+ stag_code: string;
14
+ content_code: string;
15
+ } & Partial<Omit<TMapStagContent, "stag_code" | "content_code">>;
@@ -5,3 +5,11 @@ export type TMapStagInstagram = {
5
5
  order_num: number;
6
6
  added_at: string;
7
7
  };
8
+ export type TMapStagInstagramInsert = {
9
+ stag_code: string;
10
+ insta_hash_code: string;
11
+ } & Partial<Omit<TMapStagInstagram, "stag_code" | "insta_hash_code">>;
12
+ export type TMapStagInstagramUpdate = {
13
+ stag_code: string;
14
+ insta_hash_code: string;
15
+ } & Partial<Omit<TMapStagInstagram, "stag_code" | "insta_hash_code">>;
@@ -5,3 +5,11 @@ export type TMapStagYouTubeVideo = {
5
5
  order_num: number;
6
6
  added_at: string;
7
7
  };
8
+ export type TMapStagYouTubeVideoInsert = {
9
+ stag_code: string;
10
+ video_id: string;
11
+ } & Partial<Omit<TMapStagYouTubeVideo, "stag_code" | "video_id">>;
12
+ export type TMapStagYouTubeVideoUpdate = {
13
+ stag_code: string;
14
+ video_id: string;
15
+ } & Partial<Omit<TMapStagYouTubeVideo, "stag_code" | "video_id">>;
@@ -5,3 +5,11 @@ export type TMapStreetContent = {
5
5
  order_num: number;
6
6
  added_at: string;
7
7
  };
8
+ export type TMapStreetContentInsert = {
9
+ street_code: string;
10
+ content_code: string;
11
+ } & Partial<Omit<TMapStreetContent, "street_code" | "content_code">>;
12
+ export type TMapStreetContentUpdate = {
13
+ street_code: string;
14
+ content_code: string;
15
+ } & Partial<Omit<TMapStreetContent, "street_code" | "content_code">>;
@@ -5,3 +5,11 @@ export type TMapStreetInstagram = {
5
5
  order_num: number;
6
6
  added_at: string;
7
7
  };
8
+ export type TMapStreetInstagramInsert = {
9
+ street_code: string;
10
+ insta_hash_code: string;
11
+ } & Partial<Omit<TMapStreetInstagram, "street_code" | "insta_hash_code">>;
12
+ export type TMapStreetInstagramUpdate = {
13
+ street_code: string;
14
+ insta_hash_code: string;
15
+ } & Partial<Omit<TMapStreetInstagram, "street_code" | "insta_hash_code">>;
@@ -5,3 +5,11 @@ export type TMapStreetYouTubeVideo = {
5
5
  order_num: number;
6
6
  added_at: string;
7
7
  };
8
+ export type TMapStreetYouTubeVideoInsert = {
9
+ street_code: string;
10
+ video_id: string;
11
+ } & Partial<Omit<TMapStreetYouTubeVideo, "street_code" | "video_id">>;
12
+ export type TMapStreetYouTubeVideoUpdate = {
13
+ street_code: string;
14
+ video_id: string;
15
+ } & Partial<Omit<TMapStreetYouTubeVideo, "street_code" | "video_id">>;
@@ -4,3 +4,11 @@ export type TMapTagContent = {
4
4
  order_num: number;
5
5
  added_at: string;
6
6
  };
7
+ export type TMapTagContentInsert = {
8
+ tag: string;
9
+ content_code: string;
10
+ } & Partial<Omit<TMapTagContent, "tag" | "content_code">>;
11
+ export type TMapTagContentUpdate = {
12
+ tag: string;
13
+ content_code: string;
14
+ } & Partial<Omit<TMapTagContent, "tag" | "content_code">>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trand_common_v1",
3
- "version": "0.2.42",
3
+ "version": "0.2.43",
4
4
  "description": "Common modules for Trand API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "trand"