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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/increase/models/account.rb +3 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/account.rbi +3 -3
- data/sig/increase/models/account.rbs +4 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab5216edf32c9128da00f20a3639c50713a1d2bd91d3f616a362fb10805e2339
|
4
|
+
data.tar.gz: f417878bf19120751aa6d38cbcc6ec213e76aa1c499a9002d127ae8f07500515
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
@@ -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
|
44
|
-
required :entity_id, String
|
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
|
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
|
#
|
data/lib/increase/version.rb
CHANGED
@@ -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(
|
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:
|
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:
|
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.
|
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-
|
11
|
+
date: 2025-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|