@ayasofyazilim/saas 0.0.127 → 0.0.129
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CRMService/schemas.gen.ts +195 -99
- package/CRMService/sdk.gen.ts +22 -0
- package/CRMService/types.gen.ts +44 -29
- package/ContractService/schemas.gen.ts +118 -65
- package/ContractService/sdk.gen.ts +91 -1
- package/ContractService/types.gen.ts +280 -3373
- package/package.json +1 -1
package/CRMService/sdk.gen.ts
CHANGED
|
@@ -2638,6 +2638,10 @@ export class RefundPointService {
|
|
|
2638
2638
|
/**
|
|
2639
2639
|
* @param data The data for the request.
|
|
2640
2640
|
* @param data.id
|
|
2641
|
+
* @param data.name
|
|
2642
|
+
* @param data.sorting
|
|
2643
|
+
* @param data.skipCount
|
|
2644
|
+
* @param data.maxResultCount
|
|
2641
2645
|
* @returns unknown Success
|
|
2642
2646
|
* @throws ApiError
|
|
2643
2647
|
*/
|
|
@@ -2648,6 +2652,12 @@ export class RefundPointService {
|
|
|
2648
2652
|
path: {
|
|
2649
2653
|
id: data.id
|
|
2650
2654
|
},
|
|
2655
|
+
query: {
|
|
2656
|
+
Name: data.name,
|
|
2657
|
+
Sorting: data.sorting,
|
|
2658
|
+
SkipCount: data.skipCount,
|
|
2659
|
+
MaxResultCount: data.maxResultCount
|
|
2660
|
+
},
|
|
2651
2661
|
errors: {
|
|
2652
2662
|
400: 'Bad Request',
|
|
2653
2663
|
401: 'Unauthorized',
|
|
@@ -3189,6 +3199,7 @@ export class TaxFreeService {
|
|
|
3189
3199
|
|
|
3190
3200
|
/**
|
|
3191
3201
|
* @param data The data for the request.
|
|
3202
|
+
* @param data.typeCode
|
|
3192
3203
|
* @param data.name
|
|
3193
3204
|
* @param data.sorting
|
|
3194
3205
|
* @param data.skipCount
|
|
@@ -3201,6 +3212,7 @@ export class TaxFreeService {
|
|
|
3201
3212
|
method: 'GET',
|
|
3202
3213
|
url: '/api/crm-service/tax-frees',
|
|
3203
3214
|
query: {
|
|
3215
|
+
TypeCode: data.typeCode,
|
|
3204
3216
|
Name: data.name,
|
|
3205
3217
|
Sorting: data.sorting,
|
|
3206
3218
|
SkipCount: data.skipCount,
|
|
@@ -3295,6 +3307,10 @@ export class TaxFreeService {
|
|
|
3295
3307
|
/**
|
|
3296
3308
|
* @param data The data for the request.
|
|
3297
3309
|
* @param data.id
|
|
3310
|
+
* @param data.name
|
|
3311
|
+
* @param data.sorting
|
|
3312
|
+
* @param data.skipCount
|
|
3313
|
+
* @param data.maxResultCount
|
|
3298
3314
|
* @returns unknown Success
|
|
3299
3315
|
* @throws ApiError
|
|
3300
3316
|
*/
|
|
@@ -3305,6 +3321,12 @@ export class TaxFreeService {
|
|
|
3305
3321
|
path: {
|
|
3306
3322
|
id: data.id
|
|
3307
3323
|
},
|
|
3324
|
+
query: {
|
|
3325
|
+
Name: data.name,
|
|
3326
|
+
Sorting: data.sorting,
|
|
3327
|
+
SkipCount: data.skipCount,
|
|
3328
|
+
MaxResultCount: data.maxResultCount
|
|
3329
|
+
},
|
|
3308
3330
|
errors: {
|
|
3309
3331
|
400: 'Bad Request',
|
|
3310
3332
|
401: 'Unauthorized',
|
package/CRMService/types.gen.ts
CHANGED
|
@@ -171,10 +171,11 @@ export type UniRefund_CRMService_ContactInformationTypes_CreateContactInformatio
|
|
|
171
171
|
};
|
|
172
172
|
|
|
173
173
|
export type UniRefund_CRMService_Customss_CreateCustomsDto = {
|
|
174
|
-
entityInformationTypes: Array<UniRefund_CRMService_Customss_CreateCustomsEntityInformationTypeDto>;
|
|
175
174
|
parentId?: (string) | null;
|
|
176
175
|
taxpayerId?: (string) | null;
|
|
177
|
-
typeCode
|
|
176
|
+
typeCode: UniRefund_CRMService_Customss_CustomsTypeCode;
|
|
177
|
+
gateNumber?: (string) | null;
|
|
178
|
+
entityInformationTypes: Array<UniRefund_CRMService_Customss_CreateCustomsEntityInformationTypeDto>;
|
|
178
179
|
};
|
|
179
180
|
|
|
180
181
|
export type UniRefund_CRMService_Customss_CreateCustomsEntityInformationTypeDto = {
|
|
@@ -204,6 +205,7 @@ export type UniRefund_CRMService_Customss_CustomsDto = {
|
|
|
204
205
|
parentId?: (string) | null;
|
|
205
206
|
taxpayerId: string;
|
|
206
207
|
typeCode: UniRefund_CRMService_Customss_CustomsTypeCode;
|
|
208
|
+
gateNumber?: (string) | null;
|
|
207
209
|
entityInformations?: Array<UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeDto> | null;
|
|
208
210
|
};
|
|
209
211
|
|
|
@@ -226,6 +228,7 @@ export type UniRefund_CRMService_Customss_UpdateCustomsDto = {
|
|
|
226
228
|
parentId?: (string) | null;
|
|
227
229
|
taxpayerId?: (string) | null;
|
|
228
230
|
typeCode?: UniRefund_CRMService_Customss_CustomsTypeCode;
|
|
231
|
+
gateNumber?: (string) | null;
|
|
229
232
|
};
|
|
230
233
|
|
|
231
234
|
export type UniRefund_CRMService_Customss_UpdateCustomsOrganizationDto = {
|
|
@@ -495,12 +498,12 @@ export type UniRefund_CRMService_Merchants_UpdateMerchantDto = {
|
|
|
495
498
|
};
|
|
496
499
|
|
|
497
500
|
export type UniRefund_CRMService_NameCommonDatas_CreateNameCommonDataDto = {
|
|
498
|
-
salutation
|
|
501
|
+
salutation?: (string) | null;
|
|
499
502
|
firstName: string;
|
|
500
503
|
lastName: string;
|
|
501
|
-
suffix
|
|
502
|
-
mailingName
|
|
503
|
-
officialName
|
|
504
|
+
suffix?: (string) | null;
|
|
505
|
+
mailingName?: (string) | null;
|
|
506
|
+
officialName?: (string) | null;
|
|
504
507
|
};
|
|
505
508
|
|
|
506
509
|
export type UniRefund_CRMService_NameCommonDatas_NameCommonDataDto = {
|
|
@@ -525,12 +528,12 @@ export type UniRefund_CRMService_NameCommonDatas_UpdateNameCommonDataDto = {
|
|
|
525
528
|
readonly extraProperties?: {
|
|
526
529
|
[key: string]: unknown;
|
|
527
530
|
} | null;
|
|
528
|
-
salutation
|
|
531
|
+
salutation?: (string) | null;
|
|
529
532
|
firstName: string;
|
|
530
533
|
lastName: string;
|
|
531
|
-
suffix
|
|
532
|
-
mailingName
|
|
533
|
-
officialName
|
|
534
|
+
suffix?: (string) | null;
|
|
535
|
+
mailingName?: (string) | null;
|
|
536
|
+
officialName?: (string) | null;
|
|
534
537
|
};
|
|
535
538
|
|
|
536
539
|
export type UniRefund_CRMService_Organizations_CreateOrganizationDto = {
|
|
@@ -577,12 +580,12 @@ export type UniRefund_CRMService_PersonalSummaries_CreatePersonalSummaryDto = {
|
|
|
577
580
|
readonly extraProperties?: {
|
|
578
581
|
[key: string]: unknown;
|
|
579
582
|
} | null;
|
|
580
|
-
date
|
|
581
|
-
birthDate
|
|
582
|
-
ethnicity
|
|
583
|
-
maritalStatusCode
|
|
584
|
-
religiousAffiliationName
|
|
585
|
-
genderTypeCode
|
|
583
|
+
date?: (string) | null;
|
|
584
|
+
birthDate?: (string) | null;
|
|
585
|
+
ethnicity?: (string) | null;
|
|
586
|
+
maritalStatusCode?: (string) | null;
|
|
587
|
+
religiousAffiliationName?: (string) | null;
|
|
588
|
+
genderTypeCode?: UniRefund_CRMService_Enums_GenderTypeCode;
|
|
586
589
|
};
|
|
587
590
|
|
|
588
591
|
export type UniRefund_CRMService_PersonalSummaries_PersonalSummaryDto = {
|
|
@@ -594,8 +597,8 @@ export type UniRefund_CRMService_PersonalSummaries_PersonalSummaryDto = {
|
|
|
594
597
|
isDeleted?: boolean;
|
|
595
598
|
deleterId?: (string) | null;
|
|
596
599
|
deletionTime?: (string) | null;
|
|
597
|
-
date?: string;
|
|
598
|
-
birthDate?: string;
|
|
600
|
+
date?: (string) | null;
|
|
601
|
+
birthDate?: (string) | null;
|
|
599
602
|
ethnicity?: (string) | null;
|
|
600
603
|
maritalStatusCode?: (string) | null;
|
|
601
604
|
religiousAffiliationName?: (string) | null;
|
|
@@ -607,12 +610,12 @@ export type UniRefund_CRMService_PersonalSummaries_UpdatePersonalSummaryDto = {
|
|
|
607
610
|
readonly extraProperties?: {
|
|
608
611
|
[key: string]: unknown;
|
|
609
612
|
} | null;
|
|
610
|
-
date
|
|
611
|
-
birthDate
|
|
612
|
-
ethnicity
|
|
613
|
-
maritalStatusCode
|
|
614
|
-
religiousAffiliationName
|
|
615
|
-
genderTypeCode
|
|
613
|
+
date?: (string) | null;
|
|
614
|
+
birthDate?: (string) | null;
|
|
615
|
+
ethnicity?: (string) | null;
|
|
616
|
+
maritalStatusCode?: (string) | null;
|
|
617
|
+
religiousAffiliationName?: (string) | null;
|
|
618
|
+
genderTypeCode?: UniRefund_CRMService_Enums_GenderTypeCode;
|
|
616
619
|
};
|
|
617
620
|
|
|
618
621
|
export type UniRefund_CRMService_RefundPoints_CreateRefundPointDto = {
|
|
@@ -756,12 +759,10 @@ export type UniRefund_CRMService_TaxFrees_UpdateTaxFreeDto = {
|
|
|
756
759
|
};
|
|
757
760
|
|
|
758
761
|
export type UniRefund_CRMService_TaxOffices_CreateTaxOfficeDto = {
|
|
759
|
-
readonly extraProperties?: {
|
|
760
|
-
[key: string]: unknown;
|
|
761
|
-
} | null;
|
|
762
762
|
entityInformationTypes: Array<UniRefund_CRMService_TaxOffices_CreateTaxOfficeEntityInformationTypeDto>;
|
|
763
763
|
parentId?: (string) | null;
|
|
764
|
-
taxpayerId
|
|
764
|
+
taxpayerId?: (string) | null;
|
|
765
|
+
typeCode?: UniRefund_CRMService_TaxOffices_TaxOfficeTypeCode;
|
|
765
766
|
};
|
|
766
767
|
|
|
767
768
|
export type UniRefund_CRMService_TaxOffices_CreateTaxOfficeEntityInformationTypeDto = {
|
|
@@ -790,6 +791,7 @@ export type UniRefund_CRMService_TaxOffices_TaxOfficeDto = {
|
|
|
790
791
|
deletionTime?: (string) | null;
|
|
791
792
|
parentId?: (string) | null;
|
|
792
793
|
taxpayerId?: (string) | null;
|
|
794
|
+
typeCode?: UniRefund_CRMService_TaxOffices_TaxOfficeTypeCode;
|
|
793
795
|
entityInformations?: Array<UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeDto> | null;
|
|
794
796
|
};
|
|
795
797
|
|
|
@@ -804,11 +806,15 @@ export type UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto = {
|
|
|
804
806
|
parentId?: (string) | null;
|
|
805
807
|
organizationId?: string;
|
|
806
808
|
taxpayerId?: (string) | null;
|
|
809
|
+
typeCode?: UniRefund_CRMService_TaxOffices_TaxOfficeTypeCode;
|
|
807
810
|
};
|
|
808
811
|
|
|
812
|
+
export type UniRefund_CRMService_TaxOffices_TaxOfficeTypeCode = 'HEADQUARTER' | 'TAXOFFICE';
|
|
813
|
+
|
|
809
814
|
export type UniRefund_CRMService_TaxOffices_UpdateTaxOfficeDto = {
|
|
810
815
|
parentId?: (string) | null;
|
|
811
|
-
taxpayerId
|
|
816
|
+
taxpayerId?: (string) | null;
|
|
817
|
+
typeCode?: UniRefund_CRMService_TaxOffices_TaxOfficeTypeCode;
|
|
812
818
|
};
|
|
813
819
|
|
|
814
820
|
export type UniRefund_CRMService_TaxOffices_UpdateTaxOfficeOrganizationDto = {
|
|
@@ -2059,6 +2065,10 @@ export type GetApiCrmServiceRefundPointsByIdDetailResponse = (UniRefund_CRMServi
|
|
|
2059
2065
|
|
|
2060
2066
|
export type GetApiCrmServiceRefundPointsByIdSubRefundPointsData = {
|
|
2061
2067
|
id: string;
|
|
2068
|
+
maxResultCount?: number;
|
|
2069
|
+
name?: string;
|
|
2070
|
+
skipCount?: number;
|
|
2071
|
+
sorting?: string;
|
|
2062
2072
|
};
|
|
2063
2073
|
|
|
2064
2074
|
export type GetApiCrmServiceRefundPointsByIdSubRefundPointsResponse = (PagedResultDto_RefundPointProfileDto);
|
|
@@ -2209,6 +2219,7 @@ export type GetApiCrmServiceTaxFreesData = {
|
|
|
2209
2219
|
name?: string;
|
|
2210
2220
|
skipCount?: number;
|
|
2211
2221
|
sorting?: string;
|
|
2222
|
+
typeCode?: UniRefund_CRMService_TaxFrees_TaxFreeTypeCode;
|
|
2212
2223
|
};
|
|
2213
2224
|
|
|
2214
2225
|
export type GetApiCrmServiceTaxFreesResponse = (PagedResultDto_TaxFreeProfileDto);
|
|
@@ -2234,6 +2245,10 @@ export type GetApiCrmServiceTaxFreesByIdDetailResponse = (UniRefund_CRMService_T
|
|
|
2234
2245
|
|
|
2235
2246
|
export type GetApiCrmServiceTaxFreesByIdSubTaxFreeData = {
|
|
2236
2247
|
id: string;
|
|
2248
|
+
maxResultCount?: number;
|
|
2249
|
+
name?: string;
|
|
2250
|
+
skipCount?: number;
|
|
2251
|
+
sorting?: string;
|
|
2237
2252
|
};
|
|
2238
2253
|
|
|
2239
2254
|
export type GetApiCrmServiceTaxFreesByIdSubTaxFreeResponse = (PagedResultDto_TaxFreeProfileDto);
|