@ayasofyazilim/saas 0.0.9 → 0.0.10
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 +3279 -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 +2868 -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 +5707 -0
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ayasofyazilim/saas",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"description": "Ayasofyazılım SAAS",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./AccountService": "./AccountService/index.ts",
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"_gen:AdministrationService": "openapi --input http://192.168.1.38:44325/swagger-json/Administration/swagger/v1/swagger.json --output AdministrationService --name AdministrationServiceClient",
|
|
16
16
|
"_gen:IdentityService": "openapi --input http://192.168.1.38:44325/swagger-json/Identity/swagger/v1/swagger.json --output IdentityService --name IdentityServiceClient",
|
|
17
17
|
"gen:all": "npm run gen:AccountService && npm run gen:ProjectService && npm run gen:AdministrationService && npm run gen:IdentityService",
|
|
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",
|
|
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 --name AccountServiceClient",
|
|
19
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",
|
|
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 --name AdministrationServiceClient",
|
|
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 --name IdentityServiceClient",
|
|
22
22
|
"init-release": "publish --access public",
|
|
23
23
|
"release": "release-it"
|
|
24
24
|
},
|