@ayasofyazilim/saas 0.0.121 → 0.0.123
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/schemas.gen.ts +195 -28
- package/CRMService/sdk.gen.ts +222 -25
- package/CRMService/types.gen.ts +917 -174
- package/LocationService/LocationServiceClient.ts +80 -74
- package/LocationService/core/ApiError.ts +20 -20
- package/LocationService/core/ApiRequestOptions.ts +20 -12
- package/LocationService/core/ApiResult.ts +6 -6
- package/LocationService/core/BaseHttpRequest.ts +9 -9
- package/LocationService/core/CancelablePromise.ts +125 -125
- package/LocationService/core/FetchHttpRequest.ts +21 -21
- package/LocationService/core/OpenAPI.ts +55 -55
- package/LocationService/core/request.ts +349 -340
- package/LocationService/index.ts +10 -9
- package/LocationService/schemas.gen.ts +6646 -6635
- package/LocationService/{services.gen.ts → sdk.gen.ts} +1905 -1797
- package/LocationService/types.gen.ts +3892 -3739
- package/package.json +1 -1
|
@@ -1,1798 +1,1906 @@
|
|
|
1
|
-
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
-
|
|
3
|
-
import type { CancelablePromise } from './core/CancelablePromise';
|
|
4
|
-
import type { BaseHttpRequest } from './core/BaseHttpRequest';
|
|
5
|
-
import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, GetApiLocationServiceAddressCommonDataByIdData, GetApiLocationServiceAddressCommonDataByIdResponse, PutApiLocationServiceAddressCommonDataByIdData, PutApiLocationServiceAddressCommonDataByIdResponse, DeleteApiLocationServiceAddressCommonDataByIdData, DeleteApiLocationServiceAddressCommonDataByIdResponse, GetApiLocationServiceAddressCommonDataData, GetApiLocationServiceAddressCommonDataResponse, PostApiLocationServiceAddressCommonDataData, PostApiLocationServiceAddressCommonDataResponse, GetApiLocationServiceAddressCommonDataGetListWithIdsData, GetApiLocationServiceAddressCommonDataGetListWithIdsResponse,
|
|
6
|
-
|
|
7
|
-
export class AbpApiDefinitionService {
|
|
8
|
-
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* @param data The data for the request.
|
|
12
|
-
* @param data.includeTypes
|
|
13
|
-
* @returns
|
|
14
|
-
* @throws ApiError
|
|
15
|
-
*/
|
|
16
|
-
public getApiAbpApiDefinition(data: GetApiAbpApiDefinitionData = {}): CancelablePromise<GetApiAbpApiDefinitionResponse> {
|
|
17
|
-
return this.httpRequest.request({
|
|
18
|
-
method: 'GET',
|
|
19
|
-
url: '/api/abp/api-definition',
|
|
20
|
-
query: {
|
|
21
|
-
IncludeTypes: data.includeTypes
|
|
22
|
-
},
|
|
23
|
-
errors: {
|
|
24
|
-
400: 'Bad Request',
|
|
25
|
-
401: 'Unauthorized',
|
|
26
|
-
403: 'Forbidden',
|
|
27
|
-
404: 'Not Found',
|
|
28
|
-
500: 'Server Error',
|
|
29
|
-
501: 'Server Error'
|
|
30
|
-
}
|
|
31
|
-
});
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
export class AbpApplicationConfigurationService {
|
|
37
|
-
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
38
|
-
|
|
39
|
-
/**
|
|
40
|
-
* @param data The data for the request.
|
|
41
|
-
* @param data.includeLocalizationResources
|
|
42
|
-
* @returns
|
|
43
|
-
* @throws ApiError
|
|
44
|
-
*/
|
|
45
|
-
public getApiAbpApplicationConfiguration(data: GetApiAbpApplicationConfigurationData = {}): CancelablePromise<GetApiAbpApplicationConfigurationResponse> {
|
|
46
|
-
return this.httpRequest.request({
|
|
47
|
-
method: 'GET',
|
|
48
|
-
url: '/api/abp/application-configuration',
|
|
49
|
-
query: {
|
|
50
|
-
IncludeLocalizationResources: data.includeLocalizationResources
|
|
51
|
-
},
|
|
52
|
-
errors: {
|
|
53
|
-
400: 'Bad Request',
|
|
54
|
-
401: 'Unauthorized',
|
|
55
|
-
403: 'Forbidden',
|
|
56
|
-
404: 'Not Found',
|
|
57
|
-
500: 'Server Error',
|
|
58
|
-
501: 'Server Error'
|
|
59
|
-
}
|
|
60
|
-
});
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
export class AbpApplicationLocalizationService {
|
|
66
|
-
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
67
|
-
|
|
68
|
-
/**
|
|
69
|
-
* @param data The data for the request.
|
|
70
|
-
* @param data.cultureName
|
|
71
|
-
* @param data.onlyDynamics
|
|
72
|
-
* @returns
|
|
73
|
-
* @throws ApiError
|
|
74
|
-
*/
|
|
75
|
-
public getApiAbpApplicationLocalization(data: GetApiAbpApplicationLocalizationData): CancelablePromise<GetApiAbpApplicationLocalizationResponse> {
|
|
76
|
-
return this.httpRequest.request({
|
|
77
|
-
method: 'GET',
|
|
78
|
-
url: '/api/abp/application-localization',
|
|
79
|
-
query: {
|
|
80
|
-
CultureName: data.cultureName,
|
|
81
|
-
OnlyDynamics: data.onlyDynamics
|
|
82
|
-
},
|
|
83
|
-
errors: {
|
|
84
|
-
400: 'Bad Request',
|
|
85
|
-
401: 'Unauthorized',
|
|
86
|
-
403: 'Forbidden',
|
|
87
|
-
404: 'Not Found',
|
|
88
|
-
500: 'Server Error',
|
|
89
|
-
501: 'Server Error'
|
|
90
|
-
}
|
|
91
|
-
});
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
export class AddressCommonDataService {
|
|
97
|
-
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
98
|
-
|
|
99
|
-
/**
|
|
100
|
-
* @param data The data for the request.
|
|
101
|
-
* @param data.id
|
|
102
|
-
* @returns
|
|
103
|
-
* @throws ApiError
|
|
104
|
-
*/
|
|
105
|
-
public getApiLocationServiceAddressCommonDataById(data: GetApiLocationServiceAddressCommonDataByIdData): CancelablePromise<GetApiLocationServiceAddressCommonDataByIdResponse> {
|
|
106
|
-
return this.httpRequest.request({
|
|
107
|
-
method: 'GET',
|
|
108
|
-
url: '/api/location-service/address-common-data/{id}',
|
|
109
|
-
path: {
|
|
110
|
-
id: data.id
|
|
111
|
-
},
|
|
112
|
-
errors: {
|
|
113
|
-
400: 'Bad Request',
|
|
114
|
-
401: 'Unauthorized',
|
|
115
|
-
403: 'Forbidden',
|
|
116
|
-
404: 'Not Found',
|
|
117
|
-
500: 'Server Error',
|
|
118
|
-
501: 'Server Error'
|
|
119
|
-
}
|
|
120
|
-
});
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
/**
|
|
124
|
-
* @param data The data for the request.
|
|
125
|
-
* @param data.id
|
|
126
|
-
* @param data.requestBody
|
|
127
|
-
* @returns
|
|
128
|
-
* @throws ApiError
|
|
129
|
-
*/
|
|
130
|
-
public putApiLocationServiceAddressCommonDataById(data: PutApiLocationServiceAddressCommonDataByIdData): CancelablePromise<PutApiLocationServiceAddressCommonDataByIdResponse> {
|
|
131
|
-
return this.httpRequest.request({
|
|
132
|
-
method: 'PUT',
|
|
133
|
-
url: '/api/location-service/address-common-data/{id}',
|
|
134
|
-
path: {
|
|
135
|
-
id: data.id
|
|
136
|
-
},
|
|
137
|
-
body: data.requestBody,
|
|
138
|
-
mediaType: 'application/json',
|
|
139
|
-
errors: {
|
|
140
|
-
400: 'Bad Request',
|
|
141
|
-
401: 'Unauthorized',
|
|
142
|
-
403: 'Forbidden',
|
|
143
|
-
404: 'Not Found',
|
|
144
|
-
500: 'Server Error',
|
|
145
|
-
501: 'Server Error'
|
|
146
|
-
}
|
|
147
|
-
});
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
/**
|
|
151
|
-
* @param data The data for the request.
|
|
152
|
-
* @param data.id
|
|
153
|
-
* @returns unknown Success
|
|
154
|
-
* @throws ApiError
|
|
155
|
-
*/
|
|
156
|
-
public deleteApiLocationServiceAddressCommonDataById(data: DeleteApiLocationServiceAddressCommonDataByIdData): CancelablePromise<DeleteApiLocationServiceAddressCommonDataByIdResponse> {
|
|
157
|
-
return this.httpRequest.request({
|
|
158
|
-
method: 'DELETE',
|
|
159
|
-
url: '/api/location-service/address-common-data/{id}',
|
|
160
|
-
path: {
|
|
161
|
-
id: data.id
|
|
162
|
-
},
|
|
163
|
-
errors: {
|
|
164
|
-
400: 'Bad Request',
|
|
165
|
-
401: 'Unauthorized',
|
|
166
|
-
403: 'Forbidden',
|
|
167
|
-
404: 'Not Found',
|
|
168
|
-
500: 'Server Error',
|
|
169
|
-
501: 'Server Error'
|
|
170
|
-
}
|
|
171
|
-
});
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
/**
|
|
175
|
-
* @param data The data for the request.
|
|
176
|
-
* @param data.sorting
|
|
177
|
-
* @param data.skipCount
|
|
178
|
-
* @param data.maxResultCount
|
|
179
|
-
* @returns
|
|
180
|
-
* @throws ApiError
|
|
181
|
-
*/
|
|
182
|
-
public getApiLocationServiceAddressCommonData(data: GetApiLocationServiceAddressCommonDataData = {}): CancelablePromise<GetApiLocationServiceAddressCommonDataResponse> {
|
|
183
|
-
return this.httpRequest.request({
|
|
184
|
-
method: 'GET',
|
|
185
|
-
url: '/api/location-service/address-common-data',
|
|
186
|
-
query: {
|
|
187
|
-
Sorting: data.sorting,
|
|
188
|
-
SkipCount: data.skipCount,
|
|
189
|
-
MaxResultCount: data.maxResultCount
|
|
190
|
-
},
|
|
191
|
-
errors: {
|
|
192
|
-
400: 'Bad Request',
|
|
193
|
-
401: 'Unauthorized',
|
|
194
|
-
403: 'Forbidden',
|
|
195
|
-
404: 'Not Found',
|
|
196
|
-
500: 'Server Error',
|
|
197
|
-
501: 'Server Error'
|
|
198
|
-
}
|
|
199
|
-
});
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
/**
|
|
203
|
-
* @param data The data for the request.
|
|
204
|
-
* @param data.requestBody
|
|
205
|
-
* @returns
|
|
206
|
-
* @throws ApiError
|
|
207
|
-
*/
|
|
208
|
-
public postApiLocationServiceAddressCommonData(data: PostApiLocationServiceAddressCommonDataData = {}): CancelablePromise<PostApiLocationServiceAddressCommonDataResponse> {
|
|
209
|
-
return this.httpRequest.request({
|
|
210
|
-
method: 'POST',
|
|
211
|
-
url: '/api/location-service/address-common-data',
|
|
212
|
-
body: data.requestBody,
|
|
213
|
-
mediaType: 'application/json',
|
|
214
|
-
errors: {
|
|
215
|
-
400: 'Bad Request',
|
|
216
|
-
401: 'Unauthorized',
|
|
217
|
-
403: 'Forbidden',
|
|
218
|
-
404: 'Not Found',
|
|
219
|
-
500: 'Server Error',
|
|
220
|
-
501: 'Server Error'
|
|
221
|
-
}
|
|
222
|
-
});
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
/**
|
|
226
|
-
* @param data The data for the request.
|
|
227
|
-
* @param data.ids
|
|
228
|
-
* @returns
|
|
229
|
-
* @throws ApiError
|
|
230
|
-
*/
|
|
231
|
-
public getApiLocationServiceAddressCommonDataGetListWithIds(data: GetApiLocationServiceAddressCommonDataGetListWithIdsData = {}): CancelablePromise<GetApiLocationServiceAddressCommonDataGetListWithIdsResponse> {
|
|
232
|
-
return this.httpRequest.request({
|
|
233
|
-
method: 'GET',
|
|
234
|
-
url: '/api/location-service/address-common-data/get-list-with-ids',
|
|
235
|
-
query: {
|
|
236
|
-
ids: data.ids
|
|
237
|
-
},
|
|
238
|
-
errors: {
|
|
239
|
-
400: 'Bad Request',
|
|
240
|
-
401: 'Unauthorized',
|
|
241
|
-
403: 'Forbidden',
|
|
242
|
-
404: 'Not Found',
|
|
243
|
-
500: 'Server Error',
|
|
244
|
-
501: 'Server Error'
|
|
245
|
-
}
|
|
246
|
-
});
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
* @
|
|
307
|
-
* @
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
},
|
|
318
|
-
errors: {
|
|
319
|
-
400: 'Bad Request',
|
|
320
|
-
401: 'Unauthorized',
|
|
321
|
-
403: 'Forbidden',
|
|
322
|
-
404: 'Not Found',
|
|
323
|
-
500: 'Server Error',
|
|
324
|
-
501: 'Server Error'
|
|
325
|
-
}
|
|
326
|
-
});
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
/**
|
|
330
|
-
* @param data The data for the request.
|
|
331
|
-
* @param data.
|
|
332
|
-
* @returns
|
|
333
|
-
* @throws ApiError
|
|
334
|
-
*/
|
|
335
|
-
public
|
|
336
|
-
return this.httpRequest.request({
|
|
337
|
-
method: '
|
|
338
|
-
url: '/api/
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
* @param data.
|
|
355
|
-
* @
|
|
356
|
-
* @
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
errors: {
|
|
366
|
-
400: 'Bad Request',
|
|
367
|
-
401: 'Unauthorized',
|
|
368
|
-
403: 'Forbidden',
|
|
369
|
-
404: 'Not Found',
|
|
370
|
-
500: 'Server Error',
|
|
371
|
-
501: 'Server Error'
|
|
372
|
-
}
|
|
373
|
-
});
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
/**
|
|
377
|
-
* @param data The data for the request.
|
|
378
|
-
* @param data.
|
|
379
|
-
* @returns
|
|
380
|
-
* @throws ApiError
|
|
381
|
-
*/
|
|
382
|
-
public
|
|
383
|
-
return this.httpRequest.request({
|
|
384
|
-
method: '
|
|
385
|
-
url: '/api/
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
}
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
* @param data
|
|
482
|
-
* @
|
|
483
|
-
* @
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
* @
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
* @param data
|
|
557
|
-
* @
|
|
558
|
-
* @
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
* @param data.
|
|
585
|
-
* @
|
|
586
|
-
* @
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
}
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
* @param data
|
|
661
|
-
* @param data.
|
|
662
|
-
* @
|
|
663
|
-
* @
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
* @
|
|
689
|
-
* @
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
}
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
* @param data
|
|
792
|
-
* @param data.
|
|
793
|
-
* @
|
|
794
|
-
* @
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
* @
|
|
820
|
-
* @
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
}
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
}
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
* @param data
|
|
923
|
-
* @param data.
|
|
924
|
-
* @
|
|
925
|
-
* @
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
* @
|
|
951
|
-
* @
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
* @
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
* @
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
errors: {
|
|
1070
|
-
400: 'Bad Request',
|
|
1071
|
-
401: 'Unauthorized',
|
|
1072
|
-
403: 'Forbidden',
|
|
1073
|
-
404: 'Not Found',
|
|
1074
|
-
500: 'Server Error',
|
|
1075
|
-
501: 'Server Error'
|
|
1076
|
-
}
|
|
1077
|
-
});
|
|
1078
|
-
}
|
|
1079
|
-
|
|
1080
|
-
/**
|
|
1081
|
-
* @param data The data for the request.
|
|
1082
|
-
* @param data.
|
|
1083
|
-
* @returns
|
|
1084
|
-
* @throws ApiError
|
|
1085
|
-
*/
|
|
1086
|
-
public
|
|
1087
|
-
return this.httpRequest.request({
|
|
1088
|
-
method: '
|
|
1089
|
-
url: '/api/location-service/country-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
* @param data.
|
|
1106
|
-
* @
|
|
1107
|
-
* @
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
* @
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
},
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
* @
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
errors: {
|
|
1201
|
-
400: 'Bad Request',
|
|
1202
|
-
401: 'Unauthorized',
|
|
1203
|
-
403: 'Forbidden',
|
|
1204
|
-
404: 'Not Found',
|
|
1205
|
-
500: 'Server Error',
|
|
1206
|
-
501: 'Server Error'
|
|
1207
|
-
}
|
|
1208
|
-
});
|
|
1209
|
-
}
|
|
1210
|
-
|
|
1211
|
-
/**
|
|
1212
|
-
* @param data The data for the request.
|
|
1213
|
-
* @param data.
|
|
1214
|
-
* @returns
|
|
1215
|
-
* @throws ApiError
|
|
1216
|
-
*/
|
|
1217
|
-
public
|
|
1218
|
-
return this.httpRequest.request({
|
|
1219
|
-
method: '
|
|
1220
|
-
url: '/api/location-service/
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
* @param data.
|
|
1237
|
-
* @
|
|
1238
|
-
* @
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
public
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
* @
|
|
1344
|
-
* @
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
},
|
|
1355
|
-
errors: {
|
|
1356
|
-
400: 'Bad Request',
|
|
1357
|
-
401: 'Unauthorized',
|
|
1358
|
-
403: 'Forbidden',
|
|
1359
|
-
404: 'Not Found',
|
|
1360
|
-
500: 'Server Error',
|
|
1361
|
-
501: 'Server Error'
|
|
1362
|
-
}
|
|
1363
|
-
});
|
|
1364
|
-
}
|
|
1365
|
-
|
|
1366
|
-
/**
|
|
1367
|
-
* @param data The data for the request.
|
|
1368
|
-
* @param data.
|
|
1369
|
-
* @returns
|
|
1370
|
-
* @throws ApiError
|
|
1371
|
-
*/
|
|
1372
|
-
public
|
|
1373
|
-
return this.httpRequest.request({
|
|
1374
|
-
method: '
|
|
1375
|
-
url: '/api/location-service/
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
* @param data.
|
|
1392
|
-
* @
|
|
1393
|
-
* @
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
public
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
* @
|
|
1499
|
-
* @
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
},
|
|
1510
|
-
errors: {
|
|
1511
|
-
400: 'Bad Request',
|
|
1512
|
-
401: 'Unauthorized',
|
|
1513
|
-
403: 'Forbidden',
|
|
1514
|
-
404: 'Not Found',
|
|
1515
|
-
500: 'Server Error',
|
|
1516
|
-
501: 'Server Error'
|
|
1517
|
-
}
|
|
1518
|
-
});
|
|
1519
|
-
}
|
|
1520
|
-
|
|
1521
|
-
/**
|
|
1522
|
-
* @param data The data for the request.
|
|
1523
|
-
* @param data.
|
|
1524
|
-
* @returns
|
|
1525
|
-
* @throws ApiError
|
|
1526
|
-
*/
|
|
1527
|
-
public
|
|
1528
|
-
return this.httpRequest.request({
|
|
1529
|
-
method: '
|
|
1530
|
-
url: '/api/location-service/
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
* @param data.
|
|
1547
|
-
* @
|
|
1548
|
-
* @
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
public
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
* @
|
|
1678
|
-
* @
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
},
|
|
1689
|
-
errors: {
|
|
1690
|
-
400: 'Bad Request',
|
|
1691
|
-
401: 'Unauthorized',
|
|
1692
|
-
403: 'Forbidden',
|
|
1693
|
-
404: 'Not Found',
|
|
1694
|
-
500: 'Server Error',
|
|
1695
|
-
501: 'Server Error'
|
|
1696
|
-
}
|
|
1697
|
-
});
|
|
1698
|
-
}
|
|
1699
|
-
|
|
1700
|
-
/**
|
|
1701
|
-
* @param data The data for the request.
|
|
1702
|
-
* @param data.
|
|
1703
|
-
* @
|
|
1704
|
-
* @
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
* @
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
},
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
|
|
3
|
+
import type { CancelablePromise } from './core/CancelablePromise';
|
|
4
|
+
import type { BaseHttpRequest } from './core/BaseHttpRequest';
|
|
5
|
+
import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, GetApiLocationServiceAddressCommonDataByIdData, GetApiLocationServiceAddressCommonDataByIdResponse, PutApiLocationServiceAddressCommonDataByIdData, PutApiLocationServiceAddressCommonDataByIdResponse, DeleteApiLocationServiceAddressCommonDataByIdData, DeleteApiLocationServiceAddressCommonDataByIdResponse, GetApiLocationServiceAddressCommonDataData, GetApiLocationServiceAddressCommonDataResponse, PostApiLocationServiceAddressCommonDataData, PostApiLocationServiceAddressCommonDataResponse, GetApiLocationServiceAddressCommonDataGetListWithIdsData, GetApiLocationServiceAddressCommonDataGetListWithIdsResponse, GetIntegrationApiAddressCommonDataByIdData, GetIntegrationApiAddressCommonDataByIdResponse, PutIntegrationApiAddressCommonDataByIdData, PutIntegrationApiAddressCommonDataByIdResponse, GetIntegrationApiAddressCommonDataGetListWithIdsData, GetIntegrationApiAddressCommonDataGetListWithIdsResponse, GetIntegrationApiAddressCommonDataByIdExistData, GetIntegrationApiAddressCommonDataByIdExistResponse, PostIntegrationApiAddressCommonDataExistData, PostIntegrationApiAddressCommonDataExistResponse, PostIntegrationApiAddressCommonDataData, PostIntegrationApiAddressCommonDataResponse, GetApiLocationServiceCitiesData, GetApiLocationServiceCitiesResponse, PostApiLocationServiceCitiesData, PostApiLocationServiceCitiesResponse, GetApiLocationServiceCitiesGetListByRegionByRegionIdData, GetApiLocationServiceCitiesGetListByRegionByRegionIdResponse, GetApiLocationServiceCitiesGetListByCountryByCountryIdData, GetApiLocationServiceCitiesGetListByCountryByCountryIdResponse, GetApiLocationServiceCitiesByIdData, GetApiLocationServiceCitiesByIdResponse, PutApiLocationServiceCitiesByIdData, PutApiLocationServiceCitiesByIdResponse, DeleteApiLocationServiceCitiesByIdData, DeleteApiLocationServiceCitiesByIdResponse, GetApiLocationServiceCountriesData, GetApiLocationServiceCountriesResponse, PostApiLocationServiceCountriesData, PostApiLocationServiceCountriesResponse, GetApiLocationServiceCountriesByIdData, GetApiLocationServiceCountriesByIdResponse, PutApiLocationServiceCountriesByIdData, PutApiLocationServiceCountriesByIdResponse, DeleteApiLocationServiceCountriesByIdData, DeleteApiLocationServiceCountriesByIdResponse, GetApiLocationServiceCountryCurrenciesData, GetApiLocationServiceCountryCurrenciesResponse, PostApiLocationServiceCountryCurrenciesData, PostApiLocationServiceCountryCurrenciesResponse, GetApiLocationServiceCountryCurrenciesByIdData, GetApiLocationServiceCountryCurrenciesByIdResponse, PutApiLocationServiceCountryCurrenciesByIdData, PutApiLocationServiceCountryCurrenciesByIdResponse, DeleteApiLocationServiceCountryCurrenciesByIdData, DeleteApiLocationServiceCountryCurrenciesByIdResponse, GetApiLocationServiceCountryDatesData, GetApiLocationServiceCountryDatesResponse, PostApiLocationServiceCountryDatesData, PostApiLocationServiceCountryDatesResponse, GetApiLocationServiceCountryDatesByIdData, GetApiLocationServiceCountryDatesByIdResponse, PutApiLocationServiceCountryDatesByIdData, PutApiLocationServiceCountryDatesByIdResponse, DeleteApiLocationServiceCountryDatesByIdData, DeleteApiLocationServiceCountryDatesByIdResponse, GetIntegrationApiCountriesGetNameIfExistsByCountryIdData, GetIntegrationApiCountriesGetNameIfExistsByCountryIdResponse, GetIntegrationApiCountriesNamesData, GetIntegrationApiCountriesNamesResponse, GetApiLocationServiceCountryNumbersData, GetApiLocationServiceCountryNumbersResponse, PostApiLocationServiceCountryNumbersData, PostApiLocationServiceCountryNumbersResponse, GetApiLocationServiceCountryNumbersByIdData, GetApiLocationServiceCountryNumbersByIdResponse, PutApiLocationServiceCountryNumbersByIdData, PutApiLocationServiceCountryNumbersByIdResponse, DeleteApiLocationServiceCountryNumbersByIdData, DeleteApiLocationServiceCountryNumbersByIdResponse, GetApiLocationServiceCountryTimesData, GetApiLocationServiceCountryTimesResponse, PostApiLocationServiceCountryTimesData, PostApiLocationServiceCountryTimesResponse, GetApiLocationServiceCountryTimesByIdData, GetApiLocationServiceCountryTimesByIdResponse, PutApiLocationServiceCountryTimesByIdData, PutApiLocationServiceCountryTimesByIdResponse, DeleteApiLocationServiceCountryTimesByIdData, DeleteApiLocationServiceCountryTimesByIdResponse, GetApiLocationServiceDistrictsData, GetApiLocationServiceDistrictsResponse, PostApiLocationServiceDistrictsData, PostApiLocationServiceDistrictsResponse, GetApiLocationServiceDistrictsGetListByCityByCityIdData, GetApiLocationServiceDistrictsGetListByCityByCityIdResponse, GetApiLocationServiceDistrictsByIdData, GetApiLocationServiceDistrictsByIdResponse, PutApiLocationServiceDistrictsByIdData, PutApiLocationServiceDistrictsByIdResponse, DeleteApiLocationServiceDistrictsByIdData, DeleteApiLocationServiceDistrictsByIdResponse, GetApiLocationServiceNeighborhoodsData, GetApiLocationServiceNeighborhoodsResponse, PostApiLocationServiceNeighborhoodsData, PostApiLocationServiceNeighborhoodsResponse, GetApiLocationServiceNeighborhoodsGetListByDistrictByDistrictIdData, GetApiLocationServiceNeighborhoodsGetListByDistrictByDistrictIdResponse, GetApiLocationServiceNeighborhoodsByIdData, GetApiLocationServiceNeighborhoodsByIdResponse, PutApiLocationServiceNeighborhoodsByIdData, PutApiLocationServiceNeighborhoodsByIdResponse, DeleteApiLocationServiceNeighborhoodsByIdData, DeleteApiLocationServiceNeighborhoodsByIdResponse, GetApiLocationServiceRegionsData, GetApiLocationServiceRegionsResponse, PostApiLocationServiceRegionsData, PostApiLocationServiceRegionsResponse, GetApiLocationServiceRegionsGetListByCountryByCountryIdData, GetApiLocationServiceRegionsGetListByCountryByCountryIdResponse, GetApiLocationServiceRegionsByIdData, GetApiLocationServiceRegionsByIdResponse, PutApiLocationServiceRegionsByIdData, PutApiLocationServiceRegionsByIdResponse, DeleteApiLocationServiceRegionsByIdData, DeleteApiLocationServiceRegionsByIdResponse, GetApiLocationServiceRegionsGetDefaultRegionIdByCountryIdData, GetApiLocationServiceRegionsGetDefaultRegionIdByCountryIdResponse, GetApiLocationServiceRegionalSettingsData, GetApiLocationServiceRegionalSettingsResponse, PostApiLocationServiceRegionalSettingsData, PostApiLocationServiceRegionalSettingsResponse, GetApiLocationServiceRegionalSettingsByIdData, GetApiLocationServiceRegionalSettingsByIdResponse, PutApiLocationServiceRegionalSettingsByIdData, PutApiLocationServiceRegionalSettingsByIdResponse, DeleteApiLocationServiceRegionalSettingsByIdData, DeleteApiLocationServiceRegionalSettingsByIdResponse } from './types.gen';
|
|
6
|
+
|
|
7
|
+
export class AbpApiDefinitionService {
|
|
8
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* @param data The data for the request.
|
|
12
|
+
* @param data.includeTypes
|
|
13
|
+
* @returns unknown Success
|
|
14
|
+
* @throws ApiError
|
|
15
|
+
*/
|
|
16
|
+
public getApiAbpApiDefinition(data: GetApiAbpApiDefinitionData = {}): CancelablePromise<GetApiAbpApiDefinitionResponse> {
|
|
17
|
+
return this.httpRequest.request({
|
|
18
|
+
method: 'GET',
|
|
19
|
+
url: '/api/abp/api-definition',
|
|
20
|
+
query: {
|
|
21
|
+
IncludeTypes: data.includeTypes
|
|
22
|
+
},
|
|
23
|
+
errors: {
|
|
24
|
+
400: 'Bad Request',
|
|
25
|
+
401: 'Unauthorized',
|
|
26
|
+
403: 'Forbidden',
|
|
27
|
+
404: 'Not Found',
|
|
28
|
+
500: 'Server Error',
|
|
29
|
+
501: 'Server Error'
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export class AbpApplicationConfigurationService {
|
|
37
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* @param data The data for the request.
|
|
41
|
+
* @param data.includeLocalizationResources
|
|
42
|
+
* @returns unknown Success
|
|
43
|
+
* @throws ApiError
|
|
44
|
+
*/
|
|
45
|
+
public getApiAbpApplicationConfiguration(data: GetApiAbpApplicationConfigurationData = {}): CancelablePromise<GetApiAbpApplicationConfigurationResponse> {
|
|
46
|
+
return this.httpRequest.request({
|
|
47
|
+
method: 'GET',
|
|
48
|
+
url: '/api/abp/application-configuration',
|
|
49
|
+
query: {
|
|
50
|
+
IncludeLocalizationResources: data.includeLocalizationResources
|
|
51
|
+
},
|
|
52
|
+
errors: {
|
|
53
|
+
400: 'Bad Request',
|
|
54
|
+
401: 'Unauthorized',
|
|
55
|
+
403: 'Forbidden',
|
|
56
|
+
404: 'Not Found',
|
|
57
|
+
500: 'Server Error',
|
|
58
|
+
501: 'Server Error'
|
|
59
|
+
}
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export class AbpApplicationLocalizationService {
|
|
66
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* @param data The data for the request.
|
|
70
|
+
* @param data.cultureName
|
|
71
|
+
* @param data.onlyDynamics
|
|
72
|
+
* @returns unknown Success
|
|
73
|
+
* @throws ApiError
|
|
74
|
+
*/
|
|
75
|
+
public getApiAbpApplicationLocalization(data: GetApiAbpApplicationLocalizationData): CancelablePromise<GetApiAbpApplicationLocalizationResponse> {
|
|
76
|
+
return this.httpRequest.request({
|
|
77
|
+
method: 'GET',
|
|
78
|
+
url: '/api/abp/application-localization',
|
|
79
|
+
query: {
|
|
80
|
+
CultureName: data.cultureName,
|
|
81
|
+
OnlyDynamics: data.onlyDynamics
|
|
82
|
+
},
|
|
83
|
+
errors: {
|
|
84
|
+
400: 'Bad Request',
|
|
85
|
+
401: 'Unauthorized',
|
|
86
|
+
403: 'Forbidden',
|
|
87
|
+
404: 'Not Found',
|
|
88
|
+
500: 'Server Error',
|
|
89
|
+
501: 'Server Error'
|
|
90
|
+
}
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export class AddressCommonDataService {
|
|
97
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* @param data The data for the request.
|
|
101
|
+
* @param data.id
|
|
102
|
+
* @returns unknown Success
|
|
103
|
+
* @throws ApiError
|
|
104
|
+
*/
|
|
105
|
+
public getApiLocationServiceAddressCommonDataById(data: GetApiLocationServiceAddressCommonDataByIdData): CancelablePromise<GetApiLocationServiceAddressCommonDataByIdResponse> {
|
|
106
|
+
return this.httpRequest.request({
|
|
107
|
+
method: 'GET',
|
|
108
|
+
url: '/api/location-service/address-common-data/{id}',
|
|
109
|
+
path: {
|
|
110
|
+
id: data.id
|
|
111
|
+
},
|
|
112
|
+
errors: {
|
|
113
|
+
400: 'Bad Request',
|
|
114
|
+
401: 'Unauthorized',
|
|
115
|
+
403: 'Forbidden',
|
|
116
|
+
404: 'Not Found',
|
|
117
|
+
500: 'Server Error',
|
|
118
|
+
501: 'Server Error'
|
|
119
|
+
}
|
|
120
|
+
});
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* @param data The data for the request.
|
|
125
|
+
* @param data.id
|
|
126
|
+
* @param data.requestBody
|
|
127
|
+
* @returns unknown Success
|
|
128
|
+
* @throws ApiError
|
|
129
|
+
*/
|
|
130
|
+
public putApiLocationServiceAddressCommonDataById(data: PutApiLocationServiceAddressCommonDataByIdData): CancelablePromise<PutApiLocationServiceAddressCommonDataByIdResponse> {
|
|
131
|
+
return this.httpRequest.request({
|
|
132
|
+
method: 'PUT',
|
|
133
|
+
url: '/api/location-service/address-common-data/{id}',
|
|
134
|
+
path: {
|
|
135
|
+
id: data.id
|
|
136
|
+
},
|
|
137
|
+
body: data.requestBody,
|
|
138
|
+
mediaType: 'application/json',
|
|
139
|
+
errors: {
|
|
140
|
+
400: 'Bad Request',
|
|
141
|
+
401: 'Unauthorized',
|
|
142
|
+
403: 'Forbidden',
|
|
143
|
+
404: 'Not Found',
|
|
144
|
+
500: 'Server Error',
|
|
145
|
+
501: 'Server Error'
|
|
146
|
+
}
|
|
147
|
+
});
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* @param data The data for the request.
|
|
152
|
+
* @param data.id
|
|
153
|
+
* @returns unknown Success
|
|
154
|
+
* @throws ApiError
|
|
155
|
+
*/
|
|
156
|
+
public deleteApiLocationServiceAddressCommonDataById(data: DeleteApiLocationServiceAddressCommonDataByIdData): CancelablePromise<DeleteApiLocationServiceAddressCommonDataByIdResponse> {
|
|
157
|
+
return this.httpRequest.request({
|
|
158
|
+
method: 'DELETE',
|
|
159
|
+
url: '/api/location-service/address-common-data/{id}',
|
|
160
|
+
path: {
|
|
161
|
+
id: data.id
|
|
162
|
+
},
|
|
163
|
+
errors: {
|
|
164
|
+
400: 'Bad Request',
|
|
165
|
+
401: 'Unauthorized',
|
|
166
|
+
403: 'Forbidden',
|
|
167
|
+
404: 'Not Found',
|
|
168
|
+
500: 'Server Error',
|
|
169
|
+
501: 'Server Error'
|
|
170
|
+
}
|
|
171
|
+
});
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* @param data The data for the request.
|
|
176
|
+
* @param data.sorting
|
|
177
|
+
* @param data.skipCount
|
|
178
|
+
* @param data.maxResultCount
|
|
179
|
+
* @returns unknown Success
|
|
180
|
+
* @throws ApiError
|
|
181
|
+
*/
|
|
182
|
+
public getApiLocationServiceAddressCommonData(data: GetApiLocationServiceAddressCommonDataData = {}): CancelablePromise<GetApiLocationServiceAddressCommonDataResponse> {
|
|
183
|
+
return this.httpRequest.request({
|
|
184
|
+
method: 'GET',
|
|
185
|
+
url: '/api/location-service/address-common-data',
|
|
186
|
+
query: {
|
|
187
|
+
Sorting: data.sorting,
|
|
188
|
+
SkipCount: data.skipCount,
|
|
189
|
+
MaxResultCount: data.maxResultCount
|
|
190
|
+
},
|
|
191
|
+
errors: {
|
|
192
|
+
400: 'Bad Request',
|
|
193
|
+
401: 'Unauthorized',
|
|
194
|
+
403: 'Forbidden',
|
|
195
|
+
404: 'Not Found',
|
|
196
|
+
500: 'Server Error',
|
|
197
|
+
501: 'Server Error'
|
|
198
|
+
}
|
|
199
|
+
});
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* @param data The data for the request.
|
|
204
|
+
* @param data.requestBody
|
|
205
|
+
* @returns unknown Success
|
|
206
|
+
* @throws ApiError
|
|
207
|
+
*/
|
|
208
|
+
public postApiLocationServiceAddressCommonData(data: PostApiLocationServiceAddressCommonDataData = {}): CancelablePromise<PostApiLocationServiceAddressCommonDataResponse> {
|
|
209
|
+
return this.httpRequest.request({
|
|
210
|
+
method: 'POST',
|
|
211
|
+
url: '/api/location-service/address-common-data',
|
|
212
|
+
body: data.requestBody,
|
|
213
|
+
mediaType: 'application/json',
|
|
214
|
+
errors: {
|
|
215
|
+
400: 'Bad Request',
|
|
216
|
+
401: 'Unauthorized',
|
|
217
|
+
403: 'Forbidden',
|
|
218
|
+
404: 'Not Found',
|
|
219
|
+
500: 'Server Error',
|
|
220
|
+
501: 'Server Error'
|
|
221
|
+
}
|
|
222
|
+
});
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
/**
|
|
226
|
+
* @param data The data for the request.
|
|
227
|
+
* @param data.ids
|
|
228
|
+
* @returns unknown Success
|
|
229
|
+
* @throws ApiError
|
|
230
|
+
*/
|
|
231
|
+
public getApiLocationServiceAddressCommonDataGetListWithIds(data: GetApiLocationServiceAddressCommonDataGetListWithIdsData = {}): CancelablePromise<GetApiLocationServiceAddressCommonDataGetListWithIdsResponse> {
|
|
232
|
+
return this.httpRequest.request({
|
|
233
|
+
method: 'GET',
|
|
234
|
+
url: '/api/location-service/address-common-data/get-list-with-ids',
|
|
235
|
+
query: {
|
|
236
|
+
ids: data.ids
|
|
237
|
+
},
|
|
238
|
+
errors: {
|
|
239
|
+
400: 'Bad Request',
|
|
240
|
+
401: 'Unauthorized',
|
|
241
|
+
403: 'Forbidden',
|
|
242
|
+
404: 'Not Found',
|
|
243
|
+
500: 'Server Error',
|
|
244
|
+
501: 'Server Error'
|
|
245
|
+
}
|
|
246
|
+
});
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
export class AddressCommonDataIntegrationService {
|
|
252
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
253
|
+
|
|
254
|
+
/**
|
|
255
|
+
* @param data The data for the request.
|
|
256
|
+
* @param data.id
|
|
257
|
+
* @returns unknown Success
|
|
258
|
+
* @throws ApiError
|
|
259
|
+
*/
|
|
260
|
+
public getIntegrationApiAddressCommonDataById(data: GetIntegrationApiAddressCommonDataByIdData): CancelablePromise<GetIntegrationApiAddressCommonDataByIdResponse> {
|
|
261
|
+
return this.httpRequest.request({
|
|
262
|
+
method: 'GET',
|
|
263
|
+
url: '/integration-api/address-common-data/{id}',
|
|
264
|
+
path: {
|
|
265
|
+
id: data.id
|
|
266
|
+
},
|
|
267
|
+
errors: {
|
|
268
|
+
400: 'Bad Request',
|
|
269
|
+
401: 'Unauthorized',
|
|
270
|
+
403: 'Forbidden',
|
|
271
|
+
404: 'Not Found',
|
|
272
|
+
500: 'Server Error',
|
|
273
|
+
501: 'Server Error'
|
|
274
|
+
}
|
|
275
|
+
});
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
/**
|
|
279
|
+
* @param data The data for the request.
|
|
280
|
+
* @param data.id
|
|
281
|
+
* @param data.requestBody
|
|
282
|
+
* @returns unknown Success
|
|
283
|
+
* @throws ApiError
|
|
284
|
+
*/
|
|
285
|
+
public putIntegrationApiAddressCommonDataById(data: PutIntegrationApiAddressCommonDataByIdData): CancelablePromise<PutIntegrationApiAddressCommonDataByIdResponse> {
|
|
286
|
+
return this.httpRequest.request({
|
|
287
|
+
method: 'PUT',
|
|
288
|
+
url: '/integration-api/address-common-data/{id}',
|
|
289
|
+
path: {
|
|
290
|
+
id: data.id
|
|
291
|
+
},
|
|
292
|
+
body: data.requestBody,
|
|
293
|
+
mediaType: 'application/json',
|
|
294
|
+
errors: {
|
|
295
|
+
400: 'Bad Request',
|
|
296
|
+
401: 'Unauthorized',
|
|
297
|
+
403: 'Forbidden',
|
|
298
|
+
404: 'Not Found',
|
|
299
|
+
500: 'Server Error',
|
|
300
|
+
501: 'Server Error'
|
|
301
|
+
}
|
|
302
|
+
});
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
/**
|
|
306
|
+
* @param data The data for the request.
|
|
307
|
+
* @param data.ids
|
|
308
|
+
* @returns unknown Success
|
|
309
|
+
* @throws ApiError
|
|
310
|
+
*/
|
|
311
|
+
public getIntegrationApiAddressCommonDataGetListWithIds(data: GetIntegrationApiAddressCommonDataGetListWithIdsData = {}): CancelablePromise<GetIntegrationApiAddressCommonDataGetListWithIdsResponse> {
|
|
312
|
+
return this.httpRequest.request({
|
|
313
|
+
method: 'GET',
|
|
314
|
+
url: '/integration-api/address-common-data/get-list-with-ids',
|
|
315
|
+
query: {
|
|
316
|
+
ids: data.ids
|
|
317
|
+
},
|
|
318
|
+
errors: {
|
|
319
|
+
400: 'Bad Request',
|
|
320
|
+
401: 'Unauthorized',
|
|
321
|
+
403: 'Forbidden',
|
|
322
|
+
404: 'Not Found',
|
|
323
|
+
500: 'Server Error',
|
|
324
|
+
501: 'Server Error'
|
|
325
|
+
}
|
|
326
|
+
});
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
/**
|
|
330
|
+
* @param data The data for the request.
|
|
331
|
+
* @param data.id
|
|
332
|
+
* @returns boolean Success
|
|
333
|
+
* @throws ApiError
|
|
334
|
+
*/
|
|
335
|
+
public getIntegrationApiAddressCommonDataByIdExist(data: GetIntegrationApiAddressCommonDataByIdExistData): CancelablePromise<GetIntegrationApiAddressCommonDataByIdExistResponse> {
|
|
336
|
+
return this.httpRequest.request({
|
|
337
|
+
method: 'GET',
|
|
338
|
+
url: '/integration-api/address-common-data/{id}/exist',
|
|
339
|
+
path: {
|
|
340
|
+
id: data.id
|
|
341
|
+
},
|
|
342
|
+
errors: {
|
|
343
|
+
400: 'Bad Request',
|
|
344
|
+
401: 'Unauthorized',
|
|
345
|
+
403: 'Forbidden',
|
|
346
|
+
404: 'Not Found',
|
|
347
|
+
500: 'Server Error',
|
|
348
|
+
501: 'Server Error'
|
|
349
|
+
}
|
|
350
|
+
});
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
/**
|
|
354
|
+
* @param data The data for the request.
|
|
355
|
+
* @param data.requestBody
|
|
356
|
+
* @returns boolean Success
|
|
357
|
+
* @throws ApiError
|
|
358
|
+
*/
|
|
359
|
+
public postIntegrationApiAddressCommonDataExist(data: PostIntegrationApiAddressCommonDataExistData = {}): CancelablePromise<PostIntegrationApiAddressCommonDataExistResponse> {
|
|
360
|
+
return this.httpRequest.request({
|
|
361
|
+
method: 'POST',
|
|
362
|
+
url: '/integration-api/address-common-data/exist',
|
|
363
|
+
body: data.requestBody,
|
|
364
|
+
mediaType: 'application/json',
|
|
365
|
+
errors: {
|
|
366
|
+
400: 'Bad Request',
|
|
367
|
+
401: 'Unauthorized',
|
|
368
|
+
403: 'Forbidden',
|
|
369
|
+
404: 'Not Found',
|
|
370
|
+
500: 'Server Error',
|
|
371
|
+
501: 'Server Error'
|
|
372
|
+
}
|
|
373
|
+
});
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* @param data The data for the request.
|
|
378
|
+
* @param data.requestBody
|
|
379
|
+
* @returns unknown Success
|
|
380
|
+
* @throws ApiError
|
|
381
|
+
*/
|
|
382
|
+
public postIntegrationApiAddressCommonData(data: PostIntegrationApiAddressCommonDataData = {}): CancelablePromise<PostIntegrationApiAddressCommonDataResponse> {
|
|
383
|
+
return this.httpRequest.request({
|
|
384
|
+
method: 'POST',
|
|
385
|
+
url: '/integration-api/address-common-data',
|
|
386
|
+
body: data.requestBody,
|
|
387
|
+
mediaType: 'application/json',
|
|
388
|
+
errors: {
|
|
389
|
+
400: 'Bad Request',
|
|
390
|
+
401: 'Unauthorized',
|
|
391
|
+
403: 'Forbidden',
|
|
392
|
+
404: 'Not Found',
|
|
393
|
+
500: 'Server Error',
|
|
394
|
+
501: 'Server Error'
|
|
395
|
+
}
|
|
396
|
+
});
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
export class CityService {
|
|
402
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
403
|
+
|
|
404
|
+
/**
|
|
405
|
+
* @param data The data for the request.
|
|
406
|
+
* @param data.sorting
|
|
407
|
+
* @param data.skipCount
|
|
408
|
+
* @param data.maxResultCount
|
|
409
|
+
* @returns unknown Success
|
|
410
|
+
* @throws ApiError
|
|
411
|
+
*/
|
|
412
|
+
public getApiLocationServiceCities(data: GetApiLocationServiceCitiesData = {}): CancelablePromise<GetApiLocationServiceCitiesResponse> {
|
|
413
|
+
return this.httpRequest.request({
|
|
414
|
+
method: 'GET',
|
|
415
|
+
url: '/api/location-service/cities',
|
|
416
|
+
query: {
|
|
417
|
+
Sorting: data.sorting,
|
|
418
|
+
SkipCount: data.skipCount,
|
|
419
|
+
MaxResultCount: data.maxResultCount
|
|
420
|
+
},
|
|
421
|
+
errors: {
|
|
422
|
+
400: 'Bad Request',
|
|
423
|
+
401: 'Unauthorized',
|
|
424
|
+
403: 'Forbidden',
|
|
425
|
+
404: 'Not Found',
|
|
426
|
+
500: 'Server Error',
|
|
427
|
+
501: 'Server Error'
|
|
428
|
+
}
|
|
429
|
+
});
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
/**
|
|
433
|
+
* @param data The data for the request.
|
|
434
|
+
* @param data.requestBody
|
|
435
|
+
* @returns unknown Success
|
|
436
|
+
* @throws ApiError
|
|
437
|
+
*/
|
|
438
|
+
public postApiLocationServiceCities(data: PostApiLocationServiceCitiesData = {}): CancelablePromise<PostApiLocationServiceCitiesResponse> {
|
|
439
|
+
return this.httpRequest.request({
|
|
440
|
+
method: 'POST',
|
|
441
|
+
url: '/api/location-service/cities',
|
|
442
|
+
body: data.requestBody,
|
|
443
|
+
mediaType: 'application/json',
|
|
444
|
+
errors: {
|
|
445
|
+
400: 'Bad Request',
|
|
446
|
+
401: 'Unauthorized',
|
|
447
|
+
403: 'Forbidden',
|
|
448
|
+
404: 'Not Found',
|
|
449
|
+
500: 'Server Error',
|
|
450
|
+
501: 'Server Error'
|
|
451
|
+
}
|
|
452
|
+
});
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
/**
|
|
456
|
+
* @param data The data for the request.
|
|
457
|
+
* @param data.regionId
|
|
458
|
+
* @returns unknown Success
|
|
459
|
+
* @throws ApiError
|
|
460
|
+
*/
|
|
461
|
+
public getApiLocationServiceCitiesGetListByRegionByRegionId(data: GetApiLocationServiceCitiesGetListByRegionByRegionIdData): CancelablePromise<GetApiLocationServiceCitiesGetListByRegionByRegionIdResponse> {
|
|
462
|
+
return this.httpRequest.request({
|
|
463
|
+
method: 'GET',
|
|
464
|
+
url: '/api/location-service/cities/get-list-by-region/{regionId}',
|
|
465
|
+
path: {
|
|
466
|
+
regionId: data.regionId
|
|
467
|
+
},
|
|
468
|
+
errors: {
|
|
469
|
+
400: 'Bad Request',
|
|
470
|
+
401: 'Unauthorized',
|
|
471
|
+
403: 'Forbidden',
|
|
472
|
+
404: 'Not Found',
|
|
473
|
+
500: 'Server Error',
|
|
474
|
+
501: 'Server Error'
|
|
475
|
+
}
|
|
476
|
+
});
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
/**
|
|
480
|
+
* @param data The data for the request.
|
|
481
|
+
* @param data.countryId
|
|
482
|
+
* @returns unknown Success
|
|
483
|
+
* @throws ApiError
|
|
484
|
+
*/
|
|
485
|
+
public getApiLocationServiceCitiesGetListByCountryByCountryId(data: GetApiLocationServiceCitiesGetListByCountryByCountryIdData): CancelablePromise<GetApiLocationServiceCitiesGetListByCountryByCountryIdResponse> {
|
|
486
|
+
return this.httpRequest.request({
|
|
487
|
+
method: 'GET',
|
|
488
|
+
url: '/api/location-service/cities/get-list-by-country/{countryId}',
|
|
489
|
+
path: {
|
|
490
|
+
countryId: data.countryId
|
|
491
|
+
},
|
|
492
|
+
errors: {
|
|
493
|
+
400: 'Bad Request',
|
|
494
|
+
401: 'Unauthorized',
|
|
495
|
+
403: 'Forbidden',
|
|
496
|
+
404: 'Not Found',
|
|
497
|
+
500: 'Server Error',
|
|
498
|
+
501: 'Server Error'
|
|
499
|
+
}
|
|
500
|
+
});
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
/**
|
|
504
|
+
* @param data The data for the request.
|
|
505
|
+
* @param data.id
|
|
506
|
+
* @returns unknown Success
|
|
507
|
+
* @throws ApiError
|
|
508
|
+
*/
|
|
509
|
+
public getApiLocationServiceCitiesById(data: GetApiLocationServiceCitiesByIdData): CancelablePromise<GetApiLocationServiceCitiesByIdResponse> {
|
|
510
|
+
return this.httpRequest.request({
|
|
511
|
+
method: 'GET',
|
|
512
|
+
url: '/api/location-service/cities/{id}',
|
|
513
|
+
path: {
|
|
514
|
+
id: data.id
|
|
515
|
+
},
|
|
516
|
+
errors: {
|
|
517
|
+
400: 'Bad Request',
|
|
518
|
+
401: 'Unauthorized',
|
|
519
|
+
403: 'Forbidden',
|
|
520
|
+
404: 'Not Found',
|
|
521
|
+
500: 'Server Error',
|
|
522
|
+
501: 'Server Error'
|
|
523
|
+
}
|
|
524
|
+
});
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
/**
|
|
528
|
+
* @param data The data for the request.
|
|
529
|
+
* @param data.id
|
|
530
|
+
* @param data.requestBody
|
|
531
|
+
* @returns unknown Success
|
|
532
|
+
* @throws ApiError
|
|
533
|
+
*/
|
|
534
|
+
public putApiLocationServiceCitiesById(data: PutApiLocationServiceCitiesByIdData): CancelablePromise<PutApiLocationServiceCitiesByIdResponse> {
|
|
535
|
+
return this.httpRequest.request({
|
|
536
|
+
method: 'PUT',
|
|
537
|
+
url: '/api/location-service/cities/{id}',
|
|
538
|
+
path: {
|
|
539
|
+
id: data.id
|
|
540
|
+
},
|
|
541
|
+
body: data.requestBody,
|
|
542
|
+
mediaType: 'application/json',
|
|
543
|
+
errors: {
|
|
544
|
+
400: 'Bad Request',
|
|
545
|
+
401: 'Unauthorized',
|
|
546
|
+
403: 'Forbidden',
|
|
547
|
+
404: 'Not Found',
|
|
548
|
+
500: 'Server Error',
|
|
549
|
+
501: 'Server Error'
|
|
550
|
+
}
|
|
551
|
+
});
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
/**
|
|
555
|
+
* @param data The data for the request.
|
|
556
|
+
* @param data.id
|
|
557
|
+
* @returns unknown Success
|
|
558
|
+
* @throws ApiError
|
|
559
|
+
*/
|
|
560
|
+
public deleteApiLocationServiceCitiesById(data: DeleteApiLocationServiceCitiesByIdData): CancelablePromise<DeleteApiLocationServiceCitiesByIdResponse> {
|
|
561
|
+
return this.httpRequest.request({
|
|
562
|
+
method: 'DELETE',
|
|
563
|
+
url: '/api/location-service/cities/{id}',
|
|
564
|
+
path: {
|
|
565
|
+
id: data.id
|
|
566
|
+
},
|
|
567
|
+
errors: {
|
|
568
|
+
400: 'Bad Request',
|
|
569
|
+
401: 'Unauthorized',
|
|
570
|
+
403: 'Forbidden',
|
|
571
|
+
404: 'Not Found',
|
|
572
|
+
500: 'Server Error',
|
|
573
|
+
501: 'Server Error'
|
|
574
|
+
}
|
|
575
|
+
});
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
export class CountryService {
|
|
581
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
582
|
+
|
|
583
|
+
/**
|
|
584
|
+
* @param data The data for the request.
|
|
585
|
+
* @param data.sorting
|
|
586
|
+
* @param data.skipCount
|
|
587
|
+
* @param data.maxResultCount
|
|
588
|
+
* @returns unknown Success
|
|
589
|
+
* @throws ApiError
|
|
590
|
+
*/
|
|
591
|
+
public getApiLocationServiceCountries(data: GetApiLocationServiceCountriesData = {}): CancelablePromise<GetApiLocationServiceCountriesResponse> {
|
|
592
|
+
return this.httpRequest.request({
|
|
593
|
+
method: 'GET',
|
|
594
|
+
url: '/api/location-service/countries',
|
|
595
|
+
query: {
|
|
596
|
+
Sorting: data.sorting,
|
|
597
|
+
SkipCount: data.skipCount,
|
|
598
|
+
MaxResultCount: data.maxResultCount
|
|
599
|
+
},
|
|
600
|
+
errors: {
|
|
601
|
+
400: 'Bad Request',
|
|
602
|
+
401: 'Unauthorized',
|
|
603
|
+
403: 'Forbidden',
|
|
604
|
+
404: 'Not Found',
|
|
605
|
+
500: 'Server Error',
|
|
606
|
+
501: 'Server Error'
|
|
607
|
+
}
|
|
608
|
+
});
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
/**
|
|
612
|
+
* @param data The data for the request.
|
|
613
|
+
* @param data.requestBody
|
|
614
|
+
* @returns unknown Success
|
|
615
|
+
* @throws ApiError
|
|
616
|
+
*/
|
|
617
|
+
public postApiLocationServiceCountries(data: PostApiLocationServiceCountriesData = {}): CancelablePromise<PostApiLocationServiceCountriesResponse> {
|
|
618
|
+
return this.httpRequest.request({
|
|
619
|
+
method: 'POST',
|
|
620
|
+
url: '/api/location-service/countries',
|
|
621
|
+
body: data.requestBody,
|
|
622
|
+
mediaType: 'application/json',
|
|
623
|
+
errors: {
|
|
624
|
+
400: 'Bad Request',
|
|
625
|
+
401: 'Unauthorized',
|
|
626
|
+
403: 'Forbidden',
|
|
627
|
+
404: 'Not Found',
|
|
628
|
+
500: 'Server Error',
|
|
629
|
+
501: 'Server Error'
|
|
630
|
+
}
|
|
631
|
+
});
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
/**
|
|
635
|
+
* @param data The data for the request.
|
|
636
|
+
* @param data.id
|
|
637
|
+
* @returns unknown Success
|
|
638
|
+
* @throws ApiError
|
|
639
|
+
*/
|
|
640
|
+
public getApiLocationServiceCountriesById(data: GetApiLocationServiceCountriesByIdData): CancelablePromise<GetApiLocationServiceCountriesByIdResponse> {
|
|
641
|
+
return this.httpRequest.request({
|
|
642
|
+
method: 'GET',
|
|
643
|
+
url: '/api/location-service/countries/{id}',
|
|
644
|
+
path: {
|
|
645
|
+
id: data.id
|
|
646
|
+
},
|
|
647
|
+
errors: {
|
|
648
|
+
400: 'Bad Request',
|
|
649
|
+
401: 'Unauthorized',
|
|
650
|
+
403: 'Forbidden',
|
|
651
|
+
404: 'Not Found',
|
|
652
|
+
500: 'Server Error',
|
|
653
|
+
501: 'Server Error'
|
|
654
|
+
}
|
|
655
|
+
});
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
/**
|
|
659
|
+
* @param data The data for the request.
|
|
660
|
+
* @param data.id
|
|
661
|
+
* @param data.requestBody
|
|
662
|
+
* @returns unknown Success
|
|
663
|
+
* @throws ApiError
|
|
664
|
+
*/
|
|
665
|
+
public putApiLocationServiceCountriesById(data: PutApiLocationServiceCountriesByIdData): CancelablePromise<PutApiLocationServiceCountriesByIdResponse> {
|
|
666
|
+
return this.httpRequest.request({
|
|
667
|
+
method: 'PUT',
|
|
668
|
+
url: '/api/location-service/countries/{id}',
|
|
669
|
+
path: {
|
|
670
|
+
id: data.id
|
|
671
|
+
},
|
|
672
|
+
body: data.requestBody,
|
|
673
|
+
mediaType: 'application/json',
|
|
674
|
+
errors: {
|
|
675
|
+
400: 'Bad Request',
|
|
676
|
+
401: 'Unauthorized',
|
|
677
|
+
403: 'Forbidden',
|
|
678
|
+
404: 'Not Found',
|
|
679
|
+
500: 'Server Error',
|
|
680
|
+
501: 'Server Error'
|
|
681
|
+
}
|
|
682
|
+
});
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
/**
|
|
686
|
+
* @param data The data for the request.
|
|
687
|
+
* @param data.id
|
|
688
|
+
* @returns unknown Success
|
|
689
|
+
* @throws ApiError
|
|
690
|
+
*/
|
|
691
|
+
public deleteApiLocationServiceCountriesById(data: DeleteApiLocationServiceCountriesByIdData): CancelablePromise<DeleteApiLocationServiceCountriesByIdResponse> {
|
|
692
|
+
return this.httpRequest.request({
|
|
693
|
+
method: 'DELETE',
|
|
694
|
+
url: '/api/location-service/countries/{id}',
|
|
695
|
+
path: {
|
|
696
|
+
id: data.id
|
|
697
|
+
},
|
|
698
|
+
errors: {
|
|
699
|
+
400: 'Bad Request',
|
|
700
|
+
401: 'Unauthorized',
|
|
701
|
+
403: 'Forbidden',
|
|
702
|
+
404: 'Not Found',
|
|
703
|
+
500: 'Server Error',
|
|
704
|
+
501: 'Server Error'
|
|
705
|
+
}
|
|
706
|
+
});
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
export class CountryCurrencyService {
|
|
712
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
713
|
+
|
|
714
|
+
/**
|
|
715
|
+
* @param data The data for the request.
|
|
716
|
+
* @param data.sorting
|
|
717
|
+
* @param data.skipCount
|
|
718
|
+
* @param data.maxResultCount
|
|
719
|
+
* @returns unknown Success
|
|
720
|
+
* @throws ApiError
|
|
721
|
+
*/
|
|
722
|
+
public getApiLocationServiceCountryCurrencies(data: GetApiLocationServiceCountryCurrenciesData = {}): CancelablePromise<GetApiLocationServiceCountryCurrenciesResponse> {
|
|
723
|
+
return this.httpRequest.request({
|
|
724
|
+
method: 'GET',
|
|
725
|
+
url: '/api/location-service/country-currencies',
|
|
726
|
+
query: {
|
|
727
|
+
Sorting: data.sorting,
|
|
728
|
+
SkipCount: data.skipCount,
|
|
729
|
+
MaxResultCount: data.maxResultCount
|
|
730
|
+
},
|
|
731
|
+
errors: {
|
|
732
|
+
400: 'Bad Request',
|
|
733
|
+
401: 'Unauthorized',
|
|
734
|
+
403: 'Forbidden',
|
|
735
|
+
404: 'Not Found',
|
|
736
|
+
500: 'Server Error',
|
|
737
|
+
501: 'Server Error'
|
|
738
|
+
}
|
|
739
|
+
});
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
/**
|
|
743
|
+
* @param data The data for the request.
|
|
744
|
+
* @param data.requestBody
|
|
745
|
+
* @returns unknown Success
|
|
746
|
+
* @throws ApiError
|
|
747
|
+
*/
|
|
748
|
+
public postApiLocationServiceCountryCurrencies(data: PostApiLocationServiceCountryCurrenciesData = {}): CancelablePromise<PostApiLocationServiceCountryCurrenciesResponse> {
|
|
749
|
+
return this.httpRequest.request({
|
|
750
|
+
method: 'POST',
|
|
751
|
+
url: '/api/location-service/country-currencies',
|
|
752
|
+
body: data.requestBody,
|
|
753
|
+
mediaType: 'application/json',
|
|
754
|
+
errors: {
|
|
755
|
+
400: 'Bad Request',
|
|
756
|
+
401: 'Unauthorized',
|
|
757
|
+
403: 'Forbidden',
|
|
758
|
+
404: 'Not Found',
|
|
759
|
+
500: 'Server Error',
|
|
760
|
+
501: 'Server Error'
|
|
761
|
+
}
|
|
762
|
+
});
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
/**
|
|
766
|
+
* @param data The data for the request.
|
|
767
|
+
* @param data.id
|
|
768
|
+
* @returns unknown Success
|
|
769
|
+
* @throws ApiError
|
|
770
|
+
*/
|
|
771
|
+
public getApiLocationServiceCountryCurrenciesById(data: GetApiLocationServiceCountryCurrenciesByIdData): CancelablePromise<GetApiLocationServiceCountryCurrenciesByIdResponse> {
|
|
772
|
+
return this.httpRequest.request({
|
|
773
|
+
method: 'GET',
|
|
774
|
+
url: '/api/location-service/country-currencies/{id}',
|
|
775
|
+
path: {
|
|
776
|
+
id: data.id
|
|
777
|
+
},
|
|
778
|
+
errors: {
|
|
779
|
+
400: 'Bad Request',
|
|
780
|
+
401: 'Unauthorized',
|
|
781
|
+
403: 'Forbidden',
|
|
782
|
+
404: 'Not Found',
|
|
783
|
+
500: 'Server Error',
|
|
784
|
+
501: 'Server Error'
|
|
785
|
+
}
|
|
786
|
+
});
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
/**
|
|
790
|
+
* @param data The data for the request.
|
|
791
|
+
* @param data.id
|
|
792
|
+
* @param data.requestBody
|
|
793
|
+
* @returns unknown Success
|
|
794
|
+
* @throws ApiError
|
|
795
|
+
*/
|
|
796
|
+
public putApiLocationServiceCountryCurrenciesById(data: PutApiLocationServiceCountryCurrenciesByIdData): CancelablePromise<PutApiLocationServiceCountryCurrenciesByIdResponse> {
|
|
797
|
+
return this.httpRequest.request({
|
|
798
|
+
method: 'PUT',
|
|
799
|
+
url: '/api/location-service/country-currencies/{id}',
|
|
800
|
+
path: {
|
|
801
|
+
id: data.id
|
|
802
|
+
},
|
|
803
|
+
body: data.requestBody,
|
|
804
|
+
mediaType: 'application/json',
|
|
805
|
+
errors: {
|
|
806
|
+
400: 'Bad Request',
|
|
807
|
+
401: 'Unauthorized',
|
|
808
|
+
403: 'Forbidden',
|
|
809
|
+
404: 'Not Found',
|
|
810
|
+
500: 'Server Error',
|
|
811
|
+
501: 'Server Error'
|
|
812
|
+
}
|
|
813
|
+
});
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
/**
|
|
817
|
+
* @param data The data for the request.
|
|
818
|
+
* @param data.id
|
|
819
|
+
* @returns unknown Success
|
|
820
|
+
* @throws ApiError
|
|
821
|
+
*/
|
|
822
|
+
public deleteApiLocationServiceCountryCurrenciesById(data: DeleteApiLocationServiceCountryCurrenciesByIdData): CancelablePromise<DeleteApiLocationServiceCountryCurrenciesByIdResponse> {
|
|
823
|
+
return this.httpRequest.request({
|
|
824
|
+
method: 'DELETE',
|
|
825
|
+
url: '/api/location-service/country-currencies/{id}',
|
|
826
|
+
path: {
|
|
827
|
+
id: data.id
|
|
828
|
+
},
|
|
829
|
+
errors: {
|
|
830
|
+
400: 'Bad Request',
|
|
831
|
+
401: 'Unauthorized',
|
|
832
|
+
403: 'Forbidden',
|
|
833
|
+
404: 'Not Found',
|
|
834
|
+
500: 'Server Error',
|
|
835
|
+
501: 'Server Error'
|
|
836
|
+
}
|
|
837
|
+
});
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
export class CountryDateService {
|
|
843
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
844
|
+
|
|
845
|
+
/**
|
|
846
|
+
* @param data The data for the request.
|
|
847
|
+
* @param data.sorting
|
|
848
|
+
* @param data.skipCount
|
|
849
|
+
* @param data.maxResultCount
|
|
850
|
+
* @returns unknown Success
|
|
851
|
+
* @throws ApiError
|
|
852
|
+
*/
|
|
853
|
+
public getApiLocationServiceCountryDates(data: GetApiLocationServiceCountryDatesData = {}): CancelablePromise<GetApiLocationServiceCountryDatesResponse> {
|
|
854
|
+
return this.httpRequest.request({
|
|
855
|
+
method: 'GET',
|
|
856
|
+
url: '/api/location-service/country-dates',
|
|
857
|
+
query: {
|
|
858
|
+
Sorting: data.sorting,
|
|
859
|
+
SkipCount: data.skipCount,
|
|
860
|
+
MaxResultCount: data.maxResultCount
|
|
861
|
+
},
|
|
862
|
+
errors: {
|
|
863
|
+
400: 'Bad Request',
|
|
864
|
+
401: 'Unauthorized',
|
|
865
|
+
403: 'Forbidden',
|
|
866
|
+
404: 'Not Found',
|
|
867
|
+
500: 'Server Error',
|
|
868
|
+
501: 'Server Error'
|
|
869
|
+
}
|
|
870
|
+
});
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
/**
|
|
874
|
+
* @param data The data for the request.
|
|
875
|
+
* @param data.requestBody
|
|
876
|
+
* @returns unknown Success
|
|
877
|
+
* @throws ApiError
|
|
878
|
+
*/
|
|
879
|
+
public postApiLocationServiceCountryDates(data: PostApiLocationServiceCountryDatesData = {}): CancelablePromise<PostApiLocationServiceCountryDatesResponse> {
|
|
880
|
+
return this.httpRequest.request({
|
|
881
|
+
method: 'POST',
|
|
882
|
+
url: '/api/location-service/country-dates',
|
|
883
|
+
body: data.requestBody,
|
|
884
|
+
mediaType: 'application/json',
|
|
885
|
+
errors: {
|
|
886
|
+
400: 'Bad Request',
|
|
887
|
+
401: 'Unauthorized',
|
|
888
|
+
403: 'Forbidden',
|
|
889
|
+
404: 'Not Found',
|
|
890
|
+
500: 'Server Error',
|
|
891
|
+
501: 'Server Error'
|
|
892
|
+
}
|
|
893
|
+
});
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
/**
|
|
897
|
+
* @param data The data for the request.
|
|
898
|
+
* @param data.id
|
|
899
|
+
* @returns unknown Success
|
|
900
|
+
* @throws ApiError
|
|
901
|
+
*/
|
|
902
|
+
public getApiLocationServiceCountryDatesById(data: GetApiLocationServiceCountryDatesByIdData): CancelablePromise<GetApiLocationServiceCountryDatesByIdResponse> {
|
|
903
|
+
return this.httpRequest.request({
|
|
904
|
+
method: 'GET',
|
|
905
|
+
url: '/api/location-service/country-dates/{id}',
|
|
906
|
+
path: {
|
|
907
|
+
id: data.id
|
|
908
|
+
},
|
|
909
|
+
errors: {
|
|
910
|
+
400: 'Bad Request',
|
|
911
|
+
401: 'Unauthorized',
|
|
912
|
+
403: 'Forbidden',
|
|
913
|
+
404: 'Not Found',
|
|
914
|
+
500: 'Server Error',
|
|
915
|
+
501: 'Server Error'
|
|
916
|
+
}
|
|
917
|
+
});
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
/**
|
|
921
|
+
* @param data The data for the request.
|
|
922
|
+
* @param data.id
|
|
923
|
+
* @param data.requestBody
|
|
924
|
+
* @returns unknown Success
|
|
925
|
+
* @throws ApiError
|
|
926
|
+
*/
|
|
927
|
+
public putApiLocationServiceCountryDatesById(data: PutApiLocationServiceCountryDatesByIdData): CancelablePromise<PutApiLocationServiceCountryDatesByIdResponse> {
|
|
928
|
+
return this.httpRequest.request({
|
|
929
|
+
method: 'PUT',
|
|
930
|
+
url: '/api/location-service/country-dates/{id}',
|
|
931
|
+
path: {
|
|
932
|
+
id: data.id
|
|
933
|
+
},
|
|
934
|
+
body: data.requestBody,
|
|
935
|
+
mediaType: 'application/json',
|
|
936
|
+
errors: {
|
|
937
|
+
400: 'Bad Request',
|
|
938
|
+
401: 'Unauthorized',
|
|
939
|
+
403: 'Forbidden',
|
|
940
|
+
404: 'Not Found',
|
|
941
|
+
500: 'Server Error',
|
|
942
|
+
501: 'Server Error'
|
|
943
|
+
}
|
|
944
|
+
});
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
/**
|
|
948
|
+
* @param data The data for the request.
|
|
949
|
+
* @param data.id
|
|
950
|
+
* @returns unknown Success
|
|
951
|
+
* @throws ApiError
|
|
952
|
+
*/
|
|
953
|
+
public deleteApiLocationServiceCountryDatesById(data: DeleteApiLocationServiceCountryDatesByIdData): CancelablePromise<DeleteApiLocationServiceCountryDatesByIdResponse> {
|
|
954
|
+
return this.httpRequest.request({
|
|
955
|
+
method: 'DELETE',
|
|
956
|
+
url: '/api/location-service/country-dates/{id}',
|
|
957
|
+
path: {
|
|
958
|
+
id: data.id
|
|
959
|
+
},
|
|
960
|
+
errors: {
|
|
961
|
+
400: 'Bad Request',
|
|
962
|
+
401: 'Unauthorized',
|
|
963
|
+
403: 'Forbidden',
|
|
964
|
+
404: 'Not Found',
|
|
965
|
+
500: 'Server Error',
|
|
966
|
+
501: 'Server Error'
|
|
967
|
+
}
|
|
968
|
+
});
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
export class CountryIntegrationService {
|
|
974
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
975
|
+
|
|
976
|
+
/**
|
|
977
|
+
* @param data The data for the request.
|
|
978
|
+
* @param data.countryId
|
|
979
|
+
* @returns string Success
|
|
980
|
+
* @throws ApiError
|
|
981
|
+
*/
|
|
982
|
+
public getIntegrationApiCountriesGetNameIfExistsByCountryId(data: GetIntegrationApiCountriesGetNameIfExistsByCountryIdData): CancelablePromise<GetIntegrationApiCountriesGetNameIfExistsByCountryIdResponse> {
|
|
983
|
+
return this.httpRequest.request({
|
|
984
|
+
method: 'GET',
|
|
985
|
+
url: '/integration-api/countries/get-name-if-exists/{countryId}',
|
|
986
|
+
path: {
|
|
987
|
+
countryId: data.countryId
|
|
988
|
+
},
|
|
989
|
+
errors: {
|
|
990
|
+
400: 'Bad Request',
|
|
991
|
+
401: 'Unauthorized',
|
|
992
|
+
403: 'Forbidden',
|
|
993
|
+
404: 'Not Found',
|
|
994
|
+
500: 'Server Error',
|
|
995
|
+
501: 'Server Error'
|
|
996
|
+
}
|
|
997
|
+
});
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
/**
|
|
1001
|
+
* @param data The data for the request.
|
|
1002
|
+
* @param data.codes
|
|
1003
|
+
* @returns unknown Success
|
|
1004
|
+
* @throws ApiError
|
|
1005
|
+
*/
|
|
1006
|
+
public getIntegrationApiCountriesNames(data: GetIntegrationApiCountriesNamesData = {}): CancelablePromise<GetIntegrationApiCountriesNamesResponse> {
|
|
1007
|
+
return this.httpRequest.request({
|
|
1008
|
+
method: 'GET',
|
|
1009
|
+
url: '/integration-api/countries/names',
|
|
1010
|
+
query: {
|
|
1011
|
+
codes: data.codes
|
|
1012
|
+
},
|
|
1013
|
+
errors: {
|
|
1014
|
+
400: 'Bad Request',
|
|
1015
|
+
401: 'Unauthorized',
|
|
1016
|
+
403: 'Forbidden',
|
|
1017
|
+
404: 'Not Found',
|
|
1018
|
+
500: 'Server Error',
|
|
1019
|
+
501: 'Server Error'
|
|
1020
|
+
}
|
|
1021
|
+
});
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
export class CountryNumberService {
|
|
1027
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
1028
|
+
|
|
1029
|
+
/**
|
|
1030
|
+
* @param data The data for the request.
|
|
1031
|
+
* @param data.sorting
|
|
1032
|
+
* @param data.skipCount
|
|
1033
|
+
* @param data.maxResultCount
|
|
1034
|
+
* @returns unknown Success
|
|
1035
|
+
* @throws ApiError
|
|
1036
|
+
*/
|
|
1037
|
+
public getApiLocationServiceCountryNumbers(data: GetApiLocationServiceCountryNumbersData = {}): CancelablePromise<GetApiLocationServiceCountryNumbersResponse> {
|
|
1038
|
+
return this.httpRequest.request({
|
|
1039
|
+
method: 'GET',
|
|
1040
|
+
url: '/api/location-service/country-numbers',
|
|
1041
|
+
query: {
|
|
1042
|
+
Sorting: data.sorting,
|
|
1043
|
+
SkipCount: data.skipCount,
|
|
1044
|
+
MaxResultCount: data.maxResultCount
|
|
1045
|
+
},
|
|
1046
|
+
errors: {
|
|
1047
|
+
400: 'Bad Request',
|
|
1048
|
+
401: 'Unauthorized',
|
|
1049
|
+
403: 'Forbidden',
|
|
1050
|
+
404: 'Not Found',
|
|
1051
|
+
500: 'Server Error',
|
|
1052
|
+
501: 'Server Error'
|
|
1053
|
+
}
|
|
1054
|
+
});
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
/**
|
|
1058
|
+
* @param data The data for the request.
|
|
1059
|
+
* @param data.requestBody
|
|
1060
|
+
* @returns unknown Success
|
|
1061
|
+
* @throws ApiError
|
|
1062
|
+
*/
|
|
1063
|
+
public postApiLocationServiceCountryNumbers(data: PostApiLocationServiceCountryNumbersData = {}): CancelablePromise<PostApiLocationServiceCountryNumbersResponse> {
|
|
1064
|
+
return this.httpRequest.request({
|
|
1065
|
+
method: 'POST',
|
|
1066
|
+
url: '/api/location-service/country-numbers',
|
|
1067
|
+
body: data.requestBody,
|
|
1068
|
+
mediaType: 'application/json',
|
|
1069
|
+
errors: {
|
|
1070
|
+
400: 'Bad Request',
|
|
1071
|
+
401: 'Unauthorized',
|
|
1072
|
+
403: 'Forbidden',
|
|
1073
|
+
404: 'Not Found',
|
|
1074
|
+
500: 'Server Error',
|
|
1075
|
+
501: 'Server Error'
|
|
1076
|
+
}
|
|
1077
|
+
});
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
/**
|
|
1081
|
+
* @param data The data for the request.
|
|
1082
|
+
* @param data.id
|
|
1083
|
+
* @returns unknown Success
|
|
1084
|
+
* @throws ApiError
|
|
1085
|
+
*/
|
|
1086
|
+
public getApiLocationServiceCountryNumbersById(data: GetApiLocationServiceCountryNumbersByIdData): CancelablePromise<GetApiLocationServiceCountryNumbersByIdResponse> {
|
|
1087
|
+
return this.httpRequest.request({
|
|
1088
|
+
method: 'GET',
|
|
1089
|
+
url: '/api/location-service/country-numbers/{id}',
|
|
1090
|
+
path: {
|
|
1091
|
+
id: data.id
|
|
1092
|
+
},
|
|
1093
|
+
errors: {
|
|
1094
|
+
400: 'Bad Request',
|
|
1095
|
+
401: 'Unauthorized',
|
|
1096
|
+
403: 'Forbidden',
|
|
1097
|
+
404: 'Not Found',
|
|
1098
|
+
500: 'Server Error',
|
|
1099
|
+
501: 'Server Error'
|
|
1100
|
+
}
|
|
1101
|
+
});
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
/**
|
|
1105
|
+
* @param data The data for the request.
|
|
1106
|
+
* @param data.id
|
|
1107
|
+
* @param data.requestBody
|
|
1108
|
+
* @returns unknown Success
|
|
1109
|
+
* @throws ApiError
|
|
1110
|
+
*/
|
|
1111
|
+
public putApiLocationServiceCountryNumbersById(data: PutApiLocationServiceCountryNumbersByIdData): CancelablePromise<PutApiLocationServiceCountryNumbersByIdResponse> {
|
|
1112
|
+
return this.httpRequest.request({
|
|
1113
|
+
method: 'PUT',
|
|
1114
|
+
url: '/api/location-service/country-numbers/{id}',
|
|
1115
|
+
path: {
|
|
1116
|
+
id: data.id
|
|
1117
|
+
},
|
|
1118
|
+
body: data.requestBody,
|
|
1119
|
+
mediaType: 'application/json',
|
|
1120
|
+
errors: {
|
|
1121
|
+
400: 'Bad Request',
|
|
1122
|
+
401: 'Unauthorized',
|
|
1123
|
+
403: 'Forbidden',
|
|
1124
|
+
404: 'Not Found',
|
|
1125
|
+
500: 'Server Error',
|
|
1126
|
+
501: 'Server Error'
|
|
1127
|
+
}
|
|
1128
|
+
});
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
/**
|
|
1132
|
+
* @param data The data for the request.
|
|
1133
|
+
* @param data.id
|
|
1134
|
+
* @returns unknown Success
|
|
1135
|
+
* @throws ApiError
|
|
1136
|
+
*/
|
|
1137
|
+
public deleteApiLocationServiceCountryNumbersById(data: DeleteApiLocationServiceCountryNumbersByIdData): CancelablePromise<DeleteApiLocationServiceCountryNumbersByIdResponse> {
|
|
1138
|
+
return this.httpRequest.request({
|
|
1139
|
+
method: 'DELETE',
|
|
1140
|
+
url: '/api/location-service/country-numbers/{id}',
|
|
1141
|
+
path: {
|
|
1142
|
+
id: data.id
|
|
1143
|
+
},
|
|
1144
|
+
errors: {
|
|
1145
|
+
400: 'Bad Request',
|
|
1146
|
+
401: 'Unauthorized',
|
|
1147
|
+
403: 'Forbidden',
|
|
1148
|
+
404: 'Not Found',
|
|
1149
|
+
500: 'Server Error',
|
|
1150
|
+
501: 'Server Error'
|
|
1151
|
+
}
|
|
1152
|
+
});
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
export class CountryTimeService {
|
|
1158
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
1159
|
+
|
|
1160
|
+
/**
|
|
1161
|
+
* @param data The data for the request.
|
|
1162
|
+
* @param data.sorting
|
|
1163
|
+
* @param data.skipCount
|
|
1164
|
+
* @param data.maxResultCount
|
|
1165
|
+
* @returns unknown Success
|
|
1166
|
+
* @throws ApiError
|
|
1167
|
+
*/
|
|
1168
|
+
public getApiLocationServiceCountryTimes(data: GetApiLocationServiceCountryTimesData = {}): CancelablePromise<GetApiLocationServiceCountryTimesResponse> {
|
|
1169
|
+
return this.httpRequest.request({
|
|
1170
|
+
method: 'GET',
|
|
1171
|
+
url: '/api/location-service/country-times',
|
|
1172
|
+
query: {
|
|
1173
|
+
Sorting: data.sorting,
|
|
1174
|
+
SkipCount: data.skipCount,
|
|
1175
|
+
MaxResultCount: data.maxResultCount
|
|
1176
|
+
},
|
|
1177
|
+
errors: {
|
|
1178
|
+
400: 'Bad Request',
|
|
1179
|
+
401: 'Unauthorized',
|
|
1180
|
+
403: 'Forbidden',
|
|
1181
|
+
404: 'Not Found',
|
|
1182
|
+
500: 'Server Error',
|
|
1183
|
+
501: 'Server Error'
|
|
1184
|
+
}
|
|
1185
|
+
});
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
/**
|
|
1189
|
+
* @param data The data for the request.
|
|
1190
|
+
* @param data.requestBody
|
|
1191
|
+
* @returns unknown Success
|
|
1192
|
+
* @throws ApiError
|
|
1193
|
+
*/
|
|
1194
|
+
public postApiLocationServiceCountryTimes(data: PostApiLocationServiceCountryTimesData = {}): CancelablePromise<PostApiLocationServiceCountryTimesResponse> {
|
|
1195
|
+
return this.httpRequest.request({
|
|
1196
|
+
method: 'POST',
|
|
1197
|
+
url: '/api/location-service/country-times',
|
|
1198
|
+
body: data.requestBody,
|
|
1199
|
+
mediaType: 'application/json',
|
|
1200
|
+
errors: {
|
|
1201
|
+
400: 'Bad Request',
|
|
1202
|
+
401: 'Unauthorized',
|
|
1203
|
+
403: 'Forbidden',
|
|
1204
|
+
404: 'Not Found',
|
|
1205
|
+
500: 'Server Error',
|
|
1206
|
+
501: 'Server Error'
|
|
1207
|
+
}
|
|
1208
|
+
});
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
/**
|
|
1212
|
+
* @param data The data for the request.
|
|
1213
|
+
* @param data.id
|
|
1214
|
+
* @returns unknown Success
|
|
1215
|
+
* @throws ApiError
|
|
1216
|
+
*/
|
|
1217
|
+
public getApiLocationServiceCountryTimesById(data: GetApiLocationServiceCountryTimesByIdData): CancelablePromise<GetApiLocationServiceCountryTimesByIdResponse> {
|
|
1218
|
+
return this.httpRequest.request({
|
|
1219
|
+
method: 'GET',
|
|
1220
|
+
url: '/api/location-service/country-times/{id}',
|
|
1221
|
+
path: {
|
|
1222
|
+
id: data.id
|
|
1223
|
+
},
|
|
1224
|
+
errors: {
|
|
1225
|
+
400: 'Bad Request',
|
|
1226
|
+
401: 'Unauthorized',
|
|
1227
|
+
403: 'Forbidden',
|
|
1228
|
+
404: 'Not Found',
|
|
1229
|
+
500: 'Server Error',
|
|
1230
|
+
501: 'Server Error'
|
|
1231
|
+
}
|
|
1232
|
+
});
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
/**
|
|
1236
|
+
* @param data The data for the request.
|
|
1237
|
+
* @param data.id
|
|
1238
|
+
* @param data.requestBody
|
|
1239
|
+
* @returns unknown Success
|
|
1240
|
+
* @throws ApiError
|
|
1241
|
+
*/
|
|
1242
|
+
public putApiLocationServiceCountryTimesById(data: PutApiLocationServiceCountryTimesByIdData): CancelablePromise<PutApiLocationServiceCountryTimesByIdResponse> {
|
|
1243
|
+
return this.httpRequest.request({
|
|
1244
|
+
method: 'PUT',
|
|
1245
|
+
url: '/api/location-service/country-times/{id}',
|
|
1246
|
+
path: {
|
|
1247
|
+
id: data.id
|
|
1248
|
+
},
|
|
1249
|
+
body: data.requestBody,
|
|
1250
|
+
mediaType: 'application/json',
|
|
1251
|
+
errors: {
|
|
1252
|
+
400: 'Bad Request',
|
|
1253
|
+
401: 'Unauthorized',
|
|
1254
|
+
403: 'Forbidden',
|
|
1255
|
+
404: 'Not Found',
|
|
1256
|
+
500: 'Server Error',
|
|
1257
|
+
501: 'Server Error'
|
|
1258
|
+
}
|
|
1259
|
+
});
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
/**
|
|
1263
|
+
* @param data The data for the request.
|
|
1264
|
+
* @param data.id
|
|
1265
|
+
* @returns unknown Success
|
|
1266
|
+
* @throws ApiError
|
|
1267
|
+
*/
|
|
1268
|
+
public deleteApiLocationServiceCountryTimesById(data: DeleteApiLocationServiceCountryTimesByIdData): CancelablePromise<DeleteApiLocationServiceCountryTimesByIdResponse> {
|
|
1269
|
+
return this.httpRequest.request({
|
|
1270
|
+
method: 'DELETE',
|
|
1271
|
+
url: '/api/location-service/country-times/{id}',
|
|
1272
|
+
path: {
|
|
1273
|
+
id: data.id
|
|
1274
|
+
},
|
|
1275
|
+
errors: {
|
|
1276
|
+
400: 'Bad Request',
|
|
1277
|
+
401: 'Unauthorized',
|
|
1278
|
+
403: 'Forbidden',
|
|
1279
|
+
404: 'Not Found',
|
|
1280
|
+
500: 'Server Error',
|
|
1281
|
+
501: 'Server Error'
|
|
1282
|
+
}
|
|
1283
|
+
});
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
export class DistrictService {
|
|
1289
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
1290
|
+
|
|
1291
|
+
/**
|
|
1292
|
+
* @param data The data for the request.
|
|
1293
|
+
* @param data.sorting
|
|
1294
|
+
* @param data.skipCount
|
|
1295
|
+
* @param data.maxResultCount
|
|
1296
|
+
* @returns unknown Success
|
|
1297
|
+
* @throws ApiError
|
|
1298
|
+
*/
|
|
1299
|
+
public getApiLocationServiceDistricts(data: GetApiLocationServiceDistrictsData = {}): CancelablePromise<GetApiLocationServiceDistrictsResponse> {
|
|
1300
|
+
return this.httpRequest.request({
|
|
1301
|
+
method: 'GET',
|
|
1302
|
+
url: '/api/location-service/districts',
|
|
1303
|
+
query: {
|
|
1304
|
+
Sorting: data.sorting,
|
|
1305
|
+
SkipCount: data.skipCount,
|
|
1306
|
+
MaxResultCount: data.maxResultCount
|
|
1307
|
+
},
|
|
1308
|
+
errors: {
|
|
1309
|
+
400: 'Bad Request',
|
|
1310
|
+
401: 'Unauthorized',
|
|
1311
|
+
403: 'Forbidden',
|
|
1312
|
+
404: 'Not Found',
|
|
1313
|
+
500: 'Server Error',
|
|
1314
|
+
501: 'Server Error'
|
|
1315
|
+
}
|
|
1316
|
+
});
|
|
1317
|
+
}
|
|
1318
|
+
|
|
1319
|
+
/**
|
|
1320
|
+
* @param data The data for the request.
|
|
1321
|
+
* @param data.requestBody
|
|
1322
|
+
* @returns unknown Success
|
|
1323
|
+
* @throws ApiError
|
|
1324
|
+
*/
|
|
1325
|
+
public postApiLocationServiceDistricts(data: PostApiLocationServiceDistrictsData = {}): CancelablePromise<PostApiLocationServiceDistrictsResponse> {
|
|
1326
|
+
return this.httpRequest.request({
|
|
1327
|
+
method: 'POST',
|
|
1328
|
+
url: '/api/location-service/districts',
|
|
1329
|
+
body: data.requestBody,
|
|
1330
|
+
mediaType: 'application/json',
|
|
1331
|
+
errors: {
|
|
1332
|
+
400: 'Bad Request',
|
|
1333
|
+
401: 'Unauthorized',
|
|
1334
|
+
403: 'Forbidden',
|
|
1335
|
+
404: 'Not Found',
|
|
1336
|
+
500: 'Server Error',
|
|
1337
|
+
501: 'Server Error'
|
|
1338
|
+
}
|
|
1339
|
+
});
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
/**
|
|
1343
|
+
* @param data The data for the request.
|
|
1344
|
+
* @param data.cityId
|
|
1345
|
+
* @returns unknown Success
|
|
1346
|
+
* @throws ApiError
|
|
1347
|
+
*/
|
|
1348
|
+
public getApiLocationServiceDistrictsGetListByCityByCityId(data: GetApiLocationServiceDistrictsGetListByCityByCityIdData): CancelablePromise<GetApiLocationServiceDistrictsGetListByCityByCityIdResponse> {
|
|
1349
|
+
return this.httpRequest.request({
|
|
1350
|
+
method: 'GET',
|
|
1351
|
+
url: '/api/location-service/districts/get-list-by-city/{cityId}',
|
|
1352
|
+
path: {
|
|
1353
|
+
cityId: data.cityId
|
|
1354
|
+
},
|
|
1355
|
+
errors: {
|
|
1356
|
+
400: 'Bad Request',
|
|
1357
|
+
401: 'Unauthorized',
|
|
1358
|
+
403: 'Forbidden',
|
|
1359
|
+
404: 'Not Found',
|
|
1360
|
+
500: 'Server Error',
|
|
1361
|
+
501: 'Server Error'
|
|
1362
|
+
}
|
|
1363
|
+
});
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
/**
|
|
1367
|
+
* @param data The data for the request.
|
|
1368
|
+
* @param data.id
|
|
1369
|
+
* @returns unknown Success
|
|
1370
|
+
* @throws ApiError
|
|
1371
|
+
*/
|
|
1372
|
+
public getApiLocationServiceDistrictsById(data: GetApiLocationServiceDistrictsByIdData): CancelablePromise<GetApiLocationServiceDistrictsByIdResponse> {
|
|
1373
|
+
return this.httpRequest.request({
|
|
1374
|
+
method: 'GET',
|
|
1375
|
+
url: '/api/location-service/districts/{id}',
|
|
1376
|
+
path: {
|
|
1377
|
+
id: data.id
|
|
1378
|
+
},
|
|
1379
|
+
errors: {
|
|
1380
|
+
400: 'Bad Request',
|
|
1381
|
+
401: 'Unauthorized',
|
|
1382
|
+
403: 'Forbidden',
|
|
1383
|
+
404: 'Not Found',
|
|
1384
|
+
500: 'Server Error',
|
|
1385
|
+
501: 'Server Error'
|
|
1386
|
+
}
|
|
1387
|
+
});
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
/**
|
|
1391
|
+
* @param data The data for the request.
|
|
1392
|
+
* @param data.id
|
|
1393
|
+
* @param data.requestBody
|
|
1394
|
+
* @returns unknown Success
|
|
1395
|
+
* @throws ApiError
|
|
1396
|
+
*/
|
|
1397
|
+
public putApiLocationServiceDistrictsById(data: PutApiLocationServiceDistrictsByIdData): CancelablePromise<PutApiLocationServiceDistrictsByIdResponse> {
|
|
1398
|
+
return this.httpRequest.request({
|
|
1399
|
+
method: 'PUT',
|
|
1400
|
+
url: '/api/location-service/districts/{id}',
|
|
1401
|
+
path: {
|
|
1402
|
+
id: data.id
|
|
1403
|
+
},
|
|
1404
|
+
body: data.requestBody,
|
|
1405
|
+
mediaType: 'application/json',
|
|
1406
|
+
errors: {
|
|
1407
|
+
400: 'Bad Request',
|
|
1408
|
+
401: 'Unauthorized',
|
|
1409
|
+
403: 'Forbidden',
|
|
1410
|
+
404: 'Not Found',
|
|
1411
|
+
500: 'Server Error',
|
|
1412
|
+
501: 'Server Error'
|
|
1413
|
+
}
|
|
1414
|
+
});
|
|
1415
|
+
}
|
|
1416
|
+
|
|
1417
|
+
/**
|
|
1418
|
+
* @param data The data for the request.
|
|
1419
|
+
* @param data.id
|
|
1420
|
+
* @returns unknown Success
|
|
1421
|
+
* @throws ApiError
|
|
1422
|
+
*/
|
|
1423
|
+
public deleteApiLocationServiceDistrictsById(data: DeleteApiLocationServiceDistrictsByIdData): CancelablePromise<DeleteApiLocationServiceDistrictsByIdResponse> {
|
|
1424
|
+
return this.httpRequest.request({
|
|
1425
|
+
method: 'DELETE',
|
|
1426
|
+
url: '/api/location-service/districts/{id}',
|
|
1427
|
+
path: {
|
|
1428
|
+
id: data.id
|
|
1429
|
+
},
|
|
1430
|
+
errors: {
|
|
1431
|
+
400: 'Bad Request',
|
|
1432
|
+
401: 'Unauthorized',
|
|
1433
|
+
403: 'Forbidden',
|
|
1434
|
+
404: 'Not Found',
|
|
1435
|
+
500: 'Server Error',
|
|
1436
|
+
501: 'Server Error'
|
|
1437
|
+
}
|
|
1438
|
+
});
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1443
|
+
export class NeighborhoodService {
|
|
1444
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
1445
|
+
|
|
1446
|
+
/**
|
|
1447
|
+
* @param data The data for the request.
|
|
1448
|
+
* @param data.sorting
|
|
1449
|
+
* @param data.skipCount
|
|
1450
|
+
* @param data.maxResultCount
|
|
1451
|
+
* @returns unknown Success
|
|
1452
|
+
* @throws ApiError
|
|
1453
|
+
*/
|
|
1454
|
+
public getApiLocationServiceNeighborhoods(data: GetApiLocationServiceNeighborhoodsData = {}): CancelablePromise<GetApiLocationServiceNeighborhoodsResponse> {
|
|
1455
|
+
return this.httpRequest.request({
|
|
1456
|
+
method: 'GET',
|
|
1457
|
+
url: '/api/location-service/neighborhoods',
|
|
1458
|
+
query: {
|
|
1459
|
+
Sorting: data.sorting,
|
|
1460
|
+
SkipCount: data.skipCount,
|
|
1461
|
+
MaxResultCount: data.maxResultCount
|
|
1462
|
+
},
|
|
1463
|
+
errors: {
|
|
1464
|
+
400: 'Bad Request',
|
|
1465
|
+
401: 'Unauthorized',
|
|
1466
|
+
403: 'Forbidden',
|
|
1467
|
+
404: 'Not Found',
|
|
1468
|
+
500: 'Server Error',
|
|
1469
|
+
501: 'Server Error'
|
|
1470
|
+
}
|
|
1471
|
+
});
|
|
1472
|
+
}
|
|
1473
|
+
|
|
1474
|
+
/**
|
|
1475
|
+
* @param data The data for the request.
|
|
1476
|
+
* @param data.requestBody
|
|
1477
|
+
* @returns unknown Success
|
|
1478
|
+
* @throws ApiError
|
|
1479
|
+
*/
|
|
1480
|
+
public postApiLocationServiceNeighborhoods(data: PostApiLocationServiceNeighborhoodsData = {}): CancelablePromise<PostApiLocationServiceNeighborhoodsResponse> {
|
|
1481
|
+
return this.httpRequest.request({
|
|
1482
|
+
method: 'POST',
|
|
1483
|
+
url: '/api/location-service/neighborhoods',
|
|
1484
|
+
body: data.requestBody,
|
|
1485
|
+
mediaType: 'application/json',
|
|
1486
|
+
errors: {
|
|
1487
|
+
400: 'Bad Request',
|
|
1488
|
+
401: 'Unauthorized',
|
|
1489
|
+
403: 'Forbidden',
|
|
1490
|
+
404: 'Not Found',
|
|
1491
|
+
500: 'Server Error',
|
|
1492
|
+
501: 'Server Error'
|
|
1493
|
+
}
|
|
1494
|
+
});
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
/**
|
|
1498
|
+
* @param data The data for the request.
|
|
1499
|
+
* @param data.districtId
|
|
1500
|
+
* @returns unknown Success
|
|
1501
|
+
* @throws ApiError
|
|
1502
|
+
*/
|
|
1503
|
+
public getApiLocationServiceNeighborhoodsGetListByDistrictByDistrictId(data: GetApiLocationServiceNeighborhoodsGetListByDistrictByDistrictIdData): CancelablePromise<GetApiLocationServiceNeighborhoodsGetListByDistrictByDistrictIdResponse> {
|
|
1504
|
+
return this.httpRequest.request({
|
|
1505
|
+
method: 'GET',
|
|
1506
|
+
url: '/api/location-service/neighborhoods/get-list-by-district/{districtId}',
|
|
1507
|
+
path: {
|
|
1508
|
+
districtId: data.districtId
|
|
1509
|
+
},
|
|
1510
|
+
errors: {
|
|
1511
|
+
400: 'Bad Request',
|
|
1512
|
+
401: 'Unauthorized',
|
|
1513
|
+
403: 'Forbidden',
|
|
1514
|
+
404: 'Not Found',
|
|
1515
|
+
500: 'Server Error',
|
|
1516
|
+
501: 'Server Error'
|
|
1517
|
+
}
|
|
1518
|
+
});
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
/**
|
|
1522
|
+
* @param data The data for the request.
|
|
1523
|
+
* @param data.id
|
|
1524
|
+
* @returns unknown Success
|
|
1525
|
+
* @throws ApiError
|
|
1526
|
+
*/
|
|
1527
|
+
public getApiLocationServiceNeighborhoodsById(data: GetApiLocationServiceNeighborhoodsByIdData): CancelablePromise<GetApiLocationServiceNeighborhoodsByIdResponse> {
|
|
1528
|
+
return this.httpRequest.request({
|
|
1529
|
+
method: 'GET',
|
|
1530
|
+
url: '/api/location-service/neighborhoods/{id}',
|
|
1531
|
+
path: {
|
|
1532
|
+
id: data.id
|
|
1533
|
+
},
|
|
1534
|
+
errors: {
|
|
1535
|
+
400: 'Bad Request',
|
|
1536
|
+
401: 'Unauthorized',
|
|
1537
|
+
403: 'Forbidden',
|
|
1538
|
+
404: 'Not Found',
|
|
1539
|
+
500: 'Server Error',
|
|
1540
|
+
501: 'Server Error'
|
|
1541
|
+
}
|
|
1542
|
+
});
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
/**
|
|
1546
|
+
* @param data The data for the request.
|
|
1547
|
+
* @param data.id
|
|
1548
|
+
* @param data.requestBody
|
|
1549
|
+
* @returns unknown Success
|
|
1550
|
+
* @throws ApiError
|
|
1551
|
+
*/
|
|
1552
|
+
public putApiLocationServiceNeighborhoodsById(data: PutApiLocationServiceNeighborhoodsByIdData): CancelablePromise<PutApiLocationServiceNeighborhoodsByIdResponse> {
|
|
1553
|
+
return this.httpRequest.request({
|
|
1554
|
+
method: 'PUT',
|
|
1555
|
+
url: '/api/location-service/neighborhoods/{id}',
|
|
1556
|
+
path: {
|
|
1557
|
+
id: data.id
|
|
1558
|
+
},
|
|
1559
|
+
body: data.requestBody,
|
|
1560
|
+
mediaType: 'application/json',
|
|
1561
|
+
errors: {
|
|
1562
|
+
400: 'Bad Request',
|
|
1563
|
+
401: 'Unauthorized',
|
|
1564
|
+
403: 'Forbidden',
|
|
1565
|
+
404: 'Not Found',
|
|
1566
|
+
500: 'Server Error',
|
|
1567
|
+
501: 'Server Error'
|
|
1568
|
+
}
|
|
1569
|
+
});
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1572
|
+
/**
|
|
1573
|
+
* @param data The data for the request.
|
|
1574
|
+
* @param data.id
|
|
1575
|
+
* @returns unknown Success
|
|
1576
|
+
* @throws ApiError
|
|
1577
|
+
*/
|
|
1578
|
+
public deleteApiLocationServiceNeighborhoodsById(data: DeleteApiLocationServiceNeighborhoodsByIdData): CancelablePromise<DeleteApiLocationServiceNeighborhoodsByIdResponse> {
|
|
1579
|
+
return this.httpRequest.request({
|
|
1580
|
+
method: 'DELETE',
|
|
1581
|
+
url: '/api/location-service/neighborhoods/{id}',
|
|
1582
|
+
path: {
|
|
1583
|
+
id: data.id
|
|
1584
|
+
},
|
|
1585
|
+
errors: {
|
|
1586
|
+
400: 'Bad Request',
|
|
1587
|
+
401: 'Unauthorized',
|
|
1588
|
+
403: 'Forbidden',
|
|
1589
|
+
404: 'Not Found',
|
|
1590
|
+
500: 'Server Error',
|
|
1591
|
+
501: 'Server Error'
|
|
1592
|
+
}
|
|
1593
|
+
});
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
}
|
|
1597
|
+
|
|
1598
|
+
export class RegionService {
|
|
1599
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
1600
|
+
|
|
1601
|
+
/**
|
|
1602
|
+
* @param data The data for the request.
|
|
1603
|
+
* @param data.sorting
|
|
1604
|
+
* @param data.skipCount
|
|
1605
|
+
* @param data.maxResultCount
|
|
1606
|
+
* @returns unknown Success
|
|
1607
|
+
* @throws ApiError
|
|
1608
|
+
*/
|
|
1609
|
+
public getApiLocationServiceRegions(data: GetApiLocationServiceRegionsData = {}): CancelablePromise<GetApiLocationServiceRegionsResponse> {
|
|
1610
|
+
return this.httpRequest.request({
|
|
1611
|
+
method: 'GET',
|
|
1612
|
+
url: '/api/location-service/regions',
|
|
1613
|
+
query: {
|
|
1614
|
+
Sorting: data.sorting,
|
|
1615
|
+
SkipCount: data.skipCount,
|
|
1616
|
+
MaxResultCount: data.maxResultCount
|
|
1617
|
+
},
|
|
1618
|
+
errors: {
|
|
1619
|
+
400: 'Bad Request',
|
|
1620
|
+
401: 'Unauthorized',
|
|
1621
|
+
403: 'Forbidden',
|
|
1622
|
+
404: 'Not Found',
|
|
1623
|
+
500: 'Server Error',
|
|
1624
|
+
501: 'Server Error'
|
|
1625
|
+
}
|
|
1626
|
+
});
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
/**
|
|
1630
|
+
* @param data The data for the request.
|
|
1631
|
+
* @param data.requestBody
|
|
1632
|
+
* @returns unknown Success
|
|
1633
|
+
* @throws ApiError
|
|
1634
|
+
*/
|
|
1635
|
+
public postApiLocationServiceRegions(data: PostApiLocationServiceRegionsData = {}): CancelablePromise<PostApiLocationServiceRegionsResponse> {
|
|
1636
|
+
return this.httpRequest.request({
|
|
1637
|
+
method: 'POST',
|
|
1638
|
+
url: '/api/location-service/regions',
|
|
1639
|
+
body: data.requestBody,
|
|
1640
|
+
mediaType: 'application/json',
|
|
1641
|
+
errors: {
|
|
1642
|
+
400: 'Bad Request',
|
|
1643
|
+
401: 'Unauthorized',
|
|
1644
|
+
403: 'Forbidden',
|
|
1645
|
+
404: 'Not Found',
|
|
1646
|
+
500: 'Server Error',
|
|
1647
|
+
501: 'Server Error'
|
|
1648
|
+
}
|
|
1649
|
+
});
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
/**
|
|
1653
|
+
* @param data The data for the request.
|
|
1654
|
+
* @param data.countryId
|
|
1655
|
+
* @returns unknown Success
|
|
1656
|
+
* @throws ApiError
|
|
1657
|
+
*/
|
|
1658
|
+
public getApiLocationServiceRegionsGetListByCountryByCountryId(data: GetApiLocationServiceRegionsGetListByCountryByCountryIdData): CancelablePromise<GetApiLocationServiceRegionsGetListByCountryByCountryIdResponse> {
|
|
1659
|
+
return this.httpRequest.request({
|
|
1660
|
+
method: 'GET',
|
|
1661
|
+
url: '/api/location-service/regions/get-list-by-country/{countryId}',
|
|
1662
|
+
path: {
|
|
1663
|
+
countryId: data.countryId
|
|
1664
|
+
},
|
|
1665
|
+
errors: {
|
|
1666
|
+
400: 'Bad Request',
|
|
1667
|
+
401: 'Unauthorized',
|
|
1668
|
+
403: 'Forbidden',
|
|
1669
|
+
404: 'Not Found',
|
|
1670
|
+
500: 'Server Error',
|
|
1671
|
+
501: 'Server Error'
|
|
1672
|
+
}
|
|
1673
|
+
});
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
/**
|
|
1677
|
+
* @param data The data for the request.
|
|
1678
|
+
* @param data.id
|
|
1679
|
+
* @returns unknown Success
|
|
1680
|
+
* @throws ApiError
|
|
1681
|
+
*/
|
|
1682
|
+
public getApiLocationServiceRegionsById(data: GetApiLocationServiceRegionsByIdData): CancelablePromise<GetApiLocationServiceRegionsByIdResponse> {
|
|
1683
|
+
return this.httpRequest.request({
|
|
1684
|
+
method: 'GET',
|
|
1685
|
+
url: '/api/location-service/regions/{id}',
|
|
1686
|
+
path: {
|
|
1687
|
+
id: data.id
|
|
1688
|
+
},
|
|
1689
|
+
errors: {
|
|
1690
|
+
400: 'Bad Request',
|
|
1691
|
+
401: 'Unauthorized',
|
|
1692
|
+
403: 'Forbidden',
|
|
1693
|
+
404: 'Not Found',
|
|
1694
|
+
500: 'Server Error',
|
|
1695
|
+
501: 'Server Error'
|
|
1696
|
+
}
|
|
1697
|
+
});
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
/**
|
|
1701
|
+
* @param data The data for the request.
|
|
1702
|
+
* @param data.id
|
|
1703
|
+
* @param data.requestBody
|
|
1704
|
+
* @returns unknown Success
|
|
1705
|
+
* @throws ApiError
|
|
1706
|
+
*/
|
|
1707
|
+
public putApiLocationServiceRegionsById(data: PutApiLocationServiceRegionsByIdData): CancelablePromise<PutApiLocationServiceRegionsByIdResponse> {
|
|
1708
|
+
return this.httpRequest.request({
|
|
1709
|
+
method: 'PUT',
|
|
1710
|
+
url: '/api/location-service/regions/{id}',
|
|
1711
|
+
path: {
|
|
1712
|
+
id: data.id
|
|
1713
|
+
},
|
|
1714
|
+
body: data.requestBody,
|
|
1715
|
+
mediaType: 'application/json',
|
|
1716
|
+
errors: {
|
|
1717
|
+
400: 'Bad Request',
|
|
1718
|
+
401: 'Unauthorized',
|
|
1719
|
+
403: 'Forbidden',
|
|
1720
|
+
404: 'Not Found',
|
|
1721
|
+
500: 'Server Error',
|
|
1722
|
+
501: 'Server Error'
|
|
1723
|
+
}
|
|
1724
|
+
});
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1727
|
+
/**
|
|
1728
|
+
* @param data The data for the request.
|
|
1729
|
+
* @param data.id
|
|
1730
|
+
* @returns unknown Success
|
|
1731
|
+
* @throws ApiError
|
|
1732
|
+
*/
|
|
1733
|
+
public deleteApiLocationServiceRegionsById(data: DeleteApiLocationServiceRegionsByIdData): CancelablePromise<DeleteApiLocationServiceRegionsByIdResponse> {
|
|
1734
|
+
return this.httpRequest.request({
|
|
1735
|
+
method: 'DELETE',
|
|
1736
|
+
url: '/api/location-service/regions/{id}',
|
|
1737
|
+
path: {
|
|
1738
|
+
id: data.id
|
|
1739
|
+
},
|
|
1740
|
+
errors: {
|
|
1741
|
+
400: 'Bad Request',
|
|
1742
|
+
401: 'Unauthorized',
|
|
1743
|
+
403: 'Forbidden',
|
|
1744
|
+
404: 'Not Found',
|
|
1745
|
+
500: 'Server Error',
|
|
1746
|
+
501: 'Server Error'
|
|
1747
|
+
}
|
|
1748
|
+
});
|
|
1749
|
+
}
|
|
1750
|
+
|
|
1751
|
+
/**
|
|
1752
|
+
* @param data The data for the request.
|
|
1753
|
+
* @param data.countryId
|
|
1754
|
+
* @returns string Success
|
|
1755
|
+
* @throws ApiError
|
|
1756
|
+
*/
|
|
1757
|
+
public getApiLocationServiceRegionsGetDefaultRegionIdByCountryId(data: GetApiLocationServiceRegionsGetDefaultRegionIdByCountryIdData): CancelablePromise<GetApiLocationServiceRegionsGetDefaultRegionIdByCountryIdResponse> {
|
|
1758
|
+
return this.httpRequest.request({
|
|
1759
|
+
method: 'GET',
|
|
1760
|
+
url: '/api/location-service/regions/get-default-regionId/{countryId}',
|
|
1761
|
+
path: {
|
|
1762
|
+
countryId: data.countryId
|
|
1763
|
+
},
|
|
1764
|
+
errors: {
|
|
1765
|
+
400: 'Bad Request',
|
|
1766
|
+
401: 'Unauthorized',
|
|
1767
|
+
403: 'Forbidden',
|
|
1768
|
+
404: 'Not Found',
|
|
1769
|
+
500: 'Server Error',
|
|
1770
|
+
501: 'Server Error'
|
|
1771
|
+
}
|
|
1772
|
+
});
|
|
1773
|
+
}
|
|
1774
|
+
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
export class RegionalSettingService {
|
|
1778
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
1779
|
+
|
|
1780
|
+
/**
|
|
1781
|
+
* @param data The data for the request.
|
|
1782
|
+
* @param data.sorting
|
|
1783
|
+
* @param data.skipCount
|
|
1784
|
+
* @param data.maxResultCount
|
|
1785
|
+
* @returns unknown Success
|
|
1786
|
+
* @throws ApiError
|
|
1787
|
+
*/
|
|
1788
|
+
public getApiLocationServiceRegionalSettings(data: GetApiLocationServiceRegionalSettingsData = {}): CancelablePromise<GetApiLocationServiceRegionalSettingsResponse> {
|
|
1789
|
+
return this.httpRequest.request({
|
|
1790
|
+
method: 'GET',
|
|
1791
|
+
url: '/api/location-service/regionalSettings',
|
|
1792
|
+
query: {
|
|
1793
|
+
Sorting: data.sorting,
|
|
1794
|
+
SkipCount: data.skipCount,
|
|
1795
|
+
MaxResultCount: data.maxResultCount
|
|
1796
|
+
},
|
|
1797
|
+
errors: {
|
|
1798
|
+
400: 'Bad Request',
|
|
1799
|
+
401: 'Unauthorized',
|
|
1800
|
+
403: 'Forbidden',
|
|
1801
|
+
404: 'Not Found',
|
|
1802
|
+
500: 'Server Error',
|
|
1803
|
+
501: 'Server Error'
|
|
1804
|
+
}
|
|
1805
|
+
});
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
/**
|
|
1809
|
+
* @param data The data for the request.
|
|
1810
|
+
* @param data.requestBody
|
|
1811
|
+
* @returns unknown Success
|
|
1812
|
+
* @throws ApiError
|
|
1813
|
+
*/
|
|
1814
|
+
public postApiLocationServiceRegionalSettings(data: PostApiLocationServiceRegionalSettingsData = {}): CancelablePromise<PostApiLocationServiceRegionalSettingsResponse> {
|
|
1815
|
+
return this.httpRequest.request({
|
|
1816
|
+
method: 'POST',
|
|
1817
|
+
url: '/api/location-service/regionalSettings',
|
|
1818
|
+
body: data.requestBody,
|
|
1819
|
+
mediaType: 'application/json',
|
|
1820
|
+
errors: {
|
|
1821
|
+
400: 'Bad Request',
|
|
1822
|
+
401: 'Unauthorized',
|
|
1823
|
+
403: 'Forbidden',
|
|
1824
|
+
404: 'Not Found',
|
|
1825
|
+
500: 'Server Error',
|
|
1826
|
+
501: 'Server Error'
|
|
1827
|
+
}
|
|
1828
|
+
});
|
|
1829
|
+
}
|
|
1830
|
+
|
|
1831
|
+
/**
|
|
1832
|
+
* @param data The data for the request.
|
|
1833
|
+
* @param data.id
|
|
1834
|
+
* @returns unknown Success
|
|
1835
|
+
* @throws ApiError
|
|
1836
|
+
*/
|
|
1837
|
+
public getApiLocationServiceRegionalSettingsById(data: GetApiLocationServiceRegionalSettingsByIdData): CancelablePromise<GetApiLocationServiceRegionalSettingsByIdResponse> {
|
|
1838
|
+
return this.httpRequest.request({
|
|
1839
|
+
method: 'GET',
|
|
1840
|
+
url: '/api/location-service/regionalSettings/{id}',
|
|
1841
|
+
path: {
|
|
1842
|
+
id: data.id
|
|
1843
|
+
},
|
|
1844
|
+
errors: {
|
|
1845
|
+
400: 'Bad Request',
|
|
1846
|
+
401: 'Unauthorized',
|
|
1847
|
+
403: 'Forbidden',
|
|
1848
|
+
404: 'Not Found',
|
|
1849
|
+
500: 'Server Error',
|
|
1850
|
+
501: 'Server Error'
|
|
1851
|
+
}
|
|
1852
|
+
});
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
/**
|
|
1856
|
+
* @param data The data for the request.
|
|
1857
|
+
* @param data.id
|
|
1858
|
+
* @param data.requestBody
|
|
1859
|
+
* @returns unknown Success
|
|
1860
|
+
* @throws ApiError
|
|
1861
|
+
*/
|
|
1862
|
+
public putApiLocationServiceRegionalSettingsById(data: PutApiLocationServiceRegionalSettingsByIdData): CancelablePromise<PutApiLocationServiceRegionalSettingsByIdResponse> {
|
|
1863
|
+
return this.httpRequest.request({
|
|
1864
|
+
method: 'PUT',
|
|
1865
|
+
url: '/api/location-service/regionalSettings/{id}',
|
|
1866
|
+
path: {
|
|
1867
|
+
id: data.id
|
|
1868
|
+
},
|
|
1869
|
+
body: data.requestBody,
|
|
1870
|
+
mediaType: 'application/json',
|
|
1871
|
+
errors: {
|
|
1872
|
+
400: 'Bad Request',
|
|
1873
|
+
401: 'Unauthorized',
|
|
1874
|
+
403: 'Forbidden',
|
|
1875
|
+
404: 'Not Found',
|
|
1876
|
+
500: 'Server Error',
|
|
1877
|
+
501: 'Server Error'
|
|
1878
|
+
}
|
|
1879
|
+
});
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
/**
|
|
1883
|
+
* @param data The data for the request.
|
|
1884
|
+
* @param data.id
|
|
1885
|
+
* @returns unknown Success
|
|
1886
|
+
* @throws ApiError
|
|
1887
|
+
*/
|
|
1888
|
+
public deleteApiLocationServiceRegionalSettingsById(data: DeleteApiLocationServiceRegionalSettingsByIdData): CancelablePromise<DeleteApiLocationServiceRegionalSettingsByIdResponse> {
|
|
1889
|
+
return this.httpRequest.request({
|
|
1890
|
+
method: 'DELETE',
|
|
1891
|
+
url: '/api/location-service/regionalSettings/{id}',
|
|
1892
|
+
path: {
|
|
1893
|
+
id: data.id
|
|
1894
|
+
},
|
|
1895
|
+
errors: {
|
|
1896
|
+
400: 'Bad Request',
|
|
1897
|
+
401: 'Unauthorized',
|
|
1898
|
+
403: 'Forbidden',
|
|
1899
|
+
404: 'Not Found',
|
|
1900
|
+
500: 'Server Error',
|
|
1901
|
+
501: 'Server Error'
|
|
1902
|
+
}
|
|
1903
|
+
});
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1798
1906
|
}
|