@ayasofyazilim/saas 0.0.30 → 0.0.32
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/AccountService/AccountServiceClient.ts +65 -65
- package/AccountService/core/ApiRequestOptions.ts +12 -12
- package/AccountService/core/BaseHttpRequest.ts +9 -9
- package/AccountService/core/FetchHttpRequest.ts +21 -21
- package/AccountService/core/OpenAPI.ts +55 -55
- package/AccountService/core/request.ts +340 -340
- package/AccountService/schemas.gen.ts +5103 -5103
- package/AccountService/services.gen.ts +1452 -1452
- package/AccountService/types.gen.ts +9896 -9896
- package/AdministrationService/AdministrationServiceClient.ts +74 -74
- package/AdministrationService/core/ApiRequestOptions.ts +12 -12
- package/AdministrationService/core/BaseHttpRequest.ts +9 -9
- package/AdministrationService/core/FetchHttpRequest.ts +21 -21
- package/AdministrationService/core/OpenAPI.ts +55 -55
- package/AdministrationService/core/request.ts +340 -340
- package/AdministrationService/index.ts +8 -8
- package/AdministrationService/schemas.gen.ts +5897 -5897
- package/AdministrationService/services.gen.ts +1332 -1332
- package/AdministrationService/types.gen.ts +9024 -9024
- package/BackerService/core/ApiRequestOptions.ts +12 -12
- package/BackerService/core/BaseHttpRequest.ts +9 -9
- package/BackerService/core/FetchHttpRequest.ts +21 -21
- package/BackerService/core/OpenAPI.ts +55 -55
- package/BackerService/core/request.ts +340 -340
- package/BackerService/schemas.gen.ts +12444 -12444
- package/FundraiserService/FundraiserServiceClient.ts +47 -47
- package/FundraiserService/core/ApiError.ts +20 -20
- package/FundraiserService/core/ApiResult.ts +6 -6
- package/FundraiserService/core/CancelablePromise.ts +125 -125
- package/FundraiserService/index.ts +8 -8
- package/FundraiserService/schemas.gen.ts +11548 -11548
- package/FundraiserService/services.gen.ts +627 -627
- package/IdentityService/IdentityServiceClient.ts +77 -77
- package/IdentityService/core/ApiRequestOptions.ts +12 -12
- package/IdentityService/core/BaseHttpRequest.ts +9 -9
- package/IdentityService/core/FetchHttpRequest.ts +21 -21
- package/IdentityService/core/OpenAPI.ts +55 -55
- package/IdentityService/core/request.ts +340 -340
- package/IdentityService/schemas.gen.ts +6573 -6573
- package/IdentityService/services.gen.ts +2839 -2839
- package/IdentityService/types.gen.ts +17446 -17446
- package/MerchantService/core/ApiRequestOptions.ts +12 -12
- package/MerchantService/core/BaseHttpRequest.ts +9 -9
- package/MerchantService/core/FetchHttpRequest.ts +21 -21
- package/MerchantService/core/OpenAPI.ts +55 -55
- package/MerchantService/core/request.ts +340 -340
- package/MerchantService/schemas.gen.ts +14764 -14764
- package/MerchantService/services.gen.ts +1602 -1602
- package/ProjectService/core/ApiRequestOptions.ts +12 -12
- package/ProjectService/core/BaseHttpRequest.ts +9 -9
- package/ProjectService/core/FetchHttpRequest.ts +21 -21
- package/ProjectService/core/OpenAPI.ts +55 -55
- package/ProjectService/core/request.ts +340 -340
- package/ProjectService/schemas.gen.ts +5147 -5147
- package/ProjectService/services.gen.ts +492 -492
- package/ProjectService.json +2937 -2937
- package/SaasService/core/ApiRequestOptions.ts +12 -12
- package/SaasService/core/BaseHttpRequest.ts +9 -9
- package/SaasService/core/FetchHttpRequest.ts +21 -21
- package/SaasService/core/OpenAPI.ts +55 -55
- package/SaasService/core/request.ts +340 -340
- package/SaasService/schemas.gen.ts +5278 -5278
- package/SaasService/services.gen.ts +1325 -1325
- package/SaasService/types.gen.ts +9052 -9052
- package/SettingService/SettingServiceClient.ts +62 -62
- package/SettingService/index.ts +8 -8
- package/SettingService/schemas.gen.ts +165 -549
- package/SettingService/services.gen.ts +129 -73
- package/SettingService/types.gen.ts +191 -88
- package/package.json +2 -10
- package/swagger.json +4794 -4794
|
@@ -46,11 +46,20 @@ export type UniRefund_SettingService_ProductGroupVats_CreateProductGroupVatDto =
|
|
|
46
46
|
[key: string]: unknown;
|
|
47
47
|
} | null;
|
|
48
48
|
productGroupId: string;
|
|
49
|
-
productGroup: UniRefund_SettingService_ProductGroups_ProductGroupDto;
|
|
50
49
|
countryId: string;
|
|
51
50
|
vatId: string;
|
|
52
|
-
|
|
53
|
-
|
|
51
|
+
active?: boolean;
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
export type UniRefund_SettingService_ProductGroupVats_ProductGroupVatDetailDto = {
|
|
55
|
+
id?: string;
|
|
56
|
+
productGroupId?: string;
|
|
57
|
+
productGroupName?: string | null;
|
|
58
|
+
countryId?: string;
|
|
59
|
+
countryName?: string | null;
|
|
60
|
+
vatId?: string;
|
|
61
|
+
vatPercent?: number;
|
|
62
|
+
active?: boolean;
|
|
54
63
|
};
|
|
55
64
|
|
|
56
65
|
export type UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto = {
|
|
@@ -63,10 +72,8 @@ export type UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto = {
|
|
|
63
72
|
deleterId?: string | null;
|
|
64
73
|
deletionTime?: string | null;
|
|
65
74
|
productGroupId?: string;
|
|
66
|
-
productGroup?: UniRefund_SettingService_ProductGroups_ProductGroupDto;
|
|
67
75
|
countryId?: string;
|
|
68
76
|
vatId?: string;
|
|
69
|
-
vat?: UniRefund_SettingService_Vats_VatDto;
|
|
70
77
|
active?: boolean;
|
|
71
78
|
};
|
|
72
79
|
|
|
@@ -74,12 +81,6 @@ export type UniRefund_SettingService_ProductGroupVats_UpdateProductGroupVatDto =
|
|
|
74
81
|
readonly extraProperties?: {
|
|
75
82
|
[key: string]: unknown;
|
|
76
83
|
} | null;
|
|
77
|
-
id: string;
|
|
78
|
-
productGroupId?: string | null;
|
|
79
|
-
productGroup?: UniRefund_SettingService_ProductGroups_ProductGroupDto;
|
|
80
|
-
countryId?: string | null;
|
|
81
|
-
vatId?: string | null;
|
|
82
|
-
vat?: UniRefund_SettingService_Vats_VatDto;
|
|
83
84
|
active?: boolean | null;
|
|
84
85
|
};
|
|
85
86
|
|
|
@@ -98,8 +99,8 @@ export type UniRefund_SettingService_ProductGroups_CreateProductGroupDto = {
|
|
|
98
99
|
name: string;
|
|
99
100
|
unitCode: UniRefund_SettingService_ProductGroups_UnitTypeCode;
|
|
100
101
|
companyType: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
|
|
101
|
-
active
|
|
102
|
-
food
|
|
102
|
+
active?: boolean;
|
|
103
|
+
food?: boolean;
|
|
103
104
|
};
|
|
104
105
|
|
|
105
106
|
export type UniRefund_SettingService_ProductGroups_ProductGroupDto = {
|
|
@@ -126,13 +127,12 @@ export type UniRefund_SettingService_ProductGroups_UpdateProductGroupDto = {
|
|
|
126
127
|
readonly extraProperties?: {
|
|
127
128
|
[key: string]: unknown;
|
|
128
129
|
} | null;
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
food?: boolean | null;
|
|
130
|
+
articleCode: string;
|
|
131
|
+
name: string;
|
|
132
|
+
unitCode: UniRefund_SettingService_ProductGroups_UnitTypeCode;
|
|
133
|
+
companyType: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
|
|
134
|
+
active?: boolean;
|
|
135
|
+
food?: boolean;
|
|
136
136
|
};
|
|
137
137
|
|
|
138
138
|
export type UniRefund_SettingService_Samples_SampleDto = {
|
|
@@ -177,18 +177,25 @@ export type UniRefund_SettingService_Vats_CreateVatDto = {
|
|
|
177
177
|
percent: number;
|
|
178
178
|
minimumTotalAmount: number;
|
|
179
179
|
countryId: string;
|
|
180
|
-
active
|
|
180
|
+
active?: boolean;
|
|
181
181
|
};
|
|
182
182
|
|
|
183
183
|
export type UniRefund_SettingService_Vats_UpdateVatDto = {
|
|
184
184
|
readonly extraProperties?: {
|
|
185
185
|
[key: string]: unknown;
|
|
186
186
|
} | null;
|
|
187
|
+
percent?: number;
|
|
188
|
+
minimumTotalAmount?: number;
|
|
189
|
+
active?: boolean;
|
|
190
|
+
};
|
|
191
|
+
|
|
192
|
+
export type UniRefund_SettingService_Vats_VatDetailDto = {
|
|
187
193
|
id?: string;
|
|
188
|
-
percent?: number
|
|
189
|
-
minimumTotalAmount?: number
|
|
190
|
-
countryId?: string
|
|
191
|
-
|
|
194
|
+
percent?: number;
|
|
195
|
+
minimumTotalAmount?: number;
|
|
196
|
+
countryId?: string;
|
|
197
|
+
countryName?: string | null;
|
|
198
|
+
active?: boolean;
|
|
192
199
|
};
|
|
193
200
|
|
|
194
201
|
export type UniRefund_SettingService_Vats_VatDto = {
|
|
@@ -207,16 +214,26 @@ export type UniRefund_SettingService_Vats_VatDto = {
|
|
|
207
214
|
};
|
|
208
215
|
|
|
209
216
|
export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
|
|
210
|
-
items?: Array<
|
|
217
|
+
items?: Array<UniRefund_SettingService_ProductGroupVats_ProductGroupVatDetailDto> | null;
|
|
211
218
|
totalCount?: number;
|
|
212
219
|
};
|
|
213
220
|
|
|
214
221
|
export type Volo_Abp_Application_Dtos_PagedResultDto_12 = {
|
|
215
|
-
items?: Array<
|
|
222
|
+
items?: Array<UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto> | null;
|
|
216
223
|
totalCount?: number;
|
|
217
224
|
};
|
|
218
225
|
|
|
219
226
|
export type Volo_Abp_Application_Dtos_PagedResultDto_13 = {
|
|
227
|
+
items?: Array<UniRefund_SettingService_ProductGroups_ProductGroupDto> | null;
|
|
228
|
+
totalCount?: number;
|
|
229
|
+
};
|
|
230
|
+
|
|
231
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_14 = {
|
|
232
|
+
items?: Array<UniRefund_SettingService_Vats_VatDetailDto> | null;
|
|
233
|
+
totalCount?: number;
|
|
234
|
+
};
|
|
235
|
+
|
|
236
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_15 = {
|
|
220
237
|
items?: Array<UniRefund_SettingService_Vats_VatDto> | null;
|
|
221
238
|
totalCount?: number;
|
|
222
239
|
};
|
|
@@ -678,12 +695,12 @@ export type PostApiSettingManagementEmailingSendTestEmailData = {
|
|
|
678
695
|
|
|
679
696
|
export type PostApiSettingManagementEmailingSendTestEmailResponse = unknown;
|
|
680
697
|
|
|
681
|
-
export type
|
|
682
|
-
id
|
|
698
|
+
export type PostApiSettingServiceProductGroupTranslationByIdData = {
|
|
699
|
+
id: string;
|
|
683
700
|
requestBody?: UniRefund_SettingService_ProductGroups_AddProductGroupTranslationDto;
|
|
684
701
|
};
|
|
685
702
|
|
|
686
|
-
export type
|
|
703
|
+
export type PostApiSettingServiceProductGroupTranslationByIdResponse = unknown;
|
|
687
704
|
|
|
688
705
|
export type PostApiSettingServiceProductGroupData = {
|
|
689
706
|
requestBody?: UniRefund_SettingService_ProductGroups_CreateProductGroupDto;
|
|
@@ -691,12 +708,6 @@ export type PostApiSettingServiceProductGroupData = {
|
|
|
691
708
|
|
|
692
709
|
export type PostApiSettingServiceProductGroupResponse = UniRefund_SettingService_ProductGroups_ProductGroupDto;
|
|
693
710
|
|
|
694
|
-
export type DeleteApiSettingServiceProductGroupData = {
|
|
695
|
-
id?: string;
|
|
696
|
-
};
|
|
697
|
-
|
|
698
|
-
export type DeleteApiSettingServiceProductGroupResponse = unknown;
|
|
699
|
-
|
|
700
711
|
export type GetApiSettingServiceProductGroupData = {
|
|
701
712
|
maxResultCount?: number;
|
|
702
713
|
skipCount?: number;
|
|
@@ -705,12 +716,11 @@ export type GetApiSettingServiceProductGroupData = {
|
|
|
705
716
|
|
|
706
717
|
export type GetApiSettingServiceProductGroupResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
707
718
|
|
|
708
|
-
export type
|
|
709
|
-
id
|
|
710
|
-
requestBody?: UniRefund_SettingService_ProductGroups_UpdateProductGroupDto;
|
|
719
|
+
export type DeleteApiSettingServiceProductGroupByIdData = {
|
|
720
|
+
id: string;
|
|
711
721
|
};
|
|
712
722
|
|
|
713
|
-
export type
|
|
723
|
+
export type DeleteApiSettingServiceProductGroupByIdResponse = unknown;
|
|
714
724
|
|
|
715
725
|
export type GetApiSettingServiceProductGroupByIdData = {
|
|
716
726
|
id: string;
|
|
@@ -718,6 +728,13 @@ export type GetApiSettingServiceProductGroupByIdData = {
|
|
|
718
728
|
|
|
719
729
|
export type GetApiSettingServiceProductGroupByIdResponse = UniRefund_SettingService_ProductGroups_ProductGroupDto;
|
|
720
730
|
|
|
731
|
+
export type PutApiSettingServiceProductGroupByIdData = {
|
|
732
|
+
id: string;
|
|
733
|
+
requestBody?: UniRefund_SettingService_ProductGroups_UpdateProductGroupDto;
|
|
734
|
+
};
|
|
735
|
+
|
|
736
|
+
export type PutApiSettingServiceProductGroupByIdResponse = UniRefund_SettingService_ProductGroups_ProductGroupDto;
|
|
737
|
+
|
|
721
738
|
export type GetApiSettingServiceProductGroupDetailByIdData = {
|
|
722
739
|
cultureName?: string;
|
|
723
740
|
id: string;
|
|
@@ -731,12 +748,6 @@ export type PostApiSettingServiceProductGroupVatData = {
|
|
|
731
748
|
|
|
732
749
|
export type PostApiSettingServiceProductGroupVatResponse = UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto;
|
|
733
750
|
|
|
734
|
-
export type DeleteApiSettingServiceProductGroupVatData = {
|
|
735
|
-
id?: string;
|
|
736
|
-
};
|
|
737
|
-
|
|
738
|
-
export type DeleteApiSettingServiceProductGroupVatResponse = unknown;
|
|
739
|
-
|
|
740
751
|
export type GetApiSettingServiceProductGroupVatData = {
|
|
741
752
|
maxResultCount?: number;
|
|
742
753
|
skipCount?: number;
|
|
@@ -745,12 +756,11 @@ export type GetApiSettingServiceProductGroupVatData = {
|
|
|
745
756
|
|
|
746
757
|
export type GetApiSettingServiceProductGroupVatResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
747
758
|
|
|
748
|
-
export type
|
|
749
|
-
id
|
|
750
|
-
requestBody?: UniRefund_SettingService_ProductGroupVats_UpdateProductGroupVatDto;
|
|
759
|
+
export type DeleteApiSettingServiceProductGroupVatByIdData = {
|
|
760
|
+
id: string;
|
|
751
761
|
};
|
|
752
762
|
|
|
753
|
-
export type
|
|
763
|
+
export type DeleteApiSettingServiceProductGroupVatByIdResponse = unknown;
|
|
754
764
|
|
|
755
765
|
export type GetApiSettingServiceProductGroupVatByIdData = {
|
|
756
766
|
id: string;
|
|
@@ -758,6 +768,21 @@ export type GetApiSettingServiceProductGroupVatByIdData = {
|
|
|
758
768
|
|
|
759
769
|
export type GetApiSettingServiceProductGroupVatByIdResponse = UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto;
|
|
760
770
|
|
|
771
|
+
export type PutApiSettingServiceProductGroupVatByIdData = {
|
|
772
|
+
id: string;
|
|
773
|
+
requestBody?: UniRefund_SettingService_ProductGroupVats_UpdateProductGroupVatDto;
|
|
774
|
+
};
|
|
775
|
+
|
|
776
|
+
export type PutApiSettingServiceProductGroupVatByIdResponse = UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto;
|
|
777
|
+
|
|
778
|
+
export type GetApiSettingServiceProductGroupVatDetailData = {
|
|
779
|
+
maxResultCount?: number;
|
|
780
|
+
skipCount?: number;
|
|
781
|
+
sorting?: string;
|
|
782
|
+
};
|
|
783
|
+
|
|
784
|
+
export type GetApiSettingServiceProductGroupVatDetailResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
785
|
+
|
|
761
786
|
export type GetApiSettingServiceSampleResponse = UniRefund_SettingService_Samples_SampleDto;
|
|
762
787
|
|
|
763
788
|
export type GetApiSettingServiceSampleAuthorizedResponse = UniRefund_SettingService_Samples_SampleDto;
|
|
@@ -778,12 +803,6 @@ export type PostApiSettingServiceVatData = {
|
|
|
778
803
|
|
|
779
804
|
export type PostApiSettingServiceVatResponse = UniRefund_SettingService_Vats_VatDto;
|
|
780
805
|
|
|
781
|
-
export type DeleteApiSettingServiceVatData = {
|
|
782
|
-
id?: string;
|
|
783
|
-
};
|
|
784
|
-
|
|
785
|
-
export type DeleteApiSettingServiceVatResponse = unknown;
|
|
786
|
-
|
|
787
806
|
export type GetApiSettingServiceVatData = {
|
|
788
807
|
maxResultCount?: number;
|
|
789
808
|
skipCount?: number;
|
|
@@ -792,12 +811,11 @@ export type GetApiSettingServiceVatData = {
|
|
|
792
811
|
|
|
793
812
|
export type GetApiSettingServiceVatResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
794
813
|
|
|
795
|
-
export type
|
|
796
|
-
id
|
|
797
|
-
requestBody?: UniRefund_SettingService_Vats_UpdateVatDto;
|
|
814
|
+
export type DeleteApiSettingServiceVatByIdData = {
|
|
815
|
+
id: string;
|
|
798
816
|
};
|
|
799
817
|
|
|
800
|
-
export type
|
|
818
|
+
export type DeleteApiSettingServiceVatByIdResponse = unknown;
|
|
801
819
|
|
|
802
820
|
export type GetApiSettingServiceVatByIdData = {
|
|
803
821
|
id: string;
|
|
@@ -805,6 +823,21 @@ export type GetApiSettingServiceVatByIdData = {
|
|
|
805
823
|
|
|
806
824
|
export type GetApiSettingServiceVatByIdResponse = UniRefund_SettingService_Vats_VatDto;
|
|
807
825
|
|
|
826
|
+
export type PutApiSettingServiceVatByIdData = {
|
|
827
|
+
id: string;
|
|
828
|
+
requestBody?: UniRefund_SettingService_Vats_UpdateVatDto;
|
|
829
|
+
};
|
|
830
|
+
|
|
831
|
+
export type PutApiSettingServiceVatByIdResponse = UniRefund_SettingService_Vats_VatDto;
|
|
832
|
+
|
|
833
|
+
export type GetApiSettingServiceVatDetailData = {
|
|
834
|
+
maxResultCount?: number;
|
|
835
|
+
skipCount?: number;
|
|
836
|
+
sorting?: string;
|
|
837
|
+
};
|
|
838
|
+
|
|
839
|
+
export type GetApiSettingServiceVatDetailResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
840
|
+
|
|
808
841
|
export type $OpenApiTs = {
|
|
809
842
|
'/api/abp/api-definition': {
|
|
810
843
|
get: {
|
|
@@ -1114,9 +1147,9 @@ export type $OpenApiTs = {
|
|
|
1114
1147
|
};
|
|
1115
1148
|
};
|
|
1116
1149
|
};
|
|
1117
|
-
'/api/setting-service/product-group/translation': {
|
|
1150
|
+
'/api/setting-service/product-group/translation/{id}': {
|
|
1118
1151
|
post: {
|
|
1119
|
-
req:
|
|
1152
|
+
req: PostApiSettingServiceProductGroupTranslationByIdData;
|
|
1120
1153
|
res: {
|
|
1121
1154
|
/**
|
|
1122
1155
|
* Success
|
|
@@ -1183,13 +1216,13 @@ export type $OpenApiTs = {
|
|
|
1183
1216
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1184
1217
|
};
|
|
1185
1218
|
};
|
|
1186
|
-
|
|
1187
|
-
req:
|
|
1219
|
+
get: {
|
|
1220
|
+
req: GetApiSettingServiceProductGroupData;
|
|
1188
1221
|
res: {
|
|
1189
1222
|
/**
|
|
1190
1223
|
* Success
|
|
1191
1224
|
*/
|
|
1192
|
-
200:
|
|
1225
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1193
1226
|
/**
|
|
1194
1227
|
* Bad Request
|
|
1195
1228
|
*/
|
|
@@ -1216,13 +1249,15 @@ export type $OpenApiTs = {
|
|
|
1216
1249
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1217
1250
|
};
|
|
1218
1251
|
};
|
|
1219
|
-
|
|
1220
|
-
|
|
1252
|
+
};
|
|
1253
|
+
'/api/setting-service/product-group/{id}': {
|
|
1254
|
+
delete: {
|
|
1255
|
+
req: DeleteApiSettingServiceProductGroupByIdData;
|
|
1221
1256
|
res: {
|
|
1222
1257
|
/**
|
|
1223
1258
|
* Success
|
|
1224
1259
|
*/
|
|
1225
|
-
200:
|
|
1260
|
+
200: unknown;
|
|
1226
1261
|
/**
|
|
1227
1262
|
* Bad Request
|
|
1228
1263
|
*/
|
|
@@ -1249,8 +1284,8 @@ export type $OpenApiTs = {
|
|
|
1249
1284
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1250
1285
|
};
|
|
1251
1286
|
};
|
|
1252
|
-
|
|
1253
|
-
req:
|
|
1287
|
+
get: {
|
|
1288
|
+
req: GetApiSettingServiceProductGroupByIdData;
|
|
1254
1289
|
res: {
|
|
1255
1290
|
/**
|
|
1256
1291
|
* Success
|
|
@@ -1282,10 +1317,8 @@ export type $OpenApiTs = {
|
|
|
1282
1317
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1283
1318
|
};
|
|
1284
1319
|
};
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
get: {
|
|
1288
|
-
req: GetApiSettingServiceProductGroupByIdData;
|
|
1320
|
+
put: {
|
|
1321
|
+
req: PutApiSettingServiceProductGroupByIdData;
|
|
1289
1322
|
res: {
|
|
1290
1323
|
/**
|
|
1291
1324
|
* Success
|
|
@@ -1387,8 +1420,43 @@ export type $OpenApiTs = {
|
|
|
1387
1420
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1388
1421
|
};
|
|
1389
1422
|
};
|
|
1423
|
+
get: {
|
|
1424
|
+
req: GetApiSettingServiceProductGroupVatData;
|
|
1425
|
+
res: {
|
|
1426
|
+
/**
|
|
1427
|
+
* Success
|
|
1428
|
+
*/
|
|
1429
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1430
|
+
/**
|
|
1431
|
+
* Bad Request
|
|
1432
|
+
*/
|
|
1433
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1434
|
+
/**
|
|
1435
|
+
* Unauthorized
|
|
1436
|
+
*/
|
|
1437
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1438
|
+
/**
|
|
1439
|
+
* Forbidden
|
|
1440
|
+
*/
|
|
1441
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1442
|
+
/**
|
|
1443
|
+
* Not Found
|
|
1444
|
+
*/
|
|
1445
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1446
|
+
/**
|
|
1447
|
+
* Server Error
|
|
1448
|
+
*/
|
|
1449
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1450
|
+
/**
|
|
1451
|
+
* Server Error
|
|
1452
|
+
*/
|
|
1453
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1454
|
+
};
|
|
1455
|
+
};
|
|
1456
|
+
};
|
|
1457
|
+
'/api/setting-service/product-group-vat/{id}': {
|
|
1390
1458
|
delete: {
|
|
1391
|
-
req:
|
|
1459
|
+
req: DeleteApiSettingServiceProductGroupVatByIdData;
|
|
1392
1460
|
res: {
|
|
1393
1461
|
/**
|
|
1394
1462
|
* Success
|
|
@@ -1421,12 +1489,12 @@ export type $OpenApiTs = {
|
|
|
1421
1489
|
};
|
|
1422
1490
|
};
|
|
1423
1491
|
get: {
|
|
1424
|
-
req:
|
|
1492
|
+
req: GetApiSettingServiceProductGroupVatByIdData;
|
|
1425
1493
|
res: {
|
|
1426
1494
|
/**
|
|
1427
1495
|
* Success
|
|
1428
1496
|
*/
|
|
1429
|
-
200:
|
|
1497
|
+
200: UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto;
|
|
1430
1498
|
/**
|
|
1431
1499
|
* Bad Request
|
|
1432
1500
|
*/
|
|
@@ -1454,7 +1522,7 @@ export type $OpenApiTs = {
|
|
|
1454
1522
|
};
|
|
1455
1523
|
};
|
|
1456
1524
|
put: {
|
|
1457
|
-
req:
|
|
1525
|
+
req: PutApiSettingServiceProductGroupVatByIdData;
|
|
1458
1526
|
res: {
|
|
1459
1527
|
/**
|
|
1460
1528
|
* Success
|
|
@@ -1487,14 +1555,14 @@ export type $OpenApiTs = {
|
|
|
1487
1555
|
};
|
|
1488
1556
|
};
|
|
1489
1557
|
};
|
|
1490
|
-
'/api/setting-service/product-group-vat/
|
|
1558
|
+
'/api/setting-service/product-group-vat/detail': {
|
|
1491
1559
|
get: {
|
|
1492
|
-
req:
|
|
1560
|
+
req: GetApiSettingServiceProductGroupVatDetailData;
|
|
1493
1561
|
res: {
|
|
1494
1562
|
/**
|
|
1495
1563
|
* Success
|
|
1496
1564
|
*/
|
|
1497
|
-
200:
|
|
1565
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1498
1566
|
/**
|
|
1499
1567
|
* Bad Request
|
|
1500
1568
|
*/
|
|
@@ -1725,8 +1793,43 @@ export type $OpenApiTs = {
|
|
|
1725
1793
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1726
1794
|
};
|
|
1727
1795
|
};
|
|
1796
|
+
get: {
|
|
1797
|
+
req: GetApiSettingServiceVatData;
|
|
1798
|
+
res: {
|
|
1799
|
+
/**
|
|
1800
|
+
* Success
|
|
1801
|
+
*/
|
|
1802
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1803
|
+
/**
|
|
1804
|
+
* Bad Request
|
|
1805
|
+
*/
|
|
1806
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1807
|
+
/**
|
|
1808
|
+
* Unauthorized
|
|
1809
|
+
*/
|
|
1810
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1811
|
+
/**
|
|
1812
|
+
* Forbidden
|
|
1813
|
+
*/
|
|
1814
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1815
|
+
/**
|
|
1816
|
+
* Not Found
|
|
1817
|
+
*/
|
|
1818
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1819
|
+
/**
|
|
1820
|
+
* Server Error
|
|
1821
|
+
*/
|
|
1822
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1823
|
+
/**
|
|
1824
|
+
* Server Error
|
|
1825
|
+
*/
|
|
1826
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1827
|
+
};
|
|
1828
|
+
};
|
|
1829
|
+
};
|
|
1830
|
+
'/api/setting-service/vat/{id}': {
|
|
1728
1831
|
delete: {
|
|
1729
|
-
req:
|
|
1832
|
+
req: DeleteApiSettingServiceVatByIdData;
|
|
1730
1833
|
res: {
|
|
1731
1834
|
/**
|
|
1732
1835
|
* Success
|
|
@@ -1759,12 +1862,12 @@ export type $OpenApiTs = {
|
|
|
1759
1862
|
};
|
|
1760
1863
|
};
|
|
1761
1864
|
get: {
|
|
1762
|
-
req:
|
|
1865
|
+
req: GetApiSettingServiceVatByIdData;
|
|
1763
1866
|
res: {
|
|
1764
1867
|
/**
|
|
1765
1868
|
* Success
|
|
1766
1869
|
*/
|
|
1767
|
-
200:
|
|
1870
|
+
200: UniRefund_SettingService_Vats_VatDto;
|
|
1768
1871
|
/**
|
|
1769
1872
|
* Bad Request
|
|
1770
1873
|
*/
|
|
@@ -1792,7 +1895,7 @@ export type $OpenApiTs = {
|
|
|
1792
1895
|
};
|
|
1793
1896
|
};
|
|
1794
1897
|
put: {
|
|
1795
|
-
req:
|
|
1898
|
+
req: PutApiSettingServiceVatByIdData;
|
|
1796
1899
|
res: {
|
|
1797
1900
|
/**
|
|
1798
1901
|
* Success
|
|
@@ -1825,14 +1928,14 @@ export type $OpenApiTs = {
|
|
|
1825
1928
|
};
|
|
1826
1929
|
};
|
|
1827
1930
|
};
|
|
1828
|
-
'/api/setting-service/vat/
|
|
1931
|
+
'/api/setting-service/vat/detail': {
|
|
1829
1932
|
get: {
|
|
1830
|
-
req:
|
|
1933
|
+
req: GetApiSettingServiceVatDetailData;
|
|
1831
1934
|
res: {
|
|
1832
1935
|
/**
|
|
1833
1936
|
* Success
|
|
1834
1937
|
*/
|
|
1835
|
-
200:
|
|
1938
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1836
1939
|
/**
|
|
1837
1940
|
* Bad Request
|
|
1838
1941
|
*/
|
package/package.json
CHANGED
|
@@ -1,21 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ayasofyazilim/saas",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.32",
|
|
4
4
|
"description": "Ayasofyazılım SAAS",
|
|
5
5
|
"main": "generator.mjs",
|
|
6
6
|
"bin": {
|
|
7
7
|
"generate": "generator.mjs"
|
|
8
8
|
},
|
|
9
9
|
"exports": {
|
|
10
|
-
"
|
|
11
|
-
"./ProjectService": "./ProjectService/index.ts",
|
|
12
|
-
"./FundraiserService": "./FundraiserService/index.ts",
|
|
13
|
-
"./AdministrationService": "./AdministrationService/index.ts",
|
|
14
|
-
"./IdentityService": "./IdentityService/index.ts",
|
|
15
|
-
"./SaasService": "./SaasService/index.ts",
|
|
16
|
-
"./SettingService": "./SettingService/index.ts",
|
|
17
|
-
"./BackerService": "./BackerService/index.ts",
|
|
18
|
-
"./MerchantService": "./MerchantService/index.ts"
|
|
10
|
+
"./*": "./*/index.ts"
|
|
19
11
|
},
|
|
20
12
|
"scripts": {
|
|
21
13
|
"gen:all": "node generator.mjs --all",
|