@ayasofyazilim/saas 0.0.55 → 0.0.57
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/CRMService/CRMServiceClient.ts +65 -71
- package/CRMService/schemas.gen.ts +9507 -8638
- package/CRMService/services.gen.ts +367 -274
- package/CRMService/types.gen.ts +707 -512
- package/LocationService/schemas.gen.ts +1960 -1964
- package/LocationService/services.gen.ts +83 -12
- package/LocationService/types.gen.ts +204 -81
- package/README.md +14 -0
- package/package.json +1 -1
|
@@ -1,5 +1,60 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
2
|
|
|
3
|
+
export type PagedResultDto_AddressCommonDataDto = {
|
|
4
|
+
items?: Array<UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto> | null;
|
|
5
|
+
totalCount?: number;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
export type PagedResultDto_CityDto = {
|
|
9
|
+
items?: Array<UniRefund_LocationService_Cities_CityDto> | null;
|
|
10
|
+
totalCount?: number;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export type PagedResultDto_CountryCurrencyDto = {
|
|
14
|
+
items?: Array<UniRefund_LocationService_CountryCurrencies_CountryCurrencyDto> | null;
|
|
15
|
+
totalCount?: number;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export type PagedResultDto_CountryDateDto = {
|
|
19
|
+
items?: Array<UniRefund_LocationService_CountryDates_CountryDateDto> | null;
|
|
20
|
+
totalCount?: number;
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export type PagedResultDto_CountryDto = {
|
|
24
|
+
items?: Array<UniRefund_LocationService_Countries_CountryDto> | null;
|
|
25
|
+
totalCount?: number;
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export type PagedResultDto_CountryNumberDto = {
|
|
29
|
+
items?: Array<UniRefund_LocationService_CountryNumbers_CountryNumberDto> | null;
|
|
30
|
+
totalCount?: number;
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export type PagedResultDto_CountryTimeDto = {
|
|
34
|
+
items?: Array<UniRefund_LocationService_CountryTimes_CountryTimeDto> | null;
|
|
35
|
+
totalCount?: number;
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export type PagedResultDto_DistrictDto = {
|
|
39
|
+
items?: Array<UniRefund_LocationService_Districts_DistrictDto> | null;
|
|
40
|
+
totalCount?: number;
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
export type PagedResultDto_NeighborhoodDto = {
|
|
44
|
+
items?: Array<UniRefund_LocationService_Neighborhoods_NeighborhoodDto> | null;
|
|
45
|
+
totalCount?: number;
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
export type PagedResultDto_RegionDto = {
|
|
49
|
+
items?: Array<UniRefund_LocationService_Regions_RegionDto> | null;
|
|
50
|
+
totalCount?: number;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
export type PagedResultDto_RegionalSettingDto = {
|
|
54
|
+
items?: Array<UniRefund_LocationService_RegionalSettings_RegionalSettingDto> | null;
|
|
55
|
+
totalCount?: number;
|
|
56
|
+
};
|
|
57
|
+
|
|
3
58
|
export type UniRefund_LocationService_AddressCommonDatas_AddressCommonDataCreateDto = {
|
|
4
59
|
readonly extraProperties?: {
|
|
5
60
|
[key: string]: unknown;
|
|
@@ -113,13 +168,13 @@ export type UniRefund_LocationService_Countries_CountryCreateDto = {
|
|
|
113
168
|
flagUrl?: string | null;
|
|
114
169
|
population?: number | null;
|
|
115
170
|
isTimezoneCurrentlyDst?: boolean;
|
|
171
|
+
hasRegion?: boolean;
|
|
116
172
|
timezoneId: string;
|
|
117
173
|
countryNumberId: string;
|
|
118
174
|
countryCurrencyId: string;
|
|
119
175
|
countryTimeId: string;
|
|
120
176
|
countryDateId: string;
|
|
121
177
|
continent: UniRefund_LocationService_Enums_Continent;
|
|
122
|
-
languageId: string;
|
|
123
178
|
};
|
|
124
179
|
|
|
125
180
|
export type UniRefund_LocationService_Countries_CountryDto = {
|
|
@@ -140,13 +195,13 @@ export type UniRefund_LocationService_Countries_CountryDto = {
|
|
|
140
195
|
flagUrl?: string | null;
|
|
141
196
|
population?: number | null;
|
|
142
197
|
isTimezoneCurrentlyDst?: boolean;
|
|
198
|
+
hasRegion?: boolean;
|
|
143
199
|
timezoneId: string;
|
|
144
200
|
countryNumberId: string;
|
|
145
201
|
countryCurrencyId: string;
|
|
146
202
|
countryTimeId: string;
|
|
147
203
|
countryDateId: string;
|
|
148
204
|
continent: UniRefund_LocationService_Enums_Continent;
|
|
149
|
-
languageId: string;
|
|
150
205
|
};
|
|
151
206
|
|
|
152
207
|
export type UniRefund_LocationService_Countries_CountryUpdateDto = {
|
|
@@ -159,13 +214,13 @@ export type UniRefund_LocationService_Countries_CountryUpdateDto = {
|
|
|
159
214
|
flagUrl?: string | null;
|
|
160
215
|
population?: number | null;
|
|
161
216
|
isTimezoneCurrentlyDst?: boolean;
|
|
217
|
+
hasRegion?: boolean;
|
|
162
218
|
timezoneId: string;
|
|
163
219
|
countryNumberId: string;
|
|
164
220
|
countryCurrencyId: string;
|
|
165
221
|
countryTimeId: string;
|
|
166
222
|
countryDateId: string;
|
|
167
223
|
continent: UniRefund_LocationService_Enums_Continent;
|
|
168
|
-
languageId: string;
|
|
169
224
|
};
|
|
170
225
|
|
|
171
226
|
export type UniRefund_LocationService_Countries_GetCountryNameDto = {
|
|
@@ -384,7 +439,7 @@ export type UniRefund_LocationService_Districts_DistrictUpdateDto = {
|
|
|
384
439
|
cityId: string;
|
|
385
440
|
};
|
|
386
441
|
|
|
387
|
-
export type UniRefund_LocationService_Enums_AddressType = 'Home' | 'Office';
|
|
442
|
+
export type UniRefund_LocationService_Enums_AddressType = 'Home' | 'Office' | 'Invoice' | 'Contact';
|
|
388
443
|
|
|
389
444
|
export type UniRefund_LocationService_Enums_CalendarType = 'Gregorian' | 'Julian' | 'Hebrew' | 'Islamic' | 'Buddhist' | 'Chinese';
|
|
390
445
|
|
|
@@ -500,61 +555,6 @@ export type UniRefund_LocationService_Regions_RegionUpdateDto = {
|
|
|
500
555
|
countryId: string;
|
|
501
556
|
};
|
|
502
557
|
|
|
503
|
-
export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
|
|
504
|
-
items?: Array<UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto> | null;
|
|
505
|
-
totalCount?: number;
|
|
506
|
-
};
|
|
507
|
-
|
|
508
|
-
export type Volo_Abp_Application_Dtos_PagedResultDto_12 = {
|
|
509
|
-
items?: Array<UniRefund_LocationService_Cities_CityDto> | null;
|
|
510
|
-
totalCount?: number;
|
|
511
|
-
};
|
|
512
|
-
|
|
513
|
-
export type Volo_Abp_Application_Dtos_PagedResultDto_13 = {
|
|
514
|
-
items?: Array<UniRefund_LocationService_Countries_CountryDto> | null;
|
|
515
|
-
totalCount?: number;
|
|
516
|
-
};
|
|
517
|
-
|
|
518
|
-
export type Volo_Abp_Application_Dtos_PagedResultDto_14 = {
|
|
519
|
-
items?: Array<UniRefund_LocationService_CountryCurrencies_CountryCurrencyDto> | null;
|
|
520
|
-
totalCount?: number;
|
|
521
|
-
};
|
|
522
|
-
|
|
523
|
-
export type Volo_Abp_Application_Dtos_PagedResultDto_15 = {
|
|
524
|
-
items?: Array<UniRefund_LocationService_CountryDates_CountryDateDto> | null;
|
|
525
|
-
totalCount?: number;
|
|
526
|
-
};
|
|
527
|
-
|
|
528
|
-
export type Volo_Abp_Application_Dtos_PagedResultDto_16 = {
|
|
529
|
-
items?: Array<UniRefund_LocationService_CountryNumbers_CountryNumberDto> | null;
|
|
530
|
-
totalCount?: number;
|
|
531
|
-
};
|
|
532
|
-
|
|
533
|
-
export type Volo_Abp_Application_Dtos_PagedResultDto_17 = {
|
|
534
|
-
items?: Array<UniRefund_LocationService_CountryTimes_CountryTimeDto> | null;
|
|
535
|
-
totalCount?: number;
|
|
536
|
-
};
|
|
537
|
-
|
|
538
|
-
export type Volo_Abp_Application_Dtos_PagedResultDto_18 = {
|
|
539
|
-
items?: Array<UniRefund_LocationService_Districts_DistrictDto> | null;
|
|
540
|
-
totalCount?: number;
|
|
541
|
-
};
|
|
542
|
-
|
|
543
|
-
export type Volo_Abp_Application_Dtos_PagedResultDto_19 = {
|
|
544
|
-
items?: Array<UniRefund_LocationService_Neighborhoods_NeighborhoodDto> | null;
|
|
545
|
-
totalCount?: number;
|
|
546
|
-
};
|
|
547
|
-
|
|
548
|
-
export type Volo_Abp_Application_Dtos_PagedResultDto_110 = {
|
|
549
|
-
items?: Array<UniRefund_LocationService_RegionalSettings_RegionalSettingDto> | null;
|
|
550
|
-
totalCount?: number;
|
|
551
|
-
};
|
|
552
|
-
|
|
553
|
-
export type Volo_Abp_Application_Dtos_PagedResultDto_111 = {
|
|
554
|
-
items?: Array<UniRefund_LocationService_Regions_RegionDto> | null;
|
|
555
|
-
totalCount?: number;
|
|
556
|
-
};
|
|
557
|
-
|
|
558
558
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
|
|
559
559
|
grantedPolicies?: {
|
|
560
560
|
[key: string]: (boolean);
|
|
@@ -982,7 +982,7 @@ export type GetApiLocationServiceAddressCommonDataData = {
|
|
|
982
982
|
sorting?: string;
|
|
983
983
|
};
|
|
984
984
|
|
|
985
|
-
export type GetApiLocationServiceAddressCommonDataResponse =
|
|
985
|
+
export type GetApiLocationServiceAddressCommonDataResponse = PagedResultDto_AddressCommonDataDto;
|
|
986
986
|
|
|
987
987
|
export type PostApiLocationServiceAddressCommonDataData = {
|
|
988
988
|
requestBody?: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataCreateDto;
|
|
@@ -996,13 +996,25 @@ export type GetApiLocationServiceAddressCommonDataGetListWithIdsData = {
|
|
|
996
996
|
|
|
997
997
|
export type GetApiLocationServiceAddressCommonDataGetListWithIdsResponse = Array<UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto>;
|
|
998
998
|
|
|
999
|
+
export type GetApiLocationServiceAddressCommonDataByIdExistData = {
|
|
1000
|
+
id: string;
|
|
1001
|
+
};
|
|
1002
|
+
|
|
1003
|
+
export type GetApiLocationServiceAddressCommonDataByIdExistResponse = boolean;
|
|
1004
|
+
|
|
1005
|
+
export type PostApiLocationServiceAddressCommonDataExistData = {
|
|
1006
|
+
requestBody?: Array<(string)>;
|
|
1007
|
+
};
|
|
1008
|
+
|
|
1009
|
+
export type PostApiLocationServiceAddressCommonDataExistResponse = boolean;
|
|
1010
|
+
|
|
999
1011
|
export type GetApiLocationServiceCitiesData = {
|
|
1000
1012
|
maxResultCount?: number;
|
|
1001
1013
|
skipCount?: number;
|
|
1002
1014
|
sorting?: string;
|
|
1003
1015
|
};
|
|
1004
1016
|
|
|
1005
|
-
export type GetApiLocationServiceCitiesResponse =
|
|
1017
|
+
export type GetApiLocationServiceCitiesResponse = PagedResultDto_CityDto;
|
|
1006
1018
|
|
|
1007
1019
|
export type PostApiLocationServiceCitiesData = {
|
|
1008
1020
|
requestBody?: UniRefund_LocationService_Cities_CityCreateDto;
|
|
@@ -1016,6 +1028,12 @@ export type GetApiLocationServiceCitiesGetListByRegionByRegionIdData = {
|
|
|
1016
1028
|
|
|
1017
1029
|
export type GetApiLocationServiceCitiesGetListByRegionByRegionIdResponse = Array<UniRefund_LocationService_Cities_CityDto>;
|
|
1018
1030
|
|
|
1031
|
+
export type GetApiLocationServiceCitiesGetListByCountryByCountryIdData = {
|
|
1032
|
+
countryId: string;
|
|
1033
|
+
};
|
|
1034
|
+
|
|
1035
|
+
export type GetApiLocationServiceCitiesGetListByCountryByCountryIdResponse = Array<UniRefund_LocationService_Cities_CityDto>;
|
|
1036
|
+
|
|
1019
1037
|
export type GetApiLocationServiceCitiesByIdData = {
|
|
1020
1038
|
id: string;
|
|
1021
1039
|
};
|
|
@@ -1041,7 +1059,7 @@ export type GetApiLocationServiceCountriesData = {
|
|
|
1041
1059
|
sorting?: string;
|
|
1042
1060
|
};
|
|
1043
1061
|
|
|
1044
|
-
export type GetApiLocationServiceCountriesResponse =
|
|
1062
|
+
export type GetApiLocationServiceCountriesResponse = PagedResultDto_CountryDto;
|
|
1045
1063
|
|
|
1046
1064
|
export type PostApiLocationServiceCountriesData = {
|
|
1047
1065
|
requestBody?: UniRefund_LocationService_Countries_CountryCreateDto;
|
|
@@ -1086,7 +1104,7 @@ export type GetApiLocationServiceCountryCurrenciesData = {
|
|
|
1086
1104
|
sorting?: string;
|
|
1087
1105
|
};
|
|
1088
1106
|
|
|
1089
|
-
export type GetApiLocationServiceCountryCurrenciesResponse =
|
|
1107
|
+
export type GetApiLocationServiceCountryCurrenciesResponse = PagedResultDto_CountryCurrencyDto;
|
|
1090
1108
|
|
|
1091
1109
|
export type PostApiLocationServiceCountryCurrenciesData = {
|
|
1092
1110
|
requestBody?: UniRefund_LocationService_CountryCurrencies_CountryCurrencyCreateDto;
|
|
@@ -1119,7 +1137,7 @@ export type GetApiLocationServiceCountryDatesData = {
|
|
|
1119
1137
|
sorting?: string;
|
|
1120
1138
|
};
|
|
1121
1139
|
|
|
1122
|
-
export type GetApiLocationServiceCountryDatesResponse =
|
|
1140
|
+
export type GetApiLocationServiceCountryDatesResponse = PagedResultDto_CountryDateDto;
|
|
1123
1141
|
|
|
1124
1142
|
export type PostApiLocationServiceCountryDatesData = {
|
|
1125
1143
|
requestBody?: UniRefund_LocationService_CountryDates_CountryDateCreateDto;
|
|
@@ -1152,7 +1170,7 @@ export type GetApiLocationServiceCountryNumbersData = {
|
|
|
1152
1170
|
sorting?: string;
|
|
1153
1171
|
};
|
|
1154
1172
|
|
|
1155
|
-
export type GetApiLocationServiceCountryNumbersResponse =
|
|
1173
|
+
export type GetApiLocationServiceCountryNumbersResponse = PagedResultDto_CountryNumberDto;
|
|
1156
1174
|
|
|
1157
1175
|
export type PostApiLocationServiceCountryNumbersData = {
|
|
1158
1176
|
requestBody?: UniRefund_LocationService_CountryNumbers_CountryNumberCreateDto;
|
|
@@ -1185,7 +1203,7 @@ export type GetApiLocationServiceCountryTimesData = {
|
|
|
1185
1203
|
sorting?: string;
|
|
1186
1204
|
};
|
|
1187
1205
|
|
|
1188
|
-
export type GetApiLocationServiceCountryTimesResponse =
|
|
1206
|
+
export type GetApiLocationServiceCountryTimesResponse = PagedResultDto_CountryTimeDto;
|
|
1189
1207
|
|
|
1190
1208
|
export type PostApiLocationServiceCountryTimesData = {
|
|
1191
1209
|
requestBody?: UniRefund_LocationService_CountryTimes_CountryTimeCreateDto;
|
|
@@ -1218,7 +1236,7 @@ export type GetApiLocationServiceDistrictsData = {
|
|
|
1218
1236
|
sorting?: string;
|
|
1219
1237
|
};
|
|
1220
1238
|
|
|
1221
|
-
export type GetApiLocationServiceDistrictsResponse =
|
|
1239
|
+
export type GetApiLocationServiceDistrictsResponse = PagedResultDto_DistrictDto;
|
|
1222
1240
|
|
|
1223
1241
|
export type PostApiLocationServiceDistrictsData = {
|
|
1224
1242
|
requestBody?: UniRefund_LocationService_Districts_DistrictCreateDto;
|
|
@@ -1257,7 +1275,7 @@ export type GetApiLocationServiceNeighborhoodsData = {
|
|
|
1257
1275
|
sorting?: string;
|
|
1258
1276
|
};
|
|
1259
1277
|
|
|
1260
|
-
export type GetApiLocationServiceNeighborhoodsResponse =
|
|
1278
|
+
export type GetApiLocationServiceNeighborhoodsResponse = PagedResultDto_NeighborhoodDto;
|
|
1261
1279
|
|
|
1262
1280
|
export type PostApiLocationServiceNeighborhoodsData = {
|
|
1263
1281
|
requestBody?: UniRefund_LocationService_Neighborhoods_NeighborhoodCreateDto;
|
|
@@ -1296,7 +1314,7 @@ export type GetApiLocationServiceRegionsData = {
|
|
|
1296
1314
|
sorting?: string;
|
|
1297
1315
|
};
|
|
1298
1316
|
|
|
1299
|
-
export type GetApiLocationServiceRegionsResponse =
|
|
1317
|
+
export type GetApiLocationServiceRegionsResponse = PagedResultDto_RegionDto;
|
|
1300
1318
|
|
|
1301
1319
|
export type PostApiLocationServiceRegionsData = {
|
|
1302
1320
|
requestBody?: UniRefund_LocationService_Regions_RegionCreateDto;
|
|
@@ -1341,7 +1359,7 @@ export type GetApiLocationServiceRegionalSettingsData = {
|
|
|
1341
1359
|
sorting?: string;
|
|
1342
1360
|
};
|
|
1343
1361
|
|
|
1344
|
-
export type GetApiLocationServiceRegionalSettingsResponse =
|
|
1362
|
+
export type GetApiLocationServiceRegionalSettingsResponse = PagedResultDto_RegionalSettingDto;
|
|
1345
1363
|
|
|
1346
1364
|
export type PostApiLocationServiceRegionalSettingsData = {
|
|
1347
1365
|
requestBody?: UniRefund_LocationService_RegionalSettings_RegionalSettingCreateDto;
|
|
@@ -1582,7 +1600,7 @@ export type $OpenApiTs = {
|
|
|
1582
1600
|
/**
|
|
1583
1601
|
* Success
|
|
1584
1602
|
*/
|
|
1585
|
-
200:
|
|
1603
|
+
200: PagedResultDto_AddressCommonDataDto;
|
|
1586
1604
|
/**
|
|
1587
1605
|
* Bad Request
|
|
1588
1606
|
*/
|
|
@@ -1678,6 +1696,76 @@ export type $OpenApiTs = {
|
|
|
1678
1696
|
};
|
|
1679
1697
|
};
|
|
1680
1698
|
};
|
|
1699
|
+
'/api/location-service/address-common-data/{id}/exist': {
|
|
1700
|
+
get: {
|
|
1701
|
+
req: GetApiLocationServiceAddressCommonDataByIdExistData;
|
|
1702
|
+
res: {
|
|
1703
|
+
/**
|
|
1704
|
+
* Success
|
|
1705
|
+
*/
|
|
1706
|
+
200: boolean;
|
|
1707
|
+
/**
|
|
1708
|
+
* Bad Request
|
|
1709
|
+
*/
|
|
1710
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1711
|
+
/**
|
|
1712
|
+
* Unauthorized
|
|
1713
|
+
*/
|
|
1714
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1715
|
+
/**
|
|
1716
|
+
* Forbidden
|
|
1717
|
+
*/
|
|
1718
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1719
|
+
/**
|
|
1720
|
+
* Not Found
|
|
1721
|
+
*/
|
|
1722
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1723
|
+
/**
|
|
1724
|
+
* Server Error
|
|
1725
|
+
*/
|
|
1726
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1727
|
+
/**
|
|
1728
|
+
* Server Error
|
|
1729
|
+
*/
|
|
1730
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1731
|
+
};
|
|
1732
|
+
};
|
|
1733
|
+
};
|
|
1734
|
+
'/api/location-service/address-common-data/exist': {
|
|
1735
|
+
post: {
|
|
1736
|
+
req: PostApiLocationServiceAddressCommonDataExistData;
|
|
1737
|
+
res: {
|
|
1738
|
+
/**
|
|
1739
|
+
* Success
|
|
1740
|
+
*/
|
|
1741
|
+
200: boolean;
|
|
1742
|
+
/**
|
|
1743
|
+
* Bad Request
|
|
1744
|
+
*/
|
|
1745
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1746
|
+
/**
|
|
1747
|
+
* Unauthorized
|
|
1748
|
+
*/
|
|
1749
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1750
|
+
/**
|
|
1751
|
+
* Forbidden
|
|
1752
|
+
*/
|
|
1753
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1754
|
+
/**
|
|
1755
|
+
* Not Found
|
|
1756
|
+
*/
|
|
1757
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1758
|
+
/**
|
|
1759
|
+
* Server Error
|
|
1760
|
+
*/
|
|
1761
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1762
|
+
/**
|
|
1763
|
+
* Server Error
|
|
1764
|
+
*/
|
|
1765
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1766
|
+
};
|
|
1767
|
+
};
|
|
1768
|
+
};
|
|
1681
1769
|
'/api/location-service/cities': {
|
|
1682
1770
|
get: {
|
|
1683
1771
|
req: GetApiLocationServiceCitiesData;
|
|
@@ -1685,7 +1773,7 @@ export type $OpenApiTs = {
|
|
|
1685
1773
|
/**
|
|
1686
1774
|
* Success
|
|
1687
1775
|
*/
|
|
1688
|
-
200:
|
|
1776
|
+
200: PagedResultDto_CityDto;
|
|
1689
1777
|
/**
|
|
1690
1778
|
* Bad Request
|
|
1691
1779
|
*/
|
|
@@ -1781,6 +1869,41 @@ export type $OpenApiTs = {
|
|
|
1781
1869
|
};
|
|
1782
1870
|
};
|
|
1783
1871
|
};
|
|
1872
|
+
'/api/location-service/cities/get-list-by-country/{countryId}': {
|
|
1873
|
+
get: {
|
|
1874
|
+
req: GetApiLocationServiceCitiesGetListByCountryByCountryIdData;
|
|
1875
|
+
res: {
|
|
1876
|
+
/**
|
|
1877
|
+
* Success
|
|
1878
|
+
*/
|
|
1879
|
+
200: Array<UniRefund_LocationService_Cities_CityDto>;
|
|
1880
|
+
/**
|
|
1881
|
+
* Bad Request
|
|
1882
|
+
*/
|
|
1883
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1884
|
+
/**
|
|
1885
|
+
* Unauthorized
|
|
1886
|
+
*/
|
|
1887
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1888
|
+
/**
|
|
1889
|
+
* Forbidden
|
|
1890
|
+
*/
|
|
1891
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1892
|
+
/**
|
|
1893
|
+
* Not Found
|
|
1894
|
+
*/
|
|
1895
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1896
|
+
/**
|
|
1897
|
+
* Server Error
|
|
1898
|
+
*/
|
|
1899
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1900
|
+
/**
|
|
1901
|
+
* Server Error
|
|
1902
|
+
*/
|
|
1903
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1904
|
+
};
|
|
1905
|
+
};
|
|
1906
|
+
};
|
|
1784
1907
|
'/api/location-service/cities/{id}': {
|
|
1785
1908
|
get: {
|
|
1786
1909
|
req: GetApiLocationServiceCitiesByIdData;
|
|
@@ -1889,7 +2012,7 @@ export type $OpenApiTs = {
|
|
|
1889
2012
|
/**
|
|
1890
2013
|
* Success
|
|
1891
2014
|
*/
|
|
1892
|
-
200:
|
|
2015
|
+
200: PagedResultDto_CountryDto;
|
|
1893
2016
|
/**
|
|
1894
2017
|
* Bad Request
|
|
1895
2018
|
*/
|
|
@@ -2128,7 +2251,7 @@ export type $OpenApiTs = {
|
|
|
2128
2251
|
/**
|
|
2129
2252
|
* Success
|
|
2130
2253
|
*/
|
|
2131
|
-
200:
|
|
2254
|
+
200: PagedResultDto_CountryCurrencyDto;
|
|
2132
2255
|
/**
|
|
2133
2256
|
* Bad Request
|
|
2134
2257
|
*/
|
|
@@ -2297,7 +2420,7 @@ export type $OpenApiTs = {
|
|
|
2297
2420
|
/**
|
|
2298
2421
|
* Success
|
|
2299
2422
|
*/
|
|
2300
|
-
200:
|
|
2423
|
+
200: PagedResultDto_CountryDateDto;
|
|
2301
2424
|
/**
|
|
2302
2425
|
* Bad Request
|
|
2303
2426
|
*/
|
|
@@ -2466,7 +2589,7 @@ export type $OpenApiTs = {
|
|
|
2466
2589
|
/**
|
|
2467
2590
|
* Success
|
|
2468
2591
|
*/
|
|
2469
|
-
200:
|
|
2592
|
+
200: PagedResultDto_CountryNumberDto;
|
|
2470
2593
|
/**
|
|
2471
2594
|
* Bad Request
|
|
2472
2595
|
*/
|
|
@@ -2635,7 +2758,7 @@ export type $OpenApiTs = {
|
|
|
2635
2758
|
/**
|
|
2636
2759
|
* Success
|
|
2637
2760
|
*/
|
|
2638
|
-
200:
|
|
2761
|
+
200: PagedResultDto_CountryTimeDto;
|
|
2639
2762
|
/**
|
|
2640
2763
|
* Bad Request
|
|
2641
2764
|
*/
|
|
@@ -2804,7 +2927,7 @@ export type $OpenApiTs = {
|
|
|
2804
2927
|
/**
|
|
2805
2928
|
* Success
|
|
2806
2929
|
*/
|
|
2807
|
-
200:
|
|
2930
|
+
200: PagedResultDto_DistrictDto;
|
|
2808
2931
|
/**
|
|
2809
2932
|
* Bad Request
|
|
2810
2933
|
*/
|
|
@@ -3008,7 +3131,7 @@ export type $OpenApiTs = {
|
|
|
3008
3131
|
/**
|
|
3009
3132
|
* Success
|
|
3010
3133
|
*/
|
|
3011
|
-
200:
|
|
3134
|
+
200: PagedResultDto_NeighborhoodDto;
|
|
3012
3135
|
/**
|
|
3013
3136
|
* Bad Request
|
|
3014
3137
|
*/
|
|
@@ -3212,7 +3335,7 @@ export type $OpenApiTs = {
|
|
|
3212
3335
|
/**
|
|
3213
3336
|
* Success
|
|
3214
3337
|
*/
|
|
3215
|
-
200:
|
|
3338
|
+
200: PagedResultDto_RegionDto;
|
|
3216
3339
|
/**
|
|
3217
3340
|
* Bad Request
|
|
3218
3341
|
*/
|
|
@@ -3451,7 +3574,7 @@ export type $OpenApiTs = {
|
|
|
3451
3574
|
/**
|
|
3452
3575
|
* Success
|
|
3453
3576
|
*/
|
|
3454
|
-
200:
|
|
3577
|
+
200: PagedResultDto_RegionalSettingDto;
|
|
3455
3578
|
/**
|
|
3456
3579
|
* Bad Request
|
|
3457
3580
|
*/
|
package/README.md
ADDED