increase 1.31.0 → 1.32.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: 73c7c3a3af1eaad7995697e81f4e322df18a087bf4320ba7354af1bc26929d96
4
- data.tar.gz: fc08064e74dcecdb9feb4ae828c11ee451eb91158c20adb7c43fa3366ac4a7a8
3
+ metadata.gz: ab5216edf32c9128da00f20a3639c50713a1d2bd91d3f616a362fb10805e2339
4
+ data.tar.gz: f417878bf19120751aa6d38cbcc6ec213e76aa1c499a9002d127ae8f07500515
5
5
  SHA512:
6
- metadata.gz: 4b6c09aeb8e5a0370b6fcd14a0b4cca6fd1b96fddc55a5d430a2c9dd7fab7b7cec7af596f11b063e555ad0f160b1acbe1fbe7eafcce32cde6e7bf37f7fe42f3f
7
- data.tar.gz: deed8ba6bf5b44b299f85513fc8863d928912c1641b1e3ca6612870193c640fc97824c9bffc4ef6d007ea98b26d0a5c938a690a16a6ea4056d37c7856c0c37fb
6
+ metadata.gz: 8ba6d50cb9392eb97e7e6ec1878c637d9550a5fab4ba33ad210f03146d4b347de5f0a10275e53d431c00e8d9c646dab44710c5c7bd251eb2e6aaf97b672cfa2e
7
+ data.tar.gz: 289d3f025847f3d2bd8084aeadbc13a6568828c476e66aed6edd5783fe7f103808ec82be813043f86466fdebba90bbb4a6285218a8fa909dcaccc43f264a82e8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.32.0 (2025-08-13)
4
+
5
+ Full Changelog: [v1.31.0...v1.32.0](https://github.com/Increase/increase-ruby/compare/v1.31.0...v1.32.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([638ef4f](https://github.com/Increase/increase-ruby/commit/638ef4ffd5129aa4ddb501e6ca399143e03365b6))
10
+
3
11
  ## 1.31.0 (2025-08-12)
4
12
 
5
13
  Full Changelog: [v1.30.0...v1.31.0](https://github.com/Increase/increase-ruby/compare/v1.30.0...v1.31.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.31.0"
18
+ gem "increase", "~> 1.32.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -40,8 +40,8 @@ module Increase
40
40
  # @!attribute entity_id
41
41
  # The identifier for the Entity the Account belongs to.
42
42
  #
43
- # @return [String, nil]
44
- required :entity_id, String, nil?: true
43
+ # @return [String]
44
+ required :entity_id, String
45
45
 
46
46
  # @!attribute idempotency_key
47
47
  # The idempotency key you chose for this object. This value is unique across
@@ -123,7 +123,7 @@ module Increase
123
123
  #
124
124
  # @param currency [Symbol, Increase::Models::Account::Currency] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the Account curr
125
125
  #
126
- # @param entity_id [String, nil] The identifier for the Entity the Account belongs to.
126
+ # @param entity_id [String] The identifier for the Entity the Account belongs to.
127
127
  #
128
128
  # @param idempotency_key [String, nil] The idempotency key you chose for this object. This value is unique across Incre
129
129
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.31.0"
4
+ VERSION = "1.32.0"
5
5
  end
@@ -30,7 +30,7 @@ module Increase
30
30
  attr_accessor :currency
31
31
 
32
32
  # The identifier for the Entity the Account belongs to.
33
- sig { returns(T.nilable(String)) }
33
+ sig { returns(String) }
34
34
  attr_accessor :entity_id
35
35
 
36
36
  # The idempotency key you chose for this object. This value is unique across
@@ -87,7 +87,7 @@ module Increase
87
87
  closed_at: T.nilable(Time),
88
88
  created_at: Time,
89
89
  currency: Increase::Account::Currency::OrSymbol,
90
- entity_id: T.nilable(String),
90
+ entity_id: String,
91
91
  idempotency_key: T.nilable(String),
92
92
  informational_entity_id: T.nilable(String),
93
93
  interest_accrued: String,
@@ -153,7 +153,7 @@ module Increase
153
153
  closed_at: T.nilable(Time),
154
154
  created_at: Time,
155
155
  currency: Increase::Account::Currency::TaggedSymbol,
156
- entity_id: T.nilable(String),
156
+ entity_id: String,
157
157
  idempotency_key: T.nilable(String),
158
158
  informational_entity_id: T.nilable(String),
159
159
  interest_accrued: String,
@@ -7,7 +7,7 @@ module Increase
7
7
  closed_at: Time?,
8
8
  created_at: Time,
9
9
  currency: Increase::Models::Account::currency,
10
- entity_id: String?,
10
+ entity_id: String,
11
11
  idempotency_key: String?,
12
12
  informational_entity_id: String?,
13
13
  interest_accrued: String,
@@ -30,7 +30,7 @@ module Increase
30
30
 
31
31
  attr_accessor currency: Increase::Models::Account::currency
32
32
 
33
- attr_accessor entity_id: String?
33
+ attr_accessor entity_id: String
34
34
 
35
35
  attr_accessor idempotency_key: String?
36
36
 
@@ -56,7 +56,7 @@ module Increase
56
56
  closed_at: Time?,
57
57
  created_at: Time,
58
58
  currency: Increase::Models::Account::currency,
59
- entity_id: String?,
59
+ entity_id: String,
60
60
  idempotency_key: String?,
61
61
  informational_entity_id: String?,
62
62
  interest_accrued: String,
@@ -74,7 +74,7 @@ module Increase
74
74
  closed_at: Time?,
75
75
  created_at: Time,
76
76
  currency: Increase::Models::Account::currency,
77
- entity_id: String?,
77
+ entity_id: String,
78
78
  idempotency_key: String?,
79
79
  informational_entity_id: String?,
80
80
  interest_accrued: String,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.31.0
4
+ version: 1.32.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-08-12 00:00:00.000000000 Z
11
+ date: 2025-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool