@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.
Files changed (40) hide show
  1. package/AccountService/AccountServiceClient.ts +65 -58
  2. package/AccountService/core/ApiError.ts +15 -19
  3. package/AccountService/core/ApiRequestOptions.ts +12 -16
  4. package/AccountService/core/ApiResult.ts +7 -11
  5. package/AccountService/core/BaseHttpRequest.ts +3 -7
  6. package/AccountService/core/CancelablePromise.ts +118 -123
  7. package/AccountService/core/FetchHttpRequest.ts +13 -17
  8. package/AccountService/core/OpenAPI.ts +48 -24
  9. package/AccountService/core/request.ts +280 -261
  10. package/AccountService/index.ts +9 -122
  11. package/AccountService/schemas.gen.ts +2331 -0
  12. package/AccountService/services.gen.ts +1453 -0
  13. package/AccountService/types.gen.ts +3279 -0
  14. package/AdministrationService/AdministrationServiceClient.ts +74 -67
  15. package/AdministrationService/core/ApiError.ts +15 -19
  16. package/AdministrationService/core/ApiRequestOptions.ts +12 -16
  17. package/AdministrationService/core/ApiResult.ts +7 -11
  18. package/AdministrationService/core/BaseHttpRequest.ts +3 -7
  19. package/AdministrationService/core/CancelablePromise.ts +118 -123
  20. package/AdministrationService/core/FetchHttpRequest.ts +13 -17
  21. package/AdministrationService/core/OpenAPI.ts +48 -24
  22. package/AdministrationService/core/request.ts +280 -261
  23. package/AdministrationService/index.ts +9 -118
  24. package/AdministrationService/schemas.gen.ts +2307 -0
  25. package/AdministrationService/services.gen.ts +1333 -0
  26. package/AdministrationService/types.gen.ts +2868 -0
  27. package/IdentityService/IdentityServiceClient.ts +77 -70
  28. package/IdentityService/core/ApiError.ts +15 -19
  29. package/IdentityService/core/ApiRequestOptions.ts +12 -16
  30. package/IdentityService/core/ApiResult.ts +7 -11
  31. package/IdentityService/core/BaseHttpRequest.ts +3 -7
  32. package/IdentityService/core/CancelablePromise.ts +118 -123
  33. package/IdentityService/core/FetchHttpRequest.ts +13 -17
  34. package/IdentityService/core/OpenAPI.ts +48 -24
  35. package/IdentityService/core/request.ts +280 -261
  36. package/IdentityService/index.ts +9 -133
  37. package/IdentityService/schemas.gen.ts +3170 -0
  38. package/IdentityService/services.gen.ts +2864 -0
  39. package/IdentityService/types.gen.ts +5707 -0
  40. package/package.json +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ayasofyazilim/saas",
3
- "version": "0.0.9",
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
  },