dplus_common_v1 0.1.84 → 0.1.85
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.
|
@@ -112,9 +112,9 @@ export type ResponseEventDetailForUserFront = BaseResponseDetail<TEventImage, TE
|
|
|
112
112
|
export type ResponseCountryDetailForAdmin = {
|
|
113
113
|
country: TCountryDetail;
|
|
114
114
|
metadataI18n: DplusGetListDataResponse<TCountryMetadataI18nDetail>;
|
|
115
|
-
cities: TCityInfoForCountryDetail
|
|
116
|
-
categories: TCategoryInfoForCountryDetail
|
|
117
|
-
stags?: TStagInfoForCountryDetail
|
|
115
|
+
cities: DplusGetListDataResponse<TCityInfoForCountryDetail>;
|
|
116
|
+
categories: DplusGetListDataResponse<TCategoryInfoForCountryDetail>;
|
|
117
|
+
stags?: DplusGetListDataResponse<TStagInfoForCountryDetail>;
|
|
118
118
|
mapCountryFolder?: DplusGetListDataResponse<TMapCountryFolderWithCountryInfo>;
|
|
119
119
|
mapCountryEvent?: DplusGetListDataResponse<TMapCountryEventWithCountryInfo>;
|
|
120
120
|
};
|
|
@@ -124,9 +124,9 @@ export type ResponseCountryDetailForAdmin = {
|
|
|
124
124
|
export type ResponseCountryDetailForUserFront = {
|
|
125
125
|
country: TCountryDetail;
|
|
126
126
|
metadataI18n: TCountryMetadataI18nDetail[];
|
|
127
|
-
cities: TCityInfoForCountryDetail
|
|
128
|
-
categories: TCategoryInfoForCountryDetail
|
|
129
|
-
stags?: TStagInfoForCountryDetail
|
|
127
|
+
cities: DplusGetListDataResponse<TCityInfoForCountryDetail>;
|
|
128
|
+
categories: DplusGetListDataResponse<TCategoryInfoForCountryDetail>;
|
|
129
|
+
stags?: DplusGetListDataResponse<TStagInfoForCountryDetail>;
|
|
130
130
|
mapCountryFolder?: DplusGetListDataResponse<TMapCountryFolderWithFolderInfo>;
|
|
131
131
|
mapCountryEvent?: DplusGetListDataResponse<TMapCountryEventWithEventInfo>;
|
|
132
132
|
};
|