increase 1.34.0 → 1.35.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: 130b76fbbec9eefd020e92b4f4c6033c758f0a32f1112c70c868860ce078b108
4
- data.tar.gz: bd42b4539ef04e00b2c5eab779fa6c935cfa3c844ebba7a45d475da98621916f
3
+ metadata.gz: cf94005239176f72c08edb64f6e6d86580b6134b815faf7f7f78f7db5c77e08d
4
+ data.tar.gz: 4fe85129785a34d2baae2a7cdfb52cf005e1959e306aa8da39a48ac9117bce22
5
5
  SHA512:
6
- metadata.gz: c4d05e54dd28c76ead352dc0b668fa4302b9fd84a3e5a533f09129ee893dcc8d776e013ae24dace894856e1cee3f53ecf578c886bc407d176e9fe6778071eb2e
7
- data.tar.gz: 7a4b460abdc14620bdfd4c1c1daac08a25451e9b2863ec8c148dac204cc7605ad2cb98c74f48ab6cebe8c166427ecb8ae2190167978be0c05b4546861efaeb47
6
+ metadata.gz: 6bbbc7c0cdba68a22beb118547e2a9b2942c8764c468a51995a3c6119c093194857e21f850c05f6321a814938a849227e81a1452c5b360c3832d65ed520e9f2a
7
+ data.tar.gz: 2dfe7a7ee8323bef0c617dca4111f0f89f9e79b29164fff0a480b9609e790c531ea23c84480c07a3f1c9180abf90217df619eca0fb553bc068e71acaf04234fe
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.35.0 (2025-08-15)
4
+
5
+ Full Changelog: [v1.34.0...v1.35.0](https://github.com/Increase/increase-ruby/compare/v1.34.0...v1.35.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([ca8b776](https://github.com/Increase/increase-ruby/commit/ca8b7769f961fc457087f239a1790390caae245a))
10
+
3
11
  ## 1.34.0 (2025-08-14)
4
12
 
5
13
  Full Changelog: [v1.33.0...v1.34.0](https://github.com/Increase/increase-ruby/compare/v1.33.0...v1.34.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.34.0"
18
+ gem "increase", "~> 1.35.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -126,6 +126,9 @@ module Increase
126
126
  # A savings account.
127
127
  SAVINGS = :savings
128
128
 
129
+ # A general ledger account.
130
+ GENERAL_LEDGER = :general_ledger
131
+
129
132
  # A different type of account.
130
133
  OTHER = :other
131
134
 
@@ -81,6 +81,9 @@ module Increase
81
81
  # A savings account.
82
82
  SAVINGS = :savings
83
83
 
84
+ # A general ledger account.
85
+ GENERAL_LEDGER = :general_ledger
86
+
84
87
  # A different type of account.
85
88
  OTHER = :other
86
89
 
@@ -66,6 +66,9 @@ module Increase
66
66
  # A savings account.
67
67
  SAVINGS = :savings
68
68
 
69
+ # A general ledger account.
70
+ GENERAL_LEDGER = :general_ledger
71
+
69
72
  # A different type of account.
70
73
  OTHER = :other
71
74
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.34.0"
4
+ VERSION = "1.35.0"
5
5
  end
@@ -172,6 +172,13 @@ module Increase
172
172
  SAVINGS =
173
173
  T.let(:savings, Increase::ExternalAccount::Funding::TaggedSymbol)
174
174
 
175
+ # A general ledger account.
176
+ GENERAL_LEDGER =
177
+ T.let(
178
+ :general_ledger,
179
+ Increase::ExternalAccount::Funding::TaggedSymbol
180
+ )
181
+
175
182
  # A different type of account.
176
183
  OTHER = T.let(:other, Increase::ExternalAccount::Funding::TaggedSymbol)
177
184
 
@@ -169,6 +169,13 @@ module Increase
169
169
  Increase::ExternalAccountCreateParams::Funding::TaggedSymbol
170
170
  )
171
171
 
172
+ # A general ledger account.
173
+ GENERAL_LEDGER =
174
+ T.let(
175
+ :general_ledger,
176
+ Increase::ExternalAccountCreateParams::Funding::TaggedSymbol
177
+ )
178
+
172
179
  # A different type of account.
173
180
  OTHER =
174
181
  T.let(
@@ -166,6 +166,13 @@ module Increase
166
166
  Increase::ExternalAccountUpdateParams::Funding::TaggedSymbol
167
167
  )
168
168
 
169
+ # A general ledger account.
170
+ GENERAL_LEDGER =
171
+ T.let(
172
+ :general_ledger,
173
+ Increase::ExternalAccountUpdateParams::Funding::TaggedSymbol
174
+ )
175
+
169
176
  # A different type of account.
170
177
  OTHER =
171
178
  T.let(
@@ -78,7 +78,7 @@ module Increase
78
78
  def self?.values: -> ::Array[Increase::Models::ExternalAccount::account_holder]
79
79
  end
80
80
 
81
- type funding = :checking | :savings | :other
81
+ type funding = :checking | :savings | :general_ledger | :other
82
82
 
83
83
  module Funding
84
84
  extend Increase::Internal::Type::Enum
@@ -89,6 +89,9 @@ module Increase
89
89
  # A savings account.
90
90
  SAVINGS: :savings
91
91
 
92
+ # A general ledger account.
93
+ GENERAL_LEDGER: :general_ledger
94
+
92
95
  # A different type of account.
93
96
  OTHER: :other
94
97
 
@@ -67,7 +67,7 @@ module Increase
67
67
  def self?.values: -> ::Array[Increase::Models::ExternalAccountCreateParams::account_holder]
68
68
  end
69
69
 
70
- type funding = :checking | :savings | :other
70
+ type funding = :checking | :savings | :general_ledger | :other
71
71
 
72
72
  module Funding
73
73
  extend Increase::Internal::Type::Enum
@@ -78,6 +78,9 @@ module Increase
78
78
  # A savings account.
79
79
  SAVINGS: :savings
80
80
 
81
+ # A general ledger account.
82
+ GENERAL_LEDGER: :general_ledger
83
+
81
84
  # A different type of account.
82
85
  OTHER: :other
83
86
 
@@ -65,7 +65,7 @@ module Increase
65
65
  def self?.values: -> ::Array[Increase::Models::ExternalAccountUpdateParams::account_holder]
66
66
  end
67
67
 
68
- type funding = :checking | :savings | :other
68
+ type funding = :checking | :savings | :general_ledger | :other
69
69
 
70
70
  module Funding
71
71
  extend Increase::Internal::Type::Enum
@@ -76,6 +76,9 @@ module Increase
76
76
  # A savings account.
77
77
  SAVINGS: :savings
78
78
 
79
+ # A general ledger account.
80
+ GENERAL_LEDGER: :general_ledger
81
+
79
82
  # A different type of account.
80
83
  OTHER: :other
81
84
 
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.34.0
4
+ version: 1.35.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-14 00:00:00.000000000 Z
11
+ date: 2025-08-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool