@ayasofyazilim/saas 0.0.28 → 0.0.29
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/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/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/BackerService/BackerServiceClient.ts +50 -50
- 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/BackerService/services.gen.ts +866 -866
- 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/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/MerchantService/MerchantServiceClient.ts +77 -77
- 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/ProjectServiceClient.ts +47 -47
- 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/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/SettingService/index.ts +2 -2
- package/SettingService/schemas.gen.ts +5779 -5779
- package/SettingService/services.gen.ts +787 -787
- package/SettingService/types.gen.ts +1862 -6827
- package/generator.mjs +33 -7
- package/package.json +1 -1
package/SettingService/index.ts
CHANGED
|
@@ -4,6 +4,6 @@ export { ApiError } from './core/ApiError';
|
|
|
4
4
|
export { BaseHttpRequest } from './core/BaseHttpRequest';
|
|
5
5
|
export { CancelablePromise, CancelError } from './core/CancelablePromise';
|
|
6
6
|
export { OpenAPI, type OpenAPIConfig } from './core/OpenAPI';
|
|
7
|
-
export * from './schemas.gen';
|
|
8
7
|
export * from './services.gen';
|
|
9
|
-
export * from './types.gen';
|
|
8
|
+
export * from './types.gen';
|
|
9
|
+
export * from './schemas.gen';
|