@ayasofyazilim/saas 0.0.84 → 0.0.86

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.
@@ -196,6 +196,7 @@ export type UniRefund_CRMService_Customss_CustomsDto = {
196
196
  isDeleted?: boolean;
197
197
  deleterId?: string | null;
198
198
  deletionTime?: string | null;
199
+ parentId?: string | null;
199
200
  entityInformations?: Array<UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeDto> | null;
200
201
  };
201
202
 
@@ -452,11 +453,23 @@ export type UniRefund_CRMService_Merchants_StoreProfileDto = {
452
453
  manager: string;
453
454
  };
454
455
 
456
+ export type UniRefund_CRMService_Merchants_StoreProfileDtoIntegration = {
457
+ id?: string;
458
+ name?: string | null;
459
+ fullAddress?: string | null;
460
+ manager?: string | null;
461
+ };
462
+
455
463
  export type UniRefund_CRMService_Merchants_StoreProfilePagedResultDto = {
456
464
  items?: Array<UniRefund_CRMService_Merchants_StoreProfileDto> | null;
457
465
  totalCount?: number;
458
466
  };
459
467
 
468
+ export type UniRefund_CRMService_Merchants_StoreProfilePagedResultDtoIntegration = {
469
+ items?: Array<UniRefund_CRMService_Merchants_StoreProfileDtoIntegration> | null;
470
+ totalCount?: number;
471
+ };
472
+
460
473
  export type UniRefund_CRMService_Merchants_SubIndividualDto = {
461
474
  id?: string;
462
475
  name: string;
@@ -720,6 +733,7 @@ export type UniRefund_CRMService_TaxFrees_TaxFreeProfileDto = {
720
733
  id?: string;
721
734
  name?: string | null;
722
735
  parentId?: string | null;
736
+ parentName?: string | null;
723
737
  organizationId?: string;
724
738
  };
725
739
 
@@ -1462,20 +1476,6 @@ export type GetApiCrmServiceIndividualsData = {
1462
1476
 
1463
1477
  export type GetApiCrmServiceIndividualsResponse = PagedResultDto_IndividualProfileDto;
1464
1478
 
1465
- export type GetApiCrmServiceIndividualsUserDevicesNamesData = {
1466
- ids?: Array<(string)>;
1467
- maxResultCount?: number;
1468
- skipCount?: number;
1469
- };
1470
-
1471
- export type GetApiCrmServiceIndividualsUserDevicesNamesResponse = PagedResultDto_UserDeviceNameDto;
1472
-
1473
- export type GetApiCrmServiceIndividualsAllUserDevicesNamesData = {
1474
- ids?: Array<(string)>;
1475
- };
1476
-
1477
- export type GetApiCrmServiceIndividualsAllUserDevicesNamesResponse = Array<UniRefund_CRMService_RefundPoints_UserDeviceNameDto>;
1478
-
1479
1479
  export type GetApiCrmServiceIndividualsByIdAffiliationsData = {
1480
1480
  id: string;
1481
1481
  showCustoms?: boolean;
@@ -1487,6 +1487,20 @@ export type GetApiCrmServiceIndividualsByIdAffiliationsData = {
1487
1487
 
1488
1488
  export type GetApiCrmServiceIndividualsByIdAffiliationsResponse = UniRefund_CRMService_Individuals_IndividualAffiliationsDto;
1489
1489
 
1490
+ export type GetIntegrationApiIndividualsUserDevicesNamesData = {
1491
+ ids: Array<(string)>;
1492
+ };
1493
+
1494
+ export type GetIntegrationApiIndividualsUserDevicesNamesResponse = Array<UniRefund_CRMService_RefundPoints_UserDeviceNameDto>;
1495
+
1496
+ export type GetIntegrationApiIndividualsAllUserDevicesNamesData = {
1497
+ ids: Array<(string)>;
1498
+ maxResultCount?: number;
1499
+ skipCount?: number;
1500
+ };
1501
+
1502
+ export type GetIntegrationApiIndividualsAllUserDevicesNamesResponse = PagedResultDto_UserDeviceNameDto;
1503
+
1490
1504
  export type GetApiCrmServiceMerchantsData = {
1491
1505
  ids?: Array<(string)>;
1492
1506
  maxResultCount?: number;
@@ -1683,12 +1697,20 @@ export type GetIntegrationApiMerchantsInfoResponse = UniRefund_CRMService_Mercha
1683
1697
 
1684
1698
  export type GetIntegrationApiMerchantsByIdEnsureExistData = {
1685
1699
  id: string;
1686
- storeId?: string;
1700
+ parentId?: string;
1687
1701
  typeCode?: UniRefund_CRMService_Merchants_MerchantTypeCode;
1688
1702
  };
1689
1703
 
1690
1704
  export type GetIntegrationApiMerchantsByIdEnsureExistResponse = unknown;
1691
1705
 
1706
+ export type GetIntegrationApiMerchantsEnsureExistManyData = {
1707
+ ids?: Array<(string)>;
1708
+ parentId?: string;
1709
+ typeCode?: UniRefund_CRMService_Merchants_MerchantTypeCode;
1710
+ };
1711
+
1712
+ export type GetIntegrationApiMerchantsEnsureExistManyResponse = unknown;
1713
+
1692
1714
  export type GetIntegrationApiMerchantsData = {
1693
1715
  ids: Array<(string)>;
1694
1716
  typeCodes?: Array<UniRefund_CRMService_Merchants_MerchantTypeCode>;
@@ -1703,7 +1725,7 @@ export type GetIntegrationApiMerchantsByIdStoresData = {
1703
1725
  sorting?: string;
1704
1726
  };
1705
1727
 
1706
- export type GetIntegrationApiMerchantsByIdStoresResponse = UniRefund_CRMService_Merchants_StoreProfilePagedResultDto;
1728
+ export type GetIntegrationApiMerchantsByIdStoresResponse = UniRefund_CRMService_Merchants_StoreProfilePagedResultDtoIntegration;
1707
1729
 
1708
1730
  export type GetIntegrationApiMerchantsByIdDetailData = {
1709
1731
  id: string;
@@ -1736,6 +1758,7 @@ export type GetApiCrmServiceOrganizationsResponse = PagedResultDto_OrganizationP
1736
1758
  export type GetApiCrmServiceRefundPointsData = {
1737
1759
  ids?: Array<(string)>;
1738
1760
  maxResultCount?: number;
1761
+ name?: string;
1739
1762
  skipCount?: number;
1740
1763
  sorting?: string;
1741
1764
  };
@@ -1748,12 +1771,6 @@ export type GetApiCrmServiceRefundPointsByIdDetailData = {
1748
1771
 
1749
1772
  export type GetApiCrmServiceRefundPointsByIdDetailResponse = UniRefund_CRMService_RefundPoints_RefundPointDto;
1750
1773
 
1751
- export type GetApiCrmServiceRefundPointsByIdBasicInformationData = {
1752
- id: string;
1753
- };
1754
-
1755
- export type GetApiCrmServiceRefundPointsByIdBasicInformationResponse = UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto;
1756
-
1757
1774
  export type GetApiCrmServiceRefundPointsByIdSubRefundPointsData = {
1758
1775
  id: string;
1759
1776
  };
@@ -1822,35 +1839,52 @@ export type PutApiCrmServiceRefundPointsByIdEmailsByEmailIdData = {
1822
1839
 
1823
1840
  export type PutApiCrmServiceRefundPointsByIdEmailsByEmailIdResponse = UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
1824
1841
 
1825
- export type GetApiCrmServiceRefundPointsByIdExistData = {
1842
+ export type GetApiCrmServiceRefundPointsByIdAffiliatedIndividualData = {
1826
1843
  id: string;
1827
- refundPointTypeCode?: UniRefund_CRMService_RefundPoints_RefundPointTypeCode;
1828
1844
  };
1829
1845
 
1830
- export type GetApiCrmServiceRefundPointsByIdExistResponse = unknown;
1846
+ export type GetApiCrmServiceRefundPointsByIdAffiliatedIndividualResponse = Array<UniRefund_CRMService_Merchants_SubIndividualDto>;
1831
1847
 
1832
- export type GetApiCrmServiceRefundPointsRefundPointNamesData = {
1848
+ export type GetIntegrationApiRefundPointsData = {
1833
1849
  ids?: Array<(string)>;
1834
1850
  maxResultCount?: number;
1851
+ name?: string;
1835
1852
  skipCount?: number;
1853
+ sorting?: string;
1836
1854
  };
1837
1855
 
1838
- export type GetApiCrmServiceRefundPointsRefundPointNamesResponse = PagedResultDto_RefundPointNameDto;
1856
+ export type GetIntegrationApiRefundPointsResponse = PagedResultDto_RefundPointProfileDto;
1839
1857
 
1840
- export type GetApiCrmServiceRefundPointsByIdAffiliatedIndividualData = {
1858
+ export type GetIntegrationApiRefundPointsByIdDetailForRefundData = {
1841
1859
  id: string;
1842
1860
  };
1843
1861
 
1844
- export type GetApiCrmServiceRefundPointsByIdAffiliatedIndividualResponse = Array<UniRefund_CRMService_Merchants_SubIndividualDto>;
1862
+ export type GetIntegrationApiRefundPointsByIdDetailForRefundResponse = UniRefund_CRMService_RefundPoints_RefundPointDetailForRefund;
1845
1863
 
1846
- export type GetIntegrationApiRefundPointsData = {
1847
- id?: string;
1864
+ export type GetIntegrationApiRefundPointsRefundPointNamesData = {
1865
+ ids?: Array<(string)>;
1866
+ maxResultCount?: number;
1867
+ skipCount?: number;
1868
+ };
1869
+
1870
+ export type GetIntegrationApiRefundPointsRefundPointNamesResponse = PagedResultDto_RefundPointNameDto;
1871
+
1872
+ export type GetIntegrationApiRefundPointsByIdExistData = {
1873
+ id: string;
1874
+ refundPointTypeCode?: UniRefund_CRMService_RefundPoints_RefundPointTypeCode;
1875
+ };
1876
+
1877
+ export type GetIntegrationApiRefundPointsByIdExistResponse = unknown;
1878
+
1879
+ export type GetIntegrationApiRefundPointsByIdBasicInformationData = {
1880
+ id: string;
1848
1881
  };
1849
1882
 
1850
- export type GetIntegrationApiRefundPointsResponse = UniRefund_CRMService_RefundPoints_RefundPointDetailForRefund;
1883
+ export type GetIntegrationApiRefundPointsByIdBasicInformationResponse = UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto;
1851
1884
 
1852
1885
  export type GetApiCrmServiceTaxFreesData = {
1853
1886
  maxResultCount?: number;
1887
+ name?: string;
1854
1888
  skipCount?: number;
1855
1889
  sorting?: string;
1856
1890
  };
@@ -2037,6 +2071,12 @@ export type GetApiCrmServiceTaxOfficesByIdAffiliatedIndividualsData = {
2037
2071
 
2038
2072
  export type GetApiCrmServiceTaxOfficesByIdAffiliatedIndividualsResponse = Array<UniRefund_CRMService_Merchants_SubIndividualDto>;
2039
2073
 
2074
+ export type GetIntegrationApiTaxOfficesByIdData = {
2075
+ id: string;
2076
+ };
2077
+
2078
+ export type GetIntegrationApiTaxOfficesByIdResponse = UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto;
2079
+
2040
2080
  export type $OpenApiTs = {
2041
2081
  '/api/abp/api-definition': {
2042
2082
  get: {
@@ -2971,14 +3011,14 @@ export type $OpenApiTs = {
2971
3011
  };
2972
3012
  };
2973
3013
  };
2974
- '/api/crm-service/individuals/user-devices-names': {
3014
+ '/api/crm-service/individuals/{id}/affiliations': {
2975
3015
  get: {
2976
- req: GetApiCrmServiceIndividualsUserDevicesNamesData;
3016
+ req: GetApiCrmServiceIndividualsByIdAffiliationsData;
2977
3017
  res: {
2978
3018
  /**
2979
3019
  * Success
2980
3020
  */
2981
- 200: PagedResultDto_UserDeviceNameDto;
3021
+ 200: UniRefund_CRMService_Individuals_IndividualAffiliationsDto;
2982
3022
  /**
2983
3023
  * Bad Request
2984
3024
  */
@@ -3006,9 +3046,9 @@ export type $OpenApiTs = {
3006
3046
  };
3007
3047
  };
3008
3048
  };
3009
- '/api/crm-service/individuals/all-user-devices-names': {
3049
+ '/integration-api/individuals/user-devices-names': {
3010
3050
  get: {
3011
- req: GetApiCrmServiceIndividualsAllUserDevicesNamesData;
3051
+ req: GetIntegrationApiIndividualsUserDevicesNamesData;
3012
3052
  res: {
3013
3053
  /**
3014
3054
  * Success
@@ -3041,14 +3081,14 @@ export type $OpenApiTs = {
3041
3081
  };
3042
3082
  };
3043
3083
  };
3044
- '/api/crm-service/individuals/{id}/affiliations': {
3084
+ '/integration-api/individuals/all-user-devices-names': {
3045
3085
  get: {
3046
- req: GetApiCrmServiceIndividualsByIdAffiliationsData;
3086
+ req: GetIntegrationApiIndividualsAllUserDevicesNamesData;
3047
3087
  res: {
3048
3088
  /**
3049
3089
  * Success
3050
3090
  */
3051
- 200: UniRefund_CRMService_Individuals_IndividualAffiliationsDto;
3091
+ 200: PagedResultDto_UserDeviceNameDto;
3052
3092
  /**
3053
3093
  * Bad Request
3054
3094
  */
@@ -4013,14 +4053,14 @@ export type $OpenApiTs = {
4013
4053
  };
4014
4054
  };
4015
4055
  };
4016
- '/integration-api/merchants': {
4056
+ '/integration-api/merchants/ensure-exist-many': {
4017
4057
  get: {
4018
- req: GetIntegrationApiMerchantsData;
4058
+ req: GetIntegrationApiMerchantsEnsureExistManyData;
4019
4059
  res: {
4020
4060
  /**
4021
4061
  * Success
4022
4062
  */
4023
- 200: Array<UniRefund_CRMService_Merchants_MerchantProfileDto>;
4063
+ 200: unknown;
4024
4064
  /**
4025
4065
  * Bad Request
4026
4066
  */
@@ -4048,14 +4088,14 @@ export type $OpenApiTs = {
4048
4088
  };
4049
4089
  };
4050
4090
  };
4051
- '/integration-api/merchants/{id}/stores': {
4091
+ '/integration-api/merchants': {
4052
4092
  get: {
4053
- req: GetIntegrationApiMerchantsByIdStoresData;
4093
+ req: GetIntegrationApiMerchantsData;
4054
4094
  res: {
4055
4095
  /**
4056
4096
  * Success
4057
4097
  */
4058
- 200: UniRefund_CRMService_Merchants_StoreProfilePagedResultDto;
4098
+ 200: Array<UniRefund_CRMService_Merchants_MerchantProfileDto>;
4059
4099
  /**
4060
4100
  * Bad Request
4061
4101
  */
@@ -4083,14 +4123,14 @@ export type $OpenApiTs = {
4083
4123
  };
4084
4124
  };
4085
4125
  };
4086
- '/integration-api/merchants/{id}/detail': {
4126
+ '/integration-api/merchants/{id}/stores': {
4087
4127
  get: {
4088
- req: GetIntegrationApiMerchantsByIdDetailData;
4128
+ req: GetIntegrationApiMerchantsByIdStoresData;
4089
4129
  res: {
4090
4130
  /**
4091
4131
  * Success
4092
4132
  */
4093
- 200: UniRefund_CRMService_Merchants_MerchantDetailDto;
4133
+ 200: UniRefund_CRMService_Merchants_StoreProfilePagedResultDtoIntegration;
4094
4134
  /**
4095
4135
  * Bad Request
4096
4136
  */
@@ -4118,14 +4158,14 @@ export type $OpenApiTs = {
4118
4158
  };
4119
4159
  };
4120
4160
  };
4121
- '/integration-api/merchants/details-list': {
4161
+ '/integration-api/merchants/{id}/detail': {
4122
4162
  get: {
4123
- req: GetIntegrationApiMerchantsDetailsListData;
4163
+ req: GetIntegrationApiMerchantsByIdDetailData;
4124
4164
  res: {
4125
4165
  /**
4126
4166
  * Success
4127
4167
  */
4128
- 200: Array<UniRefund_CRMService_Merchants_MerchantDetailDto>;
4168
+ 200: UniRefund_CRMService_Merchants_MerchantDetailDto;
4129
4169
  /**
4130
4170
  * Bad Request
4131
4171
  */
@@ -4153,14 +4193,14 @@ export type $OpenApiTs = {
4153
4193
  };
4154
4194
  };
4155
4195
  };
4156
- '/api/crm-service/organizations/with-components': {
4157
- post: {
4158
- req: PostApiCrmServiceOrganizationsWithComponentsData;
4196
+ '/integration-api/merchants/details-list': {
4197
+ get: {
4198
+ req: GetIntegrationApiMerchantsDetailsListData;
4159
4199
  res: {
4160
4200
  /**
4161
4201
  * Success
4162
4202
  */
4163
- 200: unknown;
4203
+ 200: Array<UniRefund_CRMService_Merchants_MerchantDetailDto>;
4164
4204
  /**
4165
4205
  * Bad Request
4166
4206
  */
@@ -4188,14 +4228,14 @@ export type $OpenApiTs = {
4188
4228
  };
4189
4229
  };
4190
4230
  };
4191
- '/api/crm-service/organizations': {
4192
- get: {
4193
- req: GetApiCrmServiceOrganizationsData;
4231
+ '/api/crm-service/organizations/with-components': {
4232
+ post: {
4233
+ req: PostApiCrmServiceOrganizationsWithComponentsData;
4194
4234
  res: {
4195
4235
  /**
4196
4236
  * Success
4197
4237
  */
4198
- 200: PagedResultDto_OrganizationProfileDto;
4238
+ 200: unknown;
4199
4239
  /**
4200
4240
  * Bad Request
4201
4241
  */
@@ -4223,14 +4263,14 @@ export type $OpenApiTs = {
4223
4263
  };
4224
4264
  };
4225
4265
  };
4226
- '/api/crm-service/refund-points': {
4266
+ '/api/crm-service/organizations': {
4227
4267
  get: {
4228
- req: GetApiCrmServiceRefundPointsData;
4268
+ req: GetApiCrmServiceOrganizationsData;
4229
4269
  res: {
4230
4270
  /**
4231
4271
  * Success
4232
4272
  */
4233
- 200: PagedResultDto_RefundPointProfileDto;
4273
+ 200: PagedResultDto_OrganizationProfileDto;
4234
4274
  /**
4235
4275
  * Bad Request
4236
4276
  */
@@ -4258,14 +4298,14 @@ export type $OpenApiTs = {
4258
4298
  };
4259
4299
  };
4260
4300
  };
4261
- '/api/crm-service/refund-points/{id}/detail': {
4301
+ '/api/crm-service/refund-points': {
4262
4302
  get: {
4263
- req: GetApiCrmServiceRefundPointsByIdDetailData;
4303
+ req: GetApiCrmServiceRefundPointsData;
4264
4304
  res: {
4265
4305
  /**
4266
4306
  * Success
4267
4307
  */
4268
- 200: UniRefund_CRMService_RefundPoints_RefundPointDto;
4308
+ 200: PagedResultDto_RefundPointProfileDto;
4269
4309
  /**
4270
4310
  * Bad Request
4271
4311
  */
@@ -4293,14 +4333,14 @@ export type $OpenApiTs = {
4293
4333
  };
4294
4334
  };
4295
4335
  };
4296
- '/api/crm-service/refund-points/{id}/basic-information': {
4336
+ '/api/crm-service/refund-points/{id}/detail': {
4297
4337
  get: {
4298
- req: GetApiCrmServiceRefundPointsByIdBasicInformationData;
4338
+ req: GetApiCrmServiceRefundPointsByIdDetailData;
4299
4339
  res: {
4300
4340
  /**
4301
4341
  * Success
4302
4342
  */
4303
- 200: UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto;
4343
+ 200: UniRefund_CRMService_RefundPoints_RefundPointDto;
4304
4344
  /**
4305
4345
  * Bad Request
4306
4346
  */
@@ -4641,14 +4681,14 @@ export type $OpenApiTs = {
4641
4681
  };
4642
4682
  };
4643
4683
  };
4644
- '/api/crm-service/refund-points/{id}/exist': {
4684
+ '/api/crm-service/refund-points/{id}/affiliated-individual': {
4645
4685
  get: {
4646
- req: GetApiCrmServiceRefundPointsByIdExistData;
4686
+ req: GetApiCrmServiceRefundPointsByIdAffiliatedIndividualData;
4647
4687
  res: {
4648
4688
  /**
4649
4689
  * Success
4650
4690
  */
4651
- 200: unknown;
4691
+ 200: Array<UniRefund_CRMService_Merchants_SubIndividualDto>;
4652
4692
  /**
4653
4693
  * Bad Request
4654
4694
  */
@@ -4676,9 +4716,79 @@ export type $OpenApiTs = {
4676
4716
  };
4677
4717
  };
4678
4718
  };
4679
- '/api/crm-service/refund-points/refund-point-names': {
4719
+ '/integration-api/refund-points': {
4680
4720
  get: {
4681
- req: GetApiCrmServiceRefundPointsRefundPointNamesData;
4721
+ req: GetIntegrationApiRefundPointsData;
4722
+ res: {
4723
+ /**
4724
+ * Success
4725
+ */
4726
+ 200: PagedResultDto_RefundPointProfileDto;
4727
+ /**
4728
+ * Bad Request
4729
+ */
4730
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
4731
+ /**
4732
+ * Unauthorized
4733
+ */
4734
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
4735
+ /**
4736
+ * Forbidden
4737
+ */
4738
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
4739
+ /**
4740
+ * Not Found
4741
+ */
4742
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
4743
+ /**
4744
+ * Server Error
4745
+ */
4746
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
4747
+ /**
4748
+ * Server Error
4749
+ */
4750
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
4751
+ };
4752
+ };
4753
+ };
4754
+ '/integration-api/refund-points/{id}/detail-for-refund': {
4755
+ get: {
4756
+ req: GetIntegrationApiRefundPointsByIdDetailForRefundData;
4757
+ res: {
4758
+ /**
4759
+ * Success
4760
+ */
4761
+ 200: UniRefund_CRMService_RefundPoints_RefundPointDetailForRefund;
4762
+ /**
4763
+ * Bad Request
4764
+ */
4765
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
4766
+ /**
4767
+ * Unauthorized
4768
+ */
4769
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
4770
+ /**
4771
+ * Forbidden
4772
+ */
4773
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
4774
+ /**
4775
+ * Not Found
4776
+ */
4777
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
4778
+ /**
4779
+ * Server Error
4780
+ */
4781
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
4782
+ /**
4783
+ * Server Error
4784
+ */
4785
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
4786
+ };
4787
+ };
4788
+ };
4789
+ '/integration-api/refund-points/refund-point-names': {
4790
+ get: {
4791
+ req: GetIntegrationApiRefundPointsRefundPointNamesData;
4682
4792
  res: {
4683
4793
  /**
4684
4794
  * Success
@@ -4711,14 +4821,14 @@ export type $OpenApiTs = {
4711
4821
  };
4712
4822
  };
4713
4823
  };
4714
- '/api/crm-service/refund-points/{id}/affiliated-individual': {
4824
+ '/integration-api/refund-points/{id}/exist': {
4715
4825
  get: {
4716
- req: GetApiCrmServiceRefundPointsByIdAffiliatedIndividualData;
4826
+ req: GetIntegrationApiRefundPointsByIdExistData;
4717
4827
  res: {
4718
4828
  /**
4719
4829
  * Success
4720
4830
  */
4721
- 200: Array<UniRefund_CRMService_Merchants_SubIndividualDto>;
4831
+ 200: unknown;
4722
4832
  /**
4723
4833
  * Bad Request
4724
4834
  */
@@ -4746,14 +4856,14 @@ export type $OpenApiTs = {
4746
4856
  };
4747
4857
  };
4748
4858
  };
4749
- '/integration-api/refund-points': {
4859
+ '/integration-api/refund-points/{id}/basic-information': {
4750
4860
  get: {
4751
- req: GetIntegrationApiRefundPointsData;
4861
+ req: GetIntegrationApiRefundPointsByIdBasicInformationData;
4752
4862
  res: {
4753
4863
  /**
4754
4864
  * Success
4755
4865
  */
4756
- 200: UniRefund_CRMService_RefundPoints_RefundPointDetailForRefund;
4866
+ 200: UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto;
4757
4867
  /**
4758
4868
  * Bad Request
4759
4869
  */
@@ -5687,4 +5797,39 @@ export type $OpenApiTs = {
5687
5797
  };
5688
5798
  };
5689
5799
  };
5800
+ '/integration-api/tax-offices/{id}': {
5801
+ get: {
5802
+ req: GetIntegrationApiTaxOfficesByIdData;
5803
+ res: {
5804
+ /**
5805
+ * Success
5806
+ */
5807
+ 200: UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto;
5808
+ /**
5809
+ * Bad Request
5810
+ */
5811
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
5812
+ /**
5813
+ * Unauthorized
5814
+ */
5815
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
5816
+ /**
5817
+ * Forbidden
5818
+ */
5819
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
5820
+ /**
5821
+ * Not Found
5822
+ */
5823
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
5824
+ /**
5825
+ * Server Error
5826
+ */
5827
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
5828
+ /**
5829
+ * Server Error
5830
+ */
5831
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
5832
+ };
5833
+ };
5834
+ };
5690
5835
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ayasofyazilim/saas",
3
- "version": "0.0.84",
3
+ "version": "0.0.86",
4
4
  "description": "Ayasofyazılım SAAS",
5
5
  "main": "generator.mjs",
6
6
  "bin": {