dplus_common_v1 0.1.105 → 0.1.106
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-map/t-map-category-event.d.ts +1 -0
- package/dist/types/types-map/t-map-city-event.d.ts +2 -1
- package/dist/types/types-map/t-map-country-event.d.ts +1 -1
- 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-stag-event.d.ts +1 -1
- package/dist/types/types-map/t-map-tag-event.d.ts +1 -1
- package/dist/types/types-map/t-map-user-event.d.ts +1 -1
- package/package.json +1 -1
|
@@ -20,5 +20,6 @@ export type TMapCategoryEventWithCategoryInfo = TMapCategoryEvent & {
|
|
|
20
20
|
export type TMapCategoryEventWithEventInfo = TMapCategoryEvent & {
|
|
21
21
|
event_info: (TEventCard & {
|
|
22
22
|
city: TCityLabelInfo | null;
|
|
23
|
+
categories: TCategoryLabelInfo[] | null;
|
|
23
24
|
}) | null;
|
|
24
25
|
};
|
|
@@ -19,6 +19,7 @@ export type TMapCityEventWithCityInfo = TMapCityEvent & {
|
|
|
19
19
|
};
|
|
20
20
|
export type TMapCityEventWithEventInfo = TMapCityEvent & {
|
|
21
21
|
event_info: (TEventCard & {
|
|
22
|
-
|
|
22
|
+
city: TCityLabelInfo | null;
|
|
23
|
+
categories: TCategoryLabelInfo[] | null;
|
|
23
24
|
}) | null;
|
|
24
25
|
};
|
|
@@ -21,6 +21,6 @@ export type TMapCountryEventWithCountryInfo = TMapCountryEvent & {
|
|
|
21
21
|
export type TMapCountryEventWithEventInfo = TMapCountryEvent & {
|
|
22
22
|
event_info: (TEventCard & {
|
|
23
23
|
city: TCityLabelInfo | null;
|
|
24
|
-
categories: TCategoryLabelInfo[];
|
|
24
|
+
categories: TCategoryLabelInfo[] | null;
|
|
25
25
|
}) | null;
|
|
26
26
|
};
|
|
@@ -20,6 +20,6 @@ export type TMapFolderEventWithFolderInfo = TMapFolderEvent & {
|
|
|
20
20
|
export type TMapFolderEventWithEventInfo = TMapFolderEvent & {
|
|
21
21
|
event_info: (TEventCard & {
|
|
22
22
|
city: TCityLabelInfo | null;
|
|
23
|
-
categories: TCategoryLabelInfo[];
|
|
23
|
+
categories: TCategoryLabelInfo[] | null;
|
|
24
24
|
}) | null;
|
|
25
25
|
};
|
|
@@ -21,6 +21,6 @@ export type TMapGroupEventWithGroupInfo = TMapGroupEvent & {
|
|
|
21
21
|
export type TMapGroupEventWithEventInfo = TMapGroupEvent & {
|
|
22
22
|
event_info: (TEventCard & {
|
|
23
23
|
city: TCityLabelInfo | null;
|
|
24
|
-
categories: TCategoryLabelInfo[];
|
|
24
|
+
categories: TCategoryLabelInfo[] | null;
|
|
25
25
|
}) | null;
|
|
26
26
|
};
|
|
@@ -21,6 +21,6 @@ export type TMapStagEventWithStagInfo = TMapStagEvent & {
|
|
|
21
21
|
export type TMapStagEventWithEventInfo = TMapStagEvent & {
|
|
22
22
|
event_info: (TEventCard & {
|
|
23
23
|
city: TCityLabelInfo | null;
|
|
24
|
-
categories: TCategoryLabelInfo[];
|
|
24
|
+
categories: TCategoryLabelInfo[] | null;
|
|
25
25
|
}) | null;
|
|
26
26
|
};
|
|
@@ -21,6 +21,6 @@ export type TMapTagEventWithTagInfo = TMapTagEvent & {
|
|
|
21
21
|
export type TMapTagEventWithEventInfo = TMapTagEvent & {
|
|
22
22
|
event_info: (TEventCard & {
|
|
23
23
|
city: TCityLabelInfo | null;
|
|
24
|
-
categories: TCategoryLabelInfo[];
|
|
24
|
+
categories: TCategoryLabelInfo[] | null;
|
|
25
25
|
}) | null;
|
|
26
26
|
};
|
|
@@ -21,6 +21,6 @@ export type TMapUserEventWithUserInfo = TMapUserEvent & {
|
|
|
21
21
|
export type TMapUserEventWithEventInfo = TMapUserEvent & {
|
|
22
22
|
event_info: (TEventCard & {
|
|
23
23
|
city: TCityLabelInfo | null;
|
|
24
|
-
categories: TCategoryLabelInfo[];
|
|
24
|
+
categories: TCategoryLabelInfo[] | null;
|
|
25
25
|
}) | null;
|
|
26
26
|
};
|