dplus_common_v1 0.1.4 → 0.1.6
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/consts/all-countries.js +1 -1
- package/dist/consts/all-countries.js.map +1 -1
- package/dist/consts/db.d.ts +21 -7
- package/dist/consts/db.js +44 -7
- package/dist/consts/db.js.map +1 -1
- package/dist/db-types/db-brand-types.d.ts +55 -0
- package/dist/db-types/db-category-types.d.ts +48 -20
- package/dist/db-types/db-celeb-types.d.ts +55 -0
- package/dist/db-types/db-city-types.d.ts +48 -20
- package/dist/db-types/db-company-types.d.ts +55 -0
- package/dist/db-types/db-idol-group-types.d.ts +55 -0
- package/dist/db-types/db-people-types.d.ts +55 -0
- package/dist/db-types/db-product-types.d.ts +55 -0
- package/dist/db-types/db-special-tag-types.d.ts +48 -20
- package/dist/db-types/db-team-types.d.ts +55 -0
- package/dist/dplus-types/dplus-response-types.js.map +1 -1
- package/dist/fields/field-brand.d.ts +237 -0
- package/dist/fields/field-brand.js +242 -5
- package/dist/fields/field-brand.js.map +1 -1
- package/dist/fields/field-category.d.ts +191 -4
- package/dist/fields/field-category.js +202 -15
- package/dist/fields/field-category.js.map +1 -1
- package/dist/fields/field-celeb.d.ts +237 -0
- package/dist/fields/field-celeb.js +242 -5
- package/dist/fields/field-celeb.js.map +1 -1
- package/dist/fields/field-city.d.ts +191 -4
- package/dist/fields/field-city.js +203 -16
- package/dist/fields/field-city.js.map +1 -1
- package/dist/fields/field-company.d.ts +237 -0
- package/dist/fields/field-company.js +241 -4
- package/dist/fields/field-company.js.map +1 -1
- package/dist/fields/field-event.js.map +1 -1
- package/dist/fields/field-folder.js.map +1 -1
- package/dist/fields/field-idol-group.d.ts +237 -0
- package/dist/fields/field-idol-group.js +241 -4
- package/dist/fields/field-idol-group.js.map +1 -1
- package/dist/fields/field-people.d.ts +237 -0
- package/dist/fields/field-people.js +241 -4
- package/dist/fields/field-people.js.map +1 -1
- package/dist/fields/field-product.d.ts +237 -0
- package/dist/fields/field-product.js +243 -6
- package/dist/fields/field-product.js.map +1 -1
- package/dist/fields/field-public-event.js.map +1 -1
- package/dist/fields/field-special-tag.d.ts +191 -4
- package/dist/fields/field-special-tag.js +202 -15
- package/dist/fields/field-special-tag.js.map +1 -1
- package/dist/fields/field-tag.js.map +1 -1
- package/dist/fields/field-team.d.ts +237 -0
- package/dist/fields/field-team.js +237 -0
- package/dist/fields/field-team.js.map +1 -1
- package/dist/fields/field-user-report.js.map +1 -1
- package/dist/fields/field-user.js.map +1 -1
- package/package.json +1 -1
|
@@ -74,6 +74,31 @@ export type TMapCompanyFolderUpdate = {
|
|
|
74
74
|
company_code: string;
|
|
75
75
|
folder_id: string;
|
|
76
76
|
} & Partial<Omit<TMapCompanyFolder, "company_code" | "folder_id">>;
|
|
77
|
+
export type TMapCompanySelectedFolder = {
|
|
78
|
+
company_code: string;
|
|
79
|
+
folder_id: string;
|
|
80
|
+
title: string | null;
|
|
81
|
+
profile: string | null;
|
|
82
|
+
description: string | null;
|
|
83
|
+
target_country_code: string | null;
|
|
84
|
+
target_city_code: string | null;
|
|
85
|
+
hero_image_01: string | null;
|
|
86
|
+
hero_image_02: string | null;
|
|
87
|
+
thumbnail_main_01: string | null;
|
|
88
|
+
thumbnail_main_02: string | null;
|
|
89
|
+
thumbnail_vertical_01: string | null;
|
|
90
|
+
thumbnail_vertical_02: string | null;
|
|
91
|
+
earliest_event: Date | null;
|
|
92
|
+
latest_event: Date | null;
|
|
93
|
+
};
|
|
94
|
+
export type TMapCompanySelectedFolderInsert = {
|
|
95
|
+
company_code: string;
|
|
96
|
+
folder_id: string;
|
|
97
|
+
} & Partial<Omit<TMapCompanySelectedFolder, "company_code" | "folder_id">>;
|
|
98
|
+
export type TMapCompanySelectedFolderUpdate = {
|
|
99
|
+
company_code: string;
|
|
100
|
+
folder_id: string;
|
|
101
|
+
} & Partial<Omit<TMapCompanySelectedFolder, "company_code" | "folder_id">>;
|
|
77
102
|
export type TMapCompanyEvent = {
|
|
78
103
|
company_code: string;
|
|
79
104
|
event_id: string;
|
|
@@ -87,3 +112,33 @@ export type TMapCompanyEventUpdate = {
|
|
|
87
112
|
company_code: string;
|
|
88
113
|
event_id: string;
|
|
89
114
|
} & Partial<Omit<TMapCompanyEvent, "company_code" | "event_id">>;
|
|
115
|
+
export type TMapCompanySelectedEvent = {
|
|
116
|
+
company_code: string;
|
|
117
|
+
event_id: string;
|
|
118
|
+
folder_id: string | null;
|
|
119
|
+
date: Date | null;
|
|
120
|
+
time: Date | null;
|
|
121
|
+
tz: string | null;
|
|
122
|
+
utc_minutes: number | null;
|
|
123
|
+
duration_minutes: number | null;
|
|
124
|
+
is_repeat_annually: boolean;
|
|
125
|
+
title: string;
|
|
126
|
+
profile: string | null;
|
|
127
|
+
description: string | null;
|
|
128
|
+
target_country_code: string | null;
|
|
129
|
+
target_city_code: string | null;
|
|
130
|
+
hero_image_01: string | null;
|
|
131
|
+
hero_image_02: string | null;
|
|
132
|
+
thumbnail_main_01: string | null;
|
|
133
|
+
thumbnail_main_02: string | null;
|
|
134
|
+
thumbnail_vertical_01: string | null;
|
|
135
|
+
thumbnail_vertical_02: string | null;
|
|
136
|
+
};
|
|
137
|
+
export type TMapCompanySelectedEventInsert = {
|
|
138
|
+
company_code: string;
|
|
139
|
+
event_id: string;
|
|
140
|
+
} & Partial<Omit<TMapCompanySelectedEvent, "company_code" | "event_id">>;
|
|
141
|
+
export type TMapCompanySelectedEventUpdate = {
|
|
142
|
+
company_code: string;
|
|
143
|
+
event_id: string;
|
|
144
|
+
} & Partial<Omit<TMapCompanySelectedEvent, "company_code" | "event_id">>;
|
|
@@ -74,6 +74,31 @@ export type TMapIdolGroupFolderUpdate = {
|
|
|
74
74
|
idol_group_code: string;
|
|
75
75
|
folder_id: string;
|
|
76
76
|
} & Partial<Omit<TMapIdolGroupFolder, "idol_group_code" | "folder_id">>;
|
|
77
|
+
export type TMapIdolGroupSelectedFolder = {
|
|
78
|
+
idol_group_code: string;
|
|
79
|
+
folder_id: string;
|
|
80
|
+
title: string | null;
|
|
81
|
+
profile: string | null;
|
|
82
|
+
description: string | null;
|
|
83
|
+
target_country_code: string | null;
|
|
84
|
+
target_city_code: string | null;
|
|
85
|
+
hero_image_01: string | null;
|
|
86
|
+
hero_image_02: string | null;
|
|
87
|
+
thumbnail_main_01: string | null;
|
|
88
|
+
thumbnail_main_02: string | null;
|
|
89
|
+
thumbnail_vertical_01: string | null;
|
|
90
|
+
thumbnail_vertical_02: string | null;
|
|
91
|
+
earliest_event: Date | null;
|
|
92
|
+
latest_event: Date | null;
|
|
93
|
+
};
|
|
94
|
+
export type TMapIdolGroupSelectedFolderInsert = {
|
|
95
|
+
idol_group_code: string;
|
|
96
|
+
folder_id: string;
|
|
97
|
+
} & Partial<Omit<TMapIdolGroupSelectedFolder, "idol_group_code" | "folder_id">>;
|
|
98
|
+
export type TMapIdolGroupSelectedFolderUpdate = {
|
|
99
|
+
idol_group_code: string;
|
|
100
|
+
folder_id: string;
|
|
101
|
+
} & Partial<Omit<TMapIdolGroupSelectedFolder, "idol_group_code" | "folder_id">>;
|
|
77
102
|
export type TMapIdolGroupEvent = {
|
|
78
103
|
idol_group_code: string;
|
|
79
104
|
event_id: string;
|
|
@@ -87,3 +112,33 @@ export type TMapIdolGroupEventUpdate = {
|
|
|
87
112
|
idol_group_code: string;
|
|
88
113
|
event_id: string;
|
|
89
114
|
} & Partial<Omit<TMapIdolGroupEvent, "idol_group_code" | "event_id">>;
|
|
115
|
+
export type TMapIdolGroupSelectedEvent = {
|
|
116
|
+
idol_group_code: string;
|
|
117
|
+
event_id: string;
|
|
118
|
+
folder_id: string | null;
|
|
119
|
+
date: Date | null;
|
|
120
|
+
time: Date | null;
|
|
121
|
+
tz: string | null;
|
|
122
|
+
utc_minutes: number | null;
|
|
123
|
+
duration_minutes: number | null;
|
|
124
|
+
is_repeat_annually: boolean;
|
|
125
|
+
title: string;
|
|
126
|
+
profile: string | null;
|
|
127
|
+
description: string | null;
|
|
128
|
+
target_country_code: string | null;
|
|
129
|
+
target_city_code: string | null;
|
|
130
|
+
hero_image_01: string | null;
|
|
131
|
+
hero_image_02: string | null;
|
|
132
|
+
thumbnail_main_01: string | null;
|
|
133
|
+
thumbnail_main_02: string | null;
|
|
134
|
+
thumbnail_vertical_01: string | null;
|
|
135
|
+
thumbnail_vertical_02: string | null;
|
|
136
|
+
};
|
|
137
|
+
export type TMapIdolGroupSelectedEventInsert = {
|
|
138
|
+
idol_group_code: string;
|
|
139
|
+
event_id: string;
|
|
140
|
+
} & Partial<Omit<TMapIdolGroupSelectedEvent, "idol_group_code" | "event_id">>;
|
|
141
|
+
export type TMapIdolGroupSelectedEventUpdate = {
|
|
142
|
+
idol_group_code: string;
|
|
143
|
+
event_id: string;
|
|
144
|
+
} & Partial<Omit<TMapIdolGroupSelectedEvent, "idol_group_code" | "event_id">>;
|
|
@@ -74,6 +74,31 @@ export type TMapPeopleFolderUpdate = {
|
|
|
74
74
|
person_code: string;
|
|
75
75
|
folder_id: string;
|
|
76
76
|
} & Partial<Omit<TMapPeopleFolder, "person_code" | "folder_id">>;
|
|
77
|
+
export type TMapPeopleSelectedFolder = {
|
|
78
|
+
person_code: string;
|
|
79
|
+
folder_id: string;
|
|
80
|
+
title: string | null;
|
|
81
|
+
profile: string | null;
|
|
82
|
+
description: string | null;
|
|
83
|
+
target_country_code: string | null;
|
|
84
|
+
target_city_code: string | null;
|
|
85
|
+
hero_image_01: string | null;
|
|
86
|
+
hero_image_02: string | null;
|
|
87
|
+
thumbnail_main_01: string | null;
|
|
88
|
+
thumbnail_main_02: string | null;
|
|
89
|
+
thumbnail_vertical_01: string | null;
|
|
90
|
+
thumbnail_vertical_02: string | null;
|
|
91
|
+
earliest_event: Date | null;
|
|
92
|
+
latest_event: Date | null;
|
|
93
|
+
};
|
|
94
|
+
export type TMapPeopleSelectedFolderInsert = {
|
|
95
|
+
person_code: string;
|
|
96
|
+
folder_id: string;
|
|
97
|
+
} & Partial<Omit<TMapPeopleSelectedFolder, "person_code" | "folder_id">>;
|
|
98
|
+
export type TMapPeopleSelectedFolderUpdate = {
|
|
99
|
+
person_code: string;
|
|
100
|
+
folder_id: string;
|
|
101
|
+
} & Partial<Omit<TMapPeopleSelectedFolder, "person_code" | "folder_id">>;
|
|
77
102
|
export type TMapPeopleEvent = {
|
|
78
103
|
person_code: string;
|
|
79
104
|
event_id: string;
|
|
@@ -87,3 +112,33 @@ export type TMapPeopleEventUpdate = {
|
|
|
87
112
|
person_code: string;
|
|
88
113
|
event_id: string;
|
|
89
114
|
} & Partial<Omit<TMapPeopleEvent, "person_code" | "event_id">>;
|
|
115
|
+
export type TMapPeopleSelectedEvent = {
|
|
116
|
+
person_code: string;
|
|
117
|
+
event_id: string;
|
|
118
|
+
folder_id: string | null;
|
|
119
|
+
date: Date | null;
|
|
120
|
+
time: Date | null;
|
|
121
|
+
tz: string | null;
|
|
122
|
+
utc_minutes: number | null;
|
|
123
|
+
duration_minutes: number | null;
|
|
124
|
+
is_repeat_annually: boolean;
|
|
125
|
+
title: string;
|
|
126
|
+
profile: string | null;
|
|
127
|
+
description: string | null;
|
|
128
|
+
target_country_code: string | null;
|
|
129
|
+
target_city_code: string | null;
|
|
130
|
+
hero_image_01: string | null;
|
|
131
|
+
hero_image_02: string | null;
|
|
132
|
+
thumbnail_main_01: string | null;
|
|
133
|
+
thumbnail_main_02: string | null;
|
|
134
|
+
thumbnail_vertical_01: string | null;
|
|
135
|
+
thumbnail_vertical_02: string | null;
|
|
136
|
+
};
|
|
137
|
+
export type TMapPeopleSelectedEventInsert = {
|
|
138
|
+
person_code: string;
|
|
139
|
+
event_id: string;
|
|
140
|
+
} & Partial<Omit<TMapPeopleSelectedEvent, "person_code" | "event_id">>;
|
|
141
|
+
export type TMapPeopleSelectedEventUpdate = {
|
|
142
|
+
person_code: string;
|
|
143
|
+
event_id: string;
|
|
144
|
+
} & Partial<Omit<TMapPeopleSelectedEvent, "person_code" | "event_id">>;
|
|
@@ -76,6 +76,31 @@ export type TMapProductFolderUpdate = {
|
|
|
76
76
|
product_code: string;
|
|
77
77
|
folder_id: string;
|
|
78
78
|
} & Partial<Omit<TMapProductFolder, "product_code" | "folder_id">>;
|
|
79
|
+
export type TMapProductSelectedFolder = {
|
|
80
|
+
product_code: string;
|
|
81
|
+
folder_id: string;
|
|
82
|
+
title: string | null;
|
|
83
|
+
profile: string | null;
|
|
84
|
+
description: string | null;
|
|
85
|
+
target_country_code: string | null;
|
|
86
|
+
target_city_code: string | null;
|
|
87
|
+
hero_image_01: string | null;
|
|
88
|
+
hero_image_02: string | null;
|
|
89
|
+
thumbnail_main_01: string | null;
|
|
90
|
+
thumbnail_main_02: string | null;
|
|
91
|
+
thumbnail_vertical_01: string | null;
|
|
92
|
+
thumbnail_vertical_02: string | null;
|
|
93
|
+
earliest_event: Date | null;
|
|
94
|
+
latest_event: Date | null;
|
|
95
|
+
};
|
|
96
|
+
export type TMapProductSelectedFolderInsert = {
|
|
97
|
+
product_code: string;
|
|
98
|
+
folder_id: string;
|
|
99
|
+
} & Partial<Omit<TMapProductSelectedFolder, "product_code" | "folder_id">>;
|
|
100
|
+
export type TMapProductSelectedFolderUpdate = {
|
|
101
|
+
product_code: string;
|
|
102
|
+
folder_id: string;
|
|
103
|
+
} & Partial<Omit<TMapProductSelectedFolder, "product_code" | "folder_id">>;
|
|
79
104
|
export type TMapProductEvent = {
|
|
80
105
|
product_code: string;
|
|
81
106
|
event_id: string;
|
|
@@ -89,3 +114,33 @@ export type TMapProductEventUpdate = {
|
|
|
89
114
|
product_code: string;
|
|
90
115
|
event_id: string;
|
|
91
116
|
} & Partial<Omit<TMapProductEvent, "product_code" | "event_id">>;
|
|
117
|
+
export type TMapProductSelectedEvent = {
|
|
118
|
+
product_code: string;
|
|
119
|
+
event_id: string;
|
|
120
|
+
folder_id: string | null;
|
|
121
|
+
date: Date | null;
|
|
122
|
+
time: Date | null;
|
|
123
|
+
tz: string | null;
|
|
124
|
+
utc_minutes: number | null;
|
|
125
|
+
duration_minutes: number | null;
|
|
126
|
+
is_repeat_annually: boolean;
|
|
127
|
+
title: string;
|
|
128
|
+
profile: string | null;
|
|
129
|
+
description: string | null;
|
|
130
|
+
target_country_code: string | null;
|
|
131
|
+
target_city_code: string | null;
|
|
132
|
+
hero_image_01: string | null;
|
|
133
|
+
hero_image_02: string | null;
|
|
134
|
+
thumbnail_main_01: string | null;
|
|
135
|
+
thumbnail_main_02: string | null;
|
|
136
|
+
thumbnail_vertical_01: string | null;
|
|
137
|
+
thumbnail_vertical_02: string | null;
|
|
138
|
+
};
|
|
139
|
+
export type TMapProductSelectedEventInsert = {
|
|
140
|
+
product_code: string;
|
|
141
|
+
event_id: string;
|
|
142
|
+
} & Partial<Omit<TMapProductSelectedEvent, "product_code" | "event_id">>;
|
|
143
|
+
export type TMapProductSelectedEventUpdate = {
|
|
144
|
+
product_code: string;
|
|
145
|
+
event_id: string;
|
|
146
|
+
} & Partial<Omit<TMapProductSelectedEvent, "product_code" | "event_id">>;
|
|
@@ -90,57 +90,85 @@ export type TSpecialTagMetadataI18nUpdate = {
|
|
|
90
90
|
special_tag_code: string;
|
|
91
91
|
lang_code: string;
|
|
92
92
|
} & Partial<Omit<TSpecialTagMetadataI18n, "special_tag_code" | "lang_code">>;
|
|
93
|
-
export type
|
|
93
|
+
export type TMapSpecialTagFolder = {
|
|
94
94
|
special_tag_code: string;
|
|
95
95
|
folder_id: string;
|
|
96
96
|
earliest_event: Date | null;
|
|
97
97
|
latest_event: Date | null;
|
|
98
98
|
};
|
|
99
|
-
export type
|
|
99
|
+
export type TMapSpecialTagFolderInsert = {
|
|
100
100
|
special_tag_code: string;
|
|
101
101
|
folder_id: string;
|
|
102
|
-
} & Partial<Omit<
|
|
103
|
-
export type
|
|
102
|
+
} & Partial<Omit<TMapSpecialTagFolder, "special_tag_code" | "folder_id">>;
|
|
103
|
+
export type TMapSpecialTagFolderUpdate = {
|
|
104
104
|
special_tag_code: string;
|
|
105
105
|
folder_id: string;
|
|
106
|
-
} & Partial<Omit<
|
|
107
|
-
export type
|
|
106
|
+
} & Partial<Omit<TMapSpecialTagFolder, "special_tag_code" | "folder_id">>;
|
|
107
|
+
export type TMapSpecialTagSelectedFolder = {
|
|
108
108
|
special_tag_code: string;
|
|
109
109
|
folder_id: string;
|
|
110
|
+
title: string | null;
|
|
111
|
+
profile: string | null;
|
|
112
|
+
description: string | null;
|
|
113
|
+
target_country_code: string | null;
|
|
114
|
+
target_city_code: string | null;
|
|
115
|
+
hero_image_01: string | null;
|
|
116
|
+
hero_image_02: string | null;
|
|
117
|
+
thumbnail_main_01: string | null;
|
|
118
|
+
thumbnail_main_02: string | null;
|
|
119
|
+
thumbnail_vertical_01: string | null;
|
|
120
|
+
thumbnail_vertical_02: string | null;
|
|
110
121
|
earliest_event: Date | null;
|
|
111
122
|
latest_event: Date | null;
|
|
112
123
|
};
|
|
113
|
-
export type
|
|
124
|
+
export type TMapSpecialTagSelectedFolderInsert = {
|
|
114
125
|
special_tag_code: string;
|
|
115
126
|
folder_id: string;
|
|
116
|
-
} & Partial<Omit<
|
|
117
|
-
export type
|
|
127
|
+
} & Partial<Omit<TMapSpecialTagSelectedFolder, "special_tag_code" | "folder_id">>;
|
|
128
|
+
export type TMapSpecialTagSelectedFolderUpdate = {
|
|
118
129
|
special_tag_code: string;
|
|
119
130
|
folder_id: string;
|
|
120
|
-
} & Partial<Omit<
|
|
121
|
-
export type
|
|
131
|
+
} & Partial<Omit<TMapSpecialTagSelectedFolder, "special_tag_code" | "folder_id">>;
|
|
132
|
+
export type TMapSpecialTagEvent = {
|
|
122
133
|
special_tag_code: string;
|
|
123
134
|
event_id: string;
|
|
124
135
|
date: Date | null;
|
|
125
136
|
};
|
|
126
|
-
export type
|
|
137
|
+
export type TMapSpecialTagEventInsert = {
|
|
127
138
|
special_tag_code: string;
|
|
128
139
|
event_id: string;
|
|
129
|
-
} & Partial<Omit<
|
|
130
|
-
export type
|
|
140
|
+
} & Partial<Omit<TMapSpecialTagEvent, "special_tag_code" | "event_id">>;
|
|
141
|
+
export type TMapSpecialTagEventUpdate = {
|
|
131
142
|
special_tag_code: string;
|
|
132
143
|
event_id: string;
|
|
133
|
-
} & Partial<Omit<
|
|
134
|
-
export type
|
|
144
|
+
} & Partial<Omit<TMapSpecialTagEvent, "special_tag_code" | "event_id">>;
|
|
145
|
+
export type TMapSpecialTagSelectedEvent = {
|
|
135
146
|
special_tag_code: string;
|
|
136
147
|
event_id: string;
|
|
148
|
+
folder_id: string | null;
|
|
137
149
|
date: Date | null;
|
|
150
|
+
time: Date | null;
|
|
151
|
+
tz: string | null;
|
|
152
|
+
utc_minutes: number | null;
|
|
153
|
+
duration_minutes: number | null;
|
|
154
|
+
is_repeat_annually: boolean;
|
|
155
|
+
title: string;
|
|
156
|
+
profile: string | null;
|
|
157
|
+
description: string | null;
|
|
158
|
+
target_country_code: string | null;
|
|
159
|
+
target_city_code: string | null;
|
|
160
|
+
hero_image_01: string | null;
|
|
161
|
+
hero_image_02: string | null;
|
|
162
|
+
thumbnail_main_01: string | null;
|
|
163
|
+
thumbnail_main_02: string | null;
|
|
164
|
+
thumbnail_vertical_01: string | null;
|
|
165
|
+
thumbnail_vertical_02: string | null;
|
|
138
166
|
};
|
|
139
|
-
export type
|
|
167
|
+
export type TMapSpecialTagSelectedEventInsert = {
|
|
140
168
|
special_tag_code: string;
|
|
141
169
|
event_id: string;
|
|
142
|
-
} & Partial<Omit<
|
|
143
|
-
export type
|
|
170
|
+
} & Partial<Omit<TMapSpecialTagSelectedEvent, "special_tag_code" | "event_id">>;
|
|
171
|
+
export type TMapSpecialTagSelectedEventUpdate = {
|
|
144
172
|
special_tag_code: string;
|
|
145
173
|
event_id: string;
|
|
146
|
-
} & Partial<Omit<
|
|
174
|
+
} & Partial<Omit<TMapSpecialTagSelectedEvent, "special_tag_code" | "event_id">>;
|
|
@@ -74,6 +74,31 @@ export type TMapTeamFolderUpdate = {
|
|
|
74
74
|
team_code: string;
|
|
75
75
|
folder_id: string;
|
|
76
76
|
} & Partial<Omit<TMapTeamFolder, "team_code" | "folder_id">>;
|
|
77
|
+
export type TMapTeamSelectedFolder = {
|
|
78
|
+
team_code: string;
|
|
79
|
+
folder_id: string;
|
|
80
|
+
title: string | null;
|
|
81
|
+
profile: string | null;
|
|
82
|
+
description: string | null;
|
|
83
|
+
target_country_code: string | null;
|
|
84
|
+
target_city_code: string | null;
|
|
85
|
+
hero_image_01: string | null;
|
|
86
|
+
hero_image_02: string | null;
|
|
87
|
+
thumbnail_main_01: string | null;
|
|
88
|
+
thumbnail_main_02: string | null;
|
|
89
|
+
thumbnail_vertical_01: string | null;
|
|
90
|
+
thumbnail_vertical_02: string | null;
|
|
91
|
+
earliest_event: Date | null;
|
|
92
|
+
latest_event: Date | null;
|
|
93
|
+
};
|
|
94
|
+
export type TMapTeamSelectedFolderInsert = {
|
|
95
|
+
team_code: string;
|
|
96
|
+
folder_id: string;
|
|
97
|
+
} & Partial<Omit<TMapTeamSelectedFolder, "team_code" | "folder_id">>;
|
|
98
|
+
export type TMapTeamSelectedFolderUpdate = {
|
|
99
|
+
team_code: string;
|
|
100
|
+
folder_id: string;
|
|
101
|
+
} & Partial<Omit<TMapTeamSelectedFolder, "team_code" | "folder_id">>;
|
|
77
102
|
export type TMapTeamEvent = {
|
|
78
103
|
team_code: string;
|
|
79
104
|
event_id: string;
|
|
@@ -87,3 +112,33 @@ export type TMapTeamEventUpdate = {
|
|
|
87
112
|
team_code: string;
|
|
88
113
|
event_id: string;
|
|
89
114
|
} & Partial<Omit<TMapTeamEvent, "team_code" | "event_id">>;
|
|
115
|
+
export type TMapTeamSelectedEvent = {
|
|
116
|
+
team_code: string;
|
|
117
|
+
event_id: string;
|
|
118
|
+
folder_id: string | null;
|
|
119
|
+
date: Date | null;
|
|
120
|
+
time: Date | null;
|
|
121
|
+
tz: string | null;
|
|
122
|
+
utc_minutes: number | null;
|
|
123
|
+
duration_minutes: number | null;
|
|
124
|
+
is_repeat_annually: boolean;
|
|
125
|
+
title: string;
|
|
126
|
+
profile: string | null;
|
|
127
|
+
description: string | null;
|
|
128
|
+
target_country_code: string | null;
|
|
129
|
+
target_city_code: string | null;
|
|
130
|
+
hero_image_01: string | null;
|
|
131
|
+
hero_image_02: string | null;
|
|
132
|
+
thumbnail_main_01: string | null;
|
|
133
|
+
thumbnail_main_02: string | null;
|
|
134
|
+
thumbnail_vertical_01: string | null;
|
|
135
|
+
thumbnail_vertical_02: string | null;
|
|
136
|
+
};
|
|
137
|
+
export type TMapTeamSelectedEventInsert = {
|
|
138
|
+
team_code: string;
|
|
139
|
+
event_id: string;
|
|
140
|
+
} & Partial<Omit<TMapTeamSelectedEvent, "team_code" | "event_id">>;
|
|
141
|
+
export type TMapTeamSelectedEventUpdate = {
|
|
142
|
+
team_code: string;
|
|
143
|
+
event_id: string;
|
|
144
|
+
} & Partial<Omit<TMapTeamSelectedEvent, "team_code" | "event_id">>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dplus-response-types.js","sourceRoot":"","sources":["../../src/dplus-types/dplus-response-types.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"dplus-response-types.js","sourceRoot":"","sources":["../../src/dplus-types/dplus-response-types.ts"],"names":[],"mappings":";AAMA,uCAAuC;AACvC,mBAAmB;AACnB,0BAA0B;AAC1B,uBAAuB;AACvB,uCAAuC;AACvC,KAAK;AAEL,yCAAyC;AACzC,qBAAqB;AACrB,4BAA4B;AAC5B,yBAAyB;AACzB,yCAAyC;AACzC,KAAK;AAEL,2CAA2C;AAC3C,uBAAuB;AACvB,gCAAgC;AAChC,2BAA2B;AAC3B,2CAA2C;AAC3C,KAAK;AAEL,6CAA6C;AAC7C,yBAAyB;AACzB,gCAAgC;AAChC,6BAA6B;AAC7B,6CAA6C;AAC7C,KAAK;AAEL,wDAAwD;AACxD,oCAAoC;AACpC,mEAAmE;AACnE,uEAAuE;AACvE,yEAAyE;AACzE,2EAA2E;AAC3E,yEAAyE;AACzE,KAAK;AAEL,mDAAmD;AACnD,+BAA+B;AAC/B,qDAAqD;AACrD,qCAAqC;AACrC,qCAAqC;AACrC,mCAAmC;AACnC,yCAAyC;AACzC,yCAAyC;AACzC,mDAAmD;AACnD,wDAAwD;AACxD,4DAA4D;AAC5D,yEAAyE;AACzE,8CAA8C;AAC9C,KAAK;AAEL,sCAAsC;AACtC,sBAAsB;AACtB,2BAA2B;AAC3B,4BAA4B;AAC5B,yBAAyB;AACzB,uCAAuC;AACvC,2BAA2B;AAC3B,8CAA8C;AAC9C,KAAK"}
|
|
@@ -328,6 +328,111 @@ export declare const F_MAP_BRAND_FOLDER: {
|
|
|
328
328
|
placeholder: string;
|
|
329
329
|
};
|
|
330
330
|
};
|
|
331
|
+
export declare const F_MAP_BRAND_SELECTED_FOLDER: {
|
|
332
|
+
brand_code: {
|
|
333
|
+
id: string;
|
|
334
|
+
label: string;
|
|
335
|
+
is_required: boolean;
|
|
336
|
+
max_length: number;
|
|
337
|
+
placeholder: string;
|
|
338
|
+
};
|
|
339
|
+
folder_id: {
|
|
340
|
+
id: string;
|
|
341
|
+
label: string;
|
|
342
|
+
is_required: boolean;
|
|
343
|
+
max_length: number;
|
|
344
|
+
placeholder: string;
|
|
345
|
+
};
|
|
346
|
+
title: {
|
|
347
|
+
id: string;
|
|
348
|
+
label: string;
|
|
349
|
+
is_required: boolean;
|
|
350
|
+
max_length: number;
|
|
351
|
+
placeholder: string;
|
|
352
|
+
};
|
|
353
|
+
profile: {
|
|
354
|
+
id: string;
|
|
355
|
+
label: string;
|
|
356
|
+
is_required: boolean;
|
|
357
|
+
max_length: number;
|
|
358
|
+
placeholder: string;
|
|
359
|
+
};
|
|
360
|
+
description: {
|
|
361
|
+
id: string;
|
|
362
|
+
label: string;
|
|
363
|
+
is_required: boolean;
|
|
364
|
+
max_length: number;
|
|
365
|
+
placeholder: string;
|
|
366
|
+
};
|
|
367
|
+
target_country_code: {
|
|
368
|
+
id: string;
|
|
369
|
+
label: string;
|
|
370
|
+
is_required: boolean;
|
|
371
|
+
max_length: number;
|
|
372
|
+
placeholder: string;
|
|
373
|
+
};
|
|
374
|
+
target_city_code: {
|
|
375
|
+
id: string;
|
|
376
|
+
label: string;
|
|
377
|
+
is_required: boolean;
|
|
378
|
+
max_length: number;
|
|
379
|
+
placeholder: string;
|
|
380
|
+
};
|
|
381
|
+
hero_image_01: {
|
|
382
|
+
id: string;
|
|
383
|
+
label: string;
|
|
384
|
+
is_required: boolean;
|
|
385
|
+
max_length: number;
|
|
386
|
+
placeholder: string;
|
|
387
|
+
};
|
|
388
|
+
hero_image_02: {
|
|
389
|
+
id: string;
|
|
390
|
+
label: string;
|
|
391
|
+
is_required: boolean;
|
|
392
|
+
max_length: number;
|
|
393
|
+
placeholder: string;
|
|
394
|
+
};
|
|
395
|
+
thumbnail_main_01: {
|
|
396
|
+
id: string;
|
|
397
|
+
label: string;
|
|
398
|
+
is_required: boolean;
|
|
399
|
+
max_length: number;
|
|
400
|
+
placeholder: string;
|
|
401
|
+
};
|
|
402
|
+
thumbnail_main_02: {
|
|
403
|
+
id: string;
|
|
404
|
+
label: string;
|
|
405
|
+
is_required: boolean;
|
|
406
|
+
max_length: number;
|
|
407
|
+
placeholder: string;
|
|
408
|
+
};
|
|
409
|
+
thumbnail_vertical_01: {
|
|
410
|
+
id: string;
|
|
411
|
+
label: string;
|
|
412
|
+
is_required: boolean;
|
|
413
|
+
max_length: number;
|
|
414
|
+
placeholder: string;
|
|
415
|
+
};
|
|
416
|
+
thumbnail_vertical_02: {
|
|
417
|
+
id: string;
|
|
418
|
+
label: string;
|
|
419
|
+
is_required: boolean;
|
|
420
|
+
max_length: number;
|
|
421
|
+
placeholder: string;
|
|
422
|
+
};
|
|
423
|
+
earliest_event: {
|
|
424
|
+
id: string;
|
|
425
|
+
label: string;
|
|
426
|
+
is_required: boolean;
|
|
427
|
+
placeholder: string;
|
|
428
|
+
};
|
|
429
|
+
latest_event: {
|
|
430
|
+
id: string;
|
|
431
|
+
label: string;
|
|
432
|
+
is_required: boolean;
|
|
433
|
+
placeholder: string;
|
|
434
|
+
};
|
|
435
|
+
};
|
|
331
436
|
export declare const F_MAP_BRAND_EVENT: {
|
|
332
437
|
brand_code: {
|
|
333
438
|
id: string;
|
|
@@ -350,3 +455,135 @@ export declare const F_MAP_BRAND_EVENT: {
|
|
|
350
455
|
placeholder: string;
|
|
351
456
|
};
|
|
352
457
|
};
|
|
458
|
+
export declare const F_MAP_BRAND_SELECTED_EVENT: {
|
|
459
|
+
brand_code: {
|
|
460
|
+
id: string;
|
|
461
|
+
label: string;
|
|
462
|
+
is_required: boolean;
|
|
463
|
+
max_length: number;
|
|
464
|
+
placeholder: string;
|
|
465
|
+
};
|
|
466
|
+
event_id: {
|
|
467
|
+
id: string;
|
|
468
|
+
label: string;
|
|
469
|
+
is_required: boolean;
|
|
470
|
+
max_length: number;
|
|
471
|
+
placeholder: string;
|
|
472
|
+
};
|
|
473
|
+
folder_id: {
|
|
474
|
+
id: string;
|
|
475
|
+
label: string;
|
|
476
|
+
is_required: boolean;
|
|
477
|
+
max_length: number;
|
|
478
|
+
placeholder: string;
|
|
479
|
+
};
|
|
480
|
+
date: {
|
|
481
|
+
id: string;
|
|
482
|
+
label: string;
|
|
483
|
+
is_required: boolean;
|
|
484
|
+
placeholder: string;
|
|
485
|
+
};
|
|
486
|
+
time: {
|
|
487
|
+
id: string;
|
|
488
|
+
label: string;
|
|
489
|
+
is_required: boolean;
|
|
490
|
+
placeholder: string;
|
|
491
|
+
};
|
|
492
|
+
tz: {
|
|
493
|
+
id: string;
|
|
494
|
+
label: string;
|
|
495
|
+
is_required: boolean;
|
|
496
|
+
max_length: number;
|
|
497
|
+
placeholder: string;
|
|
498
|
+
};
|
|
499
|
+
utc_minutes: {
|
|
500
|
+
id: string;
|
|
501
|
+
label: string;
|
|
502
|
+
is_required: boolean;
|
|
503
|
+
max_length: number;
|
|
504
|
+
placeholder: string;
|
|
505
|
+
};
|
|
506
|
+
is_repeat_annually: {
|
|
507
|
+
id: string;
|
|
508
|
+
label: string;
|
|
509
|
+
is_required: boolean;
|
|
510
|
+
default_value: boolean;
|
|
511
|
+
};
|
|
512
|
+
title: {
|
|
513
|
+
id: string;
|
|
514
|
+
label: string;
|
|
515
|
+
is_required: boolean;
|
|
516
|
+
max_length: number;
|
|
517
|
+
placeholder: string;
|
|
518
|
+
};
|
|
519
|
+
profile: {
|
|
520
|
+
id: string;
|
|
521
|
+
label: string;
|
|
522
|
+
is_required: boolean;
|
|
523
|
+
max_length: number;
|
|
524
|
+
placeholder: string;
|
|
525
|
+
};
|
|
526
|
+
description: {
|
|
527
|
+
id: string;
|
|
528
|
+
label: string;
|
|
529
|
+
is_required: boolean;
|
|
530
|
+
max_length: number;
|
|
531
|
+
placeholder: string;
|
|
532
|
+
};
|
|
533
|
+
target_country_code: {
|
|
534
|
+
id: string;
|
|
535
|
+
label: string;
|
|
536
|
+
is_required: boolean;
|
|
537
|
+
max_length: number;
|
|
538
|
+
placeholder: string;
|
|
539
|
+
};
|
|
540
|
+
target_city_code: {
|
|
541
|
+
id: string;
|
|
542
|
+
label: string;
|
|
543
|
+
is_required: boolean;
|
|
544
|
+
max_length: number;
|
|
545
|
+
placeholder: string;
|
|
546
|
+
};
|
|
547
|
+
hero_image_01: {
|
|
548
|
+
id: string;
|
|
549
|
+
label: string;
|
|
550
|
+
is_required: boolean;
|
|
551
|
+
max_length: number;
|
|
552
|
+
placeholder: string;
|
|
553
|
+
};
|
|
554
|
+
hero_image_02: {
|
|
555
|
+
id: string;
|
|
556
|
+
label: string;
|
|
557
|
+
is_required: boolean;
|
|
558
|
+
max_length: number;
|
|
559
|
+
placeholder: string;
|
|
560
|
+
};
|
|
561
|
+
thumbnail_main_01: {
|
|
562
|
+
id: string;
|
|
563
|
+
label: string;
|
|
564
|
+
is_required: boolean;
|
|
565
|
+
max_length: number;
|
|
566
|
+
placeholder: string;
|
|
567
|
+
};
|
|
568
|
+
thumbnail_main_02: {
|
|
569
|
+
id: string;
|
|
570
|
+
label: string;
|
|
571
|
+
is_required: boolean;
|
|
572
|
+
max_length: number;
|
|
573
|
+
placeholder: string;
|
|
574
|
+
};
|
|
575
|
+
thumbnail_vertical_01: {
|
|
576
|
+
id: string;
|
|
577
|
+
label: string;
|
|
578
|
+
is_required: boolean;
|
|
579
|
+
max_length: number;
|
|
580
|
+
placeholder: string;
|
|
581
|
+
};
|
|
582
|
+
thumbnail_vertical_02: {
|
|
583
|
+
id: string;
|
|
584
|
+
label: string;
|
|
585
|
+
is_required: boolean;
|
|
586
|
+
max_length: number;
|
|
587
|
+
placeholder: string;
|
|
588
|
+
};
|
|
589
|
+
};
|