@ayasofyazilim/saas 0.0.24 → 0.0.26

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.
Files changed (37) hide show
  1. package/AccountService/AccountServiceClient.ts +65 -65
  2. package/AccountService/schemas.gen.ts +5103 -5103
  3. package/AccountService/services.gen.ts +1452 -1452
  4. package/AccountService/types.gen.ts +9896 -9896
  5. package/AdministrationService/AdministrationServiceClient.ts +74 -74
  6. package/AdministrationService/schemas.gen.ts +5897 -5897
  7. package/AdministrationService/services.gen.ts +1332 -1332
  8. package/AdministrationService/types.gen.ts +9024 -9024
  9. package/BackerService/BackerServiceClient.ts +50 -50
  10. package/BackerService/schemas.gen.ts +12444 -12401
  11. package/BackerService/services.gen.ts +866 -866
  12. package/BackerService/types.gen.ts +14936 -14936
  13. package/FundraiserService/schemas.gen.ts +795 -661
  14. package/FundraiserService/services.gen.ts +12 -36
  15. package/FundraiserService/types.gen.ts +1229 -2471
  16. package/IdentityService/IdentityServiceClient.ts +77 -77
  17. package/IdentityService/schemas.gen.ts +6573 -6573
  18. package/IdentityService/services.gen.ts +2839 -2839
  19. package/IdentityService/types.gen.ts +17446 -17446
  20. package/MerchantService/MerchantServiceClient.ts +77 -77
  21. package/MerchantService/schemas.gen.ts +14764 -14697
  22. package/MerchantService/services.gen.ts +1602 -1602
  23. package/MerchantService/types.gen.ts +18875 -18819
  24. package/ProjectService/ProjectServiceClient.ts +47 -47
  25. package/ProjectService/schemas.gen.ts +365 -1
  26. package/ProjectService/types.gen.ts +161 -1
  27. package/ProjectService.json +2937 -2937
  28. package/SaasService/schemas.gen.ts +5278 -5278
  29. package/SaasService/services.gen.ts +1325 -1325
  30. package/SaasService/types.gen.ts +9052 -9052
  31. package/SettingService/SettingServiceClient.ts +9 -0
  32. package/SettingService/schemas.gen.ts +516 -4
  33. package/SettingService/services.gen.ts +472 -1
  34. package/SettingService/types.gen.ts +896 -14
  35. package/generator.mjs +2 -2
  36. package/package.json +1 -1
  37. package/swagger.json +4794 -4794
@@ -11,6 +11,11 @@ export type UniRefund_SettingService_CountrySettings_CountrySettingDto = {
11
11
  groups: Array<UniRefund_SettingService_Groups_GroupDto>;
12
12
  };
13
13
 
14
+ export type UniRefund_SettingService_CountrySettings_CreateCountrySettingDto = {
15
+ name?: string | null;
16
+ value?: string | null;
17
+ };
18
+
14
19
  export type UniRefund_SettingService_Groups_GroupDto = {
15
20
  isEnabled?: boolean;
16
21
  key: string;
@@ -36,6 +41,100 @@ export type UniRefund_SettingService_Items_GroupItemDto = {
36
41
  valueType?: UniRefund_SettingService_Settings_ValueTypes_ValueTypeModelDto;
37
42
  };
38
43
 
44
+ export type UniRefund_SettingService_ProductGroupVats_CreateProductGroupVatDto = {
45
+ readonly extraProperties?: {
46
+ [key: string]: unknown;
47
+ } | null;
48
+ productGroupId: string;
49
+ productGroup: UniRefund_SettingService_ProductGroups_ProductGroupDto;
50
+ countryId: string;
51
+ vatId: string;
52
+ vat: UniRefund_SettingService_Vats_VatDto;
53
+ active: boolean;
54
+ };
55
+
56
+ export type UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto = {
57
+ id?: string;
58
+ creationTime?: string;
59
+ creatorId?: string | null;
60
+ lastModificationTime?: string | null;
61
+ lastModifierId?: string | null;
62
+ isDeleted?: boolean;
63
+ deleterId?: string | null;
64
+ deletionTime?: string | null;
65
+ productGroupId?: string;
66
+ productGroup?: UniRefund_SettingService_ProductGroups_ProductGroupDto;
67
+ countryId?: string;
68
+ vatId?: string;
69
+ vat?: UniRefund_SettingService_Vats_VatDto;
70
+ active?: boolean;
71
+ };
72
+
73
+ export type UniRefund_SettingService_ProductGroupVats_UpdateProductGroupVatDto = {
74
+ readonly extraProperties?: {
75
+ [key: string]: unknown;
76
+ } | 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
+ active?: boolean | null;
84
+ };
85
+
86
+ export type UniRefund_SettingService_ProductGroups_AddProductGroupTranslationDto = {
87
+ language: string;
88
+ name: string;
89
+ };
90
+
91
+ export type UniRefund_SettingService_ProductGroups_CompanyTypeCode = 0 | 1 | 2 | 3 | 4 | 5 | 6;
92
+
93
+ export type UniRefund_SettingService_ProductGroups_CreateProductGroupDto = {
94
+ readonly extraProperties?: {
95
+ [key: string]: unknown;
96
+ } | null;
97
+ articleCode: string;
98
+ name: string;
99
+ unitCode: UniRefund_SettingService_ProductGroups_UnitTypeCode;
100
+ companyType: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
101
+ active: boolean;
102
+ food: boolean;
103
+ };
104
+
105
+ export type UniRefund_SettingService_ProductGroups_ProductGroupDto = {
106
+ id?: string;
107
+ creationTime?: string;
108
+ creatorId?: string | null;
109
+ lastModificationTime?: string | null;
110
+ lastModifierId?: string | null;
111
+ isDeleted?: boolean;
112
+ deleterId?: string | null;
113
+ deletionTime?: string | null;
114
+ articleCode?: string | null;
115
+ name?: string | null;
116
+ unitCode?: UniRefund_SettingService_ProductGroups_UnitTypeCode;
117
+ companyType?: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
118
+ active?: boolean;
119
+ food?: boolean;
120
+ language?: string | null;
121
+ };
122
+
123
+ export type UniRefund_SettingService_ProductGroups_UnitTypeCode = 0 | 1 | 2;
124
+
125
+ export type UniRefund_SettingService_ProductGroups_UpdateProductGroupDto = {
126
+ readonly extraProperties?: {
127
+ [key: string]: unknown;
128
+ } | null;
129
+ id: string;
130
+ articleCode?: string | null;
131
+ name?: string | null;
132
+ unitCode?: UniRefund_SettingService_ProductGroups_UnitTypeCode;
133
+ companyType?: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
134
+ active?: boolean | null;
135
+ food?: boolean | null;
136
+ };
137
+
39
138
  export type UniRefund_SettingService_Samples_SampleDto = {
40
139
  value?: number;
41
140
  };
@@ -71,6 +170,57 @@ export type UniRefund_SettingService_Settings_ValueTypes_ValueTypeModelDto = {
71
170
  validator?: UniRefund_SettingService_Settings_ValueTypes_Validators_ValidatorDto;
72
171
  };
73
172
 
173
+ export type UniRefund_SettingService_Vats_CreateVatDto = {
174
+ readonly extraProperties?: {
175
+ [key: string]: unknown;
176
+ } | null;
177
+ percent: number;
178
+ minimumTotalAmount: number;
179
+ countryId: string;
180
+ active: boolean;
181
+ };
182
+
183
+ export type UniRefund_SettingService_Vats_UpdateVatDto = {
184
+ readonly extraProperties?: {
185
+ [key: string]: unknown;
186
+ } | null;
187
+ id?: string;
188
+ percent?: number | null;
189
+ minimumTotalAmount?: number | null;
190
+ countryId?: string | null;
191
+ active?: boolean | null;
192
+ };
193
+
194
+ export type UniRefund_SettingService_Vats_VatDto = {
195
+ id?: string;
196
+ creationTime?: string;
197
+ creatorId?: string | null;
198
+ lastModificationTime?: string | null;
199
+ lastModifierId?: string | null;
200
+ isDeleted?: boolean;
201
+ deleterId?: string | null;
202
+ deletionTime?: string | null;
203
+ percent?: number;
204
+ minimumTotalAmount?: number;
205
+ countryId?: string;
206
+ active?: boolean;
207
+ };
208
+
209
+ export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
210
+ items?: Array<UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto> | null;
211
+ totalCount?: number;
212
+ };
213
+
214
+ export type Volo_Abp_Application_Dtos_PagedResultDto_12 = {
215
+ items?: Array<UniRefund_SettingService_ProductGroups_ProductGroupDto> | null;
216
+ totalCount?: number;
217
+ };
218
+
219
+ export type Volo_Abp_Application_Dtos_PagedResultDto_13 = {
220
+ items?: Array<UniRefund_SettingService_Vats_VatDto> | null;
221
+ totalCount?: number;
222
+ };
223
+
74
224
  export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
75
225
  grantedPolicies?: {
76
226
  [key: string]: (boolean);
@@ -128,6 +278,7 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocaliz
128
278
  resources?: {
129
279
  [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
130
280
  } | null;
281
+ currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
131
282
  };
132
283
 
133
284
  export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
@@ -175,6 +326,7 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
175
326
  phoneNumber?: string | null;
176
327
  phoneNumberVerified?: boolean;
177
328
  roles?: Array<(string)> | null;
329
+ sessionId?: string | null;
178
330
  };
179
331
 
180
332
  export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
@@ -445,7 +597,6 @@ export type Volo_Abp_Localization_LanguageInfo = {
445
597
  uiCultureName?: string | null;
446
598
  displayName?: string | null;
447
599
  readonly twoLetterISOLanguageName?: string | null;
448
- flagIcon?: string | null;
449
600
  };
450
601
 
451
602
  export type Volo_Abp_NameValue = {
@@ -503,6 +654,12 @@ export type GetApiAbpApplicationLocalizationData = {
503
654
 
504
655
  export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
505
656
 
657
+ export type PostApiSettingServiceCountrySettingsForTenantData = {
658
+ requestBody?: UniRefund_SettingService_CountrySettings_CreateCountrySettingDto;
659
+ };
660
+
661
+ export type PostApiSettingServiceCountrySettingsForTenantResponse = unknown;
662
+
506
663
  export type GetApiSettingServiceCountrySettingsResponse = UniRefund_SettingService_CountrySettings_CountrySettingDto;
507
664
 
508
665
  export type PostApiSettingServiceCountrySettingsResponse = unknown;
@@ -521,6 +678,86 @@ export type PostApiSettingManagementEmailingSendTestEmailData = {
521
678
 
522
679
  export type PostApiSettingManagementEmailingSendTestEmailResponse = unknown;
523
680
 
681
+ export type PostApiSettingServiceProductGroupTranslationData = {
682
+ id?: string;
683
+ requestBody?: UniRefund_SettingService_ProductGroups_AddProductGroupTranslationDto;
684
+ };
685
+
686
+ export type PostApiSettingServiceProductGroupTranslationResponse = unknown;
687
+
688
+ export type PostApiSettingServiceProductGroupData = {
689
+ requestBody?: UniRefund_SettingService_ProductGroups_CreateProductGroupDto;
690
+ };
691
+
692
+ export type PostApiSettingServiceProductGroupResponse = UniRefund_SettingService_ProductGroups_ProductGroupDto;
693
+
694
+ export type DeleteApiSettingServiceProductGroupData = {
695
+ id?: string;
696
+ };
697
+
698
+ export type DeleteApiSettingServiceProductGroupResponse = unknown;
699
+
700
+ export type GetApiSettingServiceProductGroupData = {
701
+ maxResultCount?: number;
702
+ skipCount?: number;
703
+ sorting?: string;
704
+ };
705
+
706
+ export type GetApiSettingServiceProductGroupResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
707
+
708
+ export type PutApiSettingServiceProductGroupData = {
709
+ id?: string;
710
+ requestBody?: UniRefund_SettingService_ProductGroups_UpdateProductGroupDto;
711
+ };
712
+
713
+ export type PutApiSettingServiceProductGroupResponse = UniRefund_SettingService_ProductGroups_ProductGroupDto;
714
+
715
+ export type GetApiSettingServiceProductGroupByIdData = {
716
+ id: string;
717
+ };
718
+
719
+ export type GetApiSettingServiceProductGroupByIdResponse = UniRefund_SettingService_ProductGroups_ProductGroupDto;
720
+
721
+ export type GetApiSettingServiceProductGroupDetailByIdData = {
722
+ cultureName?: string;
723
+ id: string;
724
+ };
725
+
726
+ export type GetApiSettingServiceProductGroupDetailByIdResponse = UniRefund_SettingService_ProductGroups_ProductGroupDto;
727
+
728
+ export type PostApiSettingServiceProductGroupVatData = {
729
+ requestBody?: UniRefund_SettingService_ProductGroupVats_CreateProductGroupVatDto;
730
+ };
731
+
732
+ export type PostApiSettingServiceProductGroupVatResponse = UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto;
733
+
734
+ export type DeleteApiSettingServiceProductGroupVatData = {
735
+ id?: string;
736
+ };
737
+
738
+ export type DeleteApiSettingServiceProductGroupVatResponse = unknown;
739
+
740
+ export type GetApiSettingServiceProductGroupVatData = {
741
+ maxResultCount?: number;
742
+ skipCount?: number;
743
+ sorting?: string;
744
+ };
745
+
746
+ export type GetApiSettingServiceProductGroupVatResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
747
+
748
+ export type PutApiSettingServiceProductGroupVatData = {
749
+ id?: string;
750
+ requestBody?: UniRefund_SettingService_ProductGroupVats_UpdateProductGroupVatDto;
751
+ };
752
+
753
+ export type PutApiSettingServiceProductGroupVatResponse = UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto;
754
+
755
+ export type GetApiSettingServiceProductGroupVatByIdData = {
756
+ id: string;
757
+ };
758
+
759
+ export type GetApiSettingServiceProductGroupVatByIdResponse = UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto;
760
+
524
761
  export type GetApiSettingServiceSampleResponse = UniRefund_SettingService_Samples_SampleDto;
525
762
 
526
763
  export type GetApiSettingServiceSampleAuthorizedResponse = UniRefund_SettingService_Samples_SampleDto;
@@ -535,6 +772,39 @@ export type PostApiSettingManagementTimezoneResponse = unknown;
535
772
 
536
773
  export type GetApiSettingManagementTimezoneTimezonesResponse = Array<Volo_Abp_NameValue>;
537
774
 
775
+ export type PostApiSettingServiceVatData = {
776
+ requestBody?: UniRefund_SettingService_Vats_CreateVatDto;
777
+ };
778
+
779
+ export type PostApiSettingServiceVatResponse = UniRefund_SettingService_Vats_VatDto;
780
+
781
+ export type DeleteApiSettingServiceVatData = {
782
+ id?: string;
783
+ };
784
+
785
+ export type DeleteApiSettingServiceVatResponse = unknown;
786
+
787
+ export type GetApiSettingServiceVatData = {
788
+ maxResultCount?: number;
789
+ skipCount?: number;
790
+ sorting?: string;
791
+ };
792
+
793
+ export type GetApiSettingServiceVatResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
794
+
795
+ export type PutApiSettingServiceVatData = {
796
+ id?: string;
797
+ requestBody?: UniRefund_SettingService_Vats_UpdateVatDto;
798
+ };
799
+
800
+ export type PutApiSettingServiceVatResponse = UniRefund_SettingService_Vats_VatDto;
801
+
802
+ export type GetApiSettingServiceVatByIdData = {
803
+ id: string;
804
+ };
805
+
806
+ export type GetApiSettingServiceVatByIdResponse = UniRefund_SettingService_Vats_VatDto;
807
+
538
808
  export type $OpenApiTs = {
539
809
  '/api/abp/api-definition': {
540
810
  get: {
@@ -641,6 +911,41 @@ export type $OpenApiTs = {
641
911
  };
642
912
  };
643
913
  };
914
+ '/api/setting-service/country-settings/for-tenant': {
915
+ post: {
916
+ req: PostApiSettingServiceCountrySettingsForTenantData;
917
+ res: {
918
+ /**
919
+ * Success
920
+ */
921
+ 200: unknown;
922
+ /**
923
+ * Bad Request
924
+ */
925
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
926
+ /**
927
+ * Unauthorized
928
+ */
929
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
930
+ /**
931
+ * Forbidden
932
+ */
933
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
934
+ /**
935
+ * Not Found
936
+ */
937
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
938
+ /**
939
+ * Server Error
940
+ */
941
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
942
+ /**
943
+ * Server Error
944
+ */
945
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
946
+ };
947
+ };
948
+ };
644
949
  '/api/setting-service/country-settings': {
645
950
  get: {
646
951
  res: {
@@ -809,13 +1114,14 @@ export type $OpenApiTs = {
809
1114
  };
810
1115
  };
811
1116
  };
812
- '/api/SettingService/sample': {
813
- get: {
1117
+ '/api/setting-service/product-group/translation': {
1118
+ post: {
1119
+ req: PostApiSettingServiceProductGroupTranslationData;
814
1120
  res: {
815
1121
  /**
816
1122
  * Success
817
1123
  */
818
- 200: UniRefund_SettingService_Samples_SampleDto;
1124
+ 200: unknown;
819
1125
  /**
820
1126
  * Bad Request
821
1127
  */
@@ -843,13 +1149,113 @@ export type $OpenApiTs = {
843
1149
  };
844
1150
  };
845
1151
  };
846
- '/api/SettingService/sample/authorized': {
1152
+ '/api/setting-service/product-group': {
1153
+ post: {
1154
+ req: PostApiSettingServiceProductGroupData;
1155
+ res: {
1156
+ /**
1157
+ * Success
1158
+ */
1159
+ 200: UniRefund_SettingService_ProductGroups_ProductGroupDto;
1160
+ /**
1161
+ * Bad Request
1162
+ */
1163
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1164
+ /**
1165
+ * Unauthorized
1166
+ */
1167
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1168
+ /**
1169
+ * Forbidden
1170
+ */
1171
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1172
+ /**
1173
+ * Not Found
1174
+ */
1175
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1176
+ /**
1177
+ * Server Error
1178
+ */
1179
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1180
+ /**
1181
+ * Server Error
1182
+ */
1183
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1184
+ };
1185
+ };
1186
+ delete: {
1187
+ req: DeleteApiSettingServiceProductGroupData;
1188
+ res: {
1189
+ /**
1190
+ * Success
1191
+ */
1192
+ 200: unknown;
1193
+ /**
1194
+ * Bad Request
1195
+ */
1196
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1197
+ /**
1198
+ * Unauthorized
1199
+ */
1200
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1201
+ /**
1202
+ * Forbidden
1203
+ */
1204
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1205
+ /**
1206
+ * Not Found
1207
+ */
1208
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1209
+ /**
1210
+ * Server Error
1211
+ */
1212
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1213
+ /**
1214
+ * Server Error
1215
+ */
1216
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1217
+ };
1218
+ };
847
1219
  get: {
1220
+ req: GetApiSettingServiceProductGroupData;
848
1221
  res: {
849
1222
  /**
850
1223
  * Success
851
1224
  */
852
- 200: UniRefund_SettingService_Samples_SampleDto;
1225
+ 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1226
+ /**
1227
+ * Bad Request
1228
+ */
1229
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1230
+ /**
1231
+ * Unauthorized
1232
+ */
1233
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1234
+ /**
1235
+ * Forbidden
1236
+ */
1237
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1238
+ /**
1239
+ * Not Found
1240
+ */
1241
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1242
+ /**
1243
+ * Server Error
1244
+ */
1245
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1246
+ /**
1247
+ * Server Error
1248
+ */
1249
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1250
+ };
1251
+ };
1252
+ put: {
1253
+ req: PutApiSettingServiceProductGroupData;
1254
+ res: {
1255
+ /**
1256
+ * Success
1257
+ */
1258
+ 200: UniRefund_SettingService_ProductGroups_ProductGroupDto;
853
1259
  /**
854
1260
  * Bad Request
855
1261
  */
@@ -877,13 +1283,14 @@ export type $OpenApiTs = {
877
1283
  };
878
1284
  };
879
1285
  };
880
- '/api/setting-management/timezone': {
1286
+ '/api/setting-service/product-group/{id}': {
881
1287
  get: {
1288
+ req: GetApiSettingServiceProductGroupByIdData;
882
1289
  res: {
883
1290
  /**
884
1291
  * Success
885
1292
  */
886
- 200: string;
1293
+ 200: UniRefund_SettingService_ProductGroups_ProductGroupDto;
887
1294
  /**
888
1295
  * Bad Request
889
1296
  */
@@ -910,13 +1317,15 @@ export type $OpenApiTs = {
910
1317
  501: Volo_Abp_Http_RemoteServiceErrorResponse;
911
1318
  };
912
1319
  };
913
- post: {
914
- req: PostApiSettingManagementTimezoneData;
1320
+ };
1321
+ '/api/setting-service/product-group/detail/{id}': {
1322
+ get: {
1323
+ req: GetApiSettingServiceProductGroupDetailByIdData;
915
1324
  res: {
916
1325
  /**
917
1326
  * Success
918
1327
  */
919
- 200: unknown;
1328
+ 200: UniRefund_SettingService_ProductGroups_ProductGroupDto;
920
1329
  /**
921
1330
  * Bad Request
922
1331
  */
@@ -944,13 +1353,486 @@ export type $OpenApiTs = {
944
1353
  };
945
1354
  };
946
1355
  };
947
- '/api/setting-management/timezone/timezones': {
948
- get: {
1356
+ '/api/setting-service/product-group-vat': {
1357
+ post: {
1358
+ req: PostApiSettingServiceProductGroupVatData;
949
1359
  res: {
950
1360
  /**
951
1361
  * Success
952
1362
  */
953
- 200: Array<Volo_Abp_NameValue>;
1363
+ 200: UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto;
1364
+ /**
1365
+ * Bad Request
1366
+ */
1367
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1368
+ /**
1369
+ * Unauthorized
1370
+ */
1371
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1372
+ /**
1373
+ * Forbidden
1374
+ */
1375
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1376
+ /**
1377
+ * Not Found
1378
+ */
1379
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1380
+ /**
1381
+ * Server Error
1382
+ */
1383
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1384
+ /**
1385
+ * Server Error
1386
+ */
1387
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1388
+ };
1389
+ };
1390
+ delete: {
1391
+ req: DeleteApiSettingServiceProductGroupVatData;
1392
+ res: {
1393
+ /**
1394
+ * Success
1395
+ */
1396
+ 200: unknown;
1397
+ /**
1398
+ * Bad Request
1399
+ */
1400
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1401
+ /**
1402
+ * Unauthorized
1403
+ */
1404
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1405
+ /**
1406
+ * Forbidden
1407
+ */
1408
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1409
+ /**
1410
+ * Not Found
1411
+ */
1412
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1413
+ /**
1414
+ * Server Error
1415
+ */
1416
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1417
+ /**
1418
+ * Server Error
1419
+ */
1420
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1421
+ };
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
+ put: {
1457
+ req: PutApiSettingServiceProductGroupVatData;
1458
+ res: {
1459
+ /**
1460
+ * Success
1461
+ */
1462
+ 200: UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto;
1463
+ /**
1464
+ * Bad Request
1465
+ */
1466
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1467
+ /**
1468
+ * Unauthorized
1469
+ */
1470
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1471
+ /**
1472
+ * Forbidden
1473
+ */
1474
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1475
+ /**
1476
+ * Not Found
1477
+ */
1478
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1479
+ /**
1480
+ * Server Error
1481
+ */
1482
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1483
+ /**
1484
+ * Server Error
1485
+ */
1486
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1487
+ };
1488
+ };
1489
+ };
1490
+ '/api/setting-service/product-group-vat/{id}': {
1491
+ get: {
1492
+ req: GetApiSettingServiceProductGroupVatByIdData;
1493
+ res: {
1494
+ /**
1495
+ * Success
1496
+ */
1497
+ 200: UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto;
1498
+ /**
1499
+ * Bad Request
1500
+ */
1501
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1502
+ /**
1503
+ * Unauthorized
1504
+ */
1505
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1506
+ /**
1507
+ * Forbidden
1508
+ */
1509
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1510
+ /**
1511
+ * Not Found
1512
+ */
1513
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1514
+ /**
1515
+ * Server Error
1516
+ */
1517
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1518
+ /**
1519
+ * Server Error
1520
+ */
1521
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1522
+ };
1523
+ };
1524
+ };
1525
+ '/api/SettingService/sample': {
1526
+ get: {
1527
+ res: {
1528
+ /**
1529
+ * Success
1530
+ */
1531
+ 200: UniRefund_SettingService_Samples_SampleDto;
1532
+ /**
1533
+ * Bad Request
1534
+ */
1535
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1536
+ /**
1537
+ * Unauthorized
1538
+ */
1539
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1540
+ /**
1541
+ * Forbidden
1542
+ */
1543
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1544
+ /**
1545
+ * Not Found
1546
+ */
1547
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1548
+ /**
1549
+ * Server Error
1550
+ */
1551
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1552
+ /**
1553
+ * Server Error
1554
+ */
1555
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1556
+ };
1557
+ };
1558
+ };
1559
+ '/api/SettingService/sample/authorized': {
1560
+ get: {
1561
+ res: {
1562
+ /**
1563
+ * Success
1564
+ */
1565
+ 200: UniRefund_SettingService_Samples_SampleDto;
1566
+ /**
1567
+ * Bad Request
1568
+ */
1569
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1570
+ /**
1571
+ * Unauthorized
1572
+ */
1573
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1574
+ /**
1575
+ * Forbidden
1576
+ */
1577
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1578
+ /**
1579
+ * Not Found
1580
+ */
1581
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1582
+ /**
1583
+ * Server Error
1584
+ */
1585
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1586
+ /**
1587
+ * Server Error
1588
+ */
1589
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1590
+ };
1591
+ };
1592
+ };
1593
+ '/api/setting-management/timezone': {
1594
+ get: {
1595
+ res: {
1596
+ /**
1597
+ * Success
1598
+ */
1599
+ 200: string;
1600
+ /**
1601
+ * Bad Request
1602
+ */
1603
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1604
+ /**
1605
+ * Unauthorized
1606
+ */
1607
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1608
+ /**
1609
+ * Forbidden
1610
+ */
1611
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1612
+ /**
1613
+ * Not Found
1614
+ */
1615
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1616
+ /**
1617
+ * Server Error
1618
+ */
1619
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1620
+ /**
1621
+ * Server Error
1622
+ */
1623
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1624
+ };
1625
+ };
1626
+ post: {
1627
+ req: PostApiSettingManagementTimezoneData;
1628
+ res: {
1629
+ /**
1630
+ * Success
1631
+ */
1632
+ 200: unknown;
1633
+ /**
1634
+ * Bad Request
1635
+ */
1636
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1637
+ /**
1638
+ * Unauthorized
1639
+ */
1640
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1641
+ /**
1642
+ * Forbidden
1643
+ */
1644
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1645
+ /**
1646
+ * Not Found
1647
+ */
1648
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1649
+ /**
1650
+ * Server Error
1651
+ */
1652
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1653
+ /**
1654
+ * Server Error
1655
+ */
1656
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1657
+ };
1658
+ };
1659
+ };
1660
+ '/api/setting-management/timezone/timezones': {
1661
+ get: {
1662
+ res: {
1663
+ /**
1664
+ * Success
1665
+ */
1666
+ 200: Array<Volo_Abp_NameValue>;
1667
+ /**
1668
+ * Bad Request
1669
+ */
1670
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1671
+ /**
1672
+ * Unauthorized
1673
+ */
1674
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1675
+ /**
1676
+ * Forbidden
1677
+ */
1678
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1679
+ /**
1680
+ * Not Found
1681
+ */
1682
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1683
+ /**
1684
+ * Server Error
1685
+ */
1686
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1687
+ /**
1688
+ * Server Error
1689
+ */
1690
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1691
+ };
1692
+ };
1693
+ };
1694
+ '/api/setting-service/vat': {
1695
+ post: {
1696
+ req: PostApiSettingServiceVatData;
1697
+ res: {
1698
+ /**
1699
+ * Success
1700
+ */
1701
+ 200: UniRefund_SettingService_Vats_VatDto;
1702
+ /**
1703
+ * Bad Request
1704
+ */
1705
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1706
+ /**
1707
+ * Unauthorized
1708
+ */
1709
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1710
+ /**
1711
+ * Forbidden
1712
+ */
1713
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1714
+ /**
1715
+ * Not Found
1716
+ */
1717
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1718
+ /**
1719
+ * Server Error
1720
+ */
1721
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1722
+ /**
1723
+ * Server Error
1724
+ */
1725
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1726
+ };
1727
+ };
1728
+ delete: {
1729
+ req: DeleteApiSettingServiceVatData;
1730
+ res: {
1731
+ /**
1732
+ * Success
1733
+ */
1734
+ 200: unknown;
1735
+ /**
1736
+ * Bad Request
1737
+ */
1738
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1739
+ /**
1740
+ * Unauthorized
1741
+ */
1742
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1743
+ /**
1744
+ * Forbidden
1745
+ */
1746
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1747
+ /**
1748
+ * Not Found
1749
+ */
1750
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1751
+ /**
1752
+ * Server Error
1753
+ */
1754
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1755
+ /**
1756
+ * Server Error
1757
+ */
1758
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1759
+ };
1760
+ };
1761
+ get: {
1762
+ req: GetApiSettingServiceVatData;
1763
+ res: {
1764
+ /**
1765
+ * Success
1766
+ */
1767
+ 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1768
+ /**
1769
+ * Bad Request
1770
+ */
1771
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1772
+ /**
1773
+ * Unauthorized
1774
+ */
1775
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1776
+ /**
1777
+ * Forbidden
1778
+ */
1779
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1780
+ /**
1781
+ * Not Found
1782
+ */
1783
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1784
+ /**
1785
+ * Server Error
1786
+ */
1787
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1788
+ /**
1789
+ * Server Error
1790
+ */
1791
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1792
+ };
1793
+ };
1794
+ put: {
1795
+ req: PutApiSettingServiceVatData;
1796
+ res: {
1797
+ /**
1798
+ * Success
1799
+ */
1800
+ 200: UniRefund_SettingService_Vats_VatDto;
1801
+ /**
1802
+ * Bad Request
1803
+ */
1804
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1805
+ /**
1806
+ * Unauthorized
1807
+ */
1808
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1809
+ /**
1810
+ * Forbidden
1811
+ */
1812
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1813
+ /**
1814
+ * Not Found
1815
+ */
1816
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1817
+ /**
1818
+ * Server Error
1819
+ */
1820
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1821
+ /**
1822
+ * Server Error
1823
+ */
1824
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1825
+ };
1826
+ };
1827
+ };
1828
+ '/api/setting-service/vat/{id}': {
1829
+ get: {
1830
+ req: GetApiSettingServiceVatByIdData;
1831
+ res: {
1832
+ /**
1833
+ * Success
1834
+ */
1835
+ 200: UniRefund_SettingService_Vats_VatDto;
954
1836
  /**
955
1837
  * Bad Request
956
1838
  */