increase 1.342.0 → 1.344.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/README.md +1 -1
- data/lib/increase/internal/transport/base_client.rb +5 -36
- data/lib/increase/models/beneficial_owner_create_params.rb +9 -12
- data/lib/increase/models/beneficial_owner_update_params.rb +9 -12
- data/lib/increase/models/entity_create_params.rb +54 -72
- data/lib/increase/models/entity_update_params.rb +18 -24
- data/lib/increase/models/event.rb +6 -0
- data/lib/increase/models/event_list_params.rb +6 -0
- data/lib/increase/models/event_subscription.rb +6 -0
- data/lib/increase/models/event_subscription_create_params.rb +6 -0
- data/lib/increase/models/file.rb +3 -1
- data/lib/increase/models/file_contents_params.rb +22 -0
- data/lib/increase/models/unwrap_webhook_event.rb +6 -0
- data/lib/increase/models.rb +2 -0
- data/lib/increase/resources/files.rb +28 -0
- data/lib/increase/version.rb +1 -1
- data/lib/increase.rb +1 -0
- data/rbi/increase/internal/transport/base_client.rbi +2 -10
- data/rbi/increase/models/beneficial_owner_create_params.rbi +8 -13
- data/rbi/increase/models/beneficial_owner_update_params.rbi +8 -13
- data/rbi/increase/models/entity_create_params.rbi +48 -78
- data/rbi/increase/models/entity_update_params.rbi +16 -26
- data/rbi/increase/models/event.rbi +14 -0
- data/rbi/increase/models/event_list_params.rbi +14 -0
- data/rbi/increase/models/event_subscription.rbi +14 -0
- data/rbi/increase/models/event_subscription_create_params.rbi +14 -0
- data/rbi/increase/models/file.rbi +3 -1
- data/rbi/increase/models/file_contents_params.rbi +40 -0
- data/rbi/increase/models/unwrap_webhook_event.rbi +14 -0
- data/rbi/increase/models.rbi +2 -0
- data/rbi/increase/resources/files.rbi +21 -0
- data/sig/increase/internal/transport/base_client.rbs +1 -4
- data/sig/increase/models/beneficial_owner_create_params.rbs +5 -7
- data/sig/increase/models/beneficial_owner_update_params.rbs +5 -7
- data/sig/increase/models/entity_create_params.rbs +30 -42
- data/sig/increase/models/entity_update_params.rbs +10 -14
- data/sig/increase/models/event.rbs +8 -0
- data/sig/increase/models/event_list_params.rbs +8 -0
- data/sig/increase/models/event_subscription.rbs +8 -0
- data/sig/increase/models/event_subscription_create_params.rbs +8 -0
- data/sig/increase/models/file_contents_params.rbs +23 -0
- data/sig/increase/models/unwrap_webhook_event.rbs +8 -0
- data/sig/increase/models.rbs +2 -0
- data/sig/increase/resources/files.rbs +5 -0
- metadata +5 -2
|
@@ -162,6 +162,8 @@ module Increase
|
|
|
162
162
|
| :"physical_card_profile.updated"
|
|
163
163
|
| :"physical_check.created"
|
|
164
164
|
| :"physical_check.updated"
|
|
165
|
+
| :"physical_check_book.created"
|
|
166
|
+
| :"physical_check_book.updated"
|
|
165
167
|
| :"program.created"
|
|
166
168
|
| :"program.updated"
|
|
167
169
|
| :"proof_of_authorization_request.created"
|
|
@@ -469,6 +471,12 @@ module Increase
|
|
|
469
471
|
# Occurs whenever a Physical Check is updated.
|
|
470
472
|
PHYSICAL_CHECK_UPDATED: :"physical_check.updated"
|
|
471
473
|
|
|
474
|
+
# Occurs whenever a Physical Check Book is created.
|
|
475
|
+
PHYSICAL_CHECK_BOOK_CREATED: :"physical_check_book.created"
|
|
476
|
+
|
|
477
|
+
# Occurs whenever a Physical Check Book is updated.
|
|
478
|
+
PHYSICAL_CHECK_BOOK_UPDATED: :"physical_check_book.updated"
|
|
479
|
+
|
|
472
480
|
# Occurs whenever a Program is created.
|
|
473
481
|
PROGRAM_CREATED: :"program.created"
|
|
474
482
|
|
|
@@ -165,6 +165,8 @@ module Increase
|
|
|
165
165
|
| :"physical_card_profile.updated"
|
|
166
166
|
| :"physical_check.created"
|
|
167
167
|
| :"physical_check.updated"
|
|
168
|
+
| :"physical_check_book.created"
|
|
169
|
+
| :"physical_check_book.updated"
|
|
168
170
|
| :"program.created"
|
|
169
171
|
| :"program.updated"
|
|
170
172
|
| :"proof_of_authorization_request.created"
|
|
@@ -472,6 +474,12 @@ module Increase
|
|
|
472
474
|
# Occurs whenever a Physical Check is updated.
|
|
473
475
|
PHYSICAL_CHECK_UPDATED: :"physical_check.updated"
|
|
474
476
|
|
|
477
|
+
# Occurs whenever a Physical Check Book is created.
|
|
478
|
+
PHYSICAL_CHECK_BOOK_CREATED: :"physical_check_book.created"
|
|
479
|
+
|
|
480
|
+
# Occurs whenever a Physical Check Book is updated.
|
|
481
|
+
PHYSICAL_CHECK_BOOK_UPDATED: :"physical_check_book.updated"
|
|
482
|
+
|
|
475
483
|
# Occurs whenever a Program is created.
|
|
476
484
|
PROGRAM_CREATED: :"program.created"
|
|
477
485
|
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
module Increase
|
|
2
|
+
module Models
|
|
3
|
+
type file_contents_params =
|
|
4
|
+
{ file_id: String } & Increase::Internal::Type::request_parameters
|
|
5
|
+
|
|
6
|
+
class FileContentsParams < Increase::Internal::Type::BaseModel
|
|
7
|
+
extend Increase::Internal::Type::RequestParameters::Converter
|
|
8
|
+
include Increase::Internal::Type::RequestParameters
|
|
9
|
+
|
|
10
|
+
attr_accessor file_id: String
|
|
11
|
+
|
|
12
|
+
def initialize: (
|
|
13
|
+
file_id: String,
|
|
14
|
+
?request_options: Increase::request_opts
|
|
15
|
+
) -> void
|
|
16
|
+
|
|
17
|
+
def to_hash: -> {
|
|
18
|
+
file_id: String,
|
|
19
|
+
request_options: Increase::RequestOptions
|
|
20
|
+
}
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
@@ -136,6 +136,8 @@ module Increase
|
|
|
136
136
|
| :"physical_card_profile.updated"
|
|
137
137
|
| :"physical_check.created"
|
|
138
138
|
| :"physical_check.updated"
|
|
139
|
+
| :"physical_check_book.created"
|
|
140
|
+
| :"physical_check_book.updated"
|
|
139
141
|
| :"program.created"
|
|
140
142
|
| :"program.updated"
|
|
141
143
|
| :"proof_of_authorization_request.created"
|
|
@@ -443,6 +445,12 @@ module Increase
|
|
|
443
445
|
# Occurs whenever a Physical Check is updated.
|
|
444
446
|
PHYSICAL_CHECK_UPDATED: :"physical_check.updated"
|
|
445
447
|
|
|
448
|
+
# Occurs whenever a Physical Check Book is created.
|
|
449
|
+
PHYSICAL_CHECK_BOOK_CREATED: :"physical_check_book.created"
|
|
450
|
+
|
|
451
|
+
# Occurs whenever a Physical Check Book is updated.
|
|
452
|
+
PHYSICAL_CHECK_BOOK_UPDATED: :"physical_check_book.updated"
|
|
453
|
+
|
|
446
454
|
# Occurs whenever a Program is created.
|
|
447
455
|
PROGRAM_CREATED: :"program.created"
|
|
448
456
|
|
data/sig/increase/models.rbs
CHANGED
|
@@ -22,6 +22,11 @@ module Increase
|
|
|
22
22
|
?request_options: Increase::request_opts
|
|
23
23
|
) -> Increase::Internal::Page[Increase::File]
|
|
24
24
|
|
|
25
|
+
def contents: (
|
|
26
|
+
String file_id,
|
|
27
|
+
?request_options: Increase::request_opts
|
|
28
|
+
) -> StringIO
|
|
29
|
+
|
|
25
30
|
def initialize: (client: Increase::Client) -> void
|
|
26
31
|
end
|
|
27
32
|
end
|
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.344.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Increase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|
|
@@ -218,6 +218,7 @@ files:
|
|
|
218
218
|
- lib/increase/models/fednow_transfer_list_params.rb
|
|
219
219
|
- lib/increase/models/fednow_transfer_retrieve_params.rb
|
|
220
220
|
- lib/increase/models/file.rb
|
|
221
|
+
- lib/increase/models/file_contents_params.rb
|
|
221
222
|
- lib/increase/models/file_create_params.rb
|
|
222
223
|
- lib/increase/models/file_link.rb
|
|
223
224
|
- lib/increase/models/file_link_create_params.rb
|
|
@@ -635,6 +636,7 @@ files:
|
|
|
635
636
|
- rbi/increase/models/fednow_transfer_list_params.rbi
|
|
636
637
|
- rbi/increase/models/fednow_transfer_retrieve_params.rbi
|
|
637
638
|
- rbi/increase/models/file.rbi
|
|
639
|
+
- rbi/increase/models/file_contents_params.rbi
|
|
638
640
|
- rbi/increase/models/file_create_params.rbi
|
|
639
641
|
- rbi/increase/models/file_link.rbi
|
|
640
642
|
- rbi/increase/models/file_link_create_params.rbi
|
|
@@ -1051,6 +1053,7 @@ files:
|
|
|
1051
1053
|
- sig/increase/models/fednow_transfer_list_params.rbs
|
|
1052
1054
|
- sig/increase/models/fednow_transfer_retrieve_params.rbs
|
|
1053
1055
|
- sig/increase/models/file.rbs
|
|
1056
|
+
- sig/increase/models/file_contents_params.rbs
|
|
1054
1057
|
- sig/increase/models/file_create_params.rbs
|
|
1055
1058
|
- sig/increase/models/file_link.rbs
|
|
1056
1059
|
- sig/increase/models/file_link_create_params.rbs
|