dplus_common_v1 0.1.88 → 0.1.90
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/types-i18n/t-country.d.ts +2 -2
- package/dist/types/types-map/t-map-category-folder.d.ts +2 -2
- package/dist/types/types-map/t-map-city-event.d.ts +1 -1
- package/dist/types/types-map/t-map-city-folder.d.ts +2 -2
- package/dist/types/types-map/t-map-country-event.d.ts +1 -1
- package/dist/types/types-map/t-map-country-folder.d.ts +2 -2
- package/dist/types/types-map/t-map-folder-event.d.ts +1 -1
- package/dist/types/types-map/t-map-group-event.d.ts +1 -1
- package/dist/types/types-map/t-map-group-folder.d.ts +2 -2
- package/dist/types/types-map/t-map-stag-event.d.ts +1 -1
- package/dist/types/types-map/t-map-stag-folder.d.ts +2 -2
- package/dist/types/types-map/t-map-tag-event.d.ts +1 -1
- package/dist/types/types-map/t-map-tag-folder.d.ts +2 -2
- package/dist/types/types-map/t-map-user-event.d.ts +1 -1
- package/dist/types/types-map/t-map-user-folder.d.ts +2 -2
- package/package.json +1 -1
|
@@ -41,8 +41,8 @@ export type TCountryDetail = TCountryList & {
|
|
|
41
41
|
thumbnail_vertical_03: string;
|
|
42
42
|
thumbnail_vertical_04: string;
|
|
43
43
|
thumbnail_vertical_05: string;
|
|
44
|
-
deactivated_at: Date;
|
|
45
|
-
deactivated_by: string;
|
|
44
|
+
deactivated_at: Date | null;
|
|
45
|
+
deactivated_by: string | null;
|
|
46
46
|
metadata_title: string;
|
|
47
47
|
metadata_description: string;
|
|
48
48
|
metadata_keywords: string;
|
|
@@ -2,8 +2,8 @@ import { TCategoryLabelInfo, TFolderSummaryInfo } from "../..";
|
|
|
2
2
|
export type TMapCategoryFolder = {
|
|
3
3
|
category_code: string;
|
|
4
4
|
folder_code: string;
|
|
5
|
-
earliest_event?:
|
|
6
|
-
latest_event?:
|
|
5
|
+
earliest_event?: string | null;
|
|
6
|
+
latest_event?: string | null;
|
|
7
7
|
is_selected?: boolean;
|
|
8
8
|
order_num?: number;
|
|
9
9
|
added_at?: Date;
|
|
@@ -3,8 +3,8 @@ import { TFolderSummaryInfo } from "../types-folder/t-folder";
|
|
|
3
3
|
export type TMapCityFolder = {
|
|
4
4
|
city_code: string;
|
|
5
5
|
folder_code: string;
|
|
6
|
-
earliest_event?:
|
|
7
|
-
latest_event?:
|
|
6
|
+
earliest_event?: string | null;
|
|
7
|
+
latest_event?: string | null;
|
|
8
8
|
is_selected?: boolean;
|
|
9
9
|
order_num?: number;
|
|
10
10
|
added_at?: Date;
|
|
@@ -3,8 +3,8 @@ import { TFolderSummaryInfo } from "../types-folder/t-folder";
|
|
|
3
3
|
export type TMapCountryFolder = {
|
|
4
4
|
country_code: string;
|
|
5
5
|
folder_code: string;
|
|
6
|
-
earliest_event?:
|
|
7
|
-
latest_event?:
|
|
6
|
+
earliest_event?: string | null;
|
|
7
|
+
latest_event?: string | null;
|
|
8
8
|
is_selected?: boolean;
|
|
9
9
|
order_num?: number;
|
|
10
10
|
added_at?: Date;
|
|
@@ -3,8 +3,8 @@ import { TGroupLabelInfo } from "../types-group/t-group";
|
|
|
3
3
|
export type TMapGroupFolder = {
|
|
4
4
|
group_code: string;
|
|
5
5
|
folder_code: string;
|
|
6
|
-
earliest_event?:
|
|
7
|
-
latest_event?:
|
|
6
|
+
earliest_event?: string | null;
|
|
7
|
+
latest_event?: string | null;
|
|
8
8
|
is_selected?: boolean;
|
|
9
9
|
order_num?: number;
|
|
10
10
|
added_at?: Date;
|
|
@@ -3,8 +3,8 @@ import { TStagLabelInfo } from "../types-stag/t-stag";
|
|
|
3
3
|
export type TMapStagFolder = {
|
|
4
4
|
stag_code: string;
|
|
5
5
|
folder_code: string;
|
|
6
|
-
earliest_event?:
|
|
7
|
-
latest_event?:
|
|
6
|
+
earliest_event?: string | null;
|
|
7
|
+
latest_event?: string | null;
|
|
8
8
|
is_selected?: boolean;
|
|
9
9
|
order_num?: number;
|
|
10
10
|
added_at?: Date;
|
|
@@ -3,8 +3,8 @@ import { TTagLabelInfo } from "../types-tag/t-tag";
|
|
|
3
3
|
export type TMapTagFolder = {
|
|
4
4
|
tag_id: number;
|
|
5
5
|
folder_code: string;
|
|
6
|
-
earliest_event?:
|
|
7
|
-
latest_event?:
|
|
6
|
+
earliest_event?: string | null;
|
|
7
|
+
latest_event?: string | null;
|
|
8
8
|
is_selected?: boolean;
|
|
9
9
|
order_num?: number;
|
|
10
10
|
added_at?: Date;
|
|
@@ -3,8 +3,8 @@ import { TUserSummaryInfo } from "../types-user/t-user";
|
|
|
3
3
|
export type TMapUserFolder = {
|
|
4
4
|
user_id: string;
|
|
5
5
|
folder_code: string;
|
|
6
|
-
earliest_event?:
|
|
7
|
-
latest_event?:
|
|
6
|
+
earliest_event?: string | null;
|
|
7
|
+
latest_event?: string | null;
|
|
8
8
|
is_selected?: boolean;
|
|
9
9
|
order_num?: number;
|
|
10
10
|
added_at?: Date;
|