increase 1.201.0 → 1.202.1
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 +16 -0
- data/README.md +1 -1
- data/lib/increase/internal/util.rb +1 -1
- data/lib/increase/models/simulations/program_create_params.rb +0 -6
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/internal/util.rbi +1 -1
- data/rbi/increase/models/simulations/program_create_params.rbi +0 -14
- data/sig/increase/models/simulations/program_create_params.rbs +1 -9
- 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: cc249df2bf972d173fc0730f958105047b5cda637e8bf553c2b151dfd3ae64f8
|
|
4
|
+
data.tar.gz: 0c10d16931ed9003a3dfec282d6e8ea115a7cf3b0500b62b435c1554426b0d21
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a307f02671907bd41804749d2a11e58a37492b6be94ee2f7a84d21b4d8b27a5b3bba9f4eab852823471b7874db5ccade89d721a7c83eed13012a5c43266ab739
|
|
7
|
+
data.tar.gz: 58494a0635cd211dae68e4519867bff102088364c931ecd1d78cabc07246206e337a8bd052a1fcf55aae267c555accba2a68c73a7e9bd87fc5eea4faebb0d369
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.202.1 (2026-02-06)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.202.0...v1.202.1](https://github.com/Increase/increase-ruby/compare/v1.202.0...v1.202.1)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* **client:** loosen json header parsing ([3e86c14](https://github.com/Increase/increase-ruby/commit/3e86c148869c291677ffd1169c01629efcbd017c))
|
|
10
|
+
|
|
11
|
+
## 1.202.0 (2026-02-06)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.201.0...v1.202.0](https://github.com/Increase/increase-ruby/compare/v1.201.0...v1.202.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([058e184](https://github.com/Increase/increase-ruby/commit/058e184f8c2c5e21021e17bca856ac9731c5fc52))
|
|
18
|
+
|
|
3
19
|
## 1.201.0 (2026-02-05)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.200.0...v1.201.0](https://github.com/Increase/increase-ruby/compare/v1.200.0...v1.201.0)
|
data/README.md
CHANGED
|
@@ -485,7 +485,7 @@ module Increase
|
|
|
485
485
|
end
|
|
486
486
|
|
|
487
487
|
# @type [Regexp]
|
|
488
|
-
JSON_CONTENT = %r{^application/(?:
|
|
488
|
+
JSON_CONTENT = %r{^application/(?:[a-zA-Z0-9.-]+\+)?json(?!l)}
|
|
489
489
|
# @type [Regexp]
|
|
490
490
|
JSONL_CONTENT = %r{^application/(:?x-(?:n|l)djson)|(:?(?:x-)?jsonl)}
|
|
491
491
|
|
|
@@ -47,18 +47,12 @@ module Increase
|
|
|
47
47
|
module Bank
|
|
48
48
|
extend Increase::Internal::Type::Enum
|
|
49
49
|
|
|
50
|
-
# Blue Ridge Bank, N.A.
|
|
51
|
-
BLUE_RIDGE_BANK = :blue_ridge_bank
|
|
52
|
-
|
|
53
50
|
# Core Bank
|
|
54
51
|
CORE_BANK = :core_bank
|
|
55
52
|
|
|
56
53
|
# First Internet Bank of Indiana
|
|
57
54
|
FIRST_INTERNET_BANK = :first_internet_bank
|
|
58
55
|
|
|
59
|
-
# Global Innovations Bank
|
|
60
|
-
GLOBAL_INNOVATIONS_BANK = :global_innovations_bank
|
|
61
|
-
|
|
62
56
|
# Grasshopper Bank
|
|
63
57
|
GRASSHOPPER_BANK = :grasshopper_bank
|
|
64
58
|
|
data/lib/increase/version.rb
CHANGED
|
@@ -296,7 +296,7 @@ module Increase
|
|
|
296
296
|
end
|
|
297
297
|
|
|
298
298
|
JSON_CONTENT =
|
|
299
|
-
T.let(%r{^application/(?:
|
|
299
|
+
T.let(%r{^application/(?:[a-zA-Z0-9.-]+\+)?json(?!l)}, Regexp)
|
|
300
300
|
JSONL_CONTENT =
|
|
301
301
|
T.let(%r{^application/(:?x-(?:n|l)djson)|(:?(?:x-)?jsonl)}, Regexp)
|
|
302
302
|
|
|
@@ -96,13 +96,6 @@ module Increase
|
|
|
96
96
|
end
|
|
97
97
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
98
98
|
|
|
99
|
-
# Blue Ridge Bank, N.A.
|
|
100
|
-
BLUE_RIDGE_BANK =
|
|
101
|
-
T.let(
|
|
102
|
-
:blue_ridge_bank,
|
|
103
|
-
Increase::Simulations::ProgramCreateParams::Bank::TaggedSymbol
|
|
104
|
-
)
|
|
105
|
-
|
|
106
99
|
# Core Bank
|
|
107
100
|
CORE_BANK =
|
|
108
101
|
T.let(
|
|
@@ -117,13 +110,6 @@ module Increase
|
|
|
117
110
|
Increase::Simulations::ProgramCreateParams::Bank::TaggedSymbol
|
|
118
111
|
)
|
|
119
112
|
|
|
120
|
-
# Global Innovations Bank
|
|
121
|
-
GLOBAL_INNOVATIONS_BANK =
|
|
122
|
-
T.let(
|
|
123
|
-
:global_innovations_bank,
|
|
124
|
-
Increase::Simulations::ProgramCreateParams::Bank::TaggedSymbol
|
|
125
|
-
)
|
|
126
|
-
|
|
127
113
|
# Grasshopper Bank
|
|
128
114
|
GRASSHOPPER_BANK =
|
|
129
115
|
T.let(
|
|
@@ -47,28 +47,20 @@ module Increase
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
type bank =
|
|
50
|
-
:
|
|
51
|
-
| :core_bank
|
|
50
|
+
:core_bank
|
|
52
51
|
| :first_internet_bank
|
|
53
|
-
| :global_innovations_bank
|
|
54
52
|
| :grasshopper_bank
|
|
55
53
|
| :twin_city_bank
|
|
56
54
|
|
|
57
55
|
module Bank
|
|
58
56
|
extend Increase::Internal::Type::Enum
|
|
59
57
|
|
|
60
|
-
# Blue Ridge Bank, N.A.
|
|
61
|
-
BLUE_RIDGE_BANK: :blue_ridge_bank
|
|
62
|
-
|
|
63
58
|
# Core Bank
|
|
64
59
|
CORE_BANK: :core_bank
|
|
65
60
|
|
|
66
61
|
# First Internet Bank of Indiana
|
|
67
62
|
FIRST_INTERNET_BANK: :first_internet_bank
|
|
68
63
|
|
|
69
|
-
# Global Innovations Bank
|
|
70
|
-
GLOBAL_INNOVATIONS_BANK: :global_innovations_bank
|
|
71
|
-
|
|
72
64
|
# Grasshopper Bank
|
|
73
65
|
GRASSHOPPER_BANK: :grasshopper_bank
|
|
74
66
|
|
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.202.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Increase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-02-
|
|
11
|
+
date: 2026-02-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|