axhub-sdk 0.9.0 → 0.11.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d9a76147ad06210fd5131d34ae3fb1cf734fac6aab7bdac72ec4afa1e25c872e
4
- data.tar.gz: 0a5a842be1799fe97709a963722b356ca29568807d9a705331574ce63cf203b4
3
+ metadata.gz: fd37ef91e2470cae879f3befc575c05691fad1e8f9e6a5f0d97c3d11474792ca
4
+ data.tar.gz: d03168424435151b5a03b9f86bb5217aaaf45cf61b2b7f57182bc9b5d0dfdd09
5
5
  SHA512:
6
- metadata.gz: e0bd45e15ee177e343224aafb282bf4b6a8729e0882799abf6a9ccb0a98bef1e37b3ae43a0d0342f666378d7ec1507ea37fe4ffc3df649df12ea57d0cee0a941
7
- data.tar.gz: 02f9d957d4616d374ae12ebd0795f3511e0b97ab17aa3ab59084a3299dddcba284e3ddfa3d75147982dbbc1a82b4bba633b3dfef5331ec3cdf8f28dd493e28ad
6
+ metadata.gz: c05eaa6f32beb81585f4993f7dafd06f18dd7d24bb555216ffeba5987bfa989093ebf0b2e750e261221fef964b0daf77b3e691fe82fa04c17a2d4780d4ccbd03
7
+ data.tar.gz: d3f605c4df1f365a9e9aea32a42de6aad1517c899a6e78a488969935d57263d71c888d5f3c94ee262834b636dca184d6588578f596dc39b0cc4e1812037c87cf
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AxHub
4
- VERSION = '0.9.0'
4
+ VERSION = '0.11.0'
5
5
  end
data/lib/axhub_sdk.rb CHANGED
@@ -95,6 +95,8 @@ module AxHub
95
95
  { 'method' => "GET", 'path' => "/api/v1/tenants/{tenantID}/me/connectors", 'tag' => "Gateway", 'operationId' => "gatewayGetApiV1TenantsByTenantIDMeConnectors" },
96
96
  { 'method' => "GET", 'path' => "/api/v1/tenants/{tenantID}/me/connectors/{connectorID}/resources", 'tag' => "Gateway", 'operationId' => "gatewayGetApiV1TenantsByTenantIDMeConnectorsByConnectorIDResources" },
97
97
  { 'method' => "GET", 'path' => "/api/v1/tenants/{tenantID}/me/grants", 'tag' => "Authorization", 'operationId' => "authorizationGetApiV1TenantsByTenantIDMeGrants" },
98
+ { 'method' => "GET", 'path' => "/api/v1/tenants/{tenantID}/members/directory", 'tag' => "Tenants", 'operationId' => "tenantsGetApiV1TenantsByTenantIDMembersDirectory" },
99
+ { 'method' => "GET", 'path' => "/api/v1/tenants/{tenantID}/org-directory", 'tag' => "Tenants", 'operationId' => "tenantsGetApiV1TenantsByTenantIDOrgDirectory" },
98
100
  { 'method' => "GET", 'path' => "/api/v1/users/me/apps", 'tag' => "Apps", 'operationId' => "appsGetApiV1UsersMeApps" },
99
101
  { 'method' => "POST", 'path' => "/auth/logout", 'tag' => "Auth", 'operationId' => "authPostAuthLogout" },
100
102
  { 'method' => "POST", 'path' => "/auth/refresh", 'tag' => "Auth", 'operationId' => "authPostAuthRefresh" },
@@ -117,6 +119,7 @@ module AxHub
117
119
  "already_settled" => ErrorInfo.new("conflict", 409, false),
118
120
  "already_suspended" => ErrorInfo.new("conflict", 409, false),
119
121
  "already_terminal" => ErrorInfo.new("conflict", 409, false),
122
+ "app_archived" => ErrorInfo.new("precondition_failed", 412, false),
120
123
  "app_unavailable" => ErrorInfo.new("conflict", 409, false),
121
124
  "auth_expired" => ErrorInfo.new("unavailable", 503, false),
122
125
  "bad_request" => ErrorInfo.new("validation", 400, false),
@@ -136,6 +139,7 @@ module AxHub
136
139
  "feature_not_in_plan" => ErrorInfo.new("permission_denied", 403, false),
137
140
  "final_visibility_too_wide" => ErrorInfo.new("validation", 400, false),
138
141
  "forbidden" => ErrorInfo.new("permission_denied", 403, false),
142
+ "git_connection_required" => ErrorInfo.new("precondition_failed", 412, false),
139
143
  "github_device_flow_disabled" => ErrorInfo.new("unavailable", 503, false),
140
144
  "grant_already_terminal" => ErrorInfo.new("conflict", 409, false),
141
145
  "grant_conflict" => ErrorInfo.new("conflict", 409, false),
@@ -147,6 +151,8 @@ module AxHub
147
151
  "invalid_expiry" => ErrorInfo.new("validation", 400, false),
148
152
  "invalid_format" => ErrorInfo.new("validation", 400, false),
149
153
  "invalid_oauth_state" => ErrorInfo.new("validation", 400, false),
154
+ "invalid_period" => ErrorInfo.new("validation", 400, false),
155
+ "invalid_seat_count" => ErrorInfo.new("validation", 400, false),
150
156
  "invalid_state_transition" => ErrorInfo.new("conflict", 409, false),
151
157
  "invalid_target" => ErrorInfo.new("conflict", 409, false),
152
158
  "invalid_value" => ErrorInfo.new("validation", 400, false),
@@ -195,6 +201,7 @@ module AxHub
195
201
  "staging_required" => ErrorInfo.new("precondition_failed", 412, false),
196
202
  "static_release_in_use" => ErrorInfo.new("conflict", 409, false),
197
203
  "static_release_not_ready" => ErrorInfo.new("precondition_failed", 412, false),
204
+ "subdomain_not_configured" => ErrorInfo.new("precondition_failed", 412, false),
198
205
  "temporarily_unavailable" => ErrorInfo.new("unavailable", 429, true),
199
206
  "token_expired" => ErrorInfo.new("unauthenticated", 401, true),
200
207
  "token_invalid" => ErrorInfo.new("unauthenticated", 401, true),
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: axhub-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jocoding AX Partners
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-07-02 00:00:00.000000000 Z
11
+ date: 2026-07-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest