@ayasofyazilim/saas 0.0.11 → 0.0.13
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/schemas.gen.ts +2853 -67
- package/AccountService/services.gen.ts +28 -28
- package/AccountService/types.gen.ts +7252 -522
- package/AdministrationService/schemas.gen.ts +3664 -73
- package/AdministrationService/services.gen.ts +32 -32
- package/AdministrationService/types.gen.ts +6741 -442
- package/IdentityService/schemas.gen.ts +3506 -76
- package/IdentityService/services.gen.ts +69 -69
- package/IdentityService/types.gen.ts +13238 -892
- package/ProjectService/schemas.gen.ts +2802 -55
- package/ProjectService/services.gen.ts +15 -15
- package/ProjectService/types.gen.ts +3483 -199
- package/SaasService/schemas.gen.ts +3204 -73
- package/SaasService/services.gen.ts +36 -36
- package/SaasService/types.gen.ts +6780 -462
- package/SettingService/SettingServiceClient.ts +53 -0
- package/SettingService/core/ApiError.ts +21 -0
- package/SettingService/core/ApiRequestOptions.ts +13 -0
- package/SettingService/core/ApiResult.ts +7 -0
- package/SettingService/core/BaseHttpRequest.ts +10 -0
- package/SettingService/core/CancelablePromise.ts +126 -0
- package/SettingService/core/FetchHttpRequest.ts +22 -0
- package/SettingService/core/OpenAPI.ts +56 -0
- package/SettingService/core/request.ts +341 -0
- package/SettingService/index.ts +9 -0
- package/SettingService/schemas.gen.ts +1525 -0
- package/SettingService/services.gen.ts +317 -0
- package/SettingService/types.gen.ts +982 -0
- package/generator.mjs +67 -0
- package/package.json +28 -30
|
@@ -10,7 +10,7 @@ export class AbpApiDefinitionService {
|
|
|
10
10
|
/**
|
|
11
11
|
* @param data The data for the request.
|
|
12
12
|
* @param data.includeTypes
|
|
13
|
-
* @returns
|
|
13
|
+
* @returns unknown Success
|
|
14
14
|
* @throws ApiError
|
|
15
15
|
*/
|
|
16
16
|
public getApiAbpApiDefinition(data: GetApiAbpApiDefinitionData = {}): CancelablePromise<GetApiAbpApiDefinitionResponse> {
|
|
@@ -39,7 +39,7 @@ export class AbpApplicationConfigurationService {
|
|
|
39
39
|
/**
|
|
40
40
|
* @param data The data for the request.
|
|
41
41
|
* @param data.includeLocalizationResources
|
|
42
|
-
* @returns
|
|
42
|
+
* @returns unknown Success
|
|
43
43
|
* @throws ApiError
|
|
44
44
|
*/
|
|
45
45
|
public getApiAbpApplicationConfiguration(data: GetApiAbpApplicationConfigurationData = {}): CancelablePromise<GetApiAbpApplicationConfigurationResponse> {
|
|
@@ -69,7 +69,7 @@ export class AbpApplicationLocalizationService {
|
|
|
69
69
|
* @param data The data for the request.
|
|
70
70
|
* @param data.cultureName
|
|
71
71
|
* @param data.onlyDynamics
|
|
72
|
-
* @returns
|
|
72
|
+
* @returns unknown Success
|
|
73
73
|
* @throws ApiError
|
|
74
74
|
*/
|
|
75
75
|
public getApiAbpApplicationLocalization(data: GetApiAbpApplicationLocalizationData): CancelablePromise<GetApiAbpApplicationLocalizationResponse> {
|
|
@@ -99,7 +99,7 @@ export class EditionService {
|
|
|
99
99
|
/**
|
|
100
100
|
* @param data The data for the request.
|
|
101
101
|
* @param data.id
|
|
102
|
-
* @returns
|
|
102
|
+
* @returns unknown Success
|
|
103
103
|
* @throws ApiError
|
|
104
104
|
*/
|
|
105
105
|
public getApiSaasEditionsById(data: GetApiSaasEditionsByIdData): CancelablePromise<GetApiSaasEditionsByIdResponse> {
|
|
@@ -124,7 +124,7 @@ export class EditionService {
|
|
|
124
124
|
* @param data The data for the request.
|
|
125
125
|
* @param data.id
|
|
126
126
|
* @param data.requestBody
|
|
127
|
-
* @returns
|
|
127
|
+
* @returns unknown Success
|
|
128
128
|
* @throws ApiError
|
|
129
129
|
*/
|
|
130
130
|
public putApiSaasEditionsById(data: PutApiSaasEditionsByIdData): CancelablePromise<PutApiSaasEditionsByIdResponse> {
|
|
@@ -177,7 +177,7 @@ export class EditionService {
|
|
|
177
177
|
* @param data.sorting
|
|
178
178
|
* @param data.skipCount
|
|
179
179
|
* @param data.maxResultCount
|
|
180
|
-
* @returns
|
|
180
|
+
* @returns unknown Success
|
|
181
181
|
* @throws ApiError
|
|
182
182
|
*/
|
|
183
183
|
public getApiSaasEditions(data: GetApiSaasEditionsData = {}): CancelablePromise<GetApiSaasEditionsResponse> {
|
|
@@ -204,7 +204,7 @@ export class EditionService {
|
|
|
204
204
|
/**
|
|
205
205
|
* @param data The data for the request.
|
|
206
206
|
* @param data.requestBody
|
|
207
|
-
* @returns
|
|
207
|
+
* @returns unknown Success
|
|
208
208
|
* @throws ApiError
|
|
209
209
|
*/
|
|
210
210
|
public postApiSaasEditions(data: PostApiSaasEditionsData = {}): CancelablePromise<PostApiSaasEditionsResponse> {
|
|
@@ -253,7 +253,7 @@ export class EditionService {
|
|
|
253
253
|
}
|
|
254
254
|
|
|
255
255
|
/**
|
|
256
|
-
* @returns
|
|
256
|
+
* @returns unknown Success
|
|
257
257
|
* @throws ApiError
|
|
258
258
|
*/
|
|
259
259
|
public getApiSaasEditionsAll(): CancelablePromise<GetApiSaasEditionsAllResponse> {
|
|
@@ -272,7 +272,7 @@ export class EditionService {
|
|
|
272
272
|
}
|
|
273
273
|
|
|
274
274
|
/**
|
|
275
|
-
* @returns
|
|
275
|
+
* @returns unknown Success
|
|
276
276
|
* @throws ApiError
|
|
277
277
|
*/
|
|
278
278
|
public getApiSaasEditionsStatisticsUsageStatistic(): CancelablePromise<GetApiSaasEditionsStatisticsUsageStatisticResponse> {
|
|
@@ -291,7 +291,7 @@ export class EditionService {
|
|
|
291
291
|
}
|
|
292
292
|
|
|
293
293
|
/**
|
|
294
|
-
* @returns
|
|
294
|
+
* @returns unknown Success
|
|
295
295
|
* @throws ApiError
|
|
296
296
|
*/
|
|
297
297
|
public getApiSaasEditionsPlanLookup(): CancelablePromise<GetApiSaasEditionsPlanLookupResponse> {
|
|
@@ -313,7 +313,7 @@ export class EditionService {
|
|
|
313
313
|
* @param data The data for the request.
|
|
314
314
|
* @param data.editionId
|
|
315
315
|
* @param data.tenantId
|
|
316
|
-
* @returns
|
|
316
|
+
* @returns unknown Success
|
|
317
317
|
* @throws ApiError
|
|
318
318
|
*/
|
|
319
319
|
public postApiSaasSubscription(data: PostApiSaasSubscriptionData = {}): CancelablePromise<PostApiSaasSubscriptionResponse> {
|
|
@@ -344,7 +344,7 @@ export class FeaturesService {
|
|
|
344
344
|
* @param data The data for the request.
|
|
345
345
|
* @param data.providerName
|
|
346
346
|
* @param data.providerKey
|
|
347
|
-
* @returns
|
|
347
|
+
* @returns unknown Success
|
|
348
348
|
* @throws ApiError
|
|
349
349
|
*/
|
|
350
350
|
public getApiFeatureManagementFeatures(data: GetApiFeatureManagementFeaturesData = {}): CancelablePromise<GetApiFeatureManagementFeaturesResponse> {
|
|
@@ -427,7 +427,7 @@ export class GatewayService {
|
|
|
427
427
|
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
428
428
|
|
|
429
429
|
/**
|
|
430
|
-
* @returns
|
|
430
|
+
* @returns unknown Success
|
|
431
431
|
* @throws ApiError
|
|
432
432
|
*/
|
|
433
433
|
public getApiPaymentGateways(): CancelablePromise<GetApiPaymentGatewaysResponse> {
|
|
@@ -446,7 +446,7 @@ export class GatewayService {
|
|
|
446
446
|
}
|
|
447
447
|
|
|
448
448
|
/**
|
|
449
|
-
* @returns
|
|
449
|
+
* @returns unknown Success
|
|
450
450
|
* @throws ApiError
|
|
451
451
|
*/
|
|
452
452
|
public getApiPaymentGatewaysSubscriptionSupported(): CancelablePromise<GetApiPaymentGatewaysSubscriptionSupportedResponse> {
|
|
@@ -473,7 +473,7 @@ export class PaymentRequestService {
|
|
|
473
473
|
* @param data The data for the request.
|
|
474
474
|
* @param data.paymentMethod
|
|
475
475
|
* @param data.requestBody
|
|
476
|
-
* @returns
|
|
476
|
+
* @returns unknown Success
|
|
477
477
|
* @throws ApiError
|
|
478
478
|
*/
|
|
479
479
|
public postApiPaymentByPaymentMethodComplete(data: PostApiPaymentByPaymentMethodCompleteData): CancelablePromise<PostApiPaymentByPaymentMethodCompleteResponse> {
|
|
@@ -499,7 +499,7 @@ export class PaymentRequestService {
|
|
|
499
499
|
/**
|
|
500
500
|
* @param data The data for the request.
|
|
501
501
|
* @param data.requestBody
|
|
502
|
-
* @returns
|
|
502
|
+
* @returns unknown Success
|
|
503
503
|
* @throws ApiError
|
|
504
504
|
*/
|
|
505
505
|
public postApiPaymentRequests(data: PostApiPaymentRequestsData = {}): CancelablePromise<PostApiPaymentRequestsResponse> {
|
|
@@ -522,7 +522,7 @@ export class PaymentRequestService {
|
|
|
522
522
|
/**
|
|
523
523
|
* @param data The data for the request.
|
|
524
524
|
* @param data.id
|
|
525
|
-
* @returns
|
|
525
|
+
* @returns unknown Success
|
|
526
526
|
* @throws ApiError
|
|
527
527
|
*/
|
|
528
528
|
public getApiPaymentRequestsById(data: GetApiPaymentRequestsByIdData): CancelablePromise<GetApiPaymentRequestsByIdResponse> {
|
|
@@ -579,7 +579,7 @@ export class PaymentRequestService {
|
|
|
579
579
|
* @param data The data for the request.
|
|
580
580
|
* @param data.paymentMethod
|
|
581
581
|
* @param data.requestBody
|
|
582
|
-
* @returns
|
|
582
|
+
* @returns unknown Success
|
|
583
583
|
* @throws ApiError
|
|
584
584
|
*/
|
|
585
585
|
public postApiPaymentByPaymentMethodStart(data: PostApiPaymentByPaymentMethodStartData): CancelablePromise<PostApiPaymentByPaymentMethodStartResponse> {
|
|
@@ -617,7 +617,7 @@ export class PaymentRequestAdminService {
|
|
|
617
617
|
* @param data.sorting
|
|
618
618
|
* @param data.skipCount
|
|
619
619
|
* @param data.maxResultCount
|
|
620
|
-
* @returns
|
|
620
|
+
* @returns unknown Success
|
|
621
621
|
* @throws ApiError
|
|
622
622
|
*/
|
|
623
623
|
public getApiPaymentAdminPaymentRequests(data: GetApiPaymentAdminPaymentRequestsData = {}): CancelablePromise<GetApiPaymentAdminPaymentRequestsResponse> {
|
|
@@ -648,7 +648,7 @@ export class PaymentRequestAdminService {
|
|
|
648
648
|
/**
|
|
649
649
|
* @param data The data for the request.
|
|
650
650
|
* @param data.id
|
|
651
|
-
* @returns
|
|
651
|
+
* @returns unknown Success
|
|
652
652
|
* @throws ApiError
|
|
653
653
|
*/
|
|
654
654
|
public getApiPaymentAdminPaymentRequestsById(data: GetApiPaymentAdminPaymentRequestsByIdData): CancelablePromise<GetApiPaymentAdminPaymentRequestsByIdResponse> {
|
|
@@ -678,7 +678,7 @@ export class PlanService {
|
|
|
678
678
|
* @param data The data for the request.
|
|
679
679
|
* @param data.planId
|
|
680
680
|
* @param data.gateway
|
|
681
|
-
* @returns
|
|
681
|
+
* @returns unknown Success
|
|
682
682
|
* @throws ApiError
|
|
683
683
|
*/
|
|
684
684
|
public getApiPaymentPlansByPlanIdByGateway(data: GetApiPaymentPlansByPlanIdByGatewayData): CancelablePromise<GetApiPaymentPlansByPlanIdByGatewayResponse> {
|
|
@@ -701,7 +701,7 @@ export class PlanService {
|
|
|
701
701
|
}
|
|
702
702
|
|
|
703
703
|
/**
|
|
704
|
-
* @returns
|
|
704
|
+
* @returns unknown Success
|
|
705
705
|
* @throws ApiError
|
|
706
706
|
*/
|
|
707
707
|
public getApiPaymentPlans(): CancelablePromise<GetApiPaymentPlansResponse> {
|
|
@@ -722,7 +722,7 @@ export class PlanService {
|
|
|
722
722
|
/**
|
|
723
723
|
* @param data The data for the request.
|
|
724
724
|
* @param data.planId
|
|
725
|
-
* @returns
|
|
725
|
+
* @returns unknown Success
|
|
726
726
|
* @throws ApiError
|
|
727
727
|
*/
|
|
728
728
|
public getApiPaymentPlansByPlanId(data: GetApiPaymentPlansByPlanIdData): CancelablePromise<GetApiPaymentPlansByPlanIdResponse> {
|
|
@@ -746,7 +746,7 @@ export class PlanService {
|
|
|
746
746
|
/**
|
|
747
747
|
* @param data The data for the request.
|
|
748
748
|
* @param data.ids
|
|
749
|
-
* @returns
|
|
749
|
+
* @returns unknown Success
|
|
750
750
|
* @throws ApiError
|
|
751
751
|
*/
|
|
752
752
|
public getApiPaymentPlansMany(data: GetApiPaymentPlansManyData = {}): CancelablePromise<GetApiPaymentPlansManyResponse> {
|
|
@@ -775,7 +775,7 @@ export class PlanAdminService {
|
|
|
775
775
|
/**
|
|
776
776
|
* @param data The data for the request.
|
|
777
777
|
* @param data.requestBody
|
|
778
|
-
* @returns
|
|
778
|
+
* @returns unknown Success
|
|
779
779
|
* @throws ApiError
|
|
780
780
|
*/
|
|
781
781
|
public postApiPaymentAdminPlans(data: PostApiPaymentAdminPlansData = {}): CancelablePromise<PostApiPaymentAdminPlansResponse> {
|
|
@@ -825,7 +825,7 @@ export class PlanAdminService {
|
|
|
825
825
|
* @param data.sorting
|
|
826
826
|
* @param data.skipCount
|
|
827
827
|
* @param data.maxResultCount
|
|
828
|
-
* @returns
|
|
828
|
+
* @returns unknown Success
|
|
829
829
|
* @throws ApiError
|
|
830
830
|
*/
|
|
831
831
|
public getApiPaymentAdminPlans(data: GetApiPaymentAdminPlansData = {}): CancelablePromise<GetApiPaymentAdminPlansResponse> {
|
|
@@ -883,7 +883,7 @@ export class PlanAdminService {
|
|
|
883
883
|
* @param data.sorting
|
|
884
884
|
* @param data.skipCount
|
|
885
885
|
* @param data.maxResultCount
|
|
886
|
-
* @returns
|
|
886
|
+
* @returns unknown Success
|
|
887
887
|
* @throws ApiError
|
|
888
888
|
*/
|
|
889
889
|
public getApiPaymentAdminPlansByPlanIdExternalPlans(data: GetApiPaymentAdminPlansByPlanIdExternalPlansData): CancelablePromise<GetApiPaymentAdminPlansByPlanIdExternalPlansResponse> {
|
|
@@ -968,7 +968,7 @@ export class PlanAdminService {
|
|
|
968
968
|
/**
|
|
969
969
|
* @param data The data for the request.
|
|
970
970
|
* @param data.id
|
|
971
|
-
* @returns
|
|
971
|
+
* @returns unknown Success
|
|
972
972
|
* @throws ApiError
|
|
973
973
|
*/
|
|
974
974
|
public getApiPaymentAdminPlansById(data: GetApiPaymentAdminPlansByIdData): CancelablePromise<GetApiPaymentAdminPlansByIdResponse> {
|
|
@@ -993,7 +993,7 @@ export class PlanAdminService {
|
|
|
993
993
|
* @param data The data for the request.
|
|
994
994
|
* @param data.id
|
|
995
995
|
* @param data.requestBody
|
|
996
|
-
* @returns
|
|
996
|
+
* @returns unknown Success
|
|
997
997
|
* @throws ApiError
|
|
998
998
|
*/
|
|
999
999
|
public putApiPaymentAdminPlansById(data: PutApiPaymentAdminPlansByIdData): CancelablePromise<PutApiPaymentAdminPlansByIdResponse> {
|
|
@@ -1024,7 +1024,7 @@ export class TenantService {
|
|
|
1024
1024
|
/**
|
|
1025
1025
|
* @param data The data for the request.
|
|
1026
1026
|
* @param data.id
|
|
1027
|
-
* @returns
|
|
1027
|
+
* @returns unknown Success
|
|
1028
1028
|
* @throws ApiError
|
|
1029
1029
|
*/
|
|
1030
1030
|
public getApiSaasTenantsById(data: GetApiSaasTenantsByIdData): CancelablePromise<GetApiSaasTenantsByIdResponse> {
|
|
@@ -1049,7 +1049,7 @@ export class TenantService {
|
|
|
1049
1049
|
* @param data The data for the request.
|
|
1050
1050
|
* @param data.id
|
|
1051
1051
|
* @param data.requestBody
|
|
1052
|
-
* @returns
|
|
1052
|
+
* @returns unknown Success
|
|
1053
1053
|
* @throws ApiError
|
|
1054
1054
|
*/
|
|
1055
1055
|
public putApiSaasTenantsById(data: PutApiSaasTenantsByIdData): CancelablePromise<PutApiSaasTenantsByIdResponse> {
|
|
@@ -1107,7 +1107,7 @@ export class TenantService {
|
|
|
1107
1107
|
* @param data.sorting
|
|
1108
1108
|
* @param data.skipCount
|
|
1109
1109
|
* @param data.maxResultCount
|
|
1110
|
-
* @returns
|
|
1110
|
+
* @returns unknown Success
|
|
1111
1111
|
* @throws ApiError
|
|
1112
1112
|
*/
|
|
1113
1113
|
public getApiSaasTenants(data: GetApiSaasTenantsData = {}): CancelablePromise<GetApiSaasTenantsResponse> {
|
|
@@ -1139,7 +1139,7 @@ export class TenantService {
|
|
|
1139
1139
|
/**
|
|
1140
1140
|
* @param data The data for the request.
|
|
1141
1141
|
* @param data.requestBody
|
|
1142
|
-
* @returns
|
|
1142
|
+
* @returns unknown Success
|
|
1143
1143
|
* @throws ApiError
|
|
1144
1144
|
*/
|
|
1145
1145
|
public postApiSaasTenants(data: PostApiSaasTenantsData = {}): CancelablePromise<PostApiSaasTenantsResponse> {
|
|
@@ -1160,7 +1160,7 @@ export class TenantService {
|
|
|
1160
1160
|
}
|
|
1161
1161
|
|
|
1162
1162
|
/**
|
|
1163
|
-
* @returns
|
|
1163
|
+
* @returns unknown Success
|
|
1164
1164
|
* @throws ApiError
|
|
1165
1165
|
*/
|
|
1166
1166
|
public getApiSaasTenantsDatabases(): CancelablePromise<GetApiSaasTenantsDatabasesResponse> {
|
|
@@ -1181,7 +1181,7 @@ export class TenantService {
|
|
|
1181
1181
|
/**
|
|
1182
1182
|
* @param data The data for the request.
|
|
1183
1183
|
* @param data.id
|
|
1184
|
-
* @returns
|
|
1184
|
+
* @returns unknown Success
|
|
1185
1185
|
* @throws ApiError
|
|
1186
1186
|
*/
|
|
1187
1187
|
public getApiSaasTenantsByIdConnectionStrings(data: GetApiSaasTenantsByIdConnectionStringsData): CancelablePromise<GetApiSaasTenantsByIdConnectionStringsResponse> {
|
|
@@ -1254,7 +1254,7 @@ export class TenantService {
|
|
|
1254
1254
|
}
|
|
1255
1255
|
|
|
1256
1256
|
/**
|
|
1257
|
-
* @returns
|
|
1257
|
+
* @returns unknown Success
|
|
1258
1258
|
* @throws ApiError
|
|
1259
1259
|
*/
|
|
1260
1260
|
public getApiSaasTenantsLookupEditions(): CancelablePromise<GetApiSaasTenantsLookupEditionsResponse> {
|