@ayasofyazilim/saas 0.0.42 → 0.0.44

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.
@@ -390,7 +390,7 @@ export class CustomsService {
390
390
  * @param data.id
391
391
  * @param data.organizationId
392
392
  * @param data.requestBody
393
- * @returns unknown Success
393
+ * @returns UniRefund_CRMService_Organizations_OrganizationDto Success
394
394
  * @throws ApiError
395
395
  */
396
396
  public putApiCrmServiceCustomsByIdOrganizationsByOrganizationId(data: PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdData): CancelablePromise<PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdResponse> {
@@ -916,7 +916,7 @@ export class MerchantService {
916
916
  * @param data.id
917
917
  * @param data.organizationId
918
918
  * @param data.requestBody
919
- * @returns unknown Success
919
+ * @returns UniRefund_CRMService_Organizations_OrganizationDto Success
920
920
  * @throws ApiError
921
921
  */
922
922
  public putApiCrmServiceMerchantsByIdOrganizationsByOrganizationId(data: PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdData): CancelablePromise<PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdResponse> {
@@ -1302,7 +1302,7 @@ export class RefundPointService {
1302
1302
  * @param data.id
1303
1303
  * @param data.organizationId
1304
1304
  * @param data.requestBody
1305
- * @returns unknown Success
1305
+ * @returns UniRefund_CRMService_Organizations_OrganizationDto Success
1306
1306
  * @throws ApiError
1307
1307
  */
1308
1308
  public putApiCrmServiceRefundPointsByIdOrganizationsByOrganizationId(data: PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdData): CancelablePromise<PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdResponse> {
@@ -1581,7 +1581,7 @@ export class TaxFreeService {
1581
1581
  * @param data.id
1582
1582
  * @param data.organizationId
1583
1583
  * @param data.requestBody
1584
- * @returns unknown Success
1584
+ * @returns UniRefund_CRMService_Organizations_OrganizationDto Success
1585
1585
  * @throws ApiError
1586
1586
  */
1587
1587
  public putApiCrmServiceTaxFreesByIdOrganizationsByOrganizationId(data: PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdData): CancelablePromise<PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdResponse> {
@@ -1860,7 +1860,7 @@ export class TaxOfficeService {
1860
1860
  * @param data.id
1861
1861
  * @param data.organizationId
1862
1862
  * @param data.requestBody
1863
- * @returns unknown Success
1863
+ * @returns UniRefund_CRMService_Organizations_OrganizationDto Success
1864
1864
  * @throws ApiError
1865
1865
  */
1866
1866
  public putApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationId(data: PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdData): CancelablePromise<PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdResponse> {
@@ -119,7 +119,25 @@ export type UniRefund_CRMService_Customss_CreateCustomsDto = {
119
119
  readonly extraProperties?: {
120
120
  [key: string]: unknown;
121
121
  } | null;
122
- entityInformationTypes: Array<UniRefund_CRMService_EntityInformationTypes_CreateOrganizationInformationTypeDto>;
122
+ entityInformationTypes: Array<UniRefund_CRMService_Customss_CreateCustomsEntityInformationTypeDto>;
123
+ };
124
+
125
+ export type UniRefund_CRMService_Customss_CreateCustomsEntityInformationTypeDto = {
126
+ readonly extraProperties?: {
127
+ [key: string]: unknown;
128
+ } | null;
129
+ organizations?: Array<UniRefund_CRMService_Customss_CreateCustomsOrganizationDto> | null;
130
+ };
131
+
132
+ export type UniRefund_CRMService_Customss_CreateCustomsOrganizationDto = {
133
+ readonly extraProperties?: {
134
+ [key: string]: unknown;
135
+ } | null;
136
+ name: string;
137
+ taxpayerId: string;
138
+ branchId?: string | null;
139
+ parentCompanyId?: string | null;
140
+ contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
123
141
  };
124
142
 
125
143
  export type UniRefund_CRMService_Customss_CustomsDto = {
@@ -184,21 +202,6 @@ export type UniRefund_CRMService_EmailCommonDatas_UpdateEmailCommonDataDto = {
184
202
  typeCode: UniRefund_CRMService_Enums_EmailTypeCode;
185
203
  };
186
204
 
187
- export type UniRefund_CRMService_EntityInformationTypes_CreateEntityInformationTypeDto = {
188
- readonly extraProperties?: {
189
- [key: string]: unknown;
190
- } | null;
191
- organizations?: Array<UniRefund_CRMService_Organizations_CreateOrganizationDto> | null;
192
- individuals?: Array<UniRefund_CRMService_Individuals_CreateIndividualDto> | null;
193
- };
194
-
195
- export type UniRefund_CRMService_EntityInformationTypes_CreateOrganizationInformationTypeDto = {
196
- readonly extraProperties?: {
197
- [key: string]: unknown;
198
- } | null;
199
- organizations?: Array<UniRefund_CRMService_Organizations_CreateOrganizationDto> | null;
200
- };
201
-
202
205
  export type UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeDto = {
203
206
  id?: string;
204
207
  creationTime?: string;
@@ -269,7 +272,29 @@ export type UniRefund_CRMService_Merchants_CreateMerchantDto = {
269
272
  readonly extraProperties?: {
270
273
  [key: string]: unknown;
271
274
  } | null;
272
- entityInformationTypes: Array<UniRefund_CRMService_EntityInformationTypes_CreateEntityInformationTypeDto>;
275
+ entityInformationTypes: Array<UniRefund_CRMService_Merchants_CreateMerchantEntityInformationTypeDto>;
276
+ typeCode: UniRefund_CRMService_Merchants_MerchantTypeCode;
277
+ };
278
+
279
+ export type UniRefund_CRMService_Merchants_CreateMerchantEntityInformationTypeDto = {
280
+ readonly extraProperties?: {
281
+ [key: string]: unknown;
282
+ } | null;
283
+ individuals?: Array<UniRefund_CRMService_Individuals_CreateIndividualDto> | null;
284
+ organizations?: Array<UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto> | null;
285
+ };
286
+
287
+ export type UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto = {
288
+ readonly extraProperties?: {
289
+ [key: string]: unknown;
290
+ } | null;
291
+ name: string;
292
+ taxpayerId: string;
293
+ legalStatusCode: string;
294
+ customerNumber?: string | null;
295
+ branchId?: string | null;
296
+ parentCompanyId?: string | null;
297
+ contactInformations: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto>;
273
298
  };
274
299
 
275
300
  export type UniRefund_CRMService_Merchants_MerchantDetailDto = {
@@ -307,6 +332,8 @@ export type UniRefund_CRMService_Merchants_MerchantProfileDto = {
307
332
  individualId?: string | null;
308
333
  };
309
334
 
335
+ export type UniRefund_CRMService_Merchants_MerchantTypeCode = 0 | 1;
336
+
310
337
  export type UniRefund_CRMService_Merchants_RefundPointProfileDto = {
311
338
  id?: string;
312
339
  name?: string | null;
@@ -387,7 +414,11 @@ export type UniRefund_CRMService_Organizations_UpdateOrganizationDto = {
387
414
  [key: string]: unknown;
388
415
  } | null;
389
416
  name: string;
390
- parentCompanyId?: string;
417
+ taxpayerId?: string | null;
418
+ legalStatusCode?: string | null;
419
+ customerNumber?: string | null;
420
+ parentCompanyId?: string | null;
421
+ branchId?: string | null;
391
422
  };
392
423
 
393
424
  export type UniRefund_CRMService_PersonalSummaries_CreatePersonalSummaryDto = {
@@ -424,7 +455,23 @@ export type UniRefund_CRMService_RefundPoints_CreateRefundPointDto = {
424
455
  readonly extraProperties?: {
425
456
  [key: string]: unknown;
426
457
  } | null;
427
- entityInformationTypes?: Array<UniRefund_CRMService_EntityInformationTypes_CreateOrganizationInformationTypeDto> | null;
458
+ typeCode: UniRefund_CRMService_RefundPoints_RefundPointTypeCode;
459
+ entityInformationTypes?: Array<UniRefund_CRMService_RefundPoints_CreateRefundPointEntityInformationTypeDto> | null;
460
+ };
461
+
462
+ export type UniRefund_CRMService_RefundPoints_CreateRefundPointEntityInformationTypeDto = {
463
+ readonly extraProperties?: {
464
+ [key: string]: unknown;
465
+ } | null;
466
+ organizations?: Array<UniRefund_CRMService_RefundPoints_CreateRefundPointOrganizationDto> | null;
467
+ };
468
+
469
+ export type UniRefund_CRMService_RefundPoints_CreateRefundPointOrganizationDto = {
470
+ name: string;
471
+ taxpayerId: string;
472
+ branchId?: string | null;
473
+ parentCompanyId?: string | null;
474
+ contactInformations: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto>;
428
475
  };
429
476
 
430
477
  export type UniRefund_CRMService_RefundPoints_RefundPointDto = {
@@ -439,11 +486,33 @@ export type UniRefund_CRMService_RefundPoints_RefundPointDto = {
439
486
  entityInformations?: Array<UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeDto> | null;
440
487
  };
441
488
 
489
+ export type UniRefund_CRMService_RefundPoints_RefundPointTypeCode = 0 | 1;
490
+
442
491
  export type UniRefund_CRMService_TaxFrees_CreateTaxFreeDto = {
443
492
  readonly extraProperties?: {
444
493
  [key: string]: unknown;
445
494
  } | null;
446
- entityInformationTypes: Array<UniRefund_CRMService_EntityInformationTypes_CreateOrganizationInformationTypeDto>;
495
+ entityInformationTypes: Array<UniRefund_CRMService_TaxFrees_CreateTaxFreeEntityInformationTypeDto>;
496
+ };
497
+
498
+ export type UniRefund_CRMService_TaxFrees_CreateTaxFreeEntityInformationTypeDto = {
499
+ readonly extraProperties?: {
500
+ [key: string]: unknown;
501
+ } | null;
502
+ organizations?: Array<UniRefund_CRMService_TaxFrees_CreateTaxFreeOrganizationDto> | null;
503
+ };
504
+
505
+ export type UniRefund_CRMService_TaxFrees_CreateTaxFreeOrganizationDto = {
506
+ readonly extraProperties?: {
507
+ [key: string]: unknown;
508
+ } | null;
509
+ name: string;
510
+ taxpayerId: string;
511
+ legalStatusCode: string;
512
+ customerNumber?: string | null;
513
+ branchId?: string | null;
514
+ parentCompanyId?: string | null;
515
+ contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
447
516
  };
448
517
 
449
518
  export type UniRefund_CRMService_TaxFrees_TaxFreeDto = {
@@ -469,7 +538,27 @@ export type UniRefund_CRMService_TaxOffices_CreateTaxOfficeDto = {
469
538
  readonly extraProperties?: {
470
539
  [key: string]: unknown;
471
540
  } | null;
472
- entityInformationTypes: Array<UniRefund_CRMService_EntityInformationTypes_CreateOrganizationInformationTypeDto>;
541
+ entityInformationTypes: Array<UniRefund_CRMService_TaxOffices_CreateTaxOfficeEntityInformationTypeDto>;
542
+ };
543
+
544
+ export type UniRefund_CRMService_TaxOffices_CreateTaxOfficeEntityInformationTypeDto = {
545
+ readonly extraProperties?: {
546
+ [key: string]: unknown;
547
+ } | null;
548
+ organizations?: Array<UniRefund_CRMService_TaxOffices_CreateTaxOfficeOrganizationDto> | null;
549
+ };
550
+
551
+ export type UniRefund_CRMService_TaxOffices_CreateTaxOfficeOrganizationDto = {
552
+ readonly extraProperties?: {
553
+ [key: string]: unknown;
554
+ } | null;
555
+ name: string;
556
+ taxpayerId: string;
557
+ legalStatusCode: string;
558
+ customerNumber?: string | null;
559
+ branchId?: string | null;
560
+ parentCompanyId?: string | null;
561
+ contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
473
562
  };
474
563
 
475
564
  export type UniRefund_CRMService_TaxOffices_TaxOfficeDto = {
@@ -1107,7 +1196,7 @@ export type PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdData = {
1107
1196
  requestBody?: UniRefund_CRMService_Organizations_UpdateOrganizationDto;
1108
1197
  };
1109
1198
 
1110
- export type PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdResponse = unknown;
1199
+ export type PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdResponse = UniRefund_CRMService_Organizations_OrganizationDto;
1111
1200
 
1112
1201
  export type PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdData = {
1113
1202
  id: string;
@@ -1245,7 +1334,7 @@ export type PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdData = {
1245
1334
  requestBody?: UniRefund_CRMService_Organizations_UpdateOrganizationDto;
1246
1335
  };
1247
1336
 
1248
- export type PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdResponse = unknown;
1337
+ export type PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdResponse = UniRefund_CRMService_Organizations_OrganizationDto;
1249
1338
 
1250
1339
  export type PostApiCrmServiceMerchantsBulkProductGroupMerchantsData = {
1251
1340
  requestBody?: Array<UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMerchantDto>;
@@ -1347,7 +1436,7 @@ export type PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdData =
1347
1436
  requestBody?: UniRefund_CRMService_Organizations_UpdateOrganizationDto;
1348
1437
  };
1349
1438
 
1350
- export type PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdResponse = unknown;
1439
+ export type PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdResponse = UniRefund_CRMService_Organizations_OrganizationDto;
1351
1440
 
1352
1441
  export type PutApiCrmServiceRefundPointsByIdTelephonesByTelephoneIdData = {
1353
1442
  id: string;
@@ -1421,7 +1510,7 @@ export type PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdData = {
1421
1510
  requestBody?: UniRefund_CRMService_Organizations_UpdateOrganizationDto;
1422
1511
  };
1423
1512
 
1424
- export type PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdResponse = unknown;
1513
+ export type PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdResponse = UniRefund_CRMService_Organizations_OrganizationDto;
1425
1514
 
1426
1515
  export type PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdData = {
1427
1516
  id: string;
@@ -1495,7 +1584,7 @@ export type PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdData = {
1495
1584
  requestBody?: UniRefund_CRMService_Organizations_UpdateOrganizationDto;
1496
1585
  };
1497
1586
 
1498
- export type PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdResponse = unknown;
1587
+ export type PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdResponse = UniRefund_CRMService_Organizations_OrganizationDto;
1499
1588
 
1500
1589
  export type PutApiCrmServiceTaxOfficesByIdTelephonesByTelephoneIdData = {
1501
1590
  id: string;
@@ -2044,7 +2133,7 @@ export type $OpenApiTs = {
2044
2133
  /**
2045
2134
  * Success
2046
2135
  */
2047
- 200: unknown;
2136
+ 200: UniRefund_CRMService_Organizations_OrganizationDto;
2048
2137
  /**
2049
2138
  * Bad Request
2050
2139
  */
@@ -2701,7 +2790,7 @@ export type $OpenApiTs = {
2701
2790
  /**
2702
2791
  * Success
2703
2792
  */
2704
- 200: unknown;
2793
+ 200: UniRefund_CRMService_Organizations_OrganizationDto;
2705
2794
  /**
2706
2795
  * Bad Request
2707
2796
  */
@@ -3189,7 +3278,7 @@ export type $OpenApiTs = {
3189
3278
  /**
3190
3279
  * Success
3191
3280
  */
3192
- 200: unknown;
3281
+ 200: UniRefund_CRMService_Organizations_OrganizationDto;
3193
3282
  /**
3194
3283
  * Bad Request
3195
3284
  */
@@ -3537,7 +3626,7 @@ export type $OpenApiTs = {
3537
3626
  /**
3538
3627
  * Success
3539
3628
  */
3540
- 200: unknown;
3629
+ 200: UniRefund_CRMService_Organizations_OrganizationDto;
3541
3630
  /**
3542
3631
  * Bad Request
3543
3632
  */
@@ -3885,7 +3974,7 @@ export type $OpenApiTs = {
3885
3974
  /**
3886
3975
  * Success
3887
3976
  */
3888
- 200: unknown;
3977
+ 200: UniRefund_CRMService_Organizations_OrganizationDto;
3889
3978
  /**
3890
3979
  * Bad Request
3891
3980
  */
@@ -7,7 +7,6 @@ import { AbpApiDefinitionService } from './services.gen';
7
7
  import { AbpApplicationConfigurationService } from './services.gen';
8
8
  import { AbpApplicationLocalizationService } from './services.gen';
9
9
  import { ContractsService } from './services.gen';
10
- import { EnumsService } from './services.gen';
11
10
  import { RebateTablesService } from './services.gen';
12
11
  import { RefundTablesService } from './services.gen';
13
12
 
@@ -19,7 +18,6 @@ export class ContractServiceClient {
19
18
  public readonly abpApplicationConfiguration: AbpApplicationConfigurationService;
20
19
  public readonly abpApplicationLocalization: AbpApplicationLocalizationService;
21
20
  public readonly contracts: ContractsService;
22
- public readonly enums: EnumsService;
23
21
  public readonly rebateTables: RebateTablesService;
24
22
  public readonly refundTables: RefundTablesService;
25
23
 
@@ -46,7 +44,6 @@ export class ContractServiceClient {
46
44
  this.abpApplicationConfiguration = new AbpApplicationConfigurationService(this.request);
47
45
  this.abpApplicationLocalization = new AbpApplicationLocalizationService(this.request);
48
46
  this.contracts = new ContractsService(this.request);
49
- this.enums = new EnumsService(this.request);
50
47
  this.rebateTables = new RebateTablesService(this.request);
51
48
  this.refundTables = new RefundTablesService(this.request);
52
49
  }