@ayasofyazilim/saas 0.0.67 → 0.0.68

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,20 @@
1
1
  // This file is auto-generated by @hey-api/openapi-ts
2
2
 
3
+ export type PagedResultDto_ProductGroupDetailDto = {
4
+ items?: Array<UniRefund_SettingService_ProductGroups_ProductGroupDetailDto> | null;
5
+ totalCount?: number;
6
+ };
7
+
8
+ export type PagedResultDto_ProductGroupDto = {
9
+ items?: Array<UniRefund_SettingService_ProductGroups_ProductGroupDto> | null;
10
+ totalCount?: number;
11
+ };
12
+
13
+ export type PagedResultDto_VatDto = {
14
+ items?: Array<UniRefund_SettingService_Vats_VatDto> | null;
15
+ totalCount?: number;
16
+ };
17
+
3
18
  export type UniRefund_SettingService_Bonds_BondDto = {
4
19
  key?: string | null;
5
20
  pattern?: string | null;
@@ -46,55 +61,12 @@ export type UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMer
46
61
  productGroupId?: string;
47
62
  };
48
63
 
49
- export type UniRefund_SettingService_ProductGroupVats_CreateProductGroupVatDto = {
50
- readonly extraProperties?: {
51
- [key: string]: unknown;
52
- } | null;
53
- productGroupId: string;
54
- countryId: string;
55
- vatId: string;
56
- active?: boolean;
57
- };
58
-
59
- export type UniRefund_SettingService_ProductGroupVats_ProductGroupVatDetailDto = {
60
- id?: string;
61
- productGroupId?: string;
62
- productGroupName?: string | null;
63
- countryId?: string;
64
- countryName?: string | null;
65
- vatId?: string;
66
- vatPercent?: number;
67
- active?: boolean;
68
- };
69
-
70
- export type UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto = {
71
- id?: string;
72
- creationTime?: string;
73
- creatorId?: string | null;
74
- lastModificationTime?: string | null;
75
- lastModifierId?: string | null;
76
- isDeleted?: boolean;
77
- deleterId?: string | null;
78
- deletionTime?: string | null;
79
- productGroupId?: string;
80
- countryId?: string;
81
- vatId?: string;
82
- active?: boolean;
83
- };
84
-
85
- export type UniRefund_SettingService_ProductGroupVats_UpdateProductGroupVatDto = {
86
- readonly extraProperties?: {
87
- [key: string]: unknown;
88
- } | null;
89
- active?: boolean | null;
90
- };
91
-
92
64
  export type UniRefund_SettingService_ProductGroups_AddProductGroupTranslationDto = {
93
65
  language: string;
94
66
  name: string;
95
67
  };
96
68
 
97
- export type UniRefund_SettingService_ProductGroups_CompanyTypeCode = 0 | 1 | 2 | 3 | 4 | 5 | 6;
69
+ export type UniRefund_SettingService_ProductGroups_CompanyTypeCode = 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
98
70
 
99
71
  export type UniRefund_SettingService_ProductGroups_CreateProductGroupDto = {
100
72
  readonly extraProperties?: {
@@ -106,9 +78,10 @@ export type UniRefund_SettingService_ProductGroups_CreateProductGroupDto = {
106
78
  companyType: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
107
79
  active?: boolean;
108
80
  food?: boolean;
81
+ vatId?: string | null;
109
82
  };
110
83
 
111
- export type UniRefund_SettingService_ProductGroups_ProductGroupDto = {
84
+ export type UniRefund_SettingService_ProductGroups_ProductGroupDetailDto = {
112
85
  id?: string;
113
86
  creationTime?: string;
114
87
  creatorId?: string | null;
@@ -117,16 +90,24 @@ export type UniRefund_SettingService_ProductGroups_ProductGroupDto = {
117
90
  isDeleted?: boolean;
118
91
  deleterId?: string | null;
119
92
  deletionTime?: string | null;
120
- articleCode?: string | null;
121
- name?: string | null;
122
- unitCode?: UniRefund_SettingService_ProductGroups_UnitTypeCode;
123
- companyType?: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
124
- active?: boolean;
125
- food?: boolean;
126
- language?: string | null;
93
+ name: string;
94
+ vatId?: string | null;
95
+ vat?: UniRefund_SettingService_Vats_VatDetailDto;
96
+ active: boolean;
97
+ };
98
+
99
+ export type UniRefund_SettingService_ProductGroups_ProductGroupDto = {
100
+ id?: string;
101
+ articleCode: string;
102
+ name: string;
103
+ unitCode: UniRefund_SettingService_ProductGroups_UnitTypeCode;
104
+ companyType: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
105
+ vatId?: string | null;
106
+ active: boolean;
107
+ food: boolean;
127
108
  };
128
109
 
129
- export type UniRefund_SettingService_ProductGroups_UnitTypeCode = 0 | 1 | 2;
110
+ export type UniRefund_SettingService_ProductGroups_UnitTypeCode = 'QNT' | 'BAG' | 'BOX';
130
111
 
131
112
  export type UniRefund_SettingService_ProductGroups_UpdateProductGroupDto = {
132
113
  readonly extraProperties?: {
@@ -138,6 +119,7 @@ export type UniRefund_SettingService_ProductGroups_UpdateProductGroupDto = {
138
119
  companyType: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
139
120
  active?: boolean;
140
121
  food?: boolean;
122
+ vatId?: string | null;
141
123
  };
142
124
 
143
125
  export type UniRefund_SettingService_Samples_SampleDto = {
@@ -181,7 +163,6 @@ export type UniRefund_SettingService_Vats_CreateVatDto = {
181
163
  } | null;
182
164
  percent: number;
183
165
  minimumTotalAmount: number;
184
- countryId: string;
185
166
  active?: boolean;
186
167
  };
187
168
 
@@ -195,15 +176,6 @@ export type UniRefund_SettingService_Vats_UpdateVatDto = {
195
176
  };
196
177
 
197
178
  export type UniRefund_SettingService_Vats_VatDetailDto = {
198
- id?: string;
199
- percent?: number;
200
- minimumTotalAmount?: number;
201
- countryId?: string;
202
- countryName?: string | null;
203
- active?: boolean;
204
- };
205
-
206
- export type UniRefund_SettingService_Vats_VatDto = {
207
179
  id?: string;
208
180
  creationTime?: string;
209
181
  creatorId?: string | null;
@@ -212,37 +184,18 @@ export type UniRefund_SettingService_Vats_VatDto = {
212
184
  isDeleted?: boolean;
213
185
  deleterId?: string | null;
214
186
  deletionTime?: string | null;
187
+ percent: number;
188
+ minimumTotalAmount: number;
189
+ active: boolean;
190
+ };
191
+
192
+ export type UniRefund_SettingService_Vats_VatDto = {
193
+ id?: string;
215
194
  percent?: number;
216
195
  minimumTotalAmount?: number;
217
- countryId?: string;
218
196
  active?: boolean;
219
197
  };
220
198
 
221
- export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
222
- items?: Array<UniRefund_SettingService_ProductGroupVats_ProductGroupVatDetailDto> | null;
223
- totalCount?: number;
224
- };
225
-
226
- export type Volo_Abp_Application_Dtos_PagedResultDto_12 = {
227
- items?: Array<UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto> | null;
228
- totalCount?: number;
229
- };
230
-
231
- export type Volo_Abp_Application_Dtos_PagedResultDto_13 = {
232
- items?: Array<UniRefund_SettingService_ProductGroups_ProductGroupDto> | null;
233
- totalCount?: number;
234
- };
235
-
236
- export type Volo_Abp_Application_Dtos_PagedResultDto_14 = {
237
- items?: Array<UniRefund_SettingService_Vats_VatDetailDto> | null;
238
- totalCount?: number;
239
- };
240
-
241
- export type Volo_Abp_Application_Dtos_PagedResultDto_15 = {
242
- items?: Array<UniRefund_SettingService_Vats_VatDto> | null;
243
- totalCount?: number;
244
- };
245
-
246
199
  export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
247
200
  grantedPolicies?: {
248
201
  [key: string]: (boolean);
@@ -712,7 +665,7 @@ export type GetApiSettingServiceProductGroupData = {
712
665
  sorting?: string;
713
666
  };
714
667
 
715
- export type GetApiSettingServiceProductGroupResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
668
+ export type GetApiSettingServiceProductGroupResponse = PagedResultDto_ProductGroupDto;
716
669
 
717
670
  export type PostApiSettingServiceProductGroupTranslationByIdData = {
718
671
  id: string;
@@ -721,6 +674,13 @@ export type PostApiSettingServiceProductGroupTranslationByIdData = {
721
674
 
722
675
  export type PostApiSettingServiceProductGroupTranslationByIdResponse = unknown;
723
676
 
677
+ export type PutApiSettingServiceProductGroupTranslationByIdData = {
678
+ id: string;
679
+ requestBody?: UniRefund_SettingService_ProductGroups_AddProductGroupTranslationDto;
680
+ };
681
+
682
+ export type PutApiSettingServiceProductGroupTranslationByIdResponse = unknown;
683
+
724
684
  export type DeleteApiSettingServiceProductGroupByIdData = {
725
685
  id: string;
726
686
  };
@@ -745,7 +705,7 @@ export type GetApiSettingServiceProductGroupDetailByIdData = {
745
705
  id: string;
746
706
  };
747
707
 
748
- export type GetApiSettingServiceProductGroupDetailByIdResponse = UniRefund_SettingService_ProductGroups_ProductGroupDto;
708
+ export type GetApiSettingServiceProductGroupDetailByIdResponse = UniRefund_SettingService_ProductGroups_ProductGroupDetailDto;
749
709
 
750
710
  export type GetApiSettingServiceProductGroupByMerchantIdByIdData = {
751
711
  id: string;
@@ -753,52 +713,19 @@ export type GetApiSettingServiceProductGroupByMerchantIdByIdData = {
753
713
 
754
714
  export type GetApiSettingServiceProductGroupByMerchantIdByIdResponse = Array<UniRefund_SettingService_ProductGroups_ProductGroupDto>;
755
715
 
756
- export type PostApiSettingServiceProductGroupProductGroupMerchantBulkData = {
757
- requestBody?: Array<UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMerchantDto>;
758
- };
759
-
760
- export type PostApiSettingServiceProductGroupProductGroupMerchantBulkResponse = unknown;
761
-
762
- export type PostApiSettingServiceProductGroupVatData = {
763
- requestBody?: UniRefund_SettingService_ProductGroupVats_CreateProductGroupVatDto;
764
- };
765
-
766
- export type PostApiSettingServiceProductGroupVatResponse = UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto;
767
-
768
- export type GetApiSettingServiceProductGroupVatData = {
716
+ export type GetApiSettingServiceProductGroupDetailData = {
769
717
  maxResultCount?: number;
770
718
  skipCount?: number;
771
719
  sorting?: string;
772
720
  };
773
721
 
774
- export type GetApiSettingServiceProductGroupVatResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
775
-
776
- export type DeleteApiSettingServiceProductGroupVatByIdData = {
777
- id: string;
778
- };
779
-
780
- export type DeleteApiSettingServiceProductGroupVatByIdResponse = unknown;
722
+ export type GetApiSettingServiceProductGroupDetailResponse = PagedResultDto_ProductGroupDetailDto;
781
723
 
782
- export type GetApiSettingServiceProductGroupVatByIdData = {
783
- id: string;
784
- };
785
-
786
- export type GetApiSettingServiceProductGroupVatByIdResponse = UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto;
787
-
788
- export type PutApiSettingServiceProductGroupVatByIdData = {
789
- id: string;
790
- requestBody?: UniRefund_SettingService_ProductGroupVats_UpdateProductGroupVatDto;
791
- };
792
-
793
- export type PutApiSettingServiceProductGroupVatByIdResponse = UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto;
794
-
795
- export type GetApiSettingServiceProductGroupVatDetailData = {
796
- maxResultCount?: number;
797
- skipCount?: number;
798
- sorting?: string;
724
+ export type PostApiSettingServiceProductGroupProductGroupMerchantBulkData = {
725
+ requestBody?: Array<UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMerchantDto>;
799
726
  };
800
727
 
801
- export type GetApiSettingServiceProductGroupVatDetailResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
728
+ export type PostApiSettingServiceProductGroupProductGroupMerchantBulkResponse = unknown;
802
729
 
803
730
  export type GetApiSettingServiceSampleResponse = UniRefund_SettingService_Samples_SampleDto;
804
731
 
@@ -826,7 +753,7 @@ export type GetApiSettingServiceVatData = {
826
753
  sorting?: string;
827
754
  };
828
755
 
829
- export type GetApiSettingServiceVatResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
756
+ export type GetApiSettingServiceVatResponse = PagedResultDto_VatDto;
830
757
 
831
758
  export type DeleteApiSettingServiceVatByIdData = {
832
759
  id: string;
@@ -847,14 +774,6 @@ export type PutApiSettingServiceVatByIdData = {
847
774
 
848
775
  export type PutApiSettingServiceVatByIdResponse = UniRefund_SettingService_Vats_VatDto;
849
776
 
850
- export type GetApiSettingServiceVatDetailData = {
851
- maxResultCount?: number;
852
- skipCount?: number;
853
- sorting?: string;
854
- };
855
-
856
- export type GetApiSettingServiceVatDetailResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
857
-
858
777
  export type $OpenApiTs = {
859
778
  '/api/abp/api-definition': {
860
779
  get: {
@@ -1204,7 +1123,7 @@ export type $OpenApiTs = {
1204
1123
  /**
1205
1124
  * Success
1206
1125
  */
1207
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1126
+ 200: PagedResultDto_ProductGroupDto;
1208
1127
  /**
1209
1128
  * Bad Request
1210
1129
  */
@@ -1266,10 +1185,8 @@ export type $OpenApiTs = {
1266
1185
  501: Volo_Abp_Http_RemoteServiceErrorResponse;
1267
1186
  };
1268
1187
  };
1269
- };
1270
- '/api/setting-service/product-group/{id}': {
1271
- delete: {
1272
- req: DeleteApiSettingServiceProductGroupByIdData;
1188
+ put: {
1189
+ req: PutApiSettingServiceProductGroupTranslationByIdData;
1273
1190
  res: {
1274
1191
  /**
1275
1192
  * Success
@@ -1301,13 +1218,15 @@ export type $OpenApiTs = {
1301
1218
  501: Volo_Abp_Http_RemoteServiceErrorResponse;
1302
1219
  };
1303
1220
  };
1304
- get: {
1305
- req: GetApiSettingServiceProductGroupByIdData;
1221
+ };
1222
+ '/api/setting-service/product-group/{id}': {
1223
+ delete: {
1224
+ req: DeleteApiSettingServiceProductGroupByIdData;
1306
1225
  res: {
1307
1226
  /**
1308
1227
  * Success
1309
1228
  */
1310
- 200: UniRefund_SettingService_ProductGroups_ProductGroupDto;
1229
+ 200: unknown;
1311
1230
  /**
1312
1231
  * Bad Request
1313
1232
  */
@@ -1334,8 +1253,8 @@ export type $OpenApiTs = {
1334
1253
  501: Volo_Abp_Http_RemoteServiceErrorResponse;
1335
1254
  };
1336
1255
  };
1337
- put: {
1338
- req: PutApiSettingServiceProductGroupByIdData;
1256
+ get: {
1257
+ req: GetApiSettingServiceProductGroupByIdData;
1339
1258
  res: {
1340
1259
  /**
1341
1260
  * Success
@@ -1367,10 +1286,8 @@ export type $OpenApiTs = {
1367
1286
  501: Volo_Abp_Http_RemoteServiceErrorResponse;
1368
1287
  };
1369
1288
  };
1370
- };
1371
- '/api/setting-service/product-group/detail/{id}': {
1372
- get: {
1373
- req: GetApiSettingServiceProductGroupDetailByIdData;
1289
+ put: {
1290
+ req: PutApiSettingServiceProductGroupByIdData;
1374
1291
  res: {
1375
1292
  /**
1376
1293
  * Success
@@ -1403,49 +1320,14 @@ export type $OpenApiTs = {
1403
1320
  };
1404
1321
  };
1405
1322
  };
1406
- '/api/setting-service/product-group/by-merchant-id/{id}': {
1323
+ '/api/setting-service/product-group/detail/{id}': {
1407
1324
  get: {
1408
- req: GetApiSettingServiceProductGroupByMerchantIdByIdData;
1409
- res: {
1410
- /**
1411
- * Success
1412
- */
1413
- 200: Array<UniRefund_SettingService_ProductGroups_ProductGroupDto>;
1414
- /**
1415
- * Bad Request
1416
- */
1417
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1418
- /**
1419
- * Unauthorized
1420
- */
1421
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1422
- /**
1423
- * Forbidden
1424
- */
1425
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1426
- /**
1427
- * Not Found
1428
- */
1429
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1430
- /**
1431
- * Server Error
1432
- */
1433
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1434
- /**
1435
- * Server Error
1436
- */
1437
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1438
- };
1439
- };
1440
- };
1441
- '/api/setting-service/product-group/product-group-merchant-bulk': {
1442
- post: {
1443
- req: PostApiSettingServiceProductGroupProductGroupMerchantBulkData;
1325
+ req: GetApiSettingServiceProductGroupDetailByIdData;
1444
1326
  res: {
1445
1327
  /**
1446
1328
  * Success
1447
1329
  */
1448
- 200: unknown;
1330
+ 200: UniRefund_SettingService_ProductGroups_ProductGroupDetailDto;
1449
1331
  /**
1450
1332
  * Bad Request
1451
1333
  */
@@ -1473,47 +1355,14 @@ export type $OpenApiTs = {
1473
1355
  };
1474
1356
  };
1475
1357
  };
1476
- '/api/setting-service/product-group-vat': {
1477
- post: {
1478
- req: PostApiSettingServiceProductGroupVatData;
1479
- res: {
1480
- /**
1481
- * Success
1482
- */
1483
- 200: UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto;
1484
- /**
1485
- * Bad Request
1486
- */
1487
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1488
- /**
1489
- * Unauthorized
1490
- */
1491
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1492
- /**
1493
- * Forbidden
1494
- */
1495
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1496
- /**
1497
- * Not Found
1498
- */
1499
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1500
- /**
1501
- * Server Error
1502
- */
1503
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1504
- /**
1505
- * Server Error
1506
- */
1507
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1508
- };
1509
- };
1358
+ '/api/setting-service/product-group/by-merchant-id/{id}': {
1510
1359
  get: {
1511
- req: GetApiSettingServiceProductGroupVatData;
1360
+ req: GetApiSettingServiceProductGroupByMerchantIdByIdData;
1512
1361
  res: {
1513
1362
  /**
1514
1363
  * Success
1515
1364
  */
1516
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1365
+ 200: Array<UniRefund_SettingService_ProductGroups_ProductGroupDto>;
1517
1366
  /**
1518
1367
  * Bad Request
1519
1368
  */
@@ -1541,80 +1390,14 @@ export type $OpenApiTs = {
1541
1390
  };
1542
1391
  };
1543
1392
  };
1544
- '/api/setting-service/product-group-vat/{id}': {
1545
- delete: {
1546
- req: DeleteApiSettingServiceProductGroupVatByIdData;
1547
- res: {
1548
- /**
1549
- * Success
1550
- */
1551
- 200: unknown;
1552
- /**
1553
- * Bad Request
1554
- */
1555
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1556
- /**
1557
- * Unauthorized
1558
- */
1559
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1560
- /**
1561
- * Forbidden
1562
- */
1563
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1564
- /**
1565
- * Not Found
1566
- */
1567
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1568
- /**
1569
- * Server Error
1570
- */
1571
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1572
- /**
1573
- * Server Error
1574
- */
1575
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1576
- };
1577
- };
1393
+ '/api/setting-service/product-group/detail': {
1578
1394
  get: {
1579
- req: GetApiSettingServiceProductGroupVatByIdData;
1395
+ req: GetApiSettingServiceProductGroupDetailData;
1580
1396
  res: {
1581
1397
  /**
1582
1398
  * Success
1583
1399
  */
1584
- 200: UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto;
1585
- /**
1586
- * Bad Request
1587
- */
1588
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1589
- /**
1590
- * Unauthorized
1591
- */
1592
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1593
- /**
1594
- * Forbidden
1595
- */
1596
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1597
- /**
1598
- * Not Found
1599
- */
1600
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1601
- /**
1602
- * Server Error
1603
- */
1604
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1605
- /**
1606
- * Server Error
1607
- */
1608
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1609
- };
1610
- };
1611
- put: {
1612
- req: PutApiSettingServiceProductGroupVatByIdData;
1613
- res: {
1614
- /**
1615
- * Success
1616
- */
1617
- 200: UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto;
1400
+ 200: PagedResultDto_ProductGroupDetailDto;
1618
1401
  /**
1619
1402
  * Bad Request
1620
1403
  */
@@ -1642,14 +1425,14 @@ export type $OpenApiTs = {
1642
1425
  };
1643
1426
  };
1644
1427
  };
1645
- '/api/setting-service/product-group-vat/detail': {
1646
- get: {
1647
- req: GetApiSettingServiceProductGroupVatDetailData;
1428
+ '/api/setting-service/product-group/product-group-merchant-bulk': {
1429
+ post: {
1430
+ req: PostApiSettingServiceProductGroupProductGroupMerchantBulkData;
1648
1431
  res: {
1649
1432
  /**
1650
1433
  * Success
1651
1434
  */
1652
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1435
+ 200: unknown;
1653
1436
  /**
1654
1437
  * Bad Request
1655
1438
  */
@@ -1886,7 +1669,7 @@ export type $OpenApiTs = {
1886
1669
  /**
1887
1670
  * Success
1888
1671
  */
1889
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1672
+ 200: PagedResultDto_VatDto;
1890
1673
  /**
1891
1674
  * Bad Request
1892
1675
  */
@@ -2015,39 +1798,4 @@ export type $OpenApiTs = {
2015
1798
  };
2016
1799
  };
2017
1800
  };
2018
- '/api/setting-service/vat/detail': {
2019
- get: {
2020
- req: GetApiSettingServiceVatDetailData;
2021
- res: {
2022
- /**
2023
- * Success
2024
- */
2025
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
2026
- /**
2027
- * Bad Request
2028
- */
2029
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2030
- /**
2031
- * Unauthorized
2032
- */
2033
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2034
- /**
2035
- * Forbidden
2036
- */
2037
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2038
- /**
2039
- * Not Found
2040
- */
2041
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2042
- /**
2043
- * Server Error
2044
- */
2045
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2046
- /**
2047
- * Server Error
2048
- */
2049
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2050
- };
2051
- };
2052
- };
2053
1801
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ayasofyazilim/saas",
3
- "version": "0.0.67",
3
+ "version": "0.0.68",
4
4
  "description": "Ayasofyazılım SAAS",
5
5
  "main": "generator.mjs",
6
6
  "bin": {