@ayasofyazilim/saas 0.0.9 → 0.0.11
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 -58
- package/AccountService/core/ApiError.ts +15 -19
- package/AccountService/core/ApiRequestOptions.ts +12 -16
- package/AccountService/core/ApiResult.ts +7 -11
- package/AccountService/core/BaseHttpRequest.ts +3 -7
- package/AccountService/core/CancelablePromise.ts +118 -123
- package/AccountService/core/FetchHttpRequest.ts +13 -17
- package/AccountService/core/OpenAPI.ts +48 -24
- package/AccountService/core/request.ts +280 -261
- package/AccountService/index.ts +9 -122
- package/AccountService/schemas.gen.ts +2331 -0
- package/AccountService/services.gen.ts +1453 -0
- package/AccountService/types.gen.ts +3176 -0
- package/AdministrationService/AdministrationServiceClient.ts +74 -67
- package/AdministrationService/core/ApiError.ts +15 -19
- package/AdministrationService/core/ApiRequestOptions.ts +12 -16
- package/AdministrationService/core/ApiResult.ts +7 -11
- package/AdministrationService/core/BaseHttpRequest.ts +3 -7
- package/AdministrationService/core/CancelablePromise.ts +118 -123
- package/AdministrationService/core/FetchHttpRequest.ts +13 -17
- package/AdministrationService/core/OpenAPI.ts +48 -24
- package/AdministrationService/core/request.ts +280 -261
- package/AdministrationService/index.ts +9 -118
- package/AdministrationService/schemas.gen.ts +2307 -0
- package/AdministrationService/services.gen.ts +1333 -0
- package/AdministrationService/types.gen.ts +2726 -0
- package/IdentityService/IdentityServiceClient.ts +77 -70
- package/IdentityService/core/ApiError.ts +15 -19
- package/IdentityService/core/ApiRequestOptions.ts +12 -16
- package/IdentityService/core/ApiResult.ts +7 -11
- package/IdentityService/core/BaseHttpRequest.ts +3 -7
- package/IdentityService/core/CancelablePromise.ts +118 -123
- package/IdentityService/core/FetchHttpRequest.ts +13 -17
- package/IdentityService/core/OpenAPI.ts +48 -24
- package/IdentityService/core/request.ts +280 -261
- package/IdentityService/index.ts +9 -133
- package/IdentityService/schemas.gen.ts +3170 -0
- package/IdentityService/services.gen.ts +2864 -0
- package/IdentityService/types.gen.ts +5342 -0
- package/ProjectService/ProjectServiceClient.ts +0 -3
- package/ProjectService/schemas.gen.ts +188 -109
- package/ProjectService/services.gen.ts +1 -48
- package/ProjectService/types.gen.ts +74 -187
- package/SaasService/SaasServiceClient.ts +65 -0
- package/SaasService/core/ApiError.ts +21 -0
- package/SaasService/core/ApiRequestOptions.ts +13 -0
- package/SaasService/core/ApiResult.ts +7 -0
- package/SaasService/core/BaseHttpRequest.ts +10 -0
- package/SaasService/core/CancelablePromise.ts +126 -0
- package/SaasService/core/FetchHttpRequest.ts +22 -0
- package/SaasService/core/OpenAPI.ts +56 -0
- package/SaasService/core/request.ts +341 -0
- package/SaasService/index.ts +9 -0
- package/SaasService/schemas.gen.ts +2148 -0
- package/SaasService/services.gen.ts +1326 -0
- package/SaasService/types.gen.ts +2735 -0
- package/package.json +9 -12
package/package.json
CHANGED
|
@@ -1,24 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ayasofyazilim/saas",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"description": "Ayasofyazılım SAAS",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./AccountService": "./AccountService/index.ts",
|
|
7
7
|
"./ProjectService": "./ProjectService/index.ts",
|
|
8
8
|
"./AdministrationService": "./AdministrationService/index.ts",
|
|
9
|
-
"./IdentityService": "./IdentityService/index.ts"
|
|
9
|
+
"./IdentityService": "./IdentityService/index.ts",
|
|
10
|
+
"./SaasService": "./SaasService/index.ts"
|
|
10
11
|
},
|
|
11
12
|
"scripts": {
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"gen:
|
|
18
|
-
"gen:AccountService": "npx @hey-api/openapi-ts -i http://192.168.1.38:44325/swagger-json/AuthServer/swagger/v1/swagger.json -o AccountService --client fetch",
|
|
19
|
-
"gen:ProjectService": "npx @hey-api/openapi-ts -i http://192.168.1.38:45185/swagger/v1/swagger.json -o ProjectService --client fetch --lint eslint --name ProjectServiceClient",
|
|
20
|
-
"gen:AdministrationService": "npx @hey-api/openapi-ts -i http://192.168.1.38:44325/swagger-json/Administration/swagger/v1/swagger.json -o AdministrationService --client fetch",
|
|
21
|
-
"gen:IdentityService": "npx @hey-api/openapi-ts -i http://192.168.1.38:44325/swagger-json/Identity/swagger/v1/swagger.json -o IdentityService --client fetch",
|
|
13
|
+
"gen:all": "npm run gen:AccountService && npm run gen:ProjectService && npm run gen:AdministrationService && npm run gen:IdentityService && npm run gen:SaasService",
|
|
14
|
+
"gen:AccountService": "npx @hey-api/openapi-ts -i http://192.168.1.38:44325/swagger-json/AuthServer/swagger/v1/swagger.json -o AccountService --client fetch --name AccountServiceClient",
|
|
15
|
+
"gen:ProjectService": "npx @hey-api/openapi-ts -i http://192.168.1.38:45185/swagger/v1/swagger.json -o ProjectService --client fetch --name ProjectServiceClient",
|
|
16
|
+
"gen:AdministrationService": "npx @hey-api/openapi-ts -i http://192.168.1.38:44325/swagger-json/Administration/swagger/v1/swagger.json -o AdministrationService --client fetch --name AdministrationServiceClient",
|
|
17
|
+
"gen:IdentityService": "npx @hey-api/openapi-ts -i http://192.168.1.38:44325/swagger-json/Identity/swagger/v1/swagger.json -o IdentityService --client fetch --name IdentityServiceClient",
|
|
18
|
+
"gen:SaasService": "npx @hey-api/openapi-ts -i http://192.168.1.38:44325/swagger-json/Saas/swagger/v1/swagger.json -o SaasService --client fetch --name SaasServiceClient",
|
|
22
19
|
"init-release": "publish --access public",
|
|
23
20
|
"release": "release-it"
|
|
24
21
|
},
|