infrawrench-sdk 0.11.0 → 0.12.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: fe11859490c094c06b30278366d57f5c7282a22be6db3167f216201444913950
4
- data.tar.gz: 6fa0c2445441d2ba6b71324cb0efc382512da461feea431c2f2da5bdc4ff5783
3
+ metadata.gz: 14c93bfdcc3a68b5f941a098b17b6a19857f0e8279628d1ecb805b84b3e40cd4
4
+ data.tar.gz: 824899a16f77fec6be9233a1994fec8e84a5709ef0a72d4b145f677f904d232a
5
5
  SHA512:
6
- metadata.gz: 54dd7688e443c77746af619a08ddda21a0e3e90194f76172978fb9d4485c7820da65b72769d758b28e628fa40265dc603d5143acf921000079ba98b4a06a8388
7
- data.tar.gz: 87261a64b55c2a1c09214422d4d217990586bd91dc6afbc2f24fc6cb304586d2835d659dd91c2ed05f608c9bd94ad2a68b71438ad42044934b9a3d88e50c3f5c
6
+ metadata.gz: d6b20fe647cb3962a3454dca0e660c68c0061d2b895774e167661bbd155906212eb092175d173d786100dba6ac24afd9fb4917ae484c4e4b1dd1e285afd36706
7
+ data.tar.gz: 4ed2b4dc41a1bc68506e72c76a178b5e417ed5f2c7524feca4f851cf82cb585adb685b86fff75f2618710a9f9679a3e36196d3a0542ab5abc86922c1746923da
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # infrawrench-sdk
2
2
 
3
- Generated Ruby client for the Infrawrench API (API version `0.11.0`).
3
+ Generated Ruby client for the Infrawrench API (API version `0.12.0`).
4
4
 
5
5
  **Do not edit this gem by hand** — it is regenerated from `openapi.json` and is
6
6
  not checked into the repository. Run
@@ -41,7 +41,7 @@ Every method takes an optional trailing `request_options:` hash (`:headers`,
41
41
  Responses are the plain `Hash`/`Array` that `JSON.parse` returns, with String
42
42
  keys spelled exactly as the wire spells them. There are no model classes — see
43
43
  [`sig/infrawrench/sdk.rbs`](./sig/infrawrench/sdk.rbs) for the shape of every one of the
44
- 211 schemas, as RBS type aliases that steep and TypeProf can read.
44
+ 212 schemas, as RBS type aliases that steep and TypeProf can read.
45
45
 
46
46
  Non-2xx responses raise `Infrawrench::ApiError`, which carries `#status`,
47
47
  the parsed `#body`, and the machine-readable `#code` when the API sends one —
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # infrawrench-sdk v0.11.0 | MIT | Copyright (c) 2026 Infrawrench LLC
3
+ # infrawrench-sdk v0.12.0 | MIT | Copyright (c) 2026 Infrawrench LLC
4
4
  # https://github.com/Infrawrench/Infrawrench
5
5
  #
6
- # Generated from the Infrawrench API OpenAPI 3.1 spec (API version 0.11.0).
6
+ # Generated from the Infrawrench API OpenAPI 3.1 spec (API version 0.12.0).
7
7
  #
8
8
  # DO NOT EDIT. Regenerate with:
9
9
  # pnpm --filter @infrawrench/web generate:sdk
@@ -17,8 +17,8 @@ require_relative "lib/infrawrench/version"
17
17
  Gem::Specification.new do |spec|
18
18
  spec.name = "infrawrench-sdk"
19
19
  spec.version = Infrawrench::VERSION
20
- spec.summary = "Generated Ruby client for the Infrawrench API (v0.11.0)."
21
- spec.description = "Generated Ruby client for the Infrawrench API (v0.11.0). Covers the published API surface only — operations marked x-internal in the spec are not generated. No runtime dependencies."
20
+ spec.summary = "Generated Ruby client for the Infrawrench API (v0.12.0)."
21
+ spec.description = "Generated Ruby client for the Infrawrench API (v0.12.0). Covers the published API surface only — operations marked x-internal in the spec are not generated. No runtime dependencies."
22
22
  spec.authors = ["Infrawrench LLC", "Astrid Gealer"]
23
23
  spec.email = ["astrid@infrawrench.com"]
24
24
  spec.homepage = "https://infrawrench.com/docs/team-and-billing/client-sdks"
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # infrawrench-sdk v0.11.0 | MIT | Copyright (c) 2026 Infrawrench LLC
3
+ # infrawrench-sdk v0.12.0 | MIT | Copyright (c) 2026 Infrawrench LLC
4
4
  # https://github.com/Infrawrench/Infrawrench
5
5
  #
6
- # Generated from the Infrawrench API OpenAPI 3.1 spec (API version 0.11.0).
6
+ # Generated from the Infrawrench API OpenAPI 3.1 spec (API version 0.12.0).
7
7
  #
8
8
  # DO NOT EDIT. Regenerate with:
9
9
  # pnpm --filter @infrawrench/web generate:sdk
@@ -4620,6 +4620,10 @@ module Infrawrench
4620
4620
  #
4621
4621
  # POST /api/org/{orgId}/team/invitations
4622
4622
  #
4623
+ # Raises on 409: All seats are in use; retry with addSeat to buy one more
4624
+ #
4625
+ # Raises on 502: Buying the extra seat failed; the invitation was not sent
4626
+ #
4623
4627
  # @param org_id [String, nil] Organization id. Defaults to the `org_id` the client was
4624
4628
  # constructed with.
4625
4629
  # @param body [Hash] Request body, shaped as `InviteRequest`.
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # infrawrench-sdk v0.11.0 | MIT | Copyright (c) 2026 Infrawrench LLC
3
+ # infrawrench-sdk v0.12.0 | MIT | Copyright (c) 2026 Infrawrench LLC
4
4
  # https://github.com/Infrawrench/Infrawrench
5
5
  #
6
- # Generated from the Infrawrench API OpenAPI 3.1 spec (API version 0.11.0).
6
+ # Generated from the Infrawrench API OpenAPI 3.1 spec (API version 0.12.0).
7
7
  #
8
8
  # DO NOT EDIT. Regenerate with:
9
9
  # pnpm --filter @infrawrench/web generate:sdk
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # infrawrench-sdk v0.11.0 | MIT | Copyright (c) 2026 Infrawrench LLC
3
+ # infrawrench-sdk v0.12.0 | MIT | Copyright (c) 2026 Infrawrench LLC
4
4
  # https://github.com/Infrawrench/Infrawrench
5
5
  #
6
- # Generated from the Infrawrench API OpenAPI 3.1 spec (API version 0.11.0).
6
+ # Generated from the Infrawrench API OpenAPI 3.1 spec (API version 0.12.0).
7
7
  #
8
8
  # DO NOT EDIT. Regenerate with:
9
9
  # pnpm --filter @infrawrench/web generate:sdk
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # infrawrench-sdk v0.11.0 | MIT | Copyright (c) 2026 Infrawrench LLC
3
+ # infrawrench-sdk v0.12.0 | MIT | Copyright (c) 2026 Infrawrench LLC
4
4
  # https://github.com/Infrawrench/Infrawrench
5
5
  #
6
- # Generated from the Infrawrench API OpenAPI 3.1 spec (API version 0.11.0).
6
+ # Generated from the Infrawrench API OpenAPI 3.1 spec (API version 0.12.0).
7
7
  #
8
8
  # DO NOT EDIT. Regenerate with:
9
9
  # pnpm --filter @infrawrench/web generate:sdk
@@ -15,5 +15,5 @@
15
15
  # Kept in its own file so the gemspec can read the version without loading the
16
16
  # client — a gemspec that pulls in net/http is a gemspec that can fail to parse.
17
17
  module Infrawrench
18
- VERSION = "0.11.0"
18
+ VERSION = "0.12.0"
19
19
  end
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # infrawrench-sdk v0.11.0 | MIT | Copyright (c) 2026 Infrawrench LLC
3
+ # infrawrench-sdk v0.12.0 | MIT | Copyright (c) 2026 Infrawrench LLC
4
4
  # https://github.com/Infrawrench/Infrawrench
5
5
  #
6
- # Generated from the Infrawrench API OpenAPI 3.1 spec (API version 0.11.0).
6
+ # Generated from the Infrawrench API OpenAPI 3.1 spec (API version 0.12.0).
7
7
  #
8
8
  # DO NOT EDIT. Regenerate with:
9
9
  # pnpm --filter @infrawrench/web generate:sdk
@@ -1,7 +1,7 @@
1
- # infrawrench-sdk v0.11.0 | MIT | Copyright (c) 2026 Infrawrench LLC
1
+ # infrawrench-sdk v0.12.0 | MIT | Copyright (c) 2026 Infrawrench LLC
2
2
  # https://github.com/Infrawrench/Infrawrench
3
3
  #
4
- # Generated from the Infrawrench API OpenAPI 3.1 spec (API version 0.11.0).
4
+ # Generated from the Infrawrench API OpenAPI 3.1 spec (API version 0.12.0).
5
5
  #
6
6
  # DO NOT EDIT. Regenerate with:
7
7
  # pnpm --filter @infrawrench/web generate:sdk
@@ -851,7 +851,7 @@ module Infrawrench
851
851
  }
852
852
 
853
853
  # Spec schema: `InviteRequest`.
854
- type invite_request = { "email" => String, ?"role" => organization_role, ?"roleId" => String }
854
+ type invite_request = { "email" => String, ?"role" => organization_role, ?"roleId" => String, ?"addSeat" => bool }
855
855
 
856
856
  # Spec schema: `InviteResponse`.
857
857
  type invite_response = { "id" => String, "token" => String }
@@ -1672,6 +1672,14 @@ module Infrawrench
1672
1672
  ?"subtitle" => String
1673
1673
  }
1674
1674
 
1675
+ # Spec schema: `SeatLimitResponse`.
1676
+ type seat_limit_response = {
1677
+ "error" => String,
1678
+ "code" => "seat_limit_reached",
1679
+ "seatCount" => Integer,
1680
+ "seatsUsed" => Integer
1681
+ }
1682
+
1675
1683
  # Spec schema: `SecretAccessRequest`.
1676
1684
  type secret_access_request = {
1677
1685
  "accountId" => String,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: infrawrench-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Infrawrench LLC
@@ -11,7 +11,7 @@ bindir: bin
11
11
  cert_chain: []
12
12
  date: 2026-07-28 00:00:00.000000000 Z
13
13
  dependencies: []
14
- description: Generated Ruby client for the Infrawrench API (v0.11.0). Covers the published
14
+ description: Generated Ruby client for the Infrawrench API (v0.12.0). Covers the published
15
15
  API surface only — operations marked x-internal in the spec are not generated. No
16
16
  runtime dependencies.
17
17
  email:
@@ -58,5 +58,5 @@ requirements: []
58
58
  rubygems_version: 3.5.22
59
59
  signing_key:
60
60
  specification_version: 4
61
- summary: Generated Ruby client for the Infrawrench API (v0.11.0).
61
+ summary: Generated Ruby client for the Infrawrench API (v0.12.0).
62
62
  test_files: []