dplus_common_v1 0.1.77 → 0.1.78

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.
@@ -1,7 +1,7 @@
1
- import { TCategoryDetail, TCategoryLabelInfo } from "../types/types-category/t-category";
1
+ import { TCategoryDetail, TCategoryInfoForCountryDetail, TCategoryLabelInfo } from "../types/types-category/t-category";
2
2
  import { TCategoryI18n } from "../types/types-category/t-category-i18n";
3
3
  import { TCategoryMetadataI18nDetail } from "../types/types-category/t-category-metadata-i18n";
4
- import { TCityDetail, TCityLabelInfo } from "../types/types-city/t-city";
4
+ import { TCityDetail, TCityInfoForCountryDetail, TCityLabelInfo } from "../types/types-city/t-city";
5
5
  import { TCityI18n } from "../types/types-city/t-city-i18n";
6
6
  import { TCityImage } from "../types/types-city/t-city-image";
7
7
  import { TCityMetadataI18nDetail } from "../types/types-city/t-city-metadata-i18n";
@@ -15,10 +15,14 @@ import { TFolderMetadataI18nDetail } from "../types/types-folder/t-folder-metada
15
15
  import { TGroupDetail, TGroupLabelInfo } from "../types/types-group/t-group";
16
16
  import { TGroupImage } from "../types/types-group/t-group-image";
17
17
  import { TGroupMetadataI18nDetail } from "../types/types-group/t-group-metadata-i18n";
18
+ import { TCountryDetail } from "../types/types-i18n/t-country";
19
+ import { TCountryMetadataI18nDetail } from "../types/types-i18n/t-country-metadata-i18n";
18
20
  import { TMapCategoryEventWithCategoryInfo, TMapCategoryEventWithEventInfo } from "../types/types-map/t-map-category-event";
19
21
  import { TMapCategoryFolderWithCategoryInfo, TMapCategoryFolderWithFolderInfo } from "../types/types-map/t-map-category-folder";
20
22
  import { TMapCityEventWithCityInfo, TMapCityEventWithEventInfo } from "../types/types-map/t-map-city-event";
21
23
  import { TMapCityFolderWithCityInfo, TMapCityFolderWithFolderInfo } from "../types/types-map/t-map-city-folder";
24
+ import { TMapCountryEventWithCountryInfo, TMapCountryEventWithEventInfo } from "../types/types-map/t-map-country-event";
25
+ import { TMapCountryFolderWithCountryInfo, TMapCountryFolderWithFolderInfo } from "../types/types-map/t-map-country-folder";
22
26
  import { TMapFolderEventWithEventInfo, TMapFolderEventWithFolderInfo } from "../types/types-map/t-map-folder-event";
23
27
  import { TMapGroupEventWithEventInfo, TMapGroupEventWithGroupInfo } from "../types/types-map/t-map-group-event";
24
28
  import { TMapGroupFolderWithFolderInfo, TMapGroupFolderWithGroupInfo } from "../types/types-map/t-map-group-folder";
@@ -26,7 +30,7 @@ import { TMapStagEventWithEventInfo, TMapStagEventWithStagInfo } from "../types/
26
30
  import { TMapStagFolderWithFolderInfo, TMapStagFolderWithStagInfo } from "../types/types-map/t-map-stag-folder";
27
31
  import { TMapTagEventWithEventInfo, TMapTagEventWithTagInfo } from "../types/types-map/t-map-tag-event";
28
32
  import { TMapTagFolderWithFolderInfo, TMapTagFolderWithTagInfo } from "../types/types-map/t-map-tag-folder";
29
- import { TStagDetail, TStagLabelInfo } from "../types/types-stag/t-stag";
33
+ import { TStagDetail, TStagInfoForCountryDetail, TStagLabelInfo } from "../types/types-stag/t-stag";
30
34
  import { TStagI18n } from "../types/types-stag/t-stag-i18n";
31
35
  import { TStagMetadataI18nDetail } from "../types/types-stag/t-stag-metadata-i18n";
32
36
  import { TTag, TTagLabelInfo } from "../types/types-tag/t-tag";
@@ -102,6 +106,30 @@ export type ResponseEventDetailForUserFront = BaseResponseDetail<TEventImage, TE
102
106
  mapTagEvent?: DplusGetListDataResponse<TMapTagEventWithTagInfo>;
103
107
  mapGroupEvent?: DplusGetListDataResponse<TMapGroupEventWithGroupInfo>;
104
108
  };
109
+ /**
110
+ * 국가 상세 응답 타입 For Admin
111
+ */
112
+ export type ResponseCountryDetailForAdmin = {
113
+ country: TCountryDetail;
114
+ metadataI18n: TCountryMetadataI18nDetail[];
115
+ cities: TCityInfoForCountryDetail[];
116
+ categories: TCategoryInfoForCountryDetail[];
117
+ stags?: TStagInfoForCountryDetail[];
118
+ mapCountryFolder?: DplusGetListDataResponse<TMapCountryFolderWithCountryInfo>;
119
+ mapCountryEvent?: DplusGetListDataResponse<TMapCountryEventWithCountryInfo>;
120
+ };
121
+ /**
122
+ * 국가 상세 응답 타입 For User Front
123
+ */
124
+ export type ResponseCountryDetailForUserFront = {
125
+ country: TCountryDetail;
126
+ metadataI18n: TCountryMetadataI18nDetail[];
127
+ cities: TCityInfoForCountryDetail[];
128
+ categories: TCategoryInfoForCountryDetail[];
129
+ stags?: TStagInfoForCountryDetail[];
130
+ mapCountryFolder?: DplusGetListDataResponse<TMapCountryFolderWithFolderInfo>;
131
+ mapCountryEvent?: DplusGetListDataResponse<TMapCountryEventWithEventInfo>;
132
+ };
105
133
  /**
106
134
  * 도시 상세 응답 타입 For Admin
107
135
  */
@@ -0,0 +1,41 @@
1
+ export declare const F_MAP_COUNTRY_EVENT: {
2
+ country_code: {
3
+ id: string;
4
+ label: string;
5
+ is_required: boolean;
6
+ max_length: number;
7
+ placeholder: string;
8
+ };
9
+ event_code: {
10
+ id: string;
11
+ label: string;
12
+ is_required: boolean;
13
+ max_length: number;
14
+ placeholder: string;
15
+ };
16
+ date: {
17
+ id: string;
18
+ label: string;
19
+ is_required: boolean;
20
+ placeholder: string;
21
+ };
22
+ is_selected: {
23
+ id: string;
24
+ label: string;
25
+ is_required: boolean;
26
+ default_value: boolean;
27
+ };
28
+ order_num: {
29
+ id: string;
30
+ label: string;
31
+ is_required: boolean;
32
+ max_length: number;
33
+ placeholder: string;
34
+ };
35
+ added_at: {
36
+ id: string;
37
+ label: string;
38
+ is_required: boolean;
39
+ placeholder: string;
40
+ };
41
+ };
@@ -0,0 +1,42 @@
1
+ export const F_MAP_COUNTRY_EVENT = {
2
+ country_code: {
3
+ id: "country_code",
4
+ label: "Country Code",
5
+ is_required: true,
6
+ max_length: 2,
7
+ placeholder: "ex. KR, AA, etc.",
8
+ },
9
+ event_code: {
10
+ id: "event_code",
11
+ label: "Event Code",
12
+ is_required: true,
13
+ max_length: 24,
14
+ placeholder: "ex. 202512-A12-B34",
15
+ },
16
+ date: {
17
+ id: "date",
18
+ label: "Date",
19
+ is_required: false,
20
+ placeholder: "ex. 2025-01-01 12:00:00",
21
+ },
22
+ is_selected: {
23
+ id: "is_selected",
24
+ label: "Is Selected",
25
+ is_required: true,
26
+ default_value: false,
27
+ },
28
+ order_num: {
29
+ id: "order_num",
30
+ label: "Order Num",
31
+ is_required: false,
32
+ max_length: 10,
33
+ placeholder: "ex. 1",
34
+ },
35
+ added_at: {
36
+ id: "added_at",
37
+ label: "Added At",
38
+ is_required: true,
39
+ placeholder: "ex. 2025-01-01 12:00:00",
40
+ },
41
+ };
42
+ //# sourceMappingURL=f-map-country-event.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"f-map-country-event.js","sourceRoot":"","sources":["../../../src/fields/fields-map/f-map-country-event.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,mBAAmB,GAAG;IACjC,YAAY,EAAE;QACZ,EAAE,EAAE,cAAc;QAClB,KAAK,EAAE,cAAc;QACrB,WAAW,EAAE,IAAI;QACjB,UAAU,EAAE,CAAC;QACb,WAAW,EAAE,kBAAkB;KAChC;IACD,UAAU,EAAE;QACV,EAAE,EAAE,YAAY;QAChB,KAAK,EAAE,YAAY;QACnB,WAAW,EAAE,IAAI;QACjB,UAAU,EAAE,EAAE;QACd,WAAW,EAAE,oBAAoB;KAClC;IACD,IAAI,EAAE;QACJ,EAAE,EAAE,MAAM;QACV,KAAK,EAAE,MAAM;QACb,WAAW,EAAE,KAAK;QAClB,WAAW,EAAE,yBAAyB;KACvC;IACD,WAAW,EAAE;QACX,EAAE,EAAE,aAAa;QACjB,KAAK,EAAE,aAAa;QACpB,WAAW,EAAE,IAAI;QACjB,aAAa,EAAE,KAAK;KACrB;IACD,SAAS,EAAE;QACT,EAAE,EAAE,WAAW;QACf,KAAK,EAAE,WAAW;QAClB,WAAW,EAAE,KAAK;QAClB,UAAU,EAAE,EAAE;QACd,WAAW,EAAE,OAAO;KACrB;IACD,QAAQ,EAAE;QACR,EAAE,EAAE,UAAU;QACd,KAAK,EAAE,UAAU;QACjB,WAAW,EAAE,IAAI;QACjB,WAAW,EAAE,yBAAyB;KACvC;CACF,CAAC"}
@@ -0,0 +1,47 @@
1
+ export declare const F_MAP_COUNTRY_FOLDER: {
2
+ country_code: {
3
+ id: string;
4
+ label: string;
5
+ is_required: boolean;
6
+ max_length: number;
7
+ placeholder: string;
8
+ };
9
+ folder_code: {
10
+ id: string;
11
+ label: string;
12
+ is_required: boolean;
13
+ max_length: number;
14
+ placeholder: string;
15
+ };
16
+ earliest_event: {
17
+ id: string;
18
+ label: string;
19
+ is_required: boolean;
20
+ placeholder: string;
21
+ };
22
+ latest_event: {
23
+ id: string;
24
+ label: string;
25
+ is_required: boolean;
26
+ placeholder: string;
27
+ };
28
+ is_selected: {
29
+ id: string;
30
+ label: string;
31
+ is_required: boolean;
32
+ default_value: boolean;
33
+ };
34
+ order_num: {
35
+ id: string;
36
+ label: string;
37
+ is_required: boolean;
38
+ max_length: number;
39
+ placeholder: string;
40
+ };
41
+ added_at: {
42
+ id: string;
43
+ label: string;
44
+ is_required: boolean;
45
+ placeholder: string;
46
+ };
47
+ };
@@ -0,0 +1,48 @@
1
+ export const F_MAP_COUNTRY_FOLDER = {
2
+ country_code: {
3
+ id: "country_code",
4
+ label: "Country Code",
5
+ is_required: true,
6
+ max_length: 2,
7
+ placeholder: "ex. KR, AA, etc.",
8
+ },
9
+ folder_code: {
10
+ id: "folder_code",
11
+ label: "Folder Code",
12
+ is_required: true,
13
+ max_length: 96,
14
+ placeholder: "ex. F-NETFLIX-A12-B34",
15
+ },
16
+ earliest_event: {
17
+ id: "earliest_event",
18
+ label: "Earliest Event",
19
+ is_required: false,
20
+ placeholder: "ex. 2025-01-01 12:00:00",
21
+ },
22
+ latest_event: {
23
+ id: "latest_event",
24
+ label: "Latest Event",
25
+ is_required: false,
26
+ placeholder: "ex. 2025-01-01 12:00:00",
27
+ },
28
+ is_selected: {
29
+ id: "is_selected",
30
+ label: "Is Selected",
31
+ is_required: true,
32
+ default_value: false,
33
+ },
34
+ order_num: {
35
+ id: "order_num",
36
+ label: "Order Num",
37
+ is_required: false,
38
+ max_length: 10,
39
+ placeholder: "ex. 1",
40
+ },
41
+ added_at: {
42
+ id: "added_at",
43
+ label: "Added At",
44
+ is_required: true,
45
+ placeholder: "ex. 2025-01-01 12:00:00",
46
+ },
47
+ };
48
+ //# sourceMappingURL=f-map-country-folder.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"f-map-country-folder.js","sourceRoot":"","sources":["../../../src/fields/fields-map/f-map-country-folder.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,oBAAoB,GAAG;IAClC,YAAY,EAAE;QACZ,EAAE,EAAE,cAAc;QAClB,KAAK,EAAE,cAAc;QACrB,WAAW,EAAE,IAAI;QACjB,UAAU,EAAE,CAAC;QACb,WAAW,EAAE,kBAAkB;KAChC;IACD,WAAW,EAAE;QACX,EAAE,EAAE,aAAa;QACjB,KAAK,EAAE,aAAa;QACpB,WAAW,EAAE,IAAI;QACjB,UAAU,EAAE,EAAE;QACd,WAAW,EAAE,uBAAuB;KACrC;IACD,cAAc,EAAE;QACd,EAAE,EAAE,gBAAgB;QACpB,KAAK,EAAE,gBAAgB;QACvB,WAAW,EAAE,KAAK;QAClB,WAAW,EAAE,yBAAyB;KACvC;IACD,YAAY,EAAE;QACZ,EAAE,EAAE,cAAc;QAClB,KAAK,EAAE,cAAc;QACrB,WAAW,EAAE,KAAK;QAClB,WAAW,EAAE,yBAAyB;KACvC;IACD,WAAW,EAAE;QACX,EAAE,EAAE,aAAa;QACjB,KAAK,EAAE,aAAa;QACpB,WAAW,EAAE,IAAI;QACjB,aAAa,EAAE,KAAK;KACrB;IACD,SAAS,EAAE;QACT,EAAE,EAAE,WAAW;QACf,KAAK,EAAE,WAAW;QAClB,WAAW,EAAE,KAAK;QAClB,UAAU,EAAE,EAAE;QACd,WAAW,EAAE,OAAO;KACrB;IACD,QAAQ,EAAE;QACR,EAAE,EAAE,UAAU;QACd,KAAK,EAAE,UAAU;QACjB,WAAW,EAAE,IAAI;QACjB,WAAW,EAAE,yBAAyB;KACvC;CACF,CAAC"}
package/dist/index.d.ts CHANGED
@@ -41,6 +41,8 @@ export * from "./fields/fields-map/f-map-category-event.js";
41
41
  export * from "./fields/fields-map/f-map-category-folder.js";
42
42
  export * from "./fields/fields-map/f-map-city-event.js";
43
43
  export * from "./fields/fields-map/f-map-city-folder.js";
44
+ export * from "./fields/fields-map/f-map-country-event.js";
45
+ export * from "./fields/fields-map/f-map-country-folder.js";
44
46
  export * from "./fields/fields-map/f-map-folder-event.js";
45
47
  export * from "./fields/fields-map/f-map-group-event.js";
46
48
  export * from "./fields/fields-map/f-map-group-folder.js";
@@ -98,6 +100,8 @@ export * from "./types/types-map/t-map-category-event.js";
98
100
  export * from "./types/types-map/t-map-category-folder.js";
99
101
  export * from "./types/types-map/t-map-city-event.js";
100
102
  export * from "./types/types-map/t-map-city-folder.js";
103
+ export * from "./types/types-map/t-map-country-event.js";
104
+ export * from "./types/types-map/t-map-country-folder.js";
101
105
  export * from "./types/types-map/t-map-folder-event.js";
102
106
  export * from "./types/types-map/t-map-group-event.js";
103
107
  export * from "./types/types-map/t-map-group-folder.js";
package/dist/index.js CHANGED
@@ -41,6 +41,8 @@ export * from "./fields/fields-map/f-map-category-event.js";
41
41
  export * from "./fields/fields-map/f-map-category-folder.js";
42
42
  export * from "./fields/fields-map/f-map-city-event.js";
43
43
  export * from "./fields/fields-map/f-map-city-folder.js";
44
+ export * from "./fields/fields-map/f-map-country-event.js";
45
+ export * from "./fields/fields-map/f-map-country-folder.js";
44
46
  export * from "./fields/fields-map/f-map-folder-event.js";
45
47
  export * from "./fields/fields-map/f-map-group-event.js";
46
48
  export * from "./fields/fields-map/f-map-group-folder.js";
@@ -98,6 +100,8 @@ export * from "./types/types-map/t-map-category-event.js";
98
100
  export * from "./types/types-map/t-map-category-folder.js";
99
101
  export * from "./types/types-map/t-map-city-event.js";
100
102
  export * from "./types/types-map/t-map-city-folder.js";
103
+ export * from "./types/types-map/t-map-country-event.js";
104
+ export * from "./types/types-map/t-map-country-folder.js";
101
105
  export * from "./types/types-map/t-map-folder-event.js";
102
106
  export * from "./types/types-map/t-map-group-event.js";
103
107
  export * from "./types/types-map/t-map-group-folder.js";
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC;AAEhD,cAAc,uCAAuC,CAAC;AAEtD,cAAc,kDAAkD,CAAC;AAEjE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,sDAAsD,CAAC;AACrE,cAAc,iDAAiD,CAAC;AAChE,cAAc,wCAAwC,CAAC;AAEvD,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC;AACrD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,yCAAyC,CAAC;AACxD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,gCAAgC,CAAC;AAE/C,cAAc,wCAAwC,CAAC;AACvD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,kCAAkC,CAAC;AAEjD,cAAc,0CAA0C,CAAC;AACzD,cAAc,kDAAkD,CAAC;AACjE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,oCAAoC,CAAC;AAEnD,cAAc,wCAAwC,CAAC;AACvD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,kCAAkC,CAAC;AAEjD,cAAc,iDAAiD,CAAC;AAChE,cAAc,4CAA4C,CAAC;AAC3D,cAAc,mCAAmC,CAAC;AAClD,cAAc,oCAAoC,CAAC;AACnD,cAAc,gDAAgD,CAAC;AAE/D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,yCAAyC,CAAC;AACxD,cAAc,0CAA0C,CAAC;AACzD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,0CAA0C,CAAC;AACzD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,yCAAyC,CAAC;AACxD,cAAc,0CAA0C,CAAC;AACzD,cAAc,wCAAwC,CAAC;AACvD,cAAc,yCAAyC,CAAC;AACxD,cAAc,yCAAyC,CAAC;AACxD,cAAc,0CAA0C,CAAC;AAEzD,cAAc,wDAAwD,CAAA;AAEtE,cAAc,qCAAqC,CAAC;AACpD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,yCAAyC,CAAC;AACxD,cAAc,gCAAgC,CAAC;AAE/C,cAAc,uCAAuC,CAAC;AACtD,cAAc,8BAA8B,CAAC;AAE7C,cAAc,qDAAqD,CAAC;AACpE,cAAc,uDAAuD,CAAC;AACtE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,mCAAmC,CAAC;AAClD,cAAc,gCAAgC,CAAC;AAG/C,cAAc,gDAAgD,CAAC;AAE/D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,oDAAoD,CAAC;AACnE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,sCAAsC,CAAC;AAErD,cAAc,mCAAmC,CAAC;AAClD,cAAc,oCAAoC,CAAC;AACnD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,uCAAuC,CAAC;AACtD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,8BAA8B,CAAC;AAE7C,cAAc,sCAAsC,CAAC;AACrD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,0CAA0C,CAAC;AACzD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,yCAAyC,CAAC;AACxD,cAAc,gCAAgC,CAAC;AAE/C,cAAc,wCAAwC,CAAC;AACvD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,kCAAkC,CAAC;AAEjD,cAAc,sCAAsC,CAAC;AACrD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,yCAAyC,CAAC;AACxD,cAAc,gCAAgC,CAAC;AAE/C,cAAc,+CAA+C,CAAC;AAC9D,cAAc,0CAA0C,CAAC;AACzD,cAAc,iCAAiC,CAAC;AAChD,cAAc,kCAAkC,CAAC;AACjD,cAAc,8CAA8C,CAAC;AAE7D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,uCAAuC,CAAC;AACtD,cAAc,wCAAwC,CAAC;AACvD,cAAc,yCAAyC,CAAC;AACxD,cAAc,wCAAwC,CAAC;AACvD,cAAc,yCAAyC,CAAC;AACxD,cAAc,uCAAuC,CAAC;AACtD,cAAc,wCAAwC,CAAC;AACvD,cAAc,sCAAsC,CAAC;AACrD,cAAc,uCAAuC,CAAC;AACtD,cAAc,uCAAuC,CAAC;AACtD,cAAc,wCAAwC,CAAC;AAEvD,cAAc,sDAAsD,CAAC;AAErE,cAAc,mCAAmC,CAAC;AAClD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,uCAAuC,CAAC;AACtD,cAAc,8BAA8B,CAAC;AAE7C,cAAc,qCAAqC,CAAC;AACpD,cAAc,4BAA4B,CAAC;AAE3C,cAAc,mDAAmD,CAAC;AAClE,cAAc,qDAAqD,CAAC;AACpE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,iCAAiC,CAAC;AAChD,cAAc,8BAA8B,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
@@ -14,6 +14,24 @@ export type TCategoryOption = {
14
14
  is_active: boolean;
15
15
  is_display: boolean;
16
16
  };
17
+ export type TCategoryInfoForCountryDetail = {
18
+ category_code: string;
19
+ order_num: number;
20
+ target_country_code: string;
21
+ upper_category_code: string | null;
22
+ name: string;
23
+ name_i18n: string | null;
24
+ name_display: string | null;
25
+ icon: string | null;
26
+ bg_color: string | null;
27
+ fg_color: string | null;
28
+ thumbnail_square: string | null;
29
+ thumbnail_horizontal: string | null;
30
+ thumbnail_vertical: string | null;
31
+ profile: string | null;
32
+ view_count: number;
33
+ event_count: number;
34
+ };
17
35
  export declare const DB_COLUMNS_CATEGORY_OPTION: string[];
18
36
  export type TCategoryListForAdmin = TCategoryOption & {
19
37
  icon: string | null;
@@ -1 +1 @@
1
- {"version":3,"file":"t-category.js","sourceRoot":"","sources":["../../../src/types/types-category/t-category.ts"],"names":[],"mappings":"AAmBA;;GAEG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,eAAe,EAAE,WAAW,EAAE,qBAAqB,EAAE,MAAM,EAAE,WAAW,EAAE,YAAY,CAAC,CAAC;AAenI;;GAEG;AACH,MAAM,CAAC,MAAM,kCAAkC,GAAG;IAChD,eAAe;IACf,WAAW;IACX,qBAAqB;IACrB,MAAM;IACN,UAAU;IACV,UAAU;IACV,WAAW;IACX,YAAY;IACZ,MAAM;IACN,SAAS;IACT,YAAY;IACZ,aAAa;IACb,YAAY;IACZ,YAAY;IACZ,YAAY;CACb,CAAC;AA0CF;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,eAAe;IACf,WAAW;IACX,qBAAqB;IACrB,qBAAqB;IACrB,MAAM;IACN,UAAU;IACV,UAAU;IACV,MAAM;IACN,kBAAkB;IAClB,sBAAsB;IACtB,oBAAoB;IACpB,SAAS;IACT,YAAY;IACZ,YAAY;IACZ,YAAY;IACZ,gBAAgB;IAChB,gBAAgB;IAChB,eAAe;IACf,eAAe;IACf,eAAe;IACf,eAAe;IACf,eAAe;IACf,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,gBAAgB;IAChB,sBAAsB;IACtB,mBAAmB;IACnB,yBAAyB;IACzB,mBAAmB;CACpB,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,aAAa,EAAE,YAAY,CAAC,CAAC;AAE/D;;;GAGG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,CAAC;AAE9D;;;GAGG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,mBAAmB,CAAC,CAAC"}
1
+ {"version":3,"file":"t-category.js","sourceRoot":"","sources":["../../../src/types/types-category/t-category.ts"],"names":[],"mappings":"AAuCA;;GAEG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,eAAe,EAAE,WAAW,EAAE,qBAAqB,EAAE,MAAM,EAAE,WAAW,EAAE,YAAY,CAAC,CAAC;AAenI;;GAEG;AACH,MAAM,CAAC,MAAM,kCAAkC,GAAG;IAChD,eAAe;IACf,WAAW;IACX,qBAAqB;IACrB,MAAM;IACN,UAAU;IACV,UAAU;IACV,WAAW;IACX,YAAY;IACZ,MAAM;IACN,SAAS;IACT,YAAY;IACZ,aAAa;IACb,YAAY;IACZ,YAAY;IACZ,YAAY;CACb,CAAC;AA0CF;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,eAAe;IACf,WAAW;IACX,qBAAqB;IACrB,qBAAqB;IACrB,MAAM;IACN,UAAU;IACV,UAAU;IACV,MAAM;IACN,kBAAkB;IAClB,sBAAsB;IACtB,oBAAoB;IACpB,SAAS;IACT,YAAY;IACZ,YAAY;IACZ,YAAY;IACZ,gBAAgB;IAChB,gBAAgB;IAChB,eAAe;IACf,eAAe;IACf,eAAe;IACf,eAAe;IACf,eAAe;IACf,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,gBAAgB;IAChB,sBAAsB;IACtB,mBAAmB;IACnB,yBAAyB;IACzB,mBAAmB;CACpB,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,aAAa,EAAE,YAAY,CAAC,CAAC;AAE/D;;;GAGG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,CAAC;AAE9D;;;GAGG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,mBAAmB,CAAC,CAAC"}
@@ -11,6 +11,20 @@ export type TCityOption = {
11
11
  name_native: string | null;
12
12
  name_ko: string | null;
13
13
  };
14
+ export type TCityInfoForCountryDetail = {
15
+ city_code: string;
16
+ country_code: string;
17
+ name: string;
18
+ name_native: string | null;
19
+ name_ko: string | null;
20
+ thumbnail_square: string | null;
21
+ thumbnail_horizontal: string | null;
22
+ thumbnail_vertical: string | null;
23
+ view_count: number;
24
+ event_count: number;
25
+ name_i18n: string | null;
26
+ name_display: string | null;
27
+ };
14
28
  export declare const DB_COLUMNS_CITY_OPTION: string[];
15
29
  export type TCityListForAdmin = TCityOption & {
16
30
  profile: string | null;
@@ -1 +1 @@
1
- {"version":3,"file":"t-city.js","sourceRoot":"","sources":["../../../src/types/types-city/t-city.ts"],"names":[],"mappings":"AAeA;;GAEG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,cAAc,EAAE,WAAW,EAAE,MAAM,EAAE,aAAa,EAAE,SAAS,CAAC,CAAC;AAkBtG;;GAEG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAG;IAC5C,cAAc;IACd,WAAW;IACX,MAAM;IACN,aAAa;IACb,SAAS;IACT,SAAS;IACT,cAAc;IACd,eAAe;IACf,cAAc;IACd,WAAW;IACX,YAAY;IACZ,SAAS;IACT,gBAAgB;IAChB,WAAW;IACX,YAAY;IACZ,YAAY;IACZ,aAAa;CACd,CAAC;AAmDF;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,WAAW;IACX,cAAc;IACd,gBAAgB;IAChB,MAAM;IACN,aAAa;IACb,SAAS;IACT,kBAAkB;IAClB,sBAAsB;IACtB,oBAAoB;IACpB,SAAS;IACT,cAAc;IACd,eAAe;IACf,cAAc;IACd,WAAW;IACX,YAAY;IACZ,SAAS;IACT,gBAAgB;IAChB,gBAAgB;IAChB,eAAe;IACf,gBAAgB;IAChB,gBAAgB;IAChB,eAAe;IACf,eAAe;IACf,eAAe;IACf,eAAe;IACf,eAAe;IACf,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,gBAAgB;IAChB,sBAAsB;IACtB,mBAAmB;IACnB,yBAAyB;IACzB,mBAAmB;IACnB,YAAY;IACZ,YAAY;CACb,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,UAAU,EAAE,UAAU,EAAE,WAAW,EAAE,UAAU,EAAE,YAAY,EAAE,aAAa,CAAC,CAAC;AAE5G;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,CAAC;AAE1D;;;GAGG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,mBAAmB,CAAC,CAAC"}
1
+ {"version":3,"file":"t-city.js","sourceRoot":"","sources":["../../../src/types/types-city/t-city.ts"],"names":[],"mappings":"AA+BA;;GAEG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,cAAc,EAAE,WAAW,EAAE,MAAM,EAAE,aAAa,EAAE,SAAS,CAAC,CAAC;AAkBtG;;GAEG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAG;IAC5C,cAAc;IACd,WAAW;IACX,MAAM;IACN,aAAa;IACb,SAAS;IACT,SAAS;IACT,cAAc;IACd,eAAe;IACf,cAAc;IACd,WAAW;IACX,YAAY;IACZ,SAAS;IACT,gBAAgB;IAChB,WAAW;IACX,YAAY;IACZ,YAAY;IACZ,aAAa;CACd,CAAC;AAmDF;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,WAAW;IACX,cAAc;IACd,gBAAgB;IAChB,MAAM;IACN,aAAa;IACb,SAAS;IACT,kBAAkB;IAClB,sBAAsB;IACtB,oBAAoB;IACpB,SAAS;IACT,cAAc;IACd,eAAe;IACf,cAAc;IACd,WAAW;IACX,YAAY;IACZ,SAAS;IACT,gBAAgB;IAChB,gBAAgB;IAChB,eAAe;IACf,gBAAgB;IAChB,gBAAgB;IAChB,eAAe;IACf,eAAe;IACf,eAAe;IACf,eAAe;IACf,eAAe;IACf,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,gBAAgB;IAChB,sBAAsB;IACtB,mBAAmB;IACnB,yBAAyB;IACzB,mBAAmB;IACnB,YAAY;IACZ,YAAY;CACb,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,UAAU,EAAE,UAAU,EAAE,WAAW,EAAE,UAAU,EAAE,YAAY,EAAE,aAAa,CAAC,CAAC;AAE5G;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,CAAC;AAE1D;;;GAGG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,mBAAmB,CAAC,CAAC"}
@@ -1,3 +1,13 @@
1
+ export type TCountryLabelInfo = {
2
+ country_code: string;
3
+ country_name: string;
4
+ native: string;
5
+ };
6
+ export type TCountryOption = {
7
+ country_code: string;
8
+ country_name: string;
9
+ native: string | null;
10
+ };
1
11
  export type TCountryList = {
2
12
  country_code: string;
3
13
  country_name: string;
@@ -0,0 +1,21 @@
1
+ import { TCountryLabelInfo } from "../types-i18n/t-country";
2
+ import { TEventCard } from "../types-event/t-event";
3
+ export type TMapCountryEvent = {
4
+ country_code: string;
5
+ event_code: string;
6
+ date?: Date | null;
7
+ is_selected?: boolean;
8
+ order_num?: number;
9
+ added_at?: Date;
10
+ };
11
+ export type TMapCountryEventInsert = {
12
+ country_code: string;
13
+ event_code: string;
14
+ } & Partial<Omit<TMapCountryEvent, "country_code" | "event_code">>;
15
+ export type TMapCountryEventUpdate = Partial<Omit<TMapCountryEvent, "country_code" | "event_code">>;
16
+ export type TMapCountryEventWithCountryInfo = TMapCountryEvent & {
17
+ country_info: TCountryLabelInfo | null;
18
+ };
19
+ export type TMapCountryEventWithEventInfo = TMapCountryEvent & {
20
+ event_info: TEventCard | null;
21
+ };
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=t-map-country-event.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"t-map-country-event.js","sourceRoot":"","sources":["../../../src/types/types-map/t-map-country-event.ts"],"names":[],"mappings":""}
@@ -0,0 +1,22 @@
1
+ import { TCountryLabelInfo } from "../types-i18n/t-country";
2
+ import { TFolderSummaryInfo } from "../types-folder/t-folder";
3
+ export type TMapCountryFolder = {
4
+ country_code: string;
5
+ folder_code: string;
6
+ earliest_event?: Date | null;
7
+ latest_event?: Date | null;
8
+ is_selected?: boolean;
9
+ order_num?: number;
10
+ added_at?: Date;
11
+ };
12
+ export type TMapCountryFolderInsert = {
13
+ country_code: string;
14
+ folder_code: string;
15
+ } & Partial<Omit<TMapCountryFolder, "country_code" | "folder_code">>;
16
+ export type TMapCountryFolderUpdate = Partial<Omit<TMapCountryFolder, "country_code" | "folder_code">>;
17
+ export type TMapCountryFolderWithCountryInfo = TMapCountryFolder & {
18
+ country_info: TCountryLabelInfo | null;
19
+ };
20
+ export type TMapCountryFolderWithFolderInfo = TMapCountryFolder & {
21
+ folder_info: TFolderSummaryInfo | null;
22
+ };
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=t-map-country-folder.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"t-map-country-folder.js","sourceRoot":"","sources":["../../../src/types/types-map/t-map-country-folder.ts"],"names":[],"mappings":""}
@@ -4,6 +4,21 @@ export type TStagLabelInfo = {
4
4
  stag: string;
5
5
  stag_native: string;
6
6
  };
7
+ export type TStagInfoForCountryDetail = {
8
+ stag_code: string;
9
+ target_country_code: string;
10
+ stag: string;
11
+ stag_native: string | null;
12
+ description: string | null;
13
+ bg_color: string | null;
14
+ fg_color: string | null;
15
+ thumbnail_square: string | null;
16
+ thumbnail_horizontal: string | null;
17
+ thumbnail_vertical: string | null;
18
+ profile: string | null;
19
+ event_count: number;
20
+ view_count: number;
21
+ };
7
22
  export type TStagListForAdmin = {
8
23
  stag_code: string;
9
24
  target_country_code: string;
@@ -1 +1 @@
1
- {"version":3,"file":"t-stag.js","sourceRoot":"","sources":["../../../src/types/types-stag/t-stag.ts"],"names":[],"mappings":"AA4BA;;GAEG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAG;IAC5C,qBAAqB;IACrB,WAAW;IACX,MAAM;IACN,UAAU;IACV,UAAU;IACV,KAAK;IACL,aAAa;IACb,WAAW;IACX,YAAY;IACZ,UAAU;IACV,UAAU;CACX,CAAC;AAmDF;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,WAAW;IACX,qBAAqB;IACrB,MAAM;IACN,aAAa;IACb,UAAU;IACV,UAAU;IACV,kBAAkB;IAClB,sBAAsB;IACtB,oBAAoB;IACpB,SAAS;IACT,aAAa;IACb,KAAK;IACL,cAAc;IACd,eAAe;IACf,cAAc;IACd,WAAW;IACX,YAAY;IACZ,SAAS;IACT,gBAAgB;IAChB,eAAe;IACf,gBAAgB;IAChB,gBAAgB;IAChB,eAAe;IACf,eAAe;IACf,eAAe;IACf,eAAe;IACf,eAAe;IACf,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,gBAAgB;IAChB,sBAAsB;IACtB,mBAAmB;IACnB,yBAAyB;IACzB,mBAAmB;CACpB,CAAC;AAGF;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,aAAa,EAAE,YAAY,CAAC,CAAC;AAE3D;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,CAAC;AAE1D;;;GAGG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,mBAAmB,CAAC,CAAC"}
1
+ {"version":3,"file":"t-stag.js","sourceRoot":"","sources":["../../../src/types/types-stag/t-stag.ts"],"names":[],"mappings":"AA8CA;;GAEG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAG;IAC5C,qBAAqB;IACrB,WAAW;IACX,MAAM;IACN,UAAU;IACV,UAAU;IACV,KAAK;IACL,aAAa;IACb,WAAW;IACX,YAAY;IACZ,UAAU;IACV,UAAU;CACX,CAAC;AAmDF;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,WAAW;IACX,qBAAqB;IACrB,MAAM;IACN,aAAa;IACb,UAAU;IACV,UAAU;IACV,kBAAkB;IAClB,sBAAsB;IACtB,oBAAoB;IACpB,SAAS;IACT,aAAa;IACb,KAAK;IACL,cAAc;IACd,eAAe;IACf,cAAc;IACd,WAAW;IACX,YAAY;IACZ,SAAS;IACT,gBAAgB;IAChB,eAAe;IACf,gBAAgB;IAChB,gBAAgB;IAChB,eAAe;IACf,eAAe;IACf,eAAe;IACf,eAAe;IACf,eAAe;IACf,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,gBAAgB;IAChB,sBAAsB;IACtB,mBAAmB;IACnB,yBAAyB;IACzB,mBAAmB;CACpB,CAAC;AAGF;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,aAAa,EAAE,YAAY,CAAC,CAAC;AAE3D;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,CAAC;AAE1D;;;GAGG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,mBAAmB,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dplus_common_v1",
3
- "version": "0.1.77",
3
+ "version": "0.1.78",
4
4
  "description": "Common modules for dplus API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "dplus"