knockapi 1.24.0 → 1.25.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: 84774d9cd9e713ea07cb13d8e2b05f2b73f19d41f3c245ebcd64cb26b5f18bd0
4
- data.tar.gz: aa21741e6901b118f3a417844b9f605d1014fdb051e7f528f74e3b5f52056021
3
+ metadata.gz: 0c14af793c822acf884872c3b7d6eeea005916e1ef228033a33657da84b56138
4
+ data.tar.gz: 1ba09fb55543345506da3942d9f2e3f7f5f3c2e2d57fc6155e47adedb6c41c00
5
5
  SHA512:
6
- metadata.gz: a1385f420f24a2a4f22dfca3f5ef67006eae61ffbaff5a32d502eb7b563ac575547256b01645ae4409117186aa8e0f1bba5047f2889e49be161c113bb2b85f93
7
- data.tar.gz: d58277c1059aed231030d359939a6c18eae1b28bae140090f304aaf251cc2a25efd96b8f73de316216e7934078122a4ddea232bf68a2f842a5f16ec3eefadf36
6
+ metadata.gz: 367c7e9d6f46fa11a00a1b31459ab4eafbb878cddfc20396fa9fd0c27467ed1e9c5078d959f03c1b14eb680a4811d978c003a6935cd0ebf0972fbcccd3d12d60
7
+ data.tar.gz: e6c1d7b3e890f6a893230ee9b0f333a0b809a5c29ee65067e7db9dea838c77c5487a71f7f905347036d3fa3aeab4d8be47856aa04db7b8a8ed392ef601acee57
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.25.0 (2025-12-09)
4
+
5
+ Full Changelog: [v1.24.0...v1.25.0](https://github.com/knocklabs/knock-ruby/compare/v1.24.0...v1.25.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([7dc711f](https://github.com/knocklabs/knock-ruby/commit/7dc711fc2bbbb9152dbe750b8ed2666cc66aa37e))
10
+
3
11
  ## 1.24.0 (2025-12-09)
4
12
 
5
13
  Full Changelog: [v1.23.0...v1.24.0](https://github.com/knocklabs/knock-ruby/compare/v1.23.0...v1.24.0)
data/README.md CHANGED
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
17
17
  <!-- x-release-please-start-version -->
18
18
 
19
19
  ```ruby
20
- gem "knockapi", "~> 1.24.0"
20
+ gem "knockapi", "~> 1.25.0"
21
21
  ```
22
22
 
23
23
  <!-- x-release-please-end -->
@@ -4,8 +4,8 @@ module Knockapi
4
4
  module Resources
5
5
  class Tenants
6
6
  class Bulk
7
- # Delete up to 100 tenants at a time in a single operation. This operation cannot
8
- # be undone.
7
+ # Delete up to 1,000 tenants at a time in a single operation. This operation
8
+ # cannot be undone.
9
9
  #
10
10
  # @overload delete(tenant_ids:, request_options: {})
11
11
  #
@@ -27,7 +27,7 @@ module Knockapi
27
27
  )
28
28
  end
29
29
 
30
- # Set or update up to 100 tenants in a single operation.
30
+ # Set or update up to 1,000 tenants in a single operation.
31
31
  #
32
32
  # @overload set(tenants:, request_options: {})
33
33
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Knockapi
4
- VERSION = "1.24.0"
4
+ VERSION = "1.25.0"
5
5
  end
@@ -4,8 +4,8 @@ module Knockapi
4
4
  module Resources
5
5
  class Tenants
6
6
  class Bulk
7
- # Delete up to 100 tenants at a time in a single operation. This operation cannot
8
- # be undone.
7
+ # Delete up to 1,000 tenants at a time in a single operation. This operation
8
+ # cannot be undone.
9
9
  sig do
10
10
  params(
11
11
  tenant_ids: T::Array[String],
@@ -19,7 +19,7 @@ module Knockapi
19
19
  )
20
20
  end
21
21
 
22
- # Set or update up to 100 tenants in a single operation.
22
+ # Set or update up to 1,000 tenants in a single operation.
23
23
  sig do
24
24
  params(
25
25
  tenants: T::Array[T.any(String, Knockapi::TenantRequest::OrHash)],
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knockapi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.24.0
4
+ version: 1.25.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Knock
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-12-09 00:00:00.000000000 Z
11
+ date: 2025-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool