@ayasofyazilim/saas 0.0.50 → 0.0.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CRMService/schemas.gen.ts +104 -0
- package/CRMService/services.gen.ts +65 -4
- package/CRMService/types.gen.ts +116 -6
- package/ContractService/ContractServiceClient.ts +50 -50
- package/ContractService/schemas.gen.ts +9572 -10913
- package/ContractService/services.gen.ts +1637 -1661
- package/ContractService/types.gen.ts +3555 -3720
- package/TagService/schemas.gen.ts +168 -109
- package/TagService/services.gen.ts +27 -3
- package/TagService/types.gen.ts +37 -8
- package/TravellerService/schemas.gen.ts +190 -238
- package/TravellerService/services.gen.ts +12 -12
- package/TravellerService/types.gen.ts +50 -49
- package/package.json +1 -1
|
@@ -552,7 +552,7 @@ export class TravellerService {
|
|
|
552
552
|
/**
|
|
553
553
|
* @param data The data for the request.
|
|
554
554
|
* @param data.requestBody
|
|
555
|
-
* @returns
|
|
555
|
+
* @returns UniRefund_TravellerService_Travellers_CreateTravellerResponseDto Success
|
|
556
556
|
* @throws ApiError
|
|
557
557
|
*/
|
|
558
558
|
public postApiTravellerServiceTravellersWithComponents(data: PostApiTravellerServiceTravellersWithComponentsData = {}): CancelablePromise<PostApiTravellerServiceTravellersWithComponentsResponse> {
|
|
@@ -575,7 +575,7 @@ export class TravellerService {
|
|
|
575
575
|
/**
|
|
576
576
|
* @param data The data for the request.
|
|
577
577
|
* @param data.requestBody
|
|
578
|
-
* @returns
|
|
578
|
+
* @returns UniRefund_TravellerService_Travellers_CreateTravellerResponseDto Success
|
|
579
579
|
* @throws ApiError
|
|
580
580
|
*/
|
|
581
581
|
public postApiTravellerServiceTravellers(data: PostApiTravellerServiceTravellersData = {}): CancelablePromise<PostApiTravellerServiceTravellersResponse> {
|
|
@@ -597,10 +597,10 @@ export class TravellerService {
|
|
|
597
597
|
|
|
598
598
|
/**
|
|
599
599
|
* @param data The data for the request.
|
|
600
|
-
* @param data.
|
|
601
|
-
* @param data.
|
|
602
|
-
* @param data.
|
|
603
|
-
* @param data.
|
|
600
|
+
* @param data.travelDocumentNumber
|
|
601
|
+
* @param data.fullName
|
|
602
|
+
* @param data.phoneNumber
|
|
603
|
+
* @param data.username
|
|
604
604
|
* @param data.showExpired
|
|
605
605
|
* @param data.sorting
|
|
606
606
|
* @param data.skipCount
|
|
@@ -613,10 +613,10 @@ export class TravellerService {
|
|
|
613
613
|
method: 'GET',
|
|
614
614
|
url: '/api/traveller-service/travellers',
|
|
615
615
|
query: {
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
616
|
+
TravelDocumentNumber: data.travelDocumentNumber,
|
|
617
|
+
FullName: data.fullName,
|
|
618
|
+
PhoneNumber: data.phoneNumber,
|
|
619
|
+
Username: data.username,
|
|
620
620
|
ShowExpired: data.showExpired,
|
|
621
621
|
Sorting: data.sorting,
|
|
622
622
|
SkipCount: data.skipCount,
|
|
@@ -637,7 +637,7 @@ export class TravellerService {
|
|
|
637
637
|
* @param data The data for the request.
|
|
638
638
|
* @param data.id
|
|
639
639
|
* @param data.requestBody
|
|
640
|
-
* @returns
|
|
640
|
+
* @returns UniRefund_TravellerService_Travellers_UpdateTravellerResponseDto Success
|
|
641
641
|
* @throws ApiError
|
|
642
642
|
*/
|
|
643
643
|
public putApiTravellerServiceTravellersById(data: PutApiTravellerServiceTravellersByIdData): CancelablePromise<PutApiTravellerServiceTravellersByIdResponse> {
|
|
@@ -691,7 +691,7 @@ export class TravellerService {
|
|
|
691
691
|
/**
|
|
692
692
|
* @param data The data for the request.
|
|
693
693
|
* @param data.requestBody
|
|
694
|
-
* @returns
|
|
694
|
+
* @returns UniRefund_TravellerService_Travellers_UpsertTravellerResponseDto Success
|
|
695
695
|
* @throws ApiError
|
|
696
696
|
*/
|
|
697
697
|
public postApiTravellerServiceTravellersUpsert(data: PostApiTravellerServiceTravellersUpsertData = {}): CancelablePromise<PostApiTravellerServiceTravellersUpsertResponse> {
|
|
@@ -124,19 +124,19 @@ export type UniRefund_TravellerService_EntityInformationTypes_CreateEntityInform
|
|
|
124
124
|
individuals?: Array<UniRefund_TravellerService_Individuals_CreateIndividualDto> | null;
|
|
125
125
|
};
|
|
126
126
|
|
|
127
|
-
export type UniRefund_TravellerService_Enums_AddressTypeCode =
|
|
127
|
+
export type UniRefund_TravellerService_Enums_AddressTypeCode = 'HOME' | 'OFFICE';
|
|
128
128
|
|
|
129
|
-
export type UniRefund_TravellerService_Enums_AffiliationTypeCode =
|
|
129
|
+
export type UniRefund_TravellerService_Enums_AffiliationTypeCode = 'COFOUNDER' | 'PARTNER' | 'ABPUSER';
|
|
130
130
|
|
|
131
|
-
export type UniRefund_TravellerService_Enums_EmailTypeCode =
|
|
131
|
+
export type UniRefund_TravellerService_Enums_EmailTypeCode = 'WORK' | 'PERSONAL';
|
|
132
132
|
|
|
133
|
-
export type UniRefund_TravellerService_Enums_EntityPartyTypeCode =
|
|
133
|
+
export type UniRefund_TravellerService_Enums_EntityPartyTypeCode = 'TRAVELLER';
|
|
134
134
|
|
|
135
|
-
export type UniRefund_TravellerService_Enums_GenderTypeCode =
|
|
135
|
+
export type UniRefund_TravellerService_Enums_GenderTypeCode = 'MALE' | 'FEMALE';
|
|
136
136
|
|
|
137
|
-
export type UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode =
|
|
137
|
+
export type UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode = 'Passport';
|
|
138
138
|
|
|
139
|
-
export type UniRefund_TravellerService_Enums_TelephoneTypeCode =
|
|
139
|
+
export type UniRefund_TravellerService_Enums_TelephoneTypeCode = 'HOME' | 'OFFICE' | 'MOBILE' | 'FAX';
|
|
140
140
|
|
|
141
141
|
export type UniRefund_TravellerService_Individuals_CreateIndividualDto = {
|
|
142
142
|
readonly extraProperties?: {
|
|
@@ -166,44 +166,45 @@ export type UniRefund_TravellerService_NameCommonDatas_CreateNameCommonDataDto =
|
|
|
166
166
|
export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationCommonDataDto = {
|
|
167
167
|
firstName: string;
|
|
168
168
|
lastName: string;
|
|
169
|
-
|
|
169
|
+
travelDocumentNumber: string;
|
|
170
170
|
birthDate?: string | null;
|
|
171
171
|
issueDate?: string | null;
|
|
172
172
|
expirationDate: string;
|
|
173
|
-
|
|
174
|
-
|
|
173
|
+
residenceCountryCode2: string;
|
|
174
|
+
nationalityCountryCode2: string;
|
|
175
175
|
identificationType?: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
|
|
176
176
|
};
|
|
177
177
|
|
|
178
178
|
export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_PersonalIdentificationProfileDto = {
|
|
179
179
|
id: string;
|
|
180
180
|
travelDocumentNumber: string;
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
181
|
+
residenceCountryCode2: string;
|
|
182
|
+
residenceCountryName: string;
|
|
183
|
+
nationalityCountryCode2: string;
|
|
184
|
+
nationalityCountryName: string;
|
|
185
185
|
firstName: string;
|
|
186
186
|
lastName: string;
|
|
187
|
-
|
|
187
|
+
birthDate?: string | null;
|
|
188
|
+
issueDate?: string | null;
|
|
188
189
|
expirationDate: string;
|
|
189
190
|
identificationType: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
|
|
190
191
|
};
|
|
191
192
|
|
|
192
193
|
export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpdatePersonalIdentificationCommonDataDto = {
|
|
193
194
|
id?: string | null;
|
|
194
|
-
|
|
195
|
+
travelDocumentNumber: string;
|
|
195
196
|
birthDate?: string | null;
|
|
196
197
|
firstName: string;
|
|
197
198
|
lastName: string;
|
|
198
199
|
issueDate?: string | null;
|
|
199
200
|
expirationDate: string;
|
|
200
|
-
|
|
201
|
-
|
|
201
|
+
residenceCountryCode2: string;
|
|
202
|
+
nationalityCountryCode2: string;
|
|
202
203
|
identificationType: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
|
|
203
204
|
};
|
|
204
205
|
|
|
205
206
|
export type UniRefund_TravellerService_PersonalPreferencesTypes_CreatePersonalPreferencesTypeDto = {
|
|
206
|
-
|
|
207
|
+
languagePreferenceCode?: string | null;
|
|
207
208
|
};
|
|
208
209
|
|
|
209
210
|
export type UniRefund_TravellerService_PersonalSummaries_CreatePersonalSummaryDto = {
|
|
@@ -276,10 +277,10 @@ export type UniRefund_TravellerService_Travellers_CreateTravellerDto = {
|
|
|
276
277
|
} | null;
|
|
277
278
|
personalIdentification: UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationCommonDataDto;
|
|
278
279
|
gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
|
|
279
|
-
|
|
280
|
+
languagePreferenceCode?: string | null;
|
|
280
281
|
};
|
|
281
282
|
|
|
282
|
-
export type
|
|
283
|
+
export type UniRefund_TravellerService_Travellers_CreateTravellerResponseDto = {
|
|
283
284
|
id: string;
|
|
284
285
|
};
|
|
285
286
|
|
|
@@ -294,25 +295,25 @@ export type UniRefund_TravellerService_Travellers_CreateWithComponentsTravellerD
|
|
|
294
295
|
|
|
295
296
|
export type UniRefund_TravellerService_Travellers_TravellerDetailProfileDto = {
|
|
296
297
|
id: string;
|
|
297
|
-
|
|
298
|
+
languagePreferenceCode?: string | null;
|
|
298
299
|
userAccountId?: string | null;
|
|
299
300
|
gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
|
|
300
|
-
|
|
301
|
+
personalIdentifications: Array<UniRefund_TravellerService_PersonalIdentificationCommonDatas_PersonalIdentificationProfileDto>;
|
|
301
302
|
};
|
|
302
303
|
|
|
303
304
|
export type UniRefund_TravellerService_Travellers_TravellerListProfileDto = {
|
|
304
305
|
id: string;
|
|
305
|
-
|
|
306
|
+
languagePreferenceCode?: string | null;
|
|
306
307
|
userAccountId?: string | null;
|
|
307
308
|
gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
|
|
308
309
|
travelDocumentNumber: string;
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
310
|
+
residenceCountryCode2: string;
|
|
311
|
+
residenceCountryName: string;
|
|
312
|
+
nationalityCountryCode2: string;
|
|
313
|
+
nationalityCountryName: string;
|
|
313
314
|
firstName: string;
|
|
314
315
|
lastName: string;
|
|
315
|
-
|
|
316
|
+
birthDate?: string | null;
|
|
316
317
|
expirationDate: string;
|
|
317
318
|
identificationType: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
|
|
318
319
|
};
|
|
@@ -323,10 +324,10 @@ export type UniRefund_TravellerService_Travellers_UpdateTravellerDto = {
|
|
|
323
324
|
} | null;
|
|
324
325
|
personalIdentifications: Array<UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpdatePersonalIdentificationCommonDataDto>;
|
|
325
326
|
gender: UniRefund_TravellerService_Enums_GenderTypeCode;
|
|
326
|
-
|
|
327
|
+
languagePreferenceCode: string;
|
|
327
328
|
};
|
|
328
329
|
|
|
329
|
-
export type
|
|
330
|
+
export type UniRefund_TravellerService_Travellers_UpdateTravellerResponseDto = {
|
|
330
331
|
id: string;
|
|
331
332
|
};
|
|
332
333
|
|
|
@@ -335,25 +336,25 @@ export type UniRefund_TravellerService_Travellers_UpsertTravellerDto = {
|
|
|
335
336
|
[key: string]: unknown;
|
|
336
337
|
} | null;
|
|
337
338
|
id?: string | null;
|
|
338
|
-
|
|
339
|
+
travelDocumentNumber: string;
|
|
339
340
|
birthDate?: string | null;
|
|
340
341
|
firstName?: string | null;
|
|
341
342
|
lastName?: string | null;
|
|
342
343
|
issueDate?: string | null;
|
|
343
344
|
expirationDate: string;
|
|
344
|
-
|
|
345
|
-
|
|
345
|
+
residenceCountryCode2?: string | null;
|
|
346
|
+
nationalityCountryCode2?: string | null;
|
|
346
347
|
gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
|
|
347
|
-
|
|
348
|
+
languagePreferenceCode?: string | null;
|
|
348
349
|
identificationType?: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
|
|
349
350
|
};
|
|
350
351
|
|
|
351
|
-
export type
|
|
352
|
+
export type UniRefund_TravellerService_Travellers_UpsertTravellerResponseDto = {
|
|
352
353
|
readonly extraProperties?: {
|
|
353
354
|
[key: string]: unknown;
|
|
354
355
|
} | null;
|
|
355
356
|
id: string;
|
|
356
|
-
|
|
357
|
+
travelDocumentNumber: string;
|
|
357
358
|
};
|
|
358
359
|
|
|
359
360
|
export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
|
|
@@ -902,23 +903,23 @@ export type PostApiTravellerServiceTravellersWithComponentsData = {
|
|
|
902
903
|
requestBody?: UniRefund_TravellerService_Travellers_CreateWithComponentsTravellerDto;
|
|
903
904
|
};
|
|
904
905
|
|
|
905
|
-
export type PostApiTravellerServiceTravellersWithComponentsResponse =
|
|
906
|
+
export type PostApiTravellerServiceTravellersWithComponentsResponse = UniRefund_TravellerService_Travellers_CreateTravellerResponseDto;
|
|
906
907
|
|
|
907
908
|
export type PostApiTravellerServiceTravellersData = {
|
|
908
909
|
requestBody?: UniRefund_TravellerService_Travellers_CreateTravellerDto;
|
|
909
910
|
};
|
|
910
911
|
|
|
911
|
-
export type PostApiTravellerServiceTravellersResponse =
|
|
912
|
+
export type PostApiTravellerServiceTravellersResponse = UniRefund_TravellerService_Travellers_CreateTravellerResponseDto;
|
|
912
913
|
|
|
913
914
|
export type GetApiTravellerServiceTravellersData = {
|
|
914
|
-
|
|
915
|
+
fullName?: string;
|
|
915
916
|
maxResultCount?: number;
|
|
916
|
-
|
|
917
|
+
phoneNumber?: string;
|
|
917
918
|
showExpired?: boolean;
|
|
918
919
|
skipCount?: number;
|
|
919
920
|
sorting?: string;
|
|
920
|
-
|
|
921
|
-
|
|
921
|
+
travelDocumentNumber?: string;
|
|
922
|
+
username?: string;
|
|
922
923
|
};
|
|
923
924
|
|
|
924
925
|
export type GetApiTravellerServiceTravellersResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
@@ -928,7 +929,7 @@ export type PutApiTravellerServiceTravellersByIdData = {
|
|
|
928
929
|
requestBody?: UniRefund_TravellerService_Travellers_UpdateTravellerDto;
|
|
929
930
|
};
|
|
930
931
|
|
|
931
|
-
export type PutApiTravellerServiceTravellersByIdResponse =
|
|
932
|
+
export type PutApiTravellerServiceTravellersByIdResponse = UniRefund_TravellerService_Travellers_UpdateTravellerResponseDto;
|
|
932
933
|
|
|
933
934
|
export type GetApiTravellerServiceTravellersByIdData = {
|
|
934
935
|
id: string;
|
|
@@ -941,7 +942,7 @@ export type PostApiTravellerServiceTravellersUpsertData = {
|
|
|
941
942
|
requestBody?: UniRefund_TravellerService_Travellers_UpsertTravellerDto;
|
|
942
943
|
};
|
|
943
944
|
|
|
944
|
-
export type PostApiTravellerServiceTravellersUpsertResponse =
|
|
945
|
+
export type PostApiTravellerServiceTravellersUpsertResponse = UniRefund_TravellerService_Travellers_UpsertTravellerResponseDto;
|
|
945
946
|
|
|
946
947
|
export type $OpenApiTs = {
|
|
947
948
|
'/api/abp/api-definition': {
|
|
@@ -1633,7 +1634,7 @@ export type $OpenApiTs = {
|
|
|
1633
1634
|
/**
|
|
1634
1635
|
* Success
|
|
1635
1636
|
*/
|
|
1636
|
-
200:
|
|
1637
|
+
200: UniRefund_TravellerService_Travellers_CreateTravellerResponseDto;
|
|
1637
1638
|
/**
|
|
1638
1639
|
* Bad Request
|
|
1639
1640
|
*/
|
|
@@ -1668,7 +1669,7 @@ export type $OpenApiTs = {
|
|
|
1668
1669
|
/**
|
|
1669
1670
|
* Success
|
|
1670
1671
|
*/
|
|
1671
|
-
200:
|
|
1672
|
+
200: UniRefund_TravellerService_Travellers_CreateTravellerResponseDto;
|
|
1672
1673
|
/**
|
|
1673
1674
|
* Bad Request
|
|
1674
1675
|
*/
|
|
@@ -1736,7 +1737,7 @@ export type $OpenApiTs = {
|
|
|
1736
1737
|
/**
|
|
1737
1738
|
* Success
|
|
1738
1739
|
*/
|
|
1739
|
-
200:
|
|
1740
|
+
200: UniRefund_TravellerService_Travellers_UpdateTravellerResponseDto;
|
|
1740
1741
|
/**
|
|
1741
1742
|
* Bad Request
|
|
1742
1743
|
*/
|
|
@@ -1804,7 +1805,7 @@ export type $OpenApiTs = {
|
|
|
1804
1805
|
/**
|
|
1805
1806
|
* Success
|
|
1806
1807
|
*/
|
|
1807
|
-
200:
|
|
1808
|
+
200: UniRefund_TravellerService_Travellers_UpsertTravellerResponseDto;
|
|
1808
1809
|
/**
|
|
1809
1810
|
* Bad Request
|
|
1810
1811
|
*/
|