@ayasofyazilim/saas 0.0.69 → 0.0.71

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.
@@ -1,5 +1,30 @@
1
1
  // This file is auto-generated by @hey-api/openapi-ts
2
2
 
3
+ export type PagedResultDto_AddressTypeDto = {
4
+ items?: Array<UniRefund_TravellerService_AddressTypes_AddressTypeDto> | null;
5
+ totalCount?: number;
6
+ };
7
+
8
+ export type PagedResultDto_EmailCommonDataDto = {
9
+ items?: Array<UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto> | null;
10
+ totalCount?: number;
11
+ };
12
+
13
+ export type PagedResultDto_IndividualProfileDto = {
14
+ items?: Array<UniRefund_TravellerService_Individuals_IndividualProfileDto> | null;
15
+ totalCount?: number;
16
+ };
17
+
18
+ export type PagedResultDto_TelephoneTypeDto = {
19
+ items?: Array<UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto> | null;
20
+ totalCount?: number;
21
+ };
22
+
23
+ export type PagedResultDto_TravellerListProfileDto = {
24
+ items?: Array<UniRefund_TravellerService_Travellers_TravellerListProfileDto> | null;
25
+ totalCount?: number;
26
+ };
27
+
3
28
  export type UniRefund_TravellerService_AddressTypes_AddressTypeDto = {
4
29
  id?: string;
5
30
  creationTime?: string;
@@ -165,6 +190,7 @@ export type UniRefund_TravellerService_NameCommonDatas_CreateNameCommonDataDto =
165
190
 
166
191
  export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationCommonDataDto = {
167
192
  firstName: string;
193
+ middleName?: string | null;
168
194
  lastName: string;
169
195
  travelDocumentNumber: string;
170
196
  birthDate?: string | null;
@@ -183,30 +209,47 @@ export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_Persona
183
209
  nationalityCountryCode2: string;
184
210
  nationalityCountryName: string;
185
211
  firstName: string;
212
+ middleName?: string | null;
186
213
  lastName: string;
214
+ readonly fullName: string;
187
215
  birthDate?: string | null;
188
216
  issueDate?: string | null;
189
217
  expirationDate: string;
190
218
  identificationType: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
191
219
  };
192
220
 
193
- export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpdatePersonalIdentificationCommonDataDto = {
221
+ export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpsertPersonalIdentificationDto = {
194
222
  id?: string | null;
195
223
  travelDocumentNumber: string;
196
224
  birthDate?: string | null;
197
- firstName: string;
198
- lastName: string;
225
+ firstName?: string | null;
226
+ middleName?: string | null;
227
+ lastName?: string | null;
199
228
  issueDate?: string | null;
200
229
  expirationDate: string;
201
- residenceCountryCode2: string;
202
- nationalityCountryCode2: string;
203
- identificationType: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
230
+ residenceCountryCode2?: string | null;
231
+ nationalityCountryCode2?: string | null;
232
+ identificationType?: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
233
+ };
234
+
235
+ export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpsertPersonalIdentificationResponseDto = {
236
+ id: string;
237
+ travellerId: string;
204
238
  };
205
239
 
206
240
  export type UniRefund_TravellerService_PersonalPreferencesTypes_CreatePersonalPreferencesTypeDto = {
207
241
  languagePreferenceCode?: string | null;
208
242
  };
209
243
 
244
+ export type UniRefund_TravellerService_PersonalPreferencesTypes_UpsertPersonalPreferenceDto = {
245
+ languagePreferenceCode: string;
246
+ };
247
+
248
+ export type UniRefund_TravellerService_PersonalPreferencesTypes_UpsertPersonalPreferenceResponseDto = {
249
+ id: string;
250
+ travellerId: string;
251
+ };
252
+
210
253
  export type UniRefund_TravellerService_PersonalSummaries_CreatePersonalSummaryDto = {
211
254
  readonly extraProperties?: {
212
255
  [key: string]: unknown;
@@ -219,6 +262,15 @@ export type UniRefund_TravellerService_PersonalSummaries_CreatePersonalSummaryDt
219
262
  genderTypeCode: UniRefund_TravellerService_Enums_GenderTypeCode;
220
263
  };
221
264
 
265
+ export type UniRefund_TravellerService_PersonalSummaries_UpsertPersonalSummaryDto = {
266
+ genderTypeCode: UniRefund_TravellerService_Enums_GenderTypeCode;
267
+ };
268
+
269
+ export type UniRefund_TravellerService_PersonalSummaries_UpsertPersonalSummaryResponseDto = {
270
+ id: string;
271
+ travellerId: string;
272
+ };
273
+
222
274
  export type UniRefund_TravellerService_TelephoneTypes_CreateTelephoneTypeDto = {
223
275
  readonly extraProperties?: {
224
276
  [key: string]: unknown;
@@ -297,14 +349,21 @@ export type UniRefund_TravellerService_Travellers_TravellerDetailProfileDto = {
297
349
  id: string;
298
350
  languagePreferenceCode?: string | null;
299
351
  userAccountId?: string | null;
352
+ readonly hasUserAccount: boolean;
300
353
  gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
301
354
  personalIdentifications: Array<UniRefund_TravellerService_PersonalIdentificationCommonDatas_PersonalIdentificationProfileDto>;
302
355
  };
303
356
 
357
+ export type UniRefund_TravellerService_Travellers_TravellerDocumentNumberDto = {
358
+ id?: string;
359
+ travelDocumentNumber?: string | null;
360
+ };
361
+
304
362
  export type UniRefund_TravellerService_Travellers_TravellerListProfileDto = {
305
363
  id: string;
306
364
  languagePreferenceCode?: string | null;
307
365
  userAccountId?: string | null;
366
+ readonly hasUserAccount: boolean;
308
367
  gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
309
368
  travelDocumentNumber: string;
310
369
  residenceCountryCode2: string;
@@ -312,25 +371,14 @@ export type UniRefund_TravellerService_Travellers_TravellerListProfileDto = {
312
371
  nationalityCountryCode2: string;
313
372
  nationalityCountryName: string;
314
373
  firstName: string;
374
+ middleName?: string | null;
315
375
  lastName: string;
376
+ readonly fullName: string;
316
377
  birthDate?: string | null;
317
378
  expirationDate: string;
318
379
  identificationType: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
319
380
  };
320
381
 
321
- export type UniRefund_TravellerService_Travellers_UpdateTravellerDto = {
322
- readonly extraProperties?: {
323
- [key: string]: unknown;
324
- } | null;
325
- personalIdentifications: Array<UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpdatePersonalIdentificationCommonDataDto>;
326
- gender: UniRefund_TravellerService_Enums_GenderTypeCode;
327
- languagePreferenceCode: string;
328
- };
329
-
330
- export type UniRefund_TravellerService_Travellers_UpdateTravellerResponseDto = {
331
- id: string;
332
- };
333
-
334
382
  export type UniRefund_TravellerService_Travellers_UpsertTravellerDto = {
335
383
  readonly extraProperties?: {
336
384
  [key: string]: unknown;
@@ -339,6 +387,7 @@ export type UniRefund_TravellerService_Travellers_UpsertTravellerDto = {
339
387
  travelDocumentNumber: string;
340
388
  birthDate?: string | null;
341
389
  firstName?: string | null;
390
+ middleName?: string | null;
342
391
  lastName?: string | null;
343
392
  issueDate?: string | null;
344
393
  expirationDate: string;
@@ -347,6 +396,7 @@ export type UniRefund_TravellerService_Travellers_UpsertTravellerDto = {
347
396
  gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
348
397
  languagePreferenceCode?: string | null;
349
398
  identificationType?: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
399
+ creatorId?: string | null;
350
400
  };
351
401
 
352
402
  export type UniRefund_TravellerService_Travellers_UpsertTravellerResponseDto = {
@@ -357,31 +407,6 @@ export type UniRefund_TravellerService_Travellers_UpsertTravellerResponseDto = {
357
407
  travelDocumentNumber: string;
358
408
  };
359
409
 
360
- export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
361
- items?: Array<UniRefund_TravellerService_AddressTypes_AddressTypeDto> | null;
362
- totalCount?: number;
363
- };
364
-
365
- export type Volo_Abp_Application_Dtos_PagedResultDto_12 = {
366
- items?: Array<UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto> | null;
367
- totalCount?: number;
368
- };
369
-
370
- export type Volo_Abp_Application_Dtos_PagedResultDto_13 = {
371
- items?: Array<UniRefund_TravellerService_Individuals_IndividualProfileDto> | null;
372
- totalCount?: number;
373
- };
374
-
375
- export type Volo_Abp_Application_Dtos_PagedResultDto_14 = {
376
- items?: Array<UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto> | null;
377
- totalCount?: number;
378
- };
379
-
380
- export type Volo_Abp_Application_Dtos_PagedResultDto_15 = {
381
- items?: Array<UniRefund_TravellerService_Travellers_TravellerListProfileDto> | null;
382
- totalCount?: number;
383
- };
384
-
385
410
  export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
386
411
  grantedPolicies?: {
387
412
  [key: string]: (boolean);
@@ -790,7 +815,7 @@ export type GetApiTravellerServiceAddressesData = {
790
815
  sorting?: string;
791
816
  };
792
817
 
793
- export type GetApiTravellerServiceAddressesResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
818
+ export type GetApiTravellerServiceAddressesResponse = PagedResultDto_AddressTypeDto;
794
819
 
795
820
  export type PostApiTravellerServiceAddressesData = {
796
821
  requestBody?: UniRefund_TravellerService_AddressTypes_CreateAddressTypeDto;
@@ -823,7 +848,7 @@ export type GetApiTravellerServiceEmailsData = {
823
848
  sorting?: string;
824
849
  };
825
850
 
826
- export type GetApiTravellerServiceEmailsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
851
+ export type GetApiTravellerServiceEmailsResponse = PagedResultDto_EmailCommonDataDto;
827
852
 
828
853
  export type PostApiTravellerServiceEmailsData = {
829
854
  requestBody?: UniRefund_TravellerService_EmailCommonDatas_CreateEmailCommonDataDto;
@@ -864,7 +889,7 @@ export type GetApiTravellerServiceIndividualsData = {
864
889
  sorting?: string;
865
890
  };
866
891
 
867
- export type GetApiTravellerServiceIndividualsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
892
+ export type GetApiTravellerServiceIndividualsResponse = PagedResultDto_IndividualProfileDto;
868
893
 
869
894
  export type GetApiTravellerServiceTelephonesData = {
870
895
  maxResultCount?: number;
@@ -872,7 +897,7 @@ export type GetApiTravellerServiceTelephonesData = {
872
897
  sorting?: string;
873
898
  };
874
899
 
875
- export type GetApiTravellerServiceTelephonesResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
900
+ export type GetApiTravellerServiceTelephonesResponse = PagedResultDto_TelephoneTypeDto;
876
901
 
877
902
  export type PostApiTravellerServiceTelephonesData = {
878
903
  requestBody?: UniRefund_TravellerService_TelephoneTypes_CreateTelephoneTypeDto;
@@ -912,9 +937,12 @@ export type PostApiTravellerServiceTravellersData = {
912
937
  export type PostApiTravellerServiceTravellersResponse = UniRefund_TravellerService_Travellers_CreateTravellerResponseDto;
913
938
 
914
939
  export type GetApiTravellerServiceTravellersData = {
940
+ email?: string;
915
941
  fullName?: string;
916
942
  maxResultCount?: number;
943
+ nationalities?: Array<(string)>;
917
944
  phoneNumber?: string;
945
+ residences?: Array<(string)>;
918
946
  showExpired?: boolean;
919
947
  skipCount?: number;
920
948
  sorting?: string;
@@ -922,21 +950,34 @@ export type GetApiTravellerServiceTravellersData = {
922
950
  username?: string;
923
951
  };
924
952
 
925
- export type GetApiTravellerServiceTravellersResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
953
+ export type GetApiTravellerServiceTravellersResponse = PagedResultDto_TravellerListProfileDto;
926
954
 
927
- export type PutApiTravellerServiceTravellersByIdData = {
955
+ export type PutApiTravellerServiceTravellersByIdUpsertPersonalPreferenceData = {
928
956
  id: string;
929
- requestBody?: UniRefund_TravellerService_Travellers_UpdateTravellerDto;
957
+ requestBody?: UniRefund_TravellerService_PersonalPreferencesTypes_UpsertPersonalPreferenceDto;
930
958
  };
931
959
 
932
- export type PutApiTravellerServiceTravellersByIdResponse = UniRefund_TravellerService_Travellers_UpdateTravellerResponseDto;
960
+ export type PutApiTravellerServiceTravellersByIdUpsertPersonalPreferenceResponse = UniRefund_TravellerService_PersonalPreferencesTypes_UpsertPersonalPreferenceResponseDto;
933
961
 
934
- export type GetApiTravellerServiceTravellersByIdData = {
962
+ export type PutApiTravellerServiceTravellersByIdUpsertPersonalSummaryData = {
935
963
  id: string;
936
- showExpired?: boolean;
964
+ requestBody?: UniRefund_TravellerService_PersonalSummaries_UpsertPersonalSummaryDto;
937
965
  };
938
966
 
939
- export type GetApiTravellerServiceTravellersByIdResponse = UniRefund_TravellerService_Travellers_TravellerDetailProfileDto;
967
+ export type PutApiTravellerServiceTravellersByIdUpsertPersonalSummaryResponse = UniRefund_TravellerService_PersonalSummaries_UpsertPersonalSummaryResponseDto;
968
+
969
+ export type PutApiTravellerServiceTravellersByIdUpsertPersonalIdentificationData = {
970
+ id: string;
971
+ requestBody?: UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpsertPersonalIdentificationDto;
972
+ };
973
+
974
+ export type PutApiTravellerServiceTravellersByIdUpsertPersonalIdentificationResponse = UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpsertPersonalIdentificationResponseDto;
975
+
976
+ export type DeleteApiTravellerServiceTravellersByIdDeletePersonalIdentificationData = {
977
+ id: string;
978
+ };
979
+
980
+ export type DeleteApiTravellerServiceTravellersByIdDeletePersonalIdentificationResponse = boolean;
940
981
 
941
982
  export type PostApiTravellerServiceTravellersUpsertData = {
942
983
  requestBody?: UniRefund_TravellerService_Travellers_UpsertTravellerDto;
@@ -944,6 +985,25 @@ export type PostApiTravellerServiceTravellersUpsertData = {
944
985
 
945
986
  export type PostApiTravellerServiceTravellersUpsertResponse = UniRefund_TravellerService_Travellers_UpsertTravellerResponseDto;
946
987
 
988
+ export type GetApiTravellerServiceTravellersByIdData = {
989
+ id: string;
990
+ showExpired?: boolean;
991
+ };
992
+
993
+ export type GetApiTravellerServiceTravellersByIdResponse = UniRefund_TravellerService_Travellers_TravellerDetailProfileDto;
994
+
995
+ export type GetApiTravellerServiceTravellersByIdExistsData = {
996
+ id: string;
997
+ };
998
+
999
+ export type GetApiTravellerServiceTravellersByIdExistsResponse = boolean;
1000
+
1001
+ export type GetApiTravellerServiceTravellersDocumentNumbersData = {
1002
+ ids?: Array<(string)>;
1003
+ };
1004
+
1005
+ export type GetApiTravellerServiceTravellersDocumentNumbersResponse = Array<UniRefund_TravellerService_Travellers_TravellerDocumentNumberDto>;
1006
+
947
1007
  export type $OpenApiTs = {
948
1008
  '/api/abp/api-definition': {
949
1009
  get: {
@@ -1057,7 +1117,7 @@ export type $OpenApiTs = {
1057
1117
  /**
1058
1118
  * Success
1059
1119
  */
1060
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1120
+ 200: PagedResultDto_AddressTypeDto;
1061
1121
  /**
1062
1122
  * Bad Request
1063
1123
  */
@@ -1226,7 +1286,7 @@ export type $OpenApiTs = {
1226
1286
  /**
1227
1287
  * Success
1228
1288
  */
1229
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1289
+ 200: PagedResultDto_EmailCommonDataDto;
1230
1290
  /**
1231
1291
  * Bad Request
1232
1292
  */
@@ -1430,7 +1490,7 @@ export type $OpenApiTs = {
1430
1490
  /**
1431
1491
  * Success
1432
1492
  */
1433
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1493
+ 200: PagedResultDto_IndividualProfileDto;
1434
1494
  /**
1435
1495
  * Bad Request
1436
1496
  */
@@ -1465,7 +1525,7 @@ export type $OpenApiTs = {
1465
1525
  /**
1466
1526
  * Success
1467
1527
  */
1468
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1528
+ 200: PagedResultDto_TelephoneTypeDto;
1469
1529
  /**
1470
1530
  * Bad Request
1471
1531
  */
@@ -1702,7 +1762,7 @@ export type $OpenApiTs = {
1702
1762
  /**
1703
1763
  * Success
1704
1764
  */
1705
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1765
+ 200: PagedResultDto_TravellerListProfileDto;
1706
1766
  /**
1707
1767
  * Bad Request
1708
1768
  */
@@ -1730,14 +1790,14 @@ export type $OpenApiTs = {
1730
1790
  };
1731
1791
  };
1732
1792
  };
1733
- '/api/traveller-service/travellers/{id}': {
1793
+ '/api/traveller-service/travellers/{id}/upsert-personal-preference': {
1734
1794
  put: {
1735
- req: PutApiTravellerServiceTravellersByIdData;
1795
+ req: PutApiTravellerServiceTravellersByIdUpsertPersonalPreferenceData;
1736
1796
  res: {
1737
1797
  /**
1738
1798
  * Success
1739
1799
  */
1740
- 200: UniRefund_TravellerService_Travellers_UpdateTravellerResponseDto;
1800
+ 200: UniRefund_TravellerService_PersonalPreferencesTypes_UpsertPersonalPreferenceResponseDto;
1741
1801
  /**
1742
1802
  * Bad Request
1743
1803
  */
@@ -1764,13 +1824,85 @@ export type $OpenApiTs = {
1764
1824
  501: Volo_Abp_Http_RemoteServiceErrorResponse;
1765
1825
  };
1766
1826
  };
1767
- get: {
1768
- req: GetApiTravellerServiceTravellersByIdData;
1827
+ };
1828
+ '/api/traveller-service/travellers/{id}/upsert-personal-summary': {
1829
+ put: {
1830
+ req: PutApiTravellerServiceTravellersByIdUpsertPersonalSummaryData;
1769
1831
  res: {
1770
1832
  /**
1771
1833
  * Success
1772
1834
  */
1773
- 200: UniRefund_TravellerService_Travellers_TravellerDetailProfileDto;
1835
+ 200: UniRefund_TravellerService_PersonalSummaries_UpsertPersonalSummaryResponseDto;
1836
+ /**
1837
+ * Bad Request
1838
+ */
1839
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1840
+ /**
1841
+ * Unauthorized
1842
+ */
1843
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1844
+ /**
1845
+ * Forbidden
1846
+ */
1847
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1848
+ /**
1849
+ * Not Found
1850
+ */
1851
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1852
+ /**
1853
+ * Server Error
1854
+ */
1855
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1856
+ /**
1857
+ * Server Error
1858
+ */
1859
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1860
+ };
1861
+ };
1862
+ };
1863
+ '/api/traveller-service/travellers/{id}/upsert-personal-identification': {
1864
+ put: {
1865
+ req: PutApiTravellerServiceTravellersByIdUpsertPersonalIdentificationData;
1866
+ res: {
1867
+ /**
1868
+ * Success
1869
+ */
1870
+ 200: UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpsertPersonalIdentificationResponseDto;
1871
+ /**
1872
+ * Bad Request
1873
+ */
1874
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1875
+ /**
1876
+ * Unauthorized
1877
+ */
1878
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1879
+ /**
1880
+ * Forbidden
1881
+ */
1882
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1883
+ /**
1884
+ * Not Found
1885
+ */
1886
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1887
+ /**
1888
+ * Server Error
1889
+ */
1890
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1891
+ /**
1892
+ * Server Error
1893
+ */
1894
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1895
+ };
1896
+ };
1897
+ };
1898
+ '/api/traveller-service/travellers/{id}/delete-personal-identification': {
1899
+ delete: {
1900
+ req: DeleteApiTravellerServiceTravellersByIdDeletePersonalIdentificationData;
1901
+ res: {
1902
+ /**
1903
+ * Success
1904
+ */
1905
+ 200: boolean;
1774
1906
  /**
1775
1907
  * Bad Request
1776
1908
  */
@@ -1833,4 +1965,109 @@ export type $OpenApiTs = {
1833
1965
  };
1834
1966
  };
1835
1967
  };
1968
+ '/api/traveller-service/travellers/{id}': {
1969
+ get: {
1970
+ req: GetApiTravellerServiceTravellersByIdData;
1971
+ res: {
1972
+ /**
1973
+ * Success
1974
+ */
1975
+ 200: UniRefund_TravellerService_Travellers_TravellerDetailProfileDto;
1976
+ /**
1977
+ * Bad Request
1978
+ */
1979
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1980
+ /**
1981
+ * Unauthorized
1982
+ */
1983
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1984
+ /**
1985
+ * Forbidden
1986
+ */
1987
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1988
+ /**
1989
+ * Not Found
1990
+ */
1991
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1992
+ /**
1993
+ * Server Error
1994
+ */
1995
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1996
+ /**
1997
+ * Server Error
1998
+ */
1999
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2000
+ };
2001
+ };
2002
+ };
2003
+ '/api/traveller-service/travellers/{id}/exists': {
2004
+ get: {
2005
+ req: GetApiTravellerServiceTravellersByIdExistsData;
2006
+ res: {
2007
+ /**
2008
+ * Success
2009
+ */
2010
+ 200: boolean;
2011
+ /**
2012
+ * Bad Request
2013
+ */
2014
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2015
+ /**
2016
+ * Unauthorized
2017
+ */
2018
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2019
+ /**
2020
+ * Forbidden
2021
+ */
2022
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2023
+ /**
2024
+ * Not Found
2025
+ */
2026
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2027
+ /**
2028
+ * Server Error
2029
+ */
2030
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2031
+ /**
2032
+ * Server Error
2033
+ */
2034
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2035
+ };
2036
+ };
2037
+ };
2038
+ '/api/traveller-service/travellers/document-numbers': {
2039
+ get: {
2040
+ req: GetApiTravellerServiceTravellersDocumentNumbersData;
2041
+ res: {
2042
+ /**
2043
+ * Success
2044
+ */
2045
+ 200: Array<UniRefund_TravellerService_Travellers_TravellerDocumentNumberDto>;
2046
+ /**
2047
+ * Bad Request
2048
+ */
2049
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2050
+ /**
2051
+ * Unauthorized
2052
+ */
2053
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2054
+ /**
2055
+ * Forbidden
2056
+ */
2057
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2058
+ /**
2059
+ * Not Found
2060
+ */
2061
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2062
+ /**
2063
+ * Server Error
2064
+ */
2065
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2066
+ /**
2067
+ * Server Error
2068
+ */
2069
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2070
+ };
2071
+ };
2072
+ };
1836
2073
  };
package/generator.mjs CHANGED
@@ -83,6 +83,11 @@ var initial_api_list = [
83
83
  output: "ExportValidation",
84
84
  dereference: true,
85
85
  },
86
+ {
87
+ input: "swagger-json/Finance",
88
+ output: "Finance",
89
+ dereference: true,
90
+ },
86
91
  ...upwithcrowd_api_list,
87
92
  ];
88
93
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ayasofyazilim/saas",
3
- "version": "0.0.69",
3
+ "version": "0.0.71",
4
4
  "description": "Ayasofyazılım SAAS",
5
5
  "main": "generator.mjs",
6
6
  "bin": {
@@ -23,5 +23,6 @@
23
23
  "@apidevtools/swagger-parser": "^10.1.0",
24
24
  "@hey-api/openapi-ts": "0.45.1",
25
25
  "typescript": "^5.4.5"
26
- }
26
+ },
27
+ "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
27
28
  }