@ayasofyazilim/saas 0.0.38 → 0.0.39

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.
Files changed (65) hide show
  1. package/AccountService/core/ApiRequestOptions.ts +12 -12
  2. package/AccountService/core/BaseHttpRequest.ts +9 -9
  3. package/AccountService/core/FetchHttpRequest.ts +21 -21
  4. package/AccountService/core/OpenAPI.ts +55 -55
  5. package/AccountService/core/request.ts +340 -340
  6. package/AdministrationService/core/ApiRequestOptions.ts +12 -12
  7. package/AdministrationService/core/BaseHttpRequest.ts +9 -9
  8. package/AdministrationService/core/FetchHttpRequest.ts +21 -21
  9. package/AdministrationService/core/OpenAPI.ts +55 -55
  10. package/AdministrationService/core/request.ts +340 -340
  11. package/BackerService/core/ApiRequestOptions.ts +12 -12
  12. package/BackerService/core/BaseHttpRequest.ts +9 -9
  13. package/BackerService/core/FetchHttpRequest.ts +21 -21
  14. package/BackerService/core/OpenAPI.ts +55 -55
  15. package/BackerService/core/request.ts +340 -340
  16. package/CRMService/schemas.gen.ts +15920 -15920
  17. package/CRMService/services.gen.ts +2052 -2052
  18. package/CRMService/types.gen.ts +4106 -4106
  19. package/ContractService/schemas.gen.ts +258 -157
  20. package/ContractService/services.gen.ts +139 -139
  21. package/ContractService/types.gen.ts +231 -217
  22. package/FundraiserService/core/ApiRequestOptions.ts +12 -12
  23. package/FundraiserService/core/BaseHttpRequest.ts +9 -9
  24. package/FundraiserService/core/FetchHttpRequest.ts +21 -21
  25. package/FundraiserService/core/OpenAPI.ts +55 -55
  26. package/FundraiserService/core/request.ts +340 -340
  27. package/IdentityService/core/ApiRequestOptions.ts +12 -12
  28. package/IdentityService/core/BaseHttpRequest.ts +9 -9
  29. package/IdentityService/core/FetchHttpRequest.ts +21 -21
  30. package/IdentityService/core/OpenAPI.ts +55 -55
  31. package/IdentityService/core/request.ts +340 -340
  32. package/MerchantService/core/ApiRequestOptions.ts +12 -12
  33. package/MerchantService/core/BaseHttpRequest.ts +9 -9
  34. package/MerchantService/core/FetchHttpRequest.ts +21 -21
  35. package/MerchantService/core/OpenAPI.ts +55 -55
  36. package/MerchantService/core/request.ts +340 -340
  37. package/MerchantService/schemas.gen.ts +14764 -14764
  38. package/MerchantService/services.gen.ts +1602 -1602
  39. package/ProjectService/core/ApiRequestOptions.ts +12 -12
  40. package/ProjectService/core/BaseHttpRequest.ts +9 -9
  41. package/ProjectService/core/FetchHttpRequest.ts +21 -21
  42. package/ProjectService/core/OpenAPI.ts +55 -55
  43. package/ProjectService/core/request.ts +340 -340
  44. package/ProjectService.json +2937 -2937
  45. package/SaasService/core/ApiRequestOptions.ts +12 -12
  46. package/SaasService/core/BaseHttpRequest.ts +9 -9
  47. package/SaasService/core/FetchHttpRequest.ts +21 -21
  48. package/SaasService/core/OpenAPI.ts +55 -55
  49. package/SaasService/core/request.ts +340 -340
  50. package/TravellerService/TravellerServiceClient.ts +56 -56
  51. package/TravellerService/core/ApiError.ts +20 -20
  52. package/TravellerService/core/ApiRequestOptions.ts +12 -12
  53. package/TravellerService/core/ApiResult.ts +6 -6
  54. package/TravellerService/core/BaseHttpRequest.ts +9 -9
  55. package/TravellerService/core/CancelablePromise.ts +125 -125
  56. package/TravellerService/core/FetchHttpRequest.ts +21 -21
  57. package/TravellerService/core/OpenAPI.ts +55 -55
  58. package/TravellerService/core/request.ts +340 -340
  59. package/TravellerService/index.ts +8 -8
  60. package/TravellerService/schemas.gen.ts +6204 -6204
  61. package/TravellerService/services.gen.ts +695 -695
  62. package/TravellerService/types.gen.ts +1808 -1808
  63. package/generator.mjs +13 -6
  64. package/package.json +1 -1
  65. package/swagger.json +4794 -4794
@@ -1,1809 +1,1809 @@
1
- // This file is auto-generated by @hey-api/openapi-ts
2
-
3
- export type UniRefund_TravellerService_AddressTypes_AddressTypeDto = {
4
- id?: string;
5
- creationTime?: string;
6
- creatorId?: string | null;
7
- lastModificationTime?: string | null;
8
- lastModifierId?: string | null;
9
- isDeleted?: boolean;
10
- deleterId?: string | null;
11
- deletionTime?: string | null;
12
- addressLine?: string | null;
13
- city?: string | null;
14
- terriority?: string | null;
15
- postalCode?: string | null;
16
- country?: string | null;
17
- fullAddress?: string | null;
18
- typeCode?: UniRefund_TravellerService_Enums_AddressTypeCode;
19
- primaryFlag?: boolean;
20
- contactInformationTypeId?: string;
21
- };
22
-
23
- export type UniRefund_TravellerService_AddressTypes_CreateAddressTypeDto = {
24
- readonly extraProperties?: {
25
- [key: string]: unknown;
26
- } | null;
27
- addressLine: string;
28
- city: string;
29
- terriority: string;
30
- postalCode: string;
31
- country: string;
32
- fullAddress: string;
33
- primaryFlag: boolean;
34
- typeCode: UniRefund_TravellerService_Enums_AddressTypeCode;
35
- contactInformationTypeId?: string;
36
- };
37
-
38
- export type UniRefund_TravellerService_AddressTypes_CreateAddressTypeWithComponentsDto = {
39
- readonly extraProperties?: {
40
- [key: string]: unknown;
41
- } | null;
42
- addressLine: string;
43
- city: string;
44
- terriority: string;
45
- postalCode: string;
46
- country: string;
47
- fullAddress: string;
48
- primaryFlag: boolean;
49
- typeCode: UniRefund_TravellerService_Enums_AddressTypeCode;
50
- };
51
-
52
- export type UniRefund_TravellerService_AddressTypes_UpdateAddressTypeDto = {
53
- readonly extraProperties?: {
54
- [key: string]: unknown;
55
- } | null;
56
- id: string;
57
- addressLine: string;
58
- city: string;
59
- terriority: string;
60
- postalCode: string;
61
- country: string;
62
- fullAddress: string;
63
- primaryFlag: boolean;
64
- typeCode: UniRefund_TravellerService_Enums_AddressTypeCode;
65
- };
66
-
67
- export type UniRefund_TravellerService_ContactInformationTypes_CreateContactInformationTypeDto = {
68
- readonly extraProperties?: {
69
- [key: string]: unknown;
70
- } | null;
71
- telephones?: Array<UniRefund_TravellerService_TelephoneTypes_CreateTelephoneTypeWithComponentsDto> | null;
72
- addresses?: Array<UniRefund_TravellerService_AddressTypes_CreateAddressTypeWithComponentsDto> | null;
73
- emails?: Array<UniRefund_TravellerService_EmailCommonDatas_CreateEmailCommonDataWithComponentsDto> | null;
74
- };
75
-
76
- export type UniRefund_TravellerService_EmailCommonDatas_CreateEmailCommonDataDto = {
77
- readonly extraProperties?: {
78
- [key: string]: unknown;
79
- } | null;
80
- emailAddress: string;
81
- primaryFlag: boolean;
82
- typeCode: UniRefund_TravellerService_Enums_EmailTypeCode;
83
- contactInformationTypeId: string;
84
- };
85
-
86
- export type UniRefund_TravellerService_EmailCommonDatas_CreateEmailCommonDataWithComponentsDto = {
87
- readonly extraProperties?: {
88
- [key: string]: unknown;
89
- } | null;
90
- emailAddress: string;
91
- primaryFlag: boolean;
92
- typeCode: UniRefund_TravellerService_Enums_EmailTypeCode;
93
- };
94
-
95
- export type UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto = {
96
- id?: string;
97
- creationTime?: string;
98
- creatorId?: string | null;
99
- lastModificationTime?: string | null;
100
- lastModifierId?: string | null;
101
- isDeleted?: boolean;
102
- deleterId?: string | null;
103
- deletionTime?: string | null;
104
- primaryFlag?: boolean;
105
- typeCode?: UniRefund_TravellerService_Enums_EmailTypeCode;
106
- emailAddress?: string | null;
107
- contactInformationTypeId?: string;
108
- };
109
-
110
- export type UniRefund_TravellerService_EmailCommonDatas_UpdateEmailCommonDataDto = {
111
- readonly extraProperties?: {
112
- [key: string]: unknown;
113
- } | null;
114
- id: string;
115
- emailAddress: string;
116
- primaryFlag: boolean;
117
- typeCode: UniRefund_TravellerService_Enums_EmailTypeCode;
118
- };
119
-
120
- export type UniRefund_TravellerService_EntityInformationTypes_CreateEntityInformationTypeDto = {
121
- readonly extraProperties?: {
122
- [key: string]: unknown;
123
- } | null;
124
- individuals?: Array<UniRefund_TravellerService_Individuals_CreateIndividualDto> | null;
125
- };
126
-
127
- export type UniRefund_TravellerService_Enums_AddressTypeCode = 0 | 1;
128
-
129
- export type UniRefund_TravellerService_Enums_AffiliationTypeCode = 0 | 1 | 2;
130
-
131
- export type UniRefund_TravellerService_Enums_EmailTypeCode = 0 | 1;
132
-
133
- export type UniRefund_TravellerService_Enums_EntityPartyTypeCode = 0;
134
-
135
- export type UniRefund_TravellerService_Enums_GenderTypeCode = 0 | 1;
136
-
137
- export type UniRefund_TravellerService_Enums_TelephoneTypeCode = 0 | 1 | 2 | 3;
138
-
139
- export type UniRefund_TravellerService_Individuals_CreateIndividualDto = {
140
- readonly extraProperties?: {
141
- [key: string]: unknown;
142
- } | null;
143
- name?: UniRefund_TravellerService_NameCommonDatas_CreateNameCommonDataDto;
144
- personalSummaries?: Array<UniRefund_TravellerService_PersonalSummaries_CreatePersonalSummaryDto> | null;
145
- contactInformations?: Array<UniRefund_TravellerService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
146
- };
147
-
148
- export type UniRefund_TravellerService_Individuals_IndividualProfileDto = {
149
- id?: string;
150
- name?: string | null;
151
- affiliationId?: string | null;
152
- affiliatedName?: string | null;
153
- affiliationTypeCode?: UniRefund_TravellerService_Enums_AffiliationTypeCode;
154
- affiliationTypeCodeValue?: string | null;
155
- affiliationParentTypeCode?: UniRefund_TravellerService_Enums_EntityPartyTypeCode;
156
- affiliationParentTypeCodeValue?: string | null;
157
- };
158
-
159
- export type UniRefund_TravellerService_NameCommonDatas_CreateNameCommonDataDto = {
160
- firstName: string;
161
- lastName: string;
162
- };
163
-
164
- export type UniRefund_TravellerService_PersonalIdentificationTypes_CreatePersonalIdentificationTypeDto = {
165
- firstName: string;
166
- lastName: string;
167
- personalID: string;
168
- birthDate?: string | null;
169
- issueDate?: string | null;
170
- expirationDate: string;
171
- residenceCountry: string;
172
- nationalityCountry: string;
173
- };
174
-
175
- export type UniRefund_TravellerService_PersonalIdentificationTypes_PersonalIdentificationProfileDto = {
176
- id?: string;
177
- travelDocumentNumber?: string | null;
178
- countryOfResidenceCode2?: string | null;
179
- countryOfResidence?: string | null;
180
- nationalityCode2?: string | null;
181
- nationality?: string | null;
182
- firstName?: string | null;
183
- lastName?: string | null;
184
- dateOfBirth?: string;
185
- };
186
-
187
- export type UniRefund_TravellerService_PersonalIdentificationTypes_UpdatePersonalIdentificationTypeDto = {
188
- readonly travellerId: string;
189
- personalID: string;
190
- birthDate?: string | null;
191
- firstName: string;
192
- lastName: string;
193
- issueDate?: string | null;
194
- expirationDate: string;
195
- residenceCountry: string;
196
- nationalityCountry: string;
197
- };
198
-
199
- export type UniRefund_TravellerService_PersonalPreferencesTypes_CreatePersonalPreferencesTypeDto = {
200
- languagePreference?: string | null;
201
- };
202
-
203
- export type UniRefund_TravellerService_PersonalSummaries_CreatePersonalSummaryDto = {
204
- readonly extraProperties?: {
205
- [key: string]: unknown;
206
- } | null;
207
- date: string;
208
- birthDate: string;
209
- ethnicity: string;
210
- maritalStatusCode: string;
211
- religiousAffiliationName: string;
212
- genderTypeCode: UniRefund_TravellerService_Enums_GenderTypeCode;
213
- };
214
-
215
- export type UniRefund_TravellerService_TelephoneTypes_CreateTelephoneTypeDto = {
216
- readonly extraProperties?: {
217
- [key: string]: unknown;
218
- } | null;
219
- areaCode: string;
220
- localNumber: string;
221
- ituCountryCode: string;
222
- primaryFlag: boolean;
223
- typeCode: UniRefund_TravellerService_Enums_TelephoneTypeCode;
224
- contactInformationTypeId?: string;
225
- };
226
-
227
- export type UniRefund_TravellerService_TelephoneTypes_CreateTelephoneTypeWithComponentsDto = {
228
- readonly extraProperties?: {
229
- [key: string]: unknown;
230
- } | null;
231
- areaCode: string;
232
- localNumber: string;
233
- ituCountryCode: string;
234
- primaryFlag: boolean;
235
- typeCode: UniRefund_TravellerService_Enums_TelephoneTypeCode;
236
- };
237
-
238
- export type UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto = {
239
- id?: string;
240
- creationTime?: string;
241
- creatorId?: string | null;
242
- lastModificationTime?: string | null;
243
- lastModifierId?: string | null;
244
- isDeleted?: boolean;
245
- deleterId?: string | null;
246
- deletionTime?: string | null;
247
- areaCode?: string | null;
248
- localNumber?: string | null;
249
- ituCountryCode?: string | null;
250
- primaryFlag?: boolean;
251
- typeCode?: UniRefund_TravellerService_Enums_TelephoneTypeCode;
252
- contactInformationTypeId?: string;
253
- };
254
-
255
- export type UniRefund_TravellerService_TelephoneTypes_UpdateTelephoneTypeDto = {
256
- readonly extraProperties?: {
257
- [key: string]: unknown;
258
- } | null;
259
- id: string;
260
- areaCode: string;
261
- localNumber: string;
262
- ituCountryCode: string;
263
- primaryFlag: boolean;
264
- typeCode: UniRefund_TravellerService_Enums_TelephoneTypeCode;
265
- };
266
-
267
- export type UniRefund_TravellerService_Travellers_CreateTravellerDto = {
268
- readonly extraProperties?: {
269
- [key: string]: unknown;
270
- } | null;
271
- personalIdentification: UniRefund_TravellerService_PersonalIdentificationTypes_CreatePersonalIdentificationTypeDto;
272
- gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
273
- preferredLanguage?: string | null;
274
- };
275
-
276
- export type UniRefund_TravellerService_Travellers_CreateTravellerResDto = {
277
- id: string;
278
- };
279
-
280
- export type UniRefund_TravellerService_Travellers_CreateWithComponentsTravellerDto = {
281
- readonly extraProperties?: {
282
- [key: string]: unknown;
283
- } | null;
284
- entityInformationTypes: Array<UniRefund_TravellerService_EntityInformationTypes_CreateEntityInformationTypeDto>;
285
- personalIdentificationTypes: Array<UniRefund_TravellerService_PersonalIdentificationTypes_CreatePersonalIdentificationTypeDto>;
286
- personalPreferencesTypes: Array<UniRefund_TravellerService_PersonalPreferencesTypes_CreatePersonalPreferencesTypeDto>;
287
- };
288
-
289
- export type UniRefund_TravellerService_Travellers_TravellerProfileDto = {
290
- id?: string;
291
- personalIdentificationProfiles?: Array<UniRefund_TravellerService_PersonalIdentificationTypes_PersonalIdentificationProfileDto> | null;
292
- language?: string | null;
293
- userAccountId?: string | null;
294
- gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
295
- };
296
-
297
- export type UniRefund_TravellerService_Travellers_UpdateTravellerDto = {
298
- readonly extraProperties?: {
299
- [key: string]: unknown;
300
- } | null;
301
- id: string;
302
- personalIdentifications: Array<UniRefund_TravellerService_PersonalIdentificationTypes_UpdatePersonalIdentificationTypeDto>;
303
- gender: UniRefund_TravellerService_Enums_GenderTypeCode;
304
- preferredLanguage: string;
305
- };
306
-
307
- export type UniRefund_TravellerService_Travellers_UpdateTravellerResDto = {
308
- id: string;
309
- };
310
-
311
- export type UniRefund_TravellerService_Travellers_UpsertTravellerDto = {
312
- readonly extraProperties?: {
313
- [key: string]: unknown;
314
- } | null;
315
- id?: string | null;
316
- personalID: string;
317
- birthDate?: string | null;
318
- firstName?: string | null;
319
- lastName?: string | null;
320
- issueDate?: string | null;
321
- expirationDate?: string | null;
322
- residenceCountry?: string | null;
323
- nationalityCountry?: string | null;
324
- gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
325
- preferredLanguage?: string | null;
326
- };
327
-
328
- export type UniRefund_TravellerService_Travellers_UpsertTravellerResDto = {
329
- readonly extraProperties?: {
330
- [key: string]: unknown;
331
- } | null;
332
- id: string;
333
- personalID: string;
334
- };
335
-
336
- export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
337
- items?: Array<UniRefund_TravellerService_AddressTypes_AddressTypeDto> | null;
338
- totalCount?: number;
339
- };
340
-
341
- export type Volo_Abp_Application_Dtos_PagedResultDto_12 = {
342
- items?: Array<UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto> | null;
343
- totalCount?: number;
344
- };
345
-
346
- export type Volo_Abp_Application_Dtos_PagedResultDto_13 = {
347
- items?: Array<UniRefund_TravellerService_Individuals_IndividualProfileDto> | null;
348
- totalCount?: number;
349
- };
350
-
351
- export type Volo_Abp_Application_Dtos_PagedResultDto_14 = {
352
- items?: Array<UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto> | null;
353
- totalCount?: number;
354
- };
355
-
356
- export type Volo_Abp_Application_Dtos_PagedResultDto_15 = {
357
- items?: Array<UniRefund_TravellerService_Travellers_TravellerProfileDto> | null;
358
- totalCount?: number;
359
- };
360
-
361
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
362
- grantedPolicies?: {
363
- [key: string]: (boolean);
364
- } | null;
365
- };
366
-
367
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
368
- localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
369
- auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
370
- setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
371
- currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
372
- features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
373
- globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
374
- multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
375
- currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
376
- timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
377
- clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
378
- objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
379
- extraProperties?: {
380
- [key: string]: unknown;
381
- } | null;
382
- };
383
-
384
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
385
- values?: {
386
- [key: string]: (string | null);
387
- } | null;
388
- };
389
-
390
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
391
- enabledFeatures?: Array<(string)> | null;
392
- };
393
-
394
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
395
- values?: {
396
- [key: string]: {
397
- [key: string]: (string);
398
- };
399
- } | null;
400
- resources?: {
401
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
402
- } | null;
403
- languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
404
- currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
405
- defaultResourceName?: string | null;
406
- languagesMap?: {
407
- [key: string]: Array<Volo_Abp_NameValue>;
408
- } | null;
409
- languageFilesMap?: {
410
- [key: string]: Array<Volo_Abp_NameValue>;
411
- } | null;
412
- };
413
-
414
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
415
- resources?: {
416
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
417
- } | null;
418
- currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
419
- };
420
-
421
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
422
- texts?: {
423
- [key: string]: (string);
424
- } | null;
425
- baseResources?: Array<(string)> | null;
426
- };
427
-
428
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
429
- values?: {
430
- [key: string]: (string | null);
431
- } | null;
432
- };
433
-
434
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
435
- kind?: string | null;
436
- };
437
-
438
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
439
- displayName?: string | null;
440
- englishName?: string | null;
441
- threeLetterIsoLanguageName?: string | null;
442
- twoLetterIsoLanguageName?: string | null;
443
- isRightToLeft?: boolean;
444
- cultureName?: string | null;
445
- name?: string | null;
446
- nativeName?: string | null;
447
- dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
448
- };
449
-
450
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
451
- isAuthenticated?: boolean;
452
- id?: string | null;
453
- tenantId?: string | null;
454
- impersonatorUserId?: string | null;
455
- impersonatorTenantId?: string | null;
456
- impersonatorUserName?: string | null;
457
- impersonatorTenantName?: string | null;
458
- userName?: string | null;
459
- name?: string | null;
460
- surName?: string | null;
461
- email?: string | null;
462
- emailVerified?: boolean;
463
- phoneNumber?: string | null;
464
- phoneNumberVerified?: boolean;
465
- roles?: Array<(string)> | null;
466
- sessionId?: string | null;
467
- };
468
-
469
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
470
- calendarAlgorithmType?: string | null;
471
- dateTimeFormatLong?: string | null;
472
- shortDatePattern?: string | null;
473
- fullDateTimePattern?: string | null;
474
- dateSeparator?: string | null;
475
- shortTimePattern?: string | null;
476
- longTimePattern?: string | null;
477
- };
478
-
479
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
480
- timeZoneName?: string | null;
481
- };
482
-
483
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
484
- properties?: {
485
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
486
- } | null;
487
- configuration?: {
488
- [key: string]: unknown;
489
- } | null;
490
- };
491
-
492
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
493
- fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
494
- localizationResource?: string | null;
495
- };
496
-
497
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
498
- name?: string | null;
499
- value?: unknown;
500
- };
501
-
502
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
503
- isAvailable?: boolean;
504
- };
505
-
506
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
507
- onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
508
- onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
509
- onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
510
- };
511
-
512
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
513
- isAvailable?: boolean;
514
- };
515
-
516
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
517
- isAvailable?: boolean;
518
- };
519
-
520
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
521
- typeSimple?: string | null;
522
- config?: {
523
- [key: string]: unknown;
524
- } | null;
525
- };
526
-
527
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
528
- type?: string | null;
529
- typeSimple?: string | null;
530
- displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
531
- api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
532
- ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
533
- attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
534
- configuration?: {
535
- [key: string]: unknown;
536
- } | null;
537
- defaultValue?: unknown;
538
- };
539
-
540
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
541
- onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
542
- onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
543
- onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
544
- lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
545
- };
546
-
547
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
548
- isVisible?: boolean;
549
- };
550
-
551
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
552
- url?: string | null;
553
- resultListPropertyName?: string | null;
554
- displayPropertyName?: string | null;
555
- valuePropertyName?: string | null;
556
- filterParamName?: string | null;
557
- };
558
-
559
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
560
- isVisible?: boolean;
561
- };
562
-
563
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
564
- name?: string | null;
565
- resource?: string | null;
566
- };
567
-
568
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
569
- entities?: {
570
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
571
- } | null;
572
- configuration?: {
573
- [key: string]: unknown;
574
- } | null;
575
- };
576
-
577
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
578
- modules?: {
579
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
580
- } | null;
581
- enums?: {
582
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
583
- } | null;
584
- };
585
-
586
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
587
- iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
588
- windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
589
- };
590
-
591
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
592
- timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
593
- };
594
-
595
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
596
- timeZoneId?: string | null;
597
- };
598
-
599
- export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
600
- id?: string | null;
601
- name?: string | null;
602
- isAvailable?: boolean;
603
- };
604
-
605
- export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
606
- isEnabled?: boolean;
607
- };
608
-
609
- export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
610
- uniqueName?: string | null;
611
- name?: string | null;
612
- httpMethod?: string | null;
613
- url?: string | null;
614
- supportedVersions?: Array<(string)> | null;
615
- parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
616
- parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
617
- returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
618
- allowAnonymous?: boolean | null;
619
- implementFrom?: string | null;
620
- };
621
-
622
- export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
623
- modules?: {
624
- [key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
625
- } | null;
626
- types?: {
627
- [key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
628
- } | null;
629
- };
630
-
631
- export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
632
- controllerName?: string | null;
633
- controllerGroupName?: string | null;
634
- isRemoteService?: boolean;
635
- isIntegrationService?: boolean;
636
- apiVersion?: string | null;
637
- type?: string | null;
638
- interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
639
- actions?: {
640
- [key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
641
- } | null;
642
- };
643
-
644
- export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
645
- type?: string | null;
646
- name?: string | null;
647
- methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
648
- };
649
-
650
- export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
651
- name?: string | null;
652
- parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
653
- returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
654
- };
655
-
656
- export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
657
- name?: string | null;
658
- typeAsString?: string | null;
659
- type?: string | null;
660
- typeSimple?: string | null;
661
- isOptional?: boolean;
662
- defaultValue?: unknown;
663
- };
664
-
665
- export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
666
- rootPath?: string | null;
667
- remoteServiceName?: string | null;
668
- controllers?: {
669
- [key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
670
- } | null;
671
- };
672
-
673
- export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
674
- nameOnMethod?: string | null;
675
- name?: string | null;
676
- jsonName?: string | null;
677
- type?: string | null;
678
- typeSimple?: string | null;
679
- isOptional?: boolean;
680
- defaultValue?: unknown;
681
- constraintTypes?: Array<(string)> | null;
682
- bindingSourceId?: string | null;
683
- descriptorName?: string | null;
684
- };
685
-
686
- export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
687
- name?: string | null;
688
- jsonName?: string | null;
689
- type?: string | null;
690
- typeSimple?: string | null;
691
- isRequired?: boolean;
692
- minLength?: number | null;
693
- maxLength?: number | null;
694
- minimum?: string | null;
695
- maximum?: string | null;
696
- regex?: string | null;
697
- };
698
-
699
- export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
700
- type?: string | null;
701
- typeSimple?: string | null;
702
- };
703
-
704
- export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
705
- baseType?: string | null;
706
- isEnum?: boolean;
707
- enumNames?: Array<(string)> | null;
708
- enumValues?: Array<unknown> | null;
709
- genericArguments?: Array<(string)> | null;
710
- properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
711
- };
712
-
713
- export type Volo_Abp_Http_RemoteServiceErrorInfo = {
714
- code?: string | null;
715
- message?: string | null;
716
- details?: string | null;
717
- data?: {
718
- [key: string]: unknown;
719
- } | null;
720
- validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
721
- };
722
-
723
- export type Volo_Abp_Http_RemoteServiceErrorResponse = {
724
- error?: Volo_Abp_Http_RemoteServiceErrorInfo;
725
- };
726
-
727
- export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
728
- message?: string | null;
729
- members?: Array<(string)> | null;
730
- };
731
-
732
- export type Volo_Abp_Localization_LanguageInfo = {
733
- cultureName?: string | null;
734
- uiCultureName?: string | null;
735
- displayName?: string | null;
736
- readonly twoLetterISOLanguageName?: string | null;
737
- };
738
-
739
- export type Volo_Abp_NameValue = {
740
- name?: string | null;
741
- value?: string | null;
742
- };
743
-
744
- export type GetApiAbpApiDefinitionData = {
745
- includeTypes?: boolean;
746
- };
747
-
748
- export type GetApiAbpApiDefinitionResponse = Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
749
-
750
- export type GetApiAbpApplicationConfigurationData = {
751
- includeLocalizationResources?: boolean;
752
- };
753
-
754
- export type GetApiAbpApplicationConfigurationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
755
-
756
- export type GetApiAbpApplicationLocalizationData = {
757
- cultureName: string;
758
- onlyDynamics?: boolean;
759
- };
760
-
761
- export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
762
-
763
- export type GetApiTravellerServiceAddressesData = {
764
- maxResultCount?: number;
765
- skipCount?: number;
766
- sorting?: string;
767
- };
768
-
769
- export type GetApiTravellerServiceAddressesResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
770
-
771
- export type PostApiTravellerServiceAddressesData = {
772
- requestBody?: UniRefund_TravellerService_AddressTypes_CreateAddressTypeDto;
773
- };
774
-
775
- export type PostApiTravellerServiceAddressesResponse = UniRefund_TravellerService_AddressTypes_AddressTypeDto;
776
-
777
- export type GetApiTravellerServiceAddressesByIdData = {
778
- id: string;
779
- };
780
-
781
- export type GetApiTravellerServiceAddressesByIdResponse = UniRefund_TravellerService_AddressTypes_AddressTypeDto;
782
-
783
- export type PutApiTravellerServiceAddressesByIdData = {
784
- id: string;
785
- requestBody?: UniRefund_TravellerService_AddressTypes_UpdateAddressTypeDto;
786
- };
787
-
788
- export type PutApiTravellerServiceAddressesByIdResponse = UniRefund_TravellerService_AddressTypes_AddressTypeDto;
789
-
790
- export type DeleteApiTravellerServiceAddressesByIdData = {
791
- id: string;
792
- };
793
-
794
- export type DeleteApiTravellerServiceAddressesByIdResponse = unknown;
795
-
796
- export type GetApiTravellerServiceEmailsData = {
797
- maxResultCount?: number;
798
- skipCount?: number;
799
- sorting?: string;
800
- };
801
-
802
- export type GetApiTravellerServiceEmailsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
803
-
804
- export type PostApiTravellerServiceEmailsData = {
805
- requestBody?: UniRefund_TravellerService_EmailCommonDatas_CreateEmailCommonDataDto;
806
- };
807
-
808
- export type PostApiTravellerServiceEmailsResponse = UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
809
-
810
- export type GetApiTravellerServiceEmailsByIdData = {
811
- id: string;
812
- };
813
-
814
- export type GetApiTravellerServiceEmailsByIdResponse = UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
815
-
816
- export type PutApiTravellerServiceEmailsByIdData = {
817
- id: string;
818
- requestBody?: UniRefund_TravellerService_EmailCommonDatas_UpdateEmailCommonDataDto;
819
- };
820
-
821
- export type PutApiTravellerServiceEmailsByIdResponse = UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
822
-
823
- export type DeleteApiTravellerServiceEmailsByIdData = {
824
- id: string;
825
- };
826
-
827
- export type DeleteApiTravellerServiceEmailsByIdResponse = unknown;
828
-
829
- export type PostApiTravellerServiceIndividualsWithComponentsData = {
830
- requestBody?: UniRefund_TravellerService_Individuals_CreateIndividualDto;
831
- };
832
-
833
- export type PostApiTravellerServiceIndividualsWithComponentsResponse = unknown;
834
-
835
- export type GetApiTravellerServiceIndividualsData = {
836
- entityPartyTypeCode?: UniRefund_TravellerService_Enums_EntityPartyTypeCode;
837
- maxResultCount?: number;
838
- parentId?: string;
839
- skipCount?: number;
840
- sorting?: string;
841
- };
842
-
843
- export type GetApiTravellerServiceIndividualsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
844
-
845
- export type GetApiTravellerServiceTelephonesData = {
846
- maxResultCount?: number;
847
- skipCount?: number;
848
- sorting?: string;
849
- };
850
-
851
- export type GetApiTravellerServiceTelephonesResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
852
-
853
- export type PostApiTravellerServiceTelephonesData = {
854
- requestBody?: UniRefund_TravellerService_TelephoneTypes_CreateTelephoneTypeDto;
855
- };
856
-
857
- export type PostApiTravellerServiceTelephonesResponse = UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
858
-
859
- export type GetApiTravellerServiceTelephonesByIdData = {
860
- id: string;
861
- };
862
-
863
- export type GetApiTravellerServiceTelephonesByIdResponse = UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
864
-
865
- export type PutApiTravellerServiceTelephonesByIdData = {
866
- id: string;
867
- requestBody?: UniRefund_TravellerService_TelephoneTypes_UpdateTelephoneTypeDto;
868
- };
869
-
870
- export type PutApiTravellerServiceTelephonesByIdResponse = UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
871
-
872
- export type DeleteApiTravellerServiceTelephonesByIdData = {
873
- id: string;
874
- };
875
-
876
- export type DeleteApiTravellerServiceTelephonesByIdResponse = unknown;
877
-
878
- export type PostApiTravellerServiceTravellersWithComponentsData = {
879
- requestBody?: UniRefund_TravellerService_Travellers_CreateWithComponentsTravellerDto;
880
- };
881
-
882
- export type PostApiTravellerServiceTravellersWithComponentsResponse = UniRefund_TravellerService_Travellers_CreateTravellerResDto;
883
-
884
- export type PostApiTravellerServiceTravellersCreateData = {
885
- requestBody?: UniRefund_TravellerService_Travellers_CreateTravellerDto;
886
- };
887
-
888
- export type PostApiTravellerServiceTravellersCreateResponse = UniRefund_TravellerService_Travellers_CreateTravellerResDto;
889
-
890
- export type PutApiTravellerServiceTravellersUpdateData = {
891
- requestBody?: UniRefund_TravellerService_Travellers_UpdateTravellerDto;
892
- };
893
-
894
- export type PutApiTravellerServiceTravellersUpdateResponse = UniRefund_TravellerService_Travellers_UpdateTravellerResDto;
895
-
896
- export type PostApiTravellerServiceTravellersUpsertData = {
897
- requestBody?: UniRefund_TravellerService_Travellers_UpsertTravellerDto;
898
- };
899
-
900
- export type PostApiTravellerServiceTravellersUpsertResponse = UniRefund_TravellerService_Travellers_UpsertTravellerResDto;
901
-
902
- export type GetApiTravellerServiceTravellersGetProfileListData = {
903
- maxResultCount?: number;
904
- skipCount?: number;
905
- sorting?: string;
906
- };
907
-
908
- export type GetApiTravellerServiceTravellersGetProfileListResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
909
-
910
- export type GetApiTravellerServiceTravellersGetProfileDetailData = {
911
- id: string;
912
- };
913
-
914
- export type GetApiTravellerServiceTravellersGetProfileDetailResponse = UniRefund_TravellerService_Travellers_TravellerProfileDto;
915
-
916
- export type $OpenApiTs = {
917
- '/api/abp/api-definition': {
918
- get: {
919
- req: GetApiAbpApiDefinitionData;
920
- res: {
921
- /**
922
- * Success
923
- */
924
- 200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
925
- /**
926
- * Bad Request
927
- */
928
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
929
- /**
930
- * Unauthorized
931
- */
932
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
933
- /**
934
- * Forbidden
935
- */
936
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
937
- /**
938
- * Not Found
939
- */
940
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
941
- /**
942
- * Server Error
943
- */
944
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
945
- /**
946
- * Server Error
947
- */
948
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
949
- };
950
- };
951
- };
952
- '/api/abp/application-configuration': {
953
- get: {
954
- req: GetApiAbpApplicationConfigurationData;
955
- res: {
956
- /**
957
- * Success
958
- */
959
- 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
960
- /**
961
- * Bad Request
962
- */
963
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
964
- /**
965
- * Unauthorized
966
- */
967
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
968
- /**
969
- * Forbidden
970
- */
971
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
972
- /**
973
- * Not Found
974
- */
975
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
976
- /**
977
- * Server Error
978
- */
979
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
980
- /**
981
- * Server Error
982
- */
983
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
984
- };
985
- };
986
- };
987
- '/api/abp/application-localization': {
988
- get: {
989
- req: GetApiAbpApplicationLocalizationData;
990
- res: {
991
- /**
992
- * Success
993
- */
994
- 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
995
- /**
996
- * Bad Request
997
- */
998
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
999
- /**
1000
- * Unauthorized
1001
- */
1002
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1003
- /**
1004
- * Forbidden
1005
- */
1006
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1007
- /**
1008
- * Not Found
1009
- */
1010
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1011
- /**
1012
- * Server Error
1013
- */
1014
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1015
- /**
1016
- * Server Error
1017
- */
1018
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1019
- };
1020
- };
1021
- };
1022
- '/api/traveller-service/addresses': {
1023
- get: {
1024
- req: GetApiTravellerServiceAddressesData;
1025
- res: {
1026
- /**
1027
- * Success
1028
- */
1029
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1030
- /**
1031
- * Bad Request
1032
- */
1033
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1034
- /**
1035
- * Unauthorized
1036
- */
1037
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1038
- /**
1039
- * Forbidden
1040
- */
1041
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1042
- /**
1043
- * Not Found
1044
- */
1045
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1046
- /**
1047
- * Server Error
1048
- */
1049
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1050
- /**
1051
- * Server Error
1052
- */
1053
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1054
- };
1055
- };
1056
- post: {
1057
- req: PostApiTravellerServiceAddressesData;
1058
- res: {
1059
- /**
1060
- * Success
1061
- */
1062
- 200: UniRefund_TravellerService_AddressTypes_AddressTypeDto;
1063
- /**
1064
- * Bad Request
1065
- */
1066
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1067
- /**
1068
- * Unauthorized
1069
- */
1070
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1071
- /**
1072
- * Forbidden
1073
- */
1074
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1075
- /**
1076
- * Not Found
1077
- */
1078
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1079
- /**
1080
- * Server Error
1081
- */
1082
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1083
- /**
1084
- * Server Error
1085
- */
1086
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1087
- };
1088
- };
1089
- };
1090
- '/api/traveller-service/addresses/{id}': {
1091
- get: {
1092
- req: GetApiTravellerServiceAddressesByIdData;
1093
- res: {
1094
- /**
1095
- * Success
1096
- */
1097
- 200: UniRefund_TravellerService_AddressTypes_AddressTypeDto;
1098
- /**
1099
- * Bad Request
1100
- */
1101
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1102
- /**
1103
- * Unauthorized
1104
- */
1105
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1106
- /**
1107
- * Forbidden
1108
- */
1109
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1110
- /**
1111
- * Not Found
1112
- */
1113
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1114
- /**
1115
- * Server Error
1116
- */
1117
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1118
- /**
1119
- * Server Error
1120
- */
1121
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1122
- };
1123
- };
1124
- put: {
1125
- req: PutApiTravellerServiceAddressesByIdData;
1126
- res: {
1127
- /**
1128
- * Success
1129
- */
1130
- 200: UniRefund_TravellerService_AddressTypes_AddressTypeDto;
1131
- /**
1132
- * Bad Request
1133
- */
1134
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1135
- /**
1136
- * Unauthorized
1137
- */
1138
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1139
- /**
1140
- * Forbidden
1141
- */
1142
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1143
- /**
1144
- * Not Found
1145
- */
1146
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1147
- /**
1148
- * Server Error
1149
- */
1150
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1151
- /**
1152
- * Server Error
1153
- */
1154
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1155
- };
1156
- };
1157
- delete: {
1158
- req: DeleteApiTravellerServiceAddressesByIdData;
1159
- res: {
1160
- /**
1161
- * Success
1162
- */
1163
- 200: unknown;
1164
- /**
1165
- * Bad Request
1166
- */
1167
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1168
- /**
1169
- * Unauthorized
1170
- */
1171
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1172
- /**
1173
- * Forbidden
1174
- */
1175
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1176
- /**
1177
- * Not Found
1178
- */
1179
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1180
- /**
1181
- * Server Error
1182
- */
1183
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1184
- /**
1185
- * Server Error
1186
- */
1187
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1188
- };
1189
- };
1190
- };
1191
- '/api/traveller-service/emails': {
1192
- get: {
1193
- req: GetApiTravellerServiceEmailsData;
1194
- res: {
1195
- /**
1196
- * Success
1197
- */
1198
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1199
- /**
1200
- * Bad Request
1201
- */
1202
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1203
- /**
1204
- * Unauthorized
1205
- */
1206
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1207
- /**
1208
- * Forbidden
1209
- */
1210
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1211
- /**
1212
- * Not Found
1213
- */
1214
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1215
- /**
1216
- * Server Error
1217
- */
1218
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1219
- /**
1220
- * Server Error
1221
- */
1222
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1223
- };
1224
- };
1225
- post: {
1226
- req: PostApiTravellerServiceEmailsData;
1227
- res: {
1228
- /**
1229
- * Success
1230
- */
1231
- 200: UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
1232
- /**
1233
- * Bad Request
1234
- */
1235
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1236
- /**
1237
- * Unauthorized
1238
- */
1239
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1240
- /**
1241
- * Forbidden
1242
- */
1243
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1244
- /**
1245
- * Not Found
1246
- */
1247
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1248
- /**
1249
- * Server Error
1250
- */
1251
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1252
- /**
1253
- * Server Error
1254
- */
1255
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1256
- };
1257
- };
1258
- };
1259
- '/api/traveller-service/emails/{id}': {
1260
- get: {
1261
- req: GetApiTravellerServiceEmailsByIdData;
1262
- res: {
1263
- /**
1264
- * Success
1265
- */
1266
- 200: UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
1267
- /**
1268
- * Bad Request
1269
- */
1270
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1271
- /**
1272
- * Unauthorized
1273
- */
1274
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1275
- /**
1276
- * Forbidden
1277
- */
1278
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1279
- /**
1280
- * Not Found
1281
- */
1282
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1283
- /**
1284
- * Server Error
1285
- */
1286
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1287
- /**
1288
- * Server Error
1289
- */
1290
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1291
- };
1292
- };
1293
- put: {
1294
- req: PutApiTravellerServiceEmailsByIdData;
1295
- res: {
1296
- /**
1297
- * Success
1298
- */
1299
- 200: UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
1300
- /**
1301
- * Bad Request
1302
- */
1303
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1304
- /**
1305
- * Unauthorized
1306
- */
1307
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1308
- /**
1309
- * Forbidden
1310
- */
1311
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1312
- /**
1313
- * Not Found
1314
- */
1315
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1316
- /**
1317
- * Server Error
1318
- */
1319
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1320
- /**
1321
- * Server Error
1322
- */
1323
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1324
- };
1325
- };
1326
- delete: {
1327
- req: DeleteApiTravellerServiceEmailsByIdData;
1328
- res: {
1329
- /**
1330
- * Success
1331
- */
1332
- 200: unknown;
1333
- /**
1334
- * Bad Request
1335
- */
1336
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1337
- /**
1338
- * Unauthorized
1339
- */
1340
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1341
- /**
1342
- * Forbidden
1343
- */
1344
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1345
- /**
1346
- * Not Found
1347
- */
1348
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1349
- /**
1350
- * Server Error
1351
- */
1352
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1353
- /**
1354
- * Server Error
1355
- */
1356
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1357
- };
1358
- };
1359
- };
1360
- '/api/traveller-service/individuals/with-components': {
1361
- post: {
1362
- req: PostApiTravellerServiceIndividualsWithComponentsData;
1363
- res: {
1364
- /**
1365
- * Success
1366
- */
1367
- 200: unknown;
1368
- /**
1369
- * Bad Request
1370
- */
1371
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1372
- /**
1373
- * Unauthorized
1374
- */
1375
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1376
- /**
1377
- * Forbidden
1378
- */
1379
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1380
- /**
1381
- * Not Found
1382
- */
1383
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1384
- /**
1385
- * Server Error
1386
- */
1387
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1388
- /**
1389
- * Server Error
1390
- */
1391
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1392
- };
1393
- };
1394
- };
1395
- '/api/traveller-service/individuals': {
1396
- get: {
1397
- req: GetApiTravellerServiceIndividualsData;
1398
- res: {
1399
- /**
1400
- * Success
1401
- */
1402
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1403
- /**
1404
- * Bad Request
1405
- */
1406
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1407
- /**
1408
- * Unauthorized
1409
- */
1410
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1411
- /**
1412
- * Forbidden
1413
- */
1414
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1415
- /**
1416
- * Not Found
1417
- */
1418
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1419
- /**
1420
- * Server Error
1421
- */
1422
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1423
- /**
1424
- * Server Error
1425
- */
1426
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1427
- };
1428
- };
1429
- };
1430
- '/api/traveller-service/telephones': {
1431
- get: {
1432
- req: GetApiTravellerServiceTelephonesData;
1433
- res: {
1434
- /**
1435
- * Success
1436
- */
1437
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1438
- /**
1439
- * Bad Request
1440
- */
1441
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1442
- /**
1443
- * Unauthorized
1444
- */
1445
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1446
- /**
1447
- * Forbidden
1448
- */
1449
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1450
- /**
1451
- * Not Found
1452
- */
1453
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1454
- /**
1455
- * Server Error
1456
- */
1457
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1458
- /**
1459
- * Server Error
1460
- */
1461
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1462
- };
1463
- };
1464
- post: {
1465
- req: PostApiTravellerServiceTelephonesData;
1466
- res: {
1467
- /**
1468
- * Success
1469
- */
1470
- 200: UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
1471
- /**
1472
- * Bad Request
1473
- */
1474
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1475
- /**
1476
- * Unauthorized
1477
- */
1478
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1479
- /**
1480
- * Forbidden
1481
- */
1482
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1483
- /**
1484
- * Not Found
1485
- */
1486
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1487
- /**
1488
- * Server Error
1489
- */
1490
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1491
- /**
1492
- * Server Error
1493
- */
1494
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1495
- };
1496
- };
1497
- };
1498
- '/api/traveller-service/telephones/{id}': {
1499
- get: {
1500
- req: GetApiTravellerServiceTelephonesByIdData;
1501
- res: {
1502
- /**
1503
- * Success
1504
- */
1505
- 200: UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
1506
- /**
1507
- * Bad Request
1508
- */
1509
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1510
- /**
1511
- * Unauthorized
1512
- */
1513
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1514
- /**
1515
- * Forbidden
1516
- */
1517
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1518
- /**
1519
- * Not Found
1520
- */
1521
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1522
- /**
1523
- * Server Error
1524
- */
1525
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1526
- /**
1527
- * Server Error
1528
- */
1529
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1530
- };
1531
- };
1532
- put: {
1533
- req: PutApiTravellerServiceTelephonesByIdData;
1534
- res: {
1535
- /**
1536
- * Success
1537
- */
1538
- 200: UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
1539
- /**
1540
- * Bad Request
1541
- */
1542
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1543
- /**
1544
- * Unauthorized
1545
- */
1546
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1547
- /**
1548
- * Forbidden
1549
- */
1550
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1551
- /**
1552
- * Not Found
1553
- */
1554
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1555
- /**
1556
- * Server Error
1557
- */
1558
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1559
- /**
1560
- * Server Error
1561
- */
1562
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1563
- };
1564
- };
1565
- delete: {
1566
- req: DeleteApiTravellerServiceTelephonesByIdData;
1567
- res: {
1568
- /**
1569
- * Success
1570
- */
1571
- 200: unknown;
1572
- /**
1573
- * Bad Request
1574
- */
1575
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1576
- /**
1577
- * Unauthorized
1578
- */
1579
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1580
- /**
1581
- * Forbidden
1582
- */
1583
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1584
- /**
1585
- * Not Found
1586
- */
1587
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1588
- /**
1589
- * Server Error
1590
- */
1591
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1592
- /**
1593
- * Server Error
1594
- */
1595
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1596
- };
1597
- };
1598
- };
1599
- '/api/traveller-service/travellers/with-components': {
1600
- post: {
1601
- req: PostApiTravellerServiceTravellersWithComponentsData;
1602
- res: {
1603
- /**
1604
- * Success
1605
- */
1606
- 200: UniRefund_TravellerService_Travellers_CreateTravellerResDto;
1607
- /**
1608
- * Bad Request
1609
- */
1610
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1611
- /**
1612
- * Unauthorized
1613
- */
1614
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1615
- /**
1616
- * Forbidden
1617
- */
1618
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1619
- /**
1620
- * Not Found
1621
- */
1622
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1623
- /**
1624
- * Server Error
1625
- */
1626
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1627
- /**
1628
- * Server Error
1629
- */
1630
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1631
- };
1632
- };
1633
- };
1634
- '/api/traveller-service/travellers/create': {
1635
- post: {
1636
- req: PostApiTravellerServiceTravellersCreateData;
1637
- res: {
1638
- /**
1639
- * Success
1640
- */
1641
- 200: UniRefund_TravellerService_Travellers_CreateTravellerResDto;
1642
- /**
1643
- * Bad Request
1644
- */
1645
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1646
- /**
1647
- * Unauthorized
1648
- */
1649
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1650
- /**
1651
- * Forbidden
1652
- */
1653
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1654
- /**
1655
- * Not Found
1656
- */
1657
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1658
- /**
1659
- * Server Error
1660
- */
1661
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1662
- /**
1663
- * Server Error
1664
- */
1665
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1666
- };
1667
- };
1668
- };
1669
- '/api/traveller-service/travellers/update': {
1670
- put: {
1671
- req: PutApiTravellerServiceTravellersUpdateData;
1672
- res: {
1673
- /**
1674
- * Success
1675
- */
1676
- 200: UniRefund_TravellerService_Travellers_UpdateTravellerResDto;
1677
- /**
1678
- * Bad Request
1679
- */
1680
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1681
- /**
1682
- * Unauthorized
1683
- */
1684
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1685
- /**
1686
- * Forbidden
1687
- */
1688
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1689
- /**
1690
- * Not Found
1691
- */
1692
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1693
- /**
1694
- * Server Error
1695
- */
1696
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1697
- /**
1698
- * Server Error
1699
- */
1700
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1701
- };
1702
- };
1703
- };
1704
- '/api/traveller-service/travellers/upsert': {
1705
- post: {
1706
- req: PostApiTravellerServiceTravellersUpsertData;
1707
- res: {
1708
- /**
1709
- * Success
1710
- */
1711
- 200: UniRefund_TravellerService_Travellers_UpsertTravellerResDto;
1712
- /**
1713
- * Bad Request
1714
- */
1715
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1716
- /**
1717
- * Unauthorized
1718
- */
1719
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1720
- /**
1721
- * Forbidden
1722
- */
1723
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1724
- /**
1725
- * Not Found
1726
- */
1727
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1728
- /**
1729
- * Server Error
1730
- */
1731
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1732
- /**
1733
- * Server Error
1734
- */
1735
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1736
- };
1737
- };
1738
- };
1739
- '/api/traveller-service/travellers/get-profile-list': {
1740
- get: {
1741
- req: GetApiTravellerServiceTravellersGetProfileListData;
1742
- res: {
1743
- /**
1744
- * Success
1745
- */
1746
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1747
- /**
1748
- * Bad Request
1749
- */
1750
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1751
- /**
1752
- * Unauthorized
1753
- */
1754
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1755
- /**
1756
- * Forbidden
1757
- */
1758
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1759
- /**
1760
- * Not Found
1761
- */
1762
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1763
- /**
1764
- * Server Error
1765
- */
1766
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1767
- /**
1768
- * Server Error
1769
- */
1770
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1771
- };
1772
- };
1773
- };
1774
- '/api/traveller-service/travellers/get-profile-detail': {
1775
- get: {
1776
- req: GetApiTravellerServiceTravellersGetProfileDetailData;
1777
- res: {
1778
- /**
1779
- * Success
1780
- */
1781
- 200: UniRefund_TravellerService_Travellers_TravellerProfileDto;
1782
- /**
1783
- * Bad Request
1784
- */
1785
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1786
- /**
1787
- * Unauthorized
1788
- */
1789
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1790
- /**
1791
- * Forbidden
1792
- */
1793
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1794
- /**
1795
- * Not Found
1796
- */
1797
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1798
- /**
1799
- * Server Error
1800
- */
1801
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1802
- /**
1803
- * Server Error
1804
- */
1805
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1806
- };
1807
- };
1808
- };
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+
3
+ export type UniRefund_TravellerService_AddressTypes_AddressTypeDto = {
4
+ id?: string;
5
+ creationTime?: string;
6
+ creatorId?: string | null;
7
+ lastModificationTime?: string | null;
8
+ lastModifierId?: string | null;
9
+ isDeleted?: boolean;
10
+ deleterId?: string | null;
11
+ deletionTime?: string | null;
12
+ addressLine?: string | null;
13
+ city?: string | null;
14
+ terriority?: string | null;
15
+ postalCode?: string | null;
16
+ country?: string | null;
17
+ fullAddress?: string | null;
18
+ typeCode?: UniRefund_TravellerService_Enums_AddressTypeCode;
19
+ primaryFlag?: boolean;
20
+ contactInformationTypeId?: string;
21
+ };
22
+
23
+ export type UniRefund_TravellerService_AddressTypes_CreateAddressTypeDto = {
24
+ readonly extraProperties?: {
25
+ [key: string]: unknown;
26
+ } | null;
27
+ addressLine: string;
28
+ city: string;
29
+ terriority: string;
30
+ postalCode: string;
31
+ country: string;
32
+ fullAddress: string;
33
+ primaryFlag: boolean;
34
+ typeCode: UniRefund_TravellerService_Enums_AddressTypeCode;
35
+ contactInformationTypeId?: string;
36
+ };
37
+
38
+ export type UniRefund_TravellerService_AddressTypes_CreateAddressTypeWithComponentsDto = {
39
+ readonly extraProperties?: {
40
+ [key: string]: unknown;
41
+ } | null;
42
+ addressLine: string;
43
+ city: string;
44
+ terriority: string;
45
+ postalCode: string;
46
+ country: string;
47
+ fullAddress: string;
48
+ primaryFlag: boolean;
49
+ typeCode: UniRefund_TravellerService_Enums_AddressTypeCode;
50
+ };
51
+
52
+ export type UniRefund_TravellerService_AddressTypes_UpdateAddressTypeDto = {
53
+ readonly extraProperties?: {
54
+ [key: string]: unknown;
55
+ } | null;
56
+ id: string;
57
+ addressLine: string;
58
+ city: string;
59
+ terriority: string;
60
+ postalCode: string;
61
+ country: string;
62
+ fullAddress: string;
63
+ primaryFlag: boolean;
64
+ typeCode: UniRefund_TravellerService_Enums_AddressTypeCode;
65
+ };
66
+
67
+ export type UniRefund_TravellerService_ContactInformationTypes_CreateContactInformationTypeDto = {
68
+ readonly extraProperties?: {
69
+ [key: string]: unknown;
70
+ } | null;
71
+ telephones?: Array<UniRefund_TravellerService_TelephoneTypes_CreateTelephoneTypeWithComponentsDto> | null;
72
+ addresses?: Array<UniRefund_TravellerService_AddressTypes_CreateAddressTypeWithComponentsDto> | null;
73
+ emails?: Array<UniRefund_TravellerService_EmailCommonDatas_CreateEmailCommonDataWithComponentsDto> | null;
74
+ };
75
+
76
+ export type UniRefund_TravellerService_EmailCommonDatas_CreateEmailCommonDataDto = {
77
+ readonly extraProperties?: {
78
+ [key: string]: unknown;
79
+ } | null;
80
+ emailAddress: string;
81
+ primaryFlag: boolean;
82
+ typeCode: UniRefund_TravellerService_Enums_EmailTypeCode;
83
+ contactInformationTypeId: string;
84
+ };
85
+
86
+ export type UniRefund_TravellerService_EmailCommonDatas_CreateEmailCommonDataWithComponentsDto = {
87
+ readonly extraProperties?: {
88
+ [key: string]: unknown;
89
+ } | null;
90
+ emailAddress: string;
91
+ primaryFlag: boolean;
92
+ typeCode: UniRefund_TravellerService_Enums_EmailTypeCode;
93
+ };
94
+
95
+ export type UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto = {
96
+ id?: string;
97
+ creationTime?: string;
98
+ creatorId?: string | null;
99
+ lastModificationTime?: string | null;
100
+ lastModifierId?: string | null;
101
+ isDeleted?: boolean;
102
+ deleterId?: string | null;
103
+ deletionTime?: string | null;
104
+ primaryFlag?: boolean;
105
+ typeCode?: UniRefund_TravellerService_Enums_EmailTypeCode;
106
+ emailAddress?: string | null;
107
+ contactInformationTypeId?: string;
108
+ };
109
+
110
+ export type UniRefund_TravellerService_EmailCommonDatas_UpdateEmailCommonDataDto = {
111
+ readonly extraProperties?: {
112
+ [key: string]: unknown;
113
+ } | null;
114
+ id: string;
115
+ emailAddress: string;
116
+ primaryFlag: boolean;
117
+ typeCode: UniRefund_TravellerService_Enums_EmailTypeCode;
118
+ };
119
+
120
+ export type UniRefund_TravellerService_EntityInformationTypes_CreateEntityInformationTypeDto = {
121
+ readonly extraProperties?: {
122
+ [key: string]: unknown;
123
+ } | null;
124
+ individuals?: Array<UniRefund_TravellerService_Individuals_CreateIndividualDto> | null;
125
+ };
126
+
127
+ export type UniRefund_TravellerService_Enums_AddressTypeCode = 0 | 1;
128
+
129
+ export type UniRefund_TravellerService_Enums_AffiliationTypeCode = 0 | 1 | 2;
130
+
131
+ export type UniRefund_TravellerService_Enums_EmailTypeCode = 0 | 1;
132
+
133
+ export type UniRefund_TravellerService_Enums_EntityPartyTypeCode = 0;
134
+
135
+ export type UniRefund_TravellerService_Enums_GenderTypeCode = 0 | 1;
136
+
137
+ export type UniRefund_TravellerService_Enums_TelephoneTypeCode = 0 | 1 | 2 | 3;
138
+
139
+ export type UniRefund_TravellerService_Individuals_CreateIndividualDto = {
140
+ readonly extraProperties?: {
141
+ [key: string]: unknown;
142
+ } | null;
143
+ name?: UniRefund_TravellerService_NameCommonDatas_CreateNameCommonDataDto;
144
+ personalSummaries?: Array<UniRefund_TravellerService_PersonalSummaries_CreatePersonalSummaryDto> | null;
145
+ contactInformations?: Array<UniRefund_TravellerService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
146
+ };
147
+
148
+ export type UniRefund_TravellerService_Individuals_IndividualProfileDto = {
149
+ id?: string;
150
+ name?: string | null;
151
+ affiliationId?: string | null;
152
+ affiliatedName?: string | null;
153
+ affiliationTypeCode?: UniRefund_TravellerService_Enums_AffiliationTypeCode;
154
+ affiliationTypeCodeValue?: string | null;
155
+ affiliationParentTypeCode?: UniRefund_TravellerService_Enums_EntityPartyTypeCode;
156
+ affiliationParentTypeCodeValue?: string | null;
157
+ };
158
+
159
+ export type UniRefund_TravellerService_NameCommonDatas_CreateNameCommonDataDto = {
160
+ firstName: string;
161
+ lastName: string;
162
+ };
163
+
164
+ export type UniRefund_TravellerService_PersonalIdentificationTypes_CreatePersonalIdentificationTypeDto = {
165
+ firstName: string;
166
+ lastName: string;
167
+ personalID: string;
168
+ birthDate?: string | null;
169
+ issueDate?: string | null;
170
+ expirationDate: string;
171
+ residenceCountry: string;
172
+ nationalityCountry: string;
173
+ };
174
+
175
+ export type UniRefund_TravellerService_PersonalIdentificationTypes_PersonalIdentificationProfileDto = {
176
+ id?: string;
177
+ travelDocumentNumber?: string | null;
178
+ countryOfResidenceCode2?: string | null;
179
+ countryOfResidence?: string | null;
180
+ nationalityCode2?: string | null;
181
+ nationality?: string | null;
182
+ firstName?: string | null;
183
+ lastName?: string | null;
184
+ dateOfBirth?: string;
185
+ };
186
+
187
+ export type UniRefund_TravellerService_PersonalIdentificationTypes_UpdatePersonalIdentificationTypeDto = {
188
+ readonly travellerId: string;
189
+ personalID: string;
190
+ birthDate?: string | null;
191
+ firstName: string;
192
+ lastName: string;
193
+ issueDate?: string | null;
194
+ expirationDate: string;
195
+ residenceCountry: string;
196
+ nationalityCountry: string;
197
+ };
198
+
199
+ export type UniRefund_TravellerService_PersonalPreferencesTypes_CreatePersonalPreferencesTypeDto = {
200
+ languagePreference?: string | null;
201
+ };
202
+
203
+ export type UniRefund_TravellerService_PersonalSummaries_CreatePersonalSummaryDto = {
204
+ readonly extraProperties?: {
205
+ [key: string]: unknown;
206
+ } | null;
207
+ date: string;
208
+ birthDate: string;
209
+ ethnicity: string;
210
+ maritalStatusCode: string;
211
+ religiousAffiliationName: string;
212
+ genderTypeCode: UniRefund_TravellerService_Enums_GenderTypeCode;
213
+ };
214
+
215
+ export type UniRefund_TravellerService_TelephoneTypes_CreateTelephoneTypeDto = {
216
+ readonly extraProperties?: {
217
+ [key: string]: unknown;
218
+ } | null;
219
+ areaCode: string;
220
+ localNumber: string;
221
+ ituCountryCode: string;
222
+ primaryFlag: boolean;
223
+ typeCode: UniRefund_TravellerService_Enums_TelephoneTypeCode;
224
+ contactInformationTypeId?: string;
225
+ };
226
+
227
+ export type UniRefund_TravellerService_TelephoneTypes_CreateTelephoneTypeWithComponentsDto = {
228
+ readonly extraProperties?: {
229
+ [key: string]: unknown;
230
+ } | null;
231
+ areaCode: string;
232
+ localNumber: string;
233
+ ituCountryCode: string;
234
+ primaryFlag: boolean;
235
+ typeCode: UniRefund_TravellerService_Enums_TelephoneTypeCode;
236
+ };
237
+
238
+ export type UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto = {
239
+ id?: string;
240
+ creationTime?: string;
241
+ creatorId?: string | null;
242
+ lastModificationTime?: string | null;
243
+ lastModifierId?: string | null;
244
+ isDeleted?: boolean;
245
+ deleterId?: string | null;
246
+ deletionTime?: string | null;
247
+ areaCode?: string | null;
248
+ localNumber?: string | null;
249
+ ituCountryCode?: string | null;
250
+ primaryFlag?: boolean;
251
+ typeCode?: UniRefund_TravellerService_Enums_TelephoneTypeCode;
252
+ contactInformationTypeId?: string;
253
+ };
254
+
255
+ export type UniRefund_TravellerService_TelephoneTypes_UpdateTelephoneTypeDto = {
256
+ readonly extraProperties?: {
257
+ [key: string]: unknown;
258
+ } | null;
259
+ id: string;
260
+ areaCode: string;
261
+ localNumber: string;
262
+ ituCountryCode: string;
263
+ primaryFlag: boolean;
264
+ typeCode: UniRefund_TravellerService_Enums_TelephoneTypeCode;
265
+ };
266
+
267
+ export type UniRefund_TravellerService_Travellers_CreateTravellerDto = {
268
+ readonly extraProperties?: {
269
+ [key: string]: unknown;
270
+ } | null;
271
+ personalIdentification: UniRefund_TravellerService_PersonalIdentificationTypes_CreatePersonalIdentificationTypeDto;
272
+ gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
273
+ preferredLanguage?: string | null;
274
+ };
275
+
276
+ export type UniRefund_TravellerService_Travellers_CreateTravellerResDto = {
277
+ id: string;
278
+ };
279
+
280
+ export type UniRefund_TravellerService_Travellers_CreateWithComponentsTravellerDto = {
281
+ readonly extraProperties?: {
282
+ [key: string]: unknown;
283
+ } | null;
284
+ entityInformationTypes: Array<UniRefund_TravellerService_EntityInformationTypes_CreateEntityInformationTypeDto>;
285
+ personalIdentificationTypes: Array<UniRefund_TravellerService_PersonalIdentificationTypes_CreatePersonalIdentificationTypeDto>;
286
+ personalPreferencesTypes: Array<UniRefund_TravellerService_PersonalPreferencesTypes_CreatePersonalPreferencesTypeDto>;
287
+ };
288
+
289
+ export type UniRefund_TravellerService_Travellers_TravellerProfileDto = {
290
+ id?: string;
291
+ personalIdentificationProfiles?: Array<UniRefund_TravellerService_PersonalIdentificationTypes_PersonalIdentificationProfileDto> | null;
292
+ language?: string | null;
293
+ userAccountId?: string | null;
294
+ gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
295
+ };
296
+
297
+ export type UniRefund_TravellerService_Travellers_UpdateTravellerDto = {
298
+ readonly extraProperties?: {
299
+ [key: string]: unknown;
300
+ } | null;
301
+ id: string;
302
+ personalIdentifications: Array<UniRefund_TravellerService_PersonalIdentificationTypes_UpdatePersonalIdentificationTypeDto>;
303
+ gender: UniRefund_TravellerService_Enums_GenderTypeCode;
304
+ preferredLanguage: string;
305
+ };
306
+
307
+ export type UniRefund_TravellerService_Travellers_UpdateTravellerResDto = {
308
+ id: string;
309
+ };
310
+
311
+ export type UniRefund_TravellerService_Travellers_UpsertTravellerDto = {
312
+ readonly extraProperties?: {
313
+ [key: string]: unknown;
314
+ } | null;
315
+ id?: string | null;
316
+ personalID: string;
317
+ birthDate?: string | null;
318
+ firstName?: string | null;
319
+ lastName?: string | null;
320
+ issueDate?: string | null;
321
+ expirationDate?: string | null;
322
+ residenceCountry?: string | null;
323
+ nationalityCountry?: string | null;
324
+ gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
325
+ preferredLanguage?: string | null;
326
+ };
327
+
328
+ export type UniRefund_TravellerService_Travellers_UpsertTravellerResDto = {
329
+ readonly extraProperties?: {
330
+ [key: string]: unknown;
331
+ } | null;
332
+ id: string;
333
+ personalID: string;
334
+ };
335
+
336
+ export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
337
+ items?: Array<UniRefund_TravellerService_AddressTypes_AddressTypeDto> | null;
338
+ totalCount?: number;
339
+ };
340
+
341
+ export type Volo_Abp_Application_Dtos_PagedResultDto_12 = {
342
+ items?: Array<UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto> | null;
343
+ totalCount?: number;
344
+ };
345
+
346
+ export type Volo_Abp_Application_Dtos_PagedResultDto_13 = {
347
+ items?: Array<UniRefund_TravellerService_Individuals_IndividualProfileDto> | null;
348
+ totalCount?: number;
349
+ };
350
+
351
+ export type Volo_Abp_Application_Dtos_PagedResultDto_14 = {
352
+ items?: Array<UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto> | null;
353
+ totalCount?: number;
354
+ };
355
+
356
+ export type Volo_Abp_Application_Dtos_PagedResultDto_15 = {
357
+ items?: Array<UniRefund_TravellerService_Travellers_TravellerProfileDto> | null;
358
+ totalCount?: number;
359
+ };
360
+
361
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
362
+ grantedPolicies?: {
363
+ [key: string]: (boolean);
364
+ } | null;
365
+ };
366
+
367
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
368
+ localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
369
+ auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
370
+ setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
371
+ currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
372
+ features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
373
+ globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
374
+ multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
375
+ currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
376
+ timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
377
+ clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
378
+ objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
379
+ extraProperties?: {
380
+ [key: string]: unknown;
381
+ } | null;
382
+ };
383
+
384
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
385
+ values?: {
386
+ [key: string]: (string | null);
387
+ } | null;
388
+ };
389
+
390
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
391
+ enabledFeatures?: Array<(string)> | null;
392
+ };
393
+
394
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
395
+ values?: {
396
+ [key: string]: {
397
+ [key: string]: (string);
398
+ };
399
+ } | null;
400
+ resources?: {
401
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
402
+ } | null;
403
+ languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
404
+ currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
405
+ defaultResourceName?: string | null;
406
+ languagesMap?: {
407
+ [key: string]: Array<Volo_Abp_NameValue>;
408
+ } | null;
409
+ languageFilesMap?: {
410
+ [key: string]: Array<Volo_Abp_NameValue>;
411
+ } | null;
412
+ };
413
+
414
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
415
+ resources?: {
416
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
417
+ } | null;
418
+ currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
419
+ };
420
+
421
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
422
+ texts?: {
423
+ [key: string]: (string);
424
+ } | null;
425
+ baseResources?: Array<(string)> | null;
426
+ };
427
+
428
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
429
+ values?: {
430
+ [key: string]: (string | null);
431
+ } | null;
432
+ };
433
+
434
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
435
+ kind?: string | null;
436
+ };
437
+
438
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
439
+ displayName?: string | null;
440
+ englishName?: string | null;
441
+ threeLetterIsoLanguageName?: string | null;
442
+ twoLetterIsoLanguageName?: string | null;
443
+ isRightToLeft?: boolean;
444
+ cultureName?: string | null;
445
+ name?: string | null;
446
+ nativeName?: string | null;
447
+ dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
448
+ };
449
+
450
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
451
+ isAuthenticated?: boolean;
452
+ id?: string | null;
453
+ tenantId?: string | null;
454
+ impersonatorUserId?: string | null;
455
+ impersonatorTenantId?: string | null;
456
+ impersonatorUserName?: string | null;
457
+ impersonatorTenantName?: string | null;
458
+ userName?: string | null;
459
+ name?: string | null;
460
+ surName?: string | null;
461
+ email?: string | null;
462
+ emailVerified?: boolean;
463
+ phoneNumber?: string | null;
464
+ phoneNumberVerified?: boolean;
465
+ roles?: Array<(string)> | null;
466
+ sessionId?: string | null;
467
+ };
468
+
469
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
470
+ calendarAlgorithmType?: string | null;
471
+ dateTimeFormatLong?: string | null;
472
+ shortDatePattern?: string | null;
473
+ fullDateTimePattern?: string | null;
474
+ dateSeparator?: string | null;
475
+ shortTimePattern?: string | null;
476
+ longTimePattern?: string | null;
477
+ };
478
+
479
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
480
+ timeZoneName?: string | null;
481
+ };
482
+
483
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
484
+ properties?: {
485
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
486
+ } | null;
487
+ configuration?: {
488
+ [key: string]: unknown;
489
+ } | null;
490
+ };
491
+
492
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
493
+ fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
494
+ localizationResource?: string | null;
495
+ };
496
+
497
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
498
+ name?: string | null;
499
+ value?: unknown;
500
+ };
501
+
502
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
503
+ isAvailable?: boolean;
504
+ };
505
+
506
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
507
+ onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
508
+ onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
509
+ onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
510
+ };
511
+
512
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
513
+ isAvailable?: boolean;
514
+ };
515
+
516
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
517
+ isAvailable?: boolean;
518
+ };
519
+
520
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
521
+ typeSimple?: string | null;
522
+ config?: {
523
+ [key: string]: unknown;
524
+ } | null;
525
+ };
526
+
527
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
528
+ type?: string | null;
529
+ typeSimple?: string | null;
530
+ displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
531
+ api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
532
+ ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
533
+ attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
534
+ configuration?: {
535
+ [key: string]: unknown;
536
+ } | null;
537
+ defaultValue?: unknown;
538
+ };
539
+
540
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
541
+ onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
542
+ onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
543
+ onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
544
+ lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
545
+ };
546
+
547
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
548
+ isVisible?: boolean;
549
+ };
550
+
551
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
552
+ url?: string | null;
553
+ resultListPropertyName?: string | null;
554
+ displayPropertyName?: string | null;
555
+ valuePropertyName?: string | null;
556
+ filterParamName?: string | null;
557
+ };
558
+
559
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
560
+ isVisible?: boolean;
561
+ };
562
+
563
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
564
+ name?: string | null;
565
+ resource?: string | null;
566
+ };
567
+
568
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
569
+ entities?: {
570
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
571
+ } | null;
572
+ configuration?: {
573
+ [key: string]: unknown;
574
+ } | null;
575
+ };
576
+
577
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
578
+ modules?: {
579
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
580
+ } | null;
581
+ enums?: {
582
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
583
+ } | null;
584
+ };
585
+
586
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
587
+ iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
588
+ windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
589
+ };
590
+
591
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
592
+ timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
593
+ };
594
+
595
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
596
+ timeZoneId?: string | null;
597
+ };
598
+
599
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
600
+ id?: string | null;
601
+ name?: string | null;
602
+ isAvailable?: boolean;
603
+ };
604
+
605
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
606
+ isEnabled?: boolean;
607
+ };
608
+
609
+ export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
610
+ uniqueName?: string | null;
611
+ name?: string | null;
612
+ httpMethod?: string | null;
613
+ url?: string | null;
614
+ supportedVersions?: Array<(string)> | null;
615
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
616
+ parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
617
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
618
+ allowAnonymous?: boolean | null;
619
+ implementFrom?: string | null;
620
+ };
621
+
622
+ export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
623
+ modules?: {
624
+ [key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
625
+ } | null;
626
+ types?: {
627
+ [key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
628
+ } | null;
629
+ };
630
+
631
+ export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
632
+ controllerName?: string | null;
633
+ controllerGroupName?: string | null;
634
+ isRemoteService?: boolean;
635
+ isIntegrationService?: boolean;
636
+ apiVersion?: string | null;
637
+ type?: string | null;
638
+ interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
639
+ actions?: {
640
+ [key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
641
+ } | null;
642
+ };
643
+
644
+ export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
645
+ type?: string | null;
646
+ name?: string | null;
647
+ methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
648
+ };
649
+
650
+ export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
651
+ name?: string | null;
652
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
653
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
654
+ };
655
+
656
+ export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
657
+ name?: string | null;
658
+ typeAsString?: string | null;
659
+ type?: string | null;
660
+ typeSimple?: string | null;
661
+ isOptional?: boolean;
662
+ defaultValue?: unknown;
663
+ };
664
+
665
+ export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
666
+ rootPath?: string | null;
667
+ remoteServiceName?: string | null;
668
+ controllers?: {
669
+ [key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
670
+ } | null;
671
+ };
672
+
673
+ export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
674
+ nameOnMethod?: string | null;
675
+ name?: string | null;
676
+ jsonName?: string | null;
677
+ type?: string | null;
678
+ typeSimple?: string | null;
679
+ isOptional?: boolean;
680
+ defaultValue?: unknown;
681
+ constraintTypes?: Array<(string)> | null;
682
+ bindingSourceId?: string | null;
683
+ descriptorName?: string | null;
684
+ };
685
+
686
+ export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
687
+ name?: string | null;
688
+ jsonName?: string | null;
689
+ type?: string | null;
690
+ typeSimple?: string | null;
691
+ isRequired?: boolean;
692
+ minLength?: number | null;
693
+ maxLength?: number | null;
694
+ minimum?: string | null;
695
+ maximum?: string | null;
696
+ regex?: string | null;
697
+ };
698
+
699
+ export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
700
+ type?: string | null;
701
+ typeSimple?: string | null;
702
+ };
703
+
704
+ export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
705
+ baseType?: string | null;
706
+ isEnum?: boolean;
707
+ enumNames?: Array<(string)> | null;
708
+ enumValues?: Array<unknown> | null;
709
+ genericArguments?: Array<(string)> | null;
710
+ properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
711
+ };
712
+
713
+ export type Volo_Abp_Http_RemoteServiceErrorInfo = {
714
+ code?: string | null;
715
+ message?: string | null;
716
+ details?: string | null;
717
+ data?: {
718
+ [key: string]: unknown;
719
+ } | null;
720
+ validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
721
+ };
722
+
723
+ export type Volo_Abp_Http_RemoteServiceErrorResponse = {
724
+ error?: Volo_Abp_Http_RemoteServiceErrorInfo;
725
+ };
726
+
727
+ export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
728
+ message?: string | null;
729
+ members?: Array<(string)> | null;
730
+ };
731
+
732
+ export type Volo_Abp_Localization_LanguageInfo = {
733
+ cultureName?: string | null;
734
+ uiCultureName?: string | null;
735
+ displayName?: string | null;
736
+ readonly twoLetterISOLanguageName?: string | null;
737
+ };
738
+
739
+ export type Volo_Abp_NameValue = {
740
+ name?: string | null;
741
+ value?: string | null;
742
+ };
743
+
744
+ export type GetApiAbpApiDefinitionData = {
745
+ includeTypes?: boolean;
746
+ };
747
+
748
+ export type GetApiAbpApiDefinitionResponse = Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
749
+
750
+ export type GetApiAbpApplicationConfigurationData = {
751
+ includeLocalizationResources?: boolean;
752
+ };
753
+
754
+ export type GetApiAbpApplicationConfigurationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
755
+
756
+ export type GetApiAbpApplicationLocalizationData = {
757
+ cultureName: string;
758
+ onlyDynamics?: boolean;
759
+ };
760
+
761
+ export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
762
+
763
+ export type GetApiTravellerServiceAddressesData = {
764
+ maxResultCount?: number;
765
+ skipCount?: number;
766
+ sorting?: string;
767
+ };
768
+
769
+ export type GetApiTravellerServiceAddressesResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
770
+
771
+ export type PostApiTravellerServiceAddressesData = {
772
+ requestBody?: UniRefund_TravellerService_AddressTypes_CreateAddressTypeDto;
773
+ };
774
+
775
+ export type PostApiTravellerServiceAddressesResponse = UniRefund_TravellerService_AddressTypes_AddressTypeDto;
776
+
777
+ export type GetApiTravellerServiceAddressesByIdData = {
778
+ id: string;
779
+ };
780
+
781
+ export type GetApiTravellerServiceAddressesByIdResponse = UniRefund_TravellerService_AddressTypes_AddressTypeDto;
782
+
783
+ export type PutApiTravellerServiceAddressesByIdData = {
784
+ id: string;
785
+ requestBody?: UniRefund_TravellerService_AddressTypes_UpdateAddressTypeDto;
786
+ };
787
+
788
+ export type PutApiTravellerServiceAddressesByIdResponse = UniRefund_TravellerService_AddressTypes_AddressTypeDto;
789
+
790
+ export type DeleteApiTravellerServiceAddressesByIdData = {
791
+ id: string;
792
+ };
793
+
794
+ export type DeleteApiTravellerServiceAddressesByIdResponse = unknown;
795
+
796
+ export type GetApiTravellerServiceEmailsData = {
797
+ maxResultCount?: number;
798
+ skipCount?: number;
799
+ sorting?: string;
800
+ };
801
+
802
+ export type GetApiTravellerServiceEmailsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
803
+
804
+ export type PostApiTravellerServiceEmailsData = {
805
+ requestBody?: UniRefund_TravellerService_EmailCommonDatas_CreateEmailCommonDataDto;
806
+ };
807
+
808
+ export type PostApiTravellerServiceEmailsResponse = UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
809
+
810
+ export type GetApiTravellerServiceEmailsByIdData = {
811
+ id: string;
812
+ };
813
+
814
+ export type GetApiTravellerServiceEmailsByIdResponse = UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
815
+
816
+ export type PutApiTravellerServiceEmailsByIdData = {
817
+ id: string;
818
+ requestBody?: UniRefund_TravellerService_EmailCommonDatas_UpdateEmailCommonDataDto;
819
+ };
820
+
821
+ export type PutApiTravellerServiceEmailsByIdResponse = UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
822
+
823
+ export type DeleteApiTravellerServiceEmailsByIdData = {
824
+ id: string;
825
+ };
826
+
827
+ export type DeleteApiTravellerServiceEmailsByIdResponse = unknown;
828
+
829
+ export type PostApiTravellerServiceIndividualsWithComponentsData = {
830
+ requestBody?: UniRefund_TravellerService_Individuals_CreateIndividualDto;
831
+ };
832
+
833
+ export type PostApiTravellerServiceIndividualsWithComponentsResponse = unknown;
834
+
835
+ export type GetApiTravellerServiceIndividualsData = {
836
+ entityPartyTypeCode?: UniRefund_TravellerService_Enums_EntityPartyTypeCode;
837
+ maxResultCount?: number;
838
+ parentId?: string;
839
+ skipCount?: number;
840
+ sorting?: string;
841
+ };
842
+
843
+ export type GetApiTravellerServiceIndividualsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
844
+
845
+ export type GetApiTravellerServiceTelephonesData = {
846
+ maxResultCount?: number;
847
+ skipCount?: number;
848
+ sorting?: string;
849
+ };
850
+
851
+ export type GetApiTravellerServiceTelephonesResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
852
+
853
+ export type PostApiTravellerServiceTelephonesData = {
854
+ requestBody?: UniRefund_TravellerService_TelephoneTypes_CreateTelephoneTypeDto;
855
+ };
856
+
857
+ export type PostApiTravellerServiceTelephonesResponse = UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
858
+
859
+ export type GetApiTravellerServiceTelephonesByIdData = {
860
+ id: string;
861
+ };
862
+
863
+ export type GetApiTravellerServiceTelephonesByIdResponse = UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
864
+
865
+ export type PutApiTravellerServiceTelephonesByIdData = {
866
+ id: string;
867
+ requestBody?: UniRefund_TravellerService_TelephoneTypes_UpdateTelephoneTypeDto;
868
+ };
869
+
870
+ export type PutApiTravellerServiceTelephonesByIdResponse = UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
871
+
872
+ export type DeleteApiTravellerServiceTelephonesByIdData = {
873
+ id: string;
874
+ };
875
+
876
+ export type DeleteApiTravellerServiceTelephonesByIdResponse = unknown;
877
+
878
+ export type PostApiTravellerServiceTravellersWithComponentsData = {
879
+ requestBody?: UniRefund_TravellerService_Travellers_CreateWithComponentsTravellerDto;
880
+ };
881
+
882
+ export type PostApiTravellerServiceTravellersWithComponentsResponse = UniRefund_TravellerService_Travellers_CreateTravellerResDto;
883
+
884
+ export type PostApiTravellerServiceTravellersCreateData = {
885
+ requestBody?: UniRefund_TravellerService_Travellers_CreateTravellerDto;
886
+ };
887
+
888
+ export type PostApiTravellerServiceTravellersCreateResponse = UniRefund_TravellerService_Travellers_CreateTravellerResDto;
889
+
890
+ export type PutApiTravellerServiceTravellersUpdateData = {
891
+ requestBody?: UniRefund_TravellerService_Travellers_UpdateTravellerDto;
892
+ };
893
+
894
+ export type PutApiTravellerServiceTravellersUpdateResponse = UniRefund_TravellerService_Travellers_UpdateTravellerResDto;
895
+
896
+ export type PostApiTravellerServiceTravellersUpsertData = {
897
+ requestBody?: UniRefund_TravellerService_Travellers_UpsertTravellerDto;
898
+ };
899
+
900
+ export type PostApiTravellerServiceTravellersUpsertResponse = UniRefund_TravellerService_Travellers_UpsertTravellerResDto;
901
+
902
+ export type GetApiTravellerServiceTravellersGetProfileListData = {
903
+ maxResultCount?: number;
904
+ skipCount?: number;
905
+ sorting?: string;
906
+ };
907
+
908
+ export type GetApiTravellerServiceTravellersGetProfileListResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
909
+
910
+ export type GetApiTravellerServiceTravellersGetProfileDetailData = {
911
+ id: string;
912
+ };
913
+
914
+ export type GetApiTravellerServiceTravellersGetProfileDetailResponse = UniRefund_TravellerService_Travellers_TravellerProfileDto;
915
+
916
+ export type $OpenApiTs = {
917
+ '/api/abp/api-definition': {
918
+ get: {
919
+ req: GetApiAbpApiDefinitionData;
920
+ res: {
921
+ /**
922
+ * Success
923
+ */
924
+ 200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
925
+ /**
926
+ * Bad Request
927
+ */
928
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
929
+ /**
930
+ * Unauthorized
931
+ */
932
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
933
+ /**
934
+ * Forbidden
935
+ */
936
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
937
+ /**
938
+ * Not Found
939
+ */
940
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
941
+ /**
942
+ * Server Error
943
+ */
944
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
945
+ /**
946
+ * Server Error
947
+ */
948
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
949
+ };
950
+ };
951
+ };
952
+ '/api/abp/application-configuration': {
953
+ get: {
954
+ req: GetApiAbpApplicationConfigurationData;
955
+ res: {
956
+ /**
957
+ * Success
958
+ */
959
+ 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
960
+ /**
961
+ * Bad Request
962
+ */
963
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
964
+ /**
965
+ * Unauthorized
966
+ */
967
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
968
+ /**
969
+ * Forbidden
970
+ */
971
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
972
+ /**
973
+ * Not Found
974
+ */
975
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
976
+ /**
977
+ * Server Error
978
+ */
979
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
980
+ /**
981
+ * Server Error
982
+ */
983
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
984
+ };
985
+ };
986
+ };
987
+ '/api/abp/application-localization': {
988
+ get: {
989
+ req: GetApiAbpApplicationLocalizationData;
990
+ res: {
991
+ /**
992
+ * Success
993
+ */
994
+ 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
995
+ /**
996
+ * Bad Request
997
+ */
998
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
999
+ /**
1000
+ * Unauthorized
1001
+ */
1002
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1003
+ /**
1004
+ * Forbidden
1005
+ */
1006
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1007
+ /**
1008
+ * Not Found
1009
+ */
1010
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1011
+ /**
1012
+ * Server Error
1013
+ */
1014
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1015
+ /**
1016
+ * Server Error
1017
+ */
1018
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1019
+ };
1020
+ };
1021
+ };
1022
+ '/api/traveller-service/addresses': {
1023
+ get: {
1024
+ req: GetApiTravellerServiceAddressesData;
1025
+ res: {
1026
+ /**
1027
+ * Success
1028
+ */
1029
+ 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1030
+ /**
1031
+ * Bad Request
1032
+ */
1033
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1034
+ /**
1035
+ * Unauthorized
1036
+ */
1037
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1038
+ /**
1039
+ * Forbidden
1040
+ */
1041
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1042
+ /**
1043
+ * Not Found
1044
+ */
1045
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1046
+ /**
1047
+ * Server Error
1048
+ */
1049
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1050
+ /**
1051
+ * Server Error
1052
+ */
1053
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1054
+ };
1055
+ };
1056
+ post: {
1057
+ req: PostApiTravellerServiceAddressesData;
1058
+ res: {
1059
+ /**
1060
+ * Success
1061
+ */
1062
+ 200: UniRefund_TravellerService_AddressTypes_AddressTypeDto;
1063
+ /**
1064
+ * Bad Request
1065
+ */
1066
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1067
+ /**
1068
+ * Unauthorized
1069
+ */
1070
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1071
+ /**
1072
+ * Forbidden
1073
+ */
1074
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1075
+ /**
1076
+ * Not Found
1077
+ */
1078
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1079
+ /**
1080
+ * Server Error
1081
+ */
1082
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1083
+ /**
1084
+ * Server Error
1085
+ */
1086
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1087
+ };
1088
+ };
1089
+ };
1090
+ '/api/traveller-service/addresses/{id}': {
1091
+ get: {
1092
+ req: GetApiTravellerServiceAddressesByIdData;
1093
+ res: {
1094
+ /**
1095
+ * Success
1096
+ */
1097
+ 200: UniRefund_TravellerService_AddressTypes_AddressTypeDto;
1098
+ /**
1099
+ * Bad Request
1100
+ */
1101
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1102
+ /**
1103
+ * Unauthorized
1104
+ */
1105
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1106
+ /**
1107
+ * Forbidden
1108
+ */
1109
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1110
+ /**
1111
+ * Not Found
1112
+ */
1113
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1114
+ /**
1115
+ * Server Error
1116
+ */
1117
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1118
+ /**
1119
+ * Server Error
1120
+ */
1121
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1122
+ };
1123
+ };
1124
+ put: {
1125
+ req: PutApiTravellerServiceAddressesByIdData;
1126
+ res: {
1127
+ /**
1128
+ * Success
1129
+ */
1130
+ 200: UniRefund_TravellerService_AddressTypes_AddressTypeDto;
1131
+ /**
1132
+ * Bad Request
1133
+ */
1134
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1135
+ /**
1136
+ * Unauthorized
1137
+ */
1138
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1139
+ /**
1140
+ * Forbidden
1141
+ */
1142
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1143
+ /**
1144
+ * Not Found
1145
+ */
1146
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1147
+ /**
1148
+ * Server Error
1149
+ */
1150
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1151
+ /**
1152
+ * Server Error
1153
+ */
1154
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1155
+ };
1156
+ };
1157
+ delete: {
1158
+ req: DeleteApiTravellerServiceAddressesByIdData;
1159
+ res: {
1160
+ /**
1161
+ * Success
1162
+ */
1163
+ 200: unknown;
1164
+ /**
1165
+ * Bad Request
1166
+ */
1167
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1168
+ /**
1169
+ * Unauthorized
1170
+ */
1171
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1172
+ /**
1173
+ * Forbidden
1174
+ */
1175
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1176
+ /**
1177
+ * Not Found
1178
+ */
1179
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1180
+ /**
1181
+ * Server Error
1182
+ */
1183
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1184
+ /**
1185
+ * Server Error
1186
+ */
1187
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1188
+ };
1189
+ };
1190
+ };
1191
+ '/api/traveller-service/emails': {
1192
+ get: {
1193
+ req: GetApiTravellerServiceEmailsData;
1194
+ res: {
1195
+ /**
1196
+ * Success
1197
+ */
1198
+ 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1199
+ /**
1200
+ * Bad Request
1201
+ */
1202
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1203
+ /**
1204
+ * Unauthorized
1205
+ */
1206
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1207
+ /**
1208
+ * Forbidden
1209
+ */
1210
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1211
+ /**
1212
+ * Not Found
1213
+ */
1214
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1215
+ /**
1216
+ * Server Error
1217
+ */
1218
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1219
+ /**
1220
+ * Server Error
1221
+ */
1222
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1223
+ };
1224
+ };
1225
+ post: {
1226
+ req: PostApiTravellerServiceEmailsData;
1227
+ res: {
1228
+ /**
1229
+ * Success
1230
+ */
1231
+ 200: UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
1232
+ /**
1233
+ * Bad Request
1234
+ */
1235
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1236
+ /**
1237
+ * Unauthorized
1238
+ */
1239
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1240
+ /**
1241
+ * Forbidden
1242
+ */
1243
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1244
+ /**
1245
+ * Not Found
1246
+ */
1247
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1248
+ /**
1249
+ * Server Error
1250
+ */
1251
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1252
+ /**
1253
+ * Server Error
1254
+ */
1255
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1256
+ };
1257
+ };
1258
+ };
1259
+ '/api/traveller-service/emails/{id}': {
1260
+ get: {
1261
+ req: GetApiTravellerServiceEmailsByIdData;
1262
+ res: {
1263
+ /**
1264
+ * Success
1265
+ */
1266
+ 200: UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
1267
+ /**
1268
+ * Bad Request
1269
+ */
1270
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1271
+ /**
1272
+ * Unauthorized
1273
+ */
1274
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1275
+ /**
1276
+ * Forbidden
1277
+ */
1278
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1279
+ /**
1280
+ * Not Found
1281
+ */
1282
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1283
+ /**
1284
+ * Server Error
1285
+ */
1286
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1287
+ /**
1288
+ * Server Error
1289
+ */
1290
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1291
+ };
1292
+ };
1293
+ put: {
1294
+ req: PutApiTravellerServiceEmailsByIdData;
1295
+ res: {
1296
+ /**
1297
+ * Success
1298
+ */
1299
+ 200: UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
1300
+ /**
1301
+ * Bad Request
1302
+ */
1303
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1304
+ /**
1305
+ * Unauthorized
1306
+ */
1307
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1308
+ /**
1309
+ * Forbidden
1310
+ */
1311
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1312
+ /**
1313
+ * Not Found
1314
+ */
1315
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1316
+ /**
1317
+ * Server Error
1318
+ */
1319
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1320
+ /**
1321
+ * Server Error
1322
+ */
1323
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1324
+ };
1325
+ };
1326
+ delete: {
1327
+ req: DeleteApiTravellerServiceEmailsByIdData;
1328
+ res: {
1329
+ /**
1330
+ * Success
1331
+ */
1332
+ 200: unknown;
1333
+ /**
1334
+ * Bad Request
1335
+ */
1336
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1337
+ /**
1338
+ * Unauthorized
1339
+ */
1340
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1341
+ /**
1342
+ * Forbidden
1343
+ */
1344
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1345
+ /**
1346
+ * Not Found
1347
+ */
1348
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1349
+ /**
1350
+ * Server Error
1351
+ */
1352
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1353
+ /**
1354
+ * Server Error
1355
+ */
1356
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1357
+ };
1358
+ };
1359
+ };
1360
+ '/api/traveller-service/individuals/with-components': {
1361
+ post: {
1362
+ req: PostApiTravellerServiceIndividualsWithComponentsData;
1363
+ res: {
1364
+ /**
1365
+ * Success
1366
+ */
1367
+ 200: unknown;
1368
+ /**
1369
+ * Bad Request
1370
+ */
1371
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1372
+ /**
1373
+ * Unauthorized
1374
+ */
1375
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1376
+ /**
1377
+ * Forbidden
1378
+ */
1379
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1380
+ /**
1381
+ * Not Found
1382
+ */
1383
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1384
+ /**
1385
+ * Server Error
1386
+ */
1387
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1388
+ /**
1389
+ * Server Error
1390
+ */
1391
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1392
+ };
1393
+ };
1394
+ };
1395
+ '/api/traveller-service/individuals': {
1396
+ get: {
1397
+ req: GetApiTravellerServiceIndividualsData;
1398
+ res: {
1399
+ /**
1400
+ * Success
1401
+ */
1402
+ 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1403
+ /**
1404
+ * Bad Request
1405
+ */
1406
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1407
+ /**
1408
+ * Unauthorized
1409
+ */
1410
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1411
+ /**
1412
+ * Forbidden
1413
+ */
1414
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1415
+ /**
1416
+ * Not Found
1417
+ */
1418
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1419
+ /**
1420
+ * Server Error
1421
+ */
1422
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1423
+ /**
1424
+ * Server Error
1425
+ */
1426
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1427
+ };
1428
+ };
1429
+ };
1430
+ '/api/traveller-service/telephones': {
1431
+ get: {
1432
+ req: GetApiTravellerServiceTelephonesData;
1433
+ res: {
1434
+ /**
1435
+ * Success
1436
+ */
1437
+ 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1438
+ /**
1439
+ * Bad Request
1440
+ */
1441
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1442
+ /**
1443
+ * Unauthorized
1444
+ */
1445
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1446
+ /**
1447
+ * Forbidden
1448
+ */
1449
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1450
+ /**
1451
+ * Not Found
1452
+ */
1453
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1454
+ /**
1455
+ * Server Error
1456
+ */
1457
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1458
+ /**
1459
+ * Server Error
1460
+ */
1461
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1462
+ };
1463
+ };
1464
+ post: {
1465
+ req: PostApiTravellerServiceTelephonesData;
1466
+ res: {
1467
+ /**
1468
+ * Success
1469
+ */
1470
+ 200: UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
1471
+ /**
1472
+ * Bad Request
1473
+ */
1474
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1475
+ /**
1476
+ * Unauthorized
1477
+ */
1478
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1479
+ /**
1480
+ * Forbidden
1481
+ */
1482
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1483
+ /**
1484
+ * Not Found
1485
+ */
1486
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1487
+ /**
1488
+ * Server Error
1489
+ */
1490
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1491
+ /**
1492
+ * Server Error
1493
+ */
1494
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1495
+ };
1496
+ };
1497
+ };
1498
+ '/api/traveller-service/telephones/{id}': {
1499
+ get: {
1500
+ req: GetApiTravellerServiceTelephonesByIdData;
1501
+ res: {
1502
+ /**
1503
+ * Success
1504
+ */
1505
+ 200: UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
1506
+ /**
1507
+ * Bad Request
1508
+ */
1509
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1510
+ /**
1511
+ * Unauthorized
1512
+ */
1513
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1514
+ /**
1515
+ * Forbidden
1516
+ */
1517
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1518
+ /**
1519
+ * Not Found
1520
+ */
1521
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1522
+ /**
1523
+ * Server Error
1524
+ */
1525
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1526
+ /**
1527
+ * Server Error
1528
+ */
1529
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1530
+ };
1531
+ };
1532
+ put: {
1533
+ req: PutApiTravellerServiceTelephonesByIdData;
1534
+ res: {
1535
+ /**
1536
+ * Success
1537
+ */
1538
+ 200: UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
1539
+ /**
1540
+ * Bad Request
1541
+ */
1542
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1543
+ /**
1544
+ * Unauthorized
1545
+ */
1546
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1547
+ /**
1548
+ * Forbidden
1549
+ */
1550
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1551
+ /**
1552
+ * Not Found
1553
+ */
1554
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1555
+ /**
1556
+ * Server Error
1557
+ */
1558
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1559
+ /**
1560
+ * Server Error
1561
+ */
1562
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1563
+ };
1564
+ };
1565
+ delete: {
1566
+ req: DeleteApiTravellerServiceTelephonesByIdData;
1567
+ res: {
1568
+ /**
1569
+ * Success
1570
+ */
1571
+ 200: unknown;
1572
+ /**
1573
+ * Bad Request
1574
+ */
1575
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1576
+ /**
1577
+ * Unauthorized
1578
+ */
1579
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1580
+ /**
1581
+ * Forbidden
1582
+ */
1583
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1584
+ /**
1585
+ * Not Found
1586
+ */
1587
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1588
+ /**
1589
+ * Server Error
1590
+ */
1591
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1592
+ /**
1593
+ * Server Error
1594
+ */
1595
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1596
+ };
1597
+ };
1598
+ };
1599
+ '/api/traveller-service/travellers/with-components': {
1600
+ post: {
1601
+ req: PostApiTravellerServiceTravellersWithComponentsData;
1602
+ res: {
1603
+ /**
1604
+ * Success
1605
+ */
1606
+ 200: UniRefund_TravellerService_Travellers_CreateTravellerResDto;
1607
+ /**
1608
+ * Bad Request
1609
+ */
1610
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1611
+ /**
1612
+ * Unauthorized
1613
+ */
1614
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1615
+ /**
1616
+ * Forbidden
1617
+ */
1618
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1619
+ /**
1620
+ * Not Found
1621
+ */
1622
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1623
+ /**
1624
+ * Server Error
1625
+ */
1626
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1627
+ /**
1628
+ * Server Error
1629
+ */
1630
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1631
+ };
1632
+ };
1633
+ };
1634
+ '/api/traveller-service/travellers/create': {
1635
+ post: {
1636
+ req: PostApiTravellerServiceTravellersCreateData;
1637
+ res: {
1638
+ /**
1639
+ * Success
1640
+ */
1641
+ 200: UniRefund_TravellerService_Travellers_CreateTravellerResDto;
1642
+ /**
1643
+ * Bad Request
1644
+ */
1645
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1646
+ /**
1647
+ * Unauthorized
1648
+ */
1649
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1650
+ /**
1651
+ * Forbidden
1652
+ */
1653
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1654
+ /**
1655
+ * Not Found
1656
+ */
1657
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1658
+ /**
1659
+ * Server Error
1660
+ */
1661
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1662
+ /**
1663
+ * Server Error
1664
+ */
1665
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1666
+ };
1667
+ };
1668
+ };
1669
+ '/api/traveller-service/travellers/update': {
1670
+ put: {
1671
+ req: PutApiTravellerServiceTravellersUpdateData;
1672
+ res: {
1673
+ /**
1674
+ * Success
1675
+ */
1676
+ 200: UniRefund_TravellerService_Travellers_UpdateTravellerResDto;
1677
+ /**
1678
+ * Bad Request
1679
+ */
1680
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1681
+ /**
1682
+ * Unauthorized
1683
+ */
1684
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1685
+ /**
1686
+ * Forbidden
1687
+ */
1688
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1689
+ /**
1690
+ * Not Found
1691
+ */
1692
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1693
+ /**
1694
+ * Server Error
1695
+ */
1696
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1697
+ /**
1698
+ * Server Error
1699
+ */
1700
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1701
+ };
1702
+ };
1703
+ };
1704
+ '/api/traveller-service/travellers/upsert': {
1705
+ post: {
1706
+ req: PostApiTravellerServiceTravellersUpsertData;
1707
+ res: {
1708
+ /**
1709
+ * Success
1710
+ */
1711
+ 200: UniRefund_TravellerService_Travellers_UpsertTravellerResDto;
1712
+ /**
1713
+ * Bad Request
1714
+ */
1715
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1716
+ /**
1717
+ * Unauthorized
1718
+ */
1719
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1720
+ /**
1721
+ * Forbidden
1722
+ */
1723
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1724
+ /**
1725
+ * Not Found
1726
+ */
1727
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1728
+ /**
1729
+ * Server Error
1730
+ */
1731
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1732
+ /**
1733
+ * Server Error
1734
+ */
1735
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1736
+ };
1737
+ };
1738
+ };
1739
+ '/api/traveller-service/travellers/get-profile-list': {
1740
+ get: {
1741
+ req: GetApiTravellerServiceTravellersGetProfileListData;
1742
+ res: {
1743
+ /**
1744
+ * Success
1745
+ */
1746
+ 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1747
+ /**
1748
+ * Bad Request
1749
+ */
1750
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1751
+ /**
1752
+ * Unauthorized
1753
+ */
1754
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1755
+ /**
1756
+ * Forbidden
1757
+ */
1758
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1759
+ /**
1760
+ * Not Found
1761
+ */
1762
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1763
+ /**
1764
+ * Server Error
1765
+ */
1766
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1767
+ /**
1768
+ * Server Error
1769
+ */
1770
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1771
+ };
1772
+ };
1773
+ };
1774
+ '/api/traveller-service/travellers/get-profile-detail': {
1775
+ get: {
1776
+ req: GetApiTravellerServiceTravellersGetProfileDetailData;
1777
+ res: {
1778
+ /**
1779
+ * Success
1780
+ */
1781
+ 200: UniRefund_TravellerService_Travellers_TravellerProfileDto;
1782
+ /**
1783
+ * Bad Request
1784
+ */
1785
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1786
+ /**
1787
+ * Unauthorized
1788
+ */
1789
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1790
+ /**
1791
+ * Forbidden
1792
+ */
1793
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1794
+ /**
1795
+ * Not Found
1796
+ */
1797
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1798
+ /**
1799
+ * Server Error
1800
+ */
1801
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1802
+ /**
1803
+ * Server Error
1804
+ */
1805
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1806
+ };
1807
+ };
1808
+ };
1809
1809
  };