increase 1.167.0 → 1.169.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 +16 -0
- data/README.md +1 -1
- data/lib/increase/client.rb +0 -4
- data/lib/increase/models/simulations/export_create_params.rb +43 -6
- data/lib/increase/models.rb +0 -8
- data/lib/increase/resources/simulations/exports.rb +11 -3
- data/lib/increase/resources/simulations.rb +0 -4
- data/lib/increase/version.rb +1 -1
- data/lib/increase.rb +0 -7
- data/rbi/increase/client.rbi +0 -3
- data/rbi/increase/models/simulations/export_create_params.rbi +93 -7
- data/rbi/increase/models.rbi +0 -8
- data/rbi/increase/resources/simulations/exports.rbi +13 -4
- data/rbi/increase/resources/simulations.rbi +0 -3
- data/sig/increase/client.rbs +0 -2
- data/sig/increase/models/simulations/export_create_params.rbs +37 -4
- data/sig/increase/models.rbs +0 -8
- data/sig/increase/resources/simulations/exports.rbs +2 -1
- data/sig/increase/resources/simulations.rbs +0 -2
- metadata +2 -23
- data/lib/increase/models/document.rb +0 -160
- data/lib/increase/models/document_create_params.rb +0 -93
- data/lib/increase/models/document_list_params.rb +0 -152
- data/lib/increase/models/document_retrieve_params.rb +0 -14
- data/lib/increase/models/simulations/document_create_params.rb +0 -24
- data/lib/increase/resources/documents.rb +0 -99
- data/lib/increase/resources/simulations/documents.rb +0 -38
- data/rbi/increase/models/document.rbi +0 -249
- data/rbi/increase/models/document_create_params.rbi +0 -191
- data/rbi/increase/models/document_list_params.rbi +0 -296
- data/rbi/increase/models/document_retrieve_params.rbi +0 -27
- data/rbi/increase/models/simulations/document_create_params.rbi +0 -45
- data/rbi/increase/resources/documents.rbi +0 -81
- data/rbi/increase/resources/simulations/documents.rbi +0 -28
- data/sig/increase/models/document.rbs +0 -122
- data/sig/increase/models/document_create_params.rbs +0 -83
- data/sig/increase/models/document_list_params.rbs +0 -153
- data/sig/increase/models/document_retrieve_params.rbs +0 -15
- data/sig/increase/models/simulations/document_create_params.rbs +0 -25
- data/sig/increase/resources/documents.rbs +0 -29
- data/sig/increase/resources/simulations/documents.rbs +0 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a6604e67c072bd29bdaebb03b8e9390a6d471a6324d70b0f13c9b3ba6cbe9359
|
|
4
|
+
data.tar.gz: 16e4cac1007e05f8ad4a6e87ad630df81d9c81f8baf59802c6f375a692c399cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 801a4a597c991755697cfafba47e6a033b8754ce9d702511637ef8b6709fdc1393eca9441a1b3ba991ac17fffc4ac84712033c88e399af81fdbc88bf0325d10f
|
|
7
|
+
data.tar.gz: ed7c27cc0112e9e0cde72b3cf412025df6c9298886278e41190018c128ddc7b6ea32fe0c7ca1a3556ad0b2e59202d1942c6d94658fb41655a055e863166208ac
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.169.0 (2025-12-19)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.168.0...v1.169.0](https://github.com/Increase/increase-ruby/compare/v1.168.0...v1.169.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([b5d3038](https://github.com/Increase/increase-ruby/commit/b5d30383dc3af990034904caf966da33ea3ddb9a))
|
|
10
|
+
|
|
11
|
+
## 1.168.0 (2025-12-18)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.167.0...v1.168.0](https://github.com/Increase/increase-ruby/compare/v1.167.0...v1.168.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([f4ce01f](https://github.com/Increase/increase-ruby/commit/f4ce01fb3e3b0c52bf5079921ab01f3979de944f))
|
|
18
|
+
|
|
3
19
|
## 1.167.0 (2025-12-18)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.166.1...v1.167.0](https://github.com/Increase/increase-ruby/compare/v1.166.1...v1.167.0)
|
data/README.md
CHANGED
data/lib/increase/client.rb
CHANGED
|
@@ -137,9 +137,6 @@ module Increase
|
|
|
137
137
|
# @return [Increase::Resources::FileLinks]
|
|
138
138
|
attr_reader :file_links
|
|
139
139
|
|
|
140
|
-
# @return [Increase::Resources::Documents]
|
|
141
|
-
attr_reader :documents
|
|
142
|
-
|
|
143
140
|
# @return [Increase::Resources::Exports]
|
|
144
141
|
attr_reader :exports
|
|
145
142
|
|
|
@@ -295,7 +292,6 @@ module Increase
|
|
|
295
292
|
@account_statements = Increase::Resources::AccountStatements.new(client: self)
|
|
296
293
|
@files = Increase::Resources::Files.new(client: self)
|
|
297
294
|
@file_links = Increase::Resources::FileLinks.new(client: self)
|
|
298
|
-
@documents = Increase::Resources::Documents.new(client: self)
|
|
299
295
|
@exports = Increase::Resources::Exports.new(client: self)
|
|
300
296
|
@events = Increase::Resources::Events.new(client: self)
|
|
301
297
|
@event_subscriptions = Increase::Resources::EventSubscriptions.new(client: self)
|
|
@@ -8,16 +8,53 @@ module Increase
|
|
|
8
8
|
extend Increase::Internal::Type::RequestParameters::Converter
|
|
9
9
|
include Increase::Internal::Type::RequestParameters
|
|
10
10
|
|
|
11
|
-
# @!attribute
|
|
12
|
-
# The
|
|
11
|
+
# @!attribute category
|
|
12
|
+
# The type of Export to create.
|
|
13
13
|
#
|
|
14
|
-
# @return [
|
|
15
|
-
required :
|
|
14
|
+
# @return [Symbol, Increase::Models::Simulations::ExportCreateParams::Category]
|
|
15
|
+
required :category, enum: -> { Increase::Simulations::ExportCreateParams::Category }
|
|
16
16
|
|
|
17
|
-
# @!
|
|
18
|
-
#
|
|
17
|
+
# @!attribute form_1099_int
|
|
18
|
+
# Options for the created export. Required if `category` is equal to
|
|
19
|
+
# `form_1099_int`.
|
|
20
|
+
#
|
|
21
|
+
# @return [Increase::Models::Simulations::ExportCreateParams::Form1099Int, nil]
|
|
22
|
+
optional :form_1099_int, -> { Increase::Simulations::ExportCreateParams::Form1099Int }
|
|
23
|
+
|
|
24
|
+
# @!method initialize(category:, form_1099_int: nil, request_options: {})
|
|
25
|
+
# Some parameter documentations has been truncated, see
|
|
26
|
+
# {Increase::Models::Simulations::ExportCreateParams} for more details.
|
|
27
|
+
#
|
|
28
|
+
# @param category [Symbol, Increase::Models::Simulations::ExportCreateParams::Category] The type of Export to create.
|
|
29
|
+
#
|
|
30
|
+
# @param form_1099_int [Increase::Models::Simulations::ExportCreateParams::Form1099Int] Options for the created export. Required if `category` is equal to `form_1099_in
|
|
19
31
|
#
|
|
20
32
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
|
33
|
+
|
|
34
|
+
# The type of Export to create.
|
|
35
|
+
module Category
|
|
36
|
+
extend Increase::Internal::Type::Enum
|
|
37
|
+
|
|
38
|
+
# A PDF of an Internal Revenue Service Form 1099-INT.
|
|
39
|
+
FORM_1099_INT = :form_1099_int
|
|
40
|
+
|
|
41
|
+
# @!method self.values
|
|
42
|
+
# @return [Array<Symbol>]
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
class Form1099Int < Increase::Internal::Type::BaseModel
|
|
46
|
+
# @!attribute account_id
|
|
47
|
+
# The identifier of the Account the tax document is for.
|
|
48
|
+
#
|
|
49
|
+
# @return [String]
|
|
50
|
+
required :account_id, String
|
|
51
|
+
|
|
52
|
+
# @!method initialize(account_id:)
|
|
53
|
+
# Options for the created export. Required if `category` is equal to
|
|
54
|
+
# `form_1099_int`.
|
|
55
|
+
#
|
|
56
|
+
# @param account_id [String] The identifier of the Account the tax document is for.
|
|
57
|
+
end
|
|
21
58
|
end
|
|
22
59
|
end
|
|
23
60
|
end
|
data/lib/increase/models.rb
CHANGED
|
@@ -249,14 +249,6 @@ module Increase
|
|
|
249
249
|
|
|
250
250
|
DigitalWalletTokenRetrieveParams = Increase::Models::DigitalWalletTokenRetrieveParams
|
|
251
251
|
|
|
252
|
-
Document = Increase::Models::Document
|
|
253
|
-
|
|
254
|
-
DocumentCreateParams = Increase::Models::DocumentCreateParams
|
|
255
|
-
|
|
256
|
-
DocumentListParams = Increase::Models::DocumentListParams
|
|
257
|
-
|
|
258
|
-
DocumentRetrieveParams = Increase::Models::DocumentRetrieveParams
|
|
259
|
-
|
|
260
252
|
Entity = Increase::Models::Entity
|
|
261
253
|
|
|
262
254
|
EntityArchiveBeneficialOwnerParams = Increase::Models::EntityArchiveBeneficialOwnerParams
|
|
@@ -4,11 +4,19 @@ module Increase
|
|
|
4
4
|
module Resources
|
|
5
5
|
class Simulations
|
|
6
6
|
class Exports
|
|
7
|
-
#
|
|
7
|
+
# Some parameter documentations has been truncated, see
|
|
8
|
+
# {Increase::Models::Simulations::ExportCreateParams} for more details.
|
|
8
9
|
#
|
|
9
|
-
#
|
|
10
|
+
# Many exports are created by you via POST /exports or in the Dashboard. Some
|
|
11
|
+
# exports are created automatically by Increase. For example, tax documents are
|
|
12
|
+
# published once a year. In sandbox, you can trigger the arrival of an export that
|
|
13
|
+
# would normally only be created automatically via this simulation.
|
|
10
14
|
#
|
|
11
|
-
# @
|
|
15
|
+
# @overload create(category:, form_1099_int: nil, request_options: {})
|
|
16
|
+
#
|
|
17
|
+
# @param category [Symbol, Increase::Models::Simulations::ExportCreateParams::Category] The type of Export to create.
|
|
18
|
+
#
|
|
19
|
+
# @param form_1099_int [Increase::Models::Simulations::ExportCreateParams::Form1099Int] Options for the created export. Required if `category` is equal to `form_1099_in
|
|
12
20
|
#
|
|
13
21
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
|
|
14
22
|
#
|
|
@@ -90,9 +90,6 @@ module Increase
|
|
|
90
90
|
# @return [Increase::Resources::Simulations::AccountStatements]
|
|
91
91
|
attr_reader :account_statements
|
|
92
92
|
|
|
93
|
-
# @return [Increase::Resources::Simulations::Documents]
|
|
94
|
-
attr_reader :documents
|
|
95
|
-
|
|
96
93
|
# @return [Increase::Resources::Simulations::Exports]
|
|
97
94
|
attr_reader :exports
|
|
98
95
|
|
|
@@ -138,7 +135,6 @@ module Increase
|
|
|
138
135
|
@inbound_mail_items = Increase::Resources::Simulations::InboundMailItems.new(client: client)
|
|
139
136
|
@programs = Increase::Resources::Simulations::Programs.new(client: client)
|
|
140
137
|
@account_statements = Increase::Resources::Simulations::AccountStatements.new(client: client)
|
|
141
|
-
@documents = Increase::Resources::Simulations::Documents.new(client: client)
|
|
142
138
|
@exports = Increase::Resources::Simulations::Exports.new(client: client)
|
|
143
139
|
@card_tokens = Increase::Resources::Simulations::CardTokens.new(client: client)
|
|
144
140
|
end
|
data/lib/increase/version.rb
CHANGED
data/lib/increase.rb
CHANGED
|
@@ -158,10 +158,6 @@ require_relative "increase/models/digital_card_profile_retrieve_params"
|
|
|
158
158
|
require_relative "increase/models/digital_wallet_token"
|
|
159
159
|
require_relative "increase/models/digital_wallet_token_list_params"
|
|
160
160
|
require_relative "increase/models/digital_wallet_token_retrieve_params"
|
|
161
|
-
require_relative "increase/models/document"
|
|
162
|
-
require_relative "increase/models/document_create_params"
|
|
163
|
-
require_relative "increase/models/document_list_params"
|
|
164
|
-
require_relative "increase/models/document_retrieve_params"
|
|
165
161
|
require_relative "increase/models/entity"
|
|
166
162
|
require_relative "increase/models/entity_archive_beneficial_owner_params"
|
|
167
163
|
require_relative "increase/models/entity_archive_params"
|
|
@@ -313,7 +309,6 @@ require_relative "increase/models/simulations/check_deposit_submit_params"
|
|
|
313
309
|
require_relative "increase/models/simulations/check_transfer_mail_params"
|
|
314
310
|
require_relative "increase/models/simulations/digital_wallet_token_request_create_params"
|
|
315
311
|
require_relative "increase/models/simulations/digital_wallet_token_request_create_response"
|
|
316
|
-
require_relative "increase/models/simulations/document_create_params"
|
|
317
312
|
require_relative "increase/models/simulations/export_create_params"
|
|
318
313
|
require_relative "increase/models/simulations/inbound_ach_transfer_create_params"
|
|
319
314
|
require_relative "increase/models/simulations/inbound_check_deposit_create_params"
|
|
@@ -369,7 +364,6 @@ require_relative "increase/resources/check_transfers"
|
|
|
369
364
|
require_relative "increase/resources/declined_transactions"
|
|
370
365
|
require_relative "increase/resources/digital_card_profiles"
|
|
371
366
|
require_relative "increase/resources/digital_wallet_tokens"
|
|
372
|
-
require_relative "increase/resources/documents"
|
|
373
367
|
require_relative "increase/resources/entities"
|
|
374
368
|
require_relative "increase/resources/events"
|
|
375
369
|
require_relative "increase/resources/event_subscriptions"
|
|
@@ -417,7 +411,6 @@ require_relative "increase/resources/simulations/card_tokens"
|
|
|
417
411
|
require_relative "increase/resources/simulations/check_deposits"
|
|
418
412
|
require_relative "increase/resources/simulations/check_transfers"
|
|
419
413
|
require_relative "increase/resources/simulations/digital_wallet_token_requests"
|
|
420
|
-
require_relative "increase/resources/simulations/documents"
|
|
421
414
|
require_relative "increase/resources/simulations/exports"
|
|
422
415
|
require_relative "increase/resources/simulations/inbound_ach_transfers"
|
|
423
416
|
require_relative "increase/resources/simulations/inbound_check_deposits"
|
data/rbi/increase/client.rbi
CHANGED
|
@@ -136,9 +136,6 @@ module Increase
|
|
|
136
136
|
sig { returns(Increase::Resources::FileLinks) }
|
|
137
137
|
attr_reader :file_links
|
|
138
138
|
|
|
139
|
-
sig { returns(Increase::Resources::Documents) }
|
|
140
|
-
attr_reader :documents
|
|
141
|
-
|
|
142
139
|
sig { returns(Increase::Resources::Exports) }
|
|
143
140
|
attr_reader :exports
|
|
144
141
|
|
|
@@ -15,30 +15,116 @@ module Increase
|
|
|
15
15
|
)
|
|
16
16
|
end
|
|
17
17
|
|
|
18
|
-
# The
|
|
19
|
-
sig
|
|
20
|
-
|
|
18
|
+
# The type of Export to create.
|
|
19
|
+
sig do
|
|
20
|
+
returns(Increase::Simulations::ExportCreateParams::Category::OrSymbol)
|
|
21
|
+
end
|
|
22
|
+
attr_accessor :category
|
|
23
|
+
|
|
24
|
+
# Options for the created export. Required if `category` is equal to
|
|
25
|
+
# `form_1099_int`.
|
|
26
|
+
sig do
|
|
27
|
+
returns(
|
|
28
|
+
T.nilable(Increase::Simulations::ExportCreateParams::Form1099Int)
|
|
29
|
+
)
|
|
30
|
+
end
|
|
31
|
+
attr_reader :form_1099_int
|
|
21
32
|
|
|
22
33
|
sig do
|
|
23
34
|
params(
|
|
24
|
-
|
|
35
|
+
form_1099_int:
|
|
36
|
+
Increase::Simulations::ExportCreateParams::Form1099Int::OrHash
|
|
37
|
+
).void
|
|
38
|
+
end
|
|
39
|
+
attr_writer :form_1099_int
|
|
40
|
+
|
|
41
|
+
sig do
|
|
42
|
+
params(
|
|
43
|
+
category:
|
|
44
|
+
Increase::Simulations::ExportCreateParams::Category::OrSymbol,
|
|
45
|
+
form_1099_int:
|
|
46
|
+
Increase::Simulations::ExportCreateParams::Form1099Int::OrHash,
|
|
25
47
|
request_options: Increase::RequestOptions::OrHash
|
|
26
48
|
).returns(T.attached_class)
|
|
27
49
|
end
|
|
28
50
|
def self.new(
|
|
29
|
-
# The
|
|
30
|
-
|
|
51
|
+
# The type of Export to create.
|
|
52
|
+
category:,
|
|
53
|
+
# Options for the created export. Required if `category` is equal to
|
|
54
|
+
# `form_1099_int`.
|
|
55
|
+
form_1099_int: nil,
|
|
31
56
|
request_options: {}
|
|
32
57
|
)
|
|
33
58
|
end
|
|
34
59
|
|
|
35
60
|
sig do
|
|
36
61
|
override.returns(
|
|
37
|
-
{
|
|
62
|
+
{
|
|
63
|
+
category:
|
|
64
|
+
Increase::Simulations::ExportCreateParams::Category::OrSymbol,
|
|
65
|
+
form_1099_int:
|
|
66
|
+
Increase::Simulations::ExportCreateParams::Form1099Int,
|
|
67
|
+
request_options: Increase::RequestOptions
|
|
68
|
+
}
|
|
38
69
|
)
|
|
39
70
|
end
|
|
40
71
|
def to_hash
|
|
41
72
|
end
|
|
73
|
+
|
|
74
|
+
# The type of Export to create.
|
|
75
|
+
module Category
|
|
76
|
+
extend Increase::Internal::Type::Enum
|
|
77
|
+
|
|
78
|
+
TaggedSymbol =
|
|
79
|
+
T.type_alias do
|
|
80
|
+
T.all(Symbol, Increase::Simulations::ExportCreateParams::Category)
|
|
81
|
+
end
|
|
82
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
83
|
+
|
|
84
|
+
# A PDF of an Internal Revenue Service Form 1099-INT.
|
|
85
|
+
FORM_1099_INT =
|
|
86
|
+
T.let(
|
|
87
|
+
:form_1099_int,
|
|
88
|
+
Increase::Simulations::ExportCreateParams::Category::TaggedSymbol
|
|
89
|
+
)
|
|
90
|
+
|
|
91
|
+
sig do
|
|
92
|
+
override.returns(
|
|
93
|
+
T::Array[
|
|
94
|
+
Increase::Simulations::ExportCreateParams::Category::TaggedSymbol
|
|
95
|
+
]
|
|
96
|
+
)
|
|
97
|
+
end
|
|
98
|
+
def self.values
|
|
99
|
+
end
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
class Form1099Int < Increase::Internal::Type::BaseModel
|
|
103
|
+
OrHash =
|
|
104
|
+
T.type_alias do
|
|
105
|
+
T.any(
|
|
106
|
+
Increase::Simulations::ExportCreateParams::Form1099Int,
|
|
107
|
+
Increase::Internal::AnyHash
|
|
108
|
+
)
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
# The identifier of the Account the tax document is for.
|
|
112
|
+
sig { returns(String) }
|
|
113
|
+
attr_accessor :account_id
|
|
114
|
+
|
|
115
|
+
# Options for the created export. Required if `category` is equal to
|
|
116
|
+
# `form_1099_int`.
|
|
117
|
+
sig { params(account_id: String).returns(T.attached_class) }
|
|
118
|
+
def self.new(
|
|
119
|
+
# The identifier of the Account the tax document is for.
|
|
120
|
+
account_id:
|
|
121
|
+
)
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
sig { override.returns({ account_id: String }) }
|
|
125
|
+
def to_hash
|
|
126
|
+
end
|
|
127
|
+
end
|
|
42
128
|
end
|
|
43
129
|
end
|
|
44
130
|
end
|
data/rbi/increase/models.rbi
CHANGED
|
@@ -236,14 +236,6 @@ module Increase
|
|
|
236
236
|
DigitalWalletTokenRetrieveParams =
|
|
237
237
|
Increase::Models::DigitalWalletTokenRetrieveParams
|
|
238
238
|
|
|
239
|
-
Document = Increase::Models::Document
|
|
240
|
-
|
|
241
|
-
DocumentCreateParams = Increase::Models::DocumentCreateParams
|
|
242
|
-
|
|
243
|
-
DocumentListParams = Increase::Models::DocumentListParams
|
|
244
|
-
|
|
245
|
-
DocumentRetrieveParams = Increase::Models::DocumentRetrieveParams
|
|
246
|
-
|
|
247
239
|
Entity = Increase::Models::Entity
|
|
248
240
|
|
|
249
241
|
EntityArchiveBeneficialOwnerParams =
|
|
@@ -4,16 +4,25 @@ module Increase
|
|
|
4
4
|
module Resources
|
|
5
5
|
class Simulations
|
|
6
6
|
class Exports
|
|
7
|
-
#
|
|
7
|
+
# Many exports are created by you via POST /exports or in the Dashboard. Some
|
|
8
|
+
# exports are created automatically by Increase. For example, tax documents are
|
|
9
|
+
# published once a year. In sandbox, you can trigger the arrival of an export that
|
|
10
|
+
# would normally only be created automatically via this simulation.
|
|
8
11
|
sig do
|
|
9
12
|
params(
|
|
10
|
-
|
|
13
|
+
category:
|
|
14
|
+
Increase::Simulations::ExportCreateParams::Category::OrSymbol,
|
|
15
|
+
form_1099_int:
|
|
16
|
+
Increase::Simulations::ExportCreateParams::Form1099Int::OrHash,
|
|
11
17
|
request_options: Increase::RequestOptions::OrHash
|
|
12
18
|
).returns(Increase::Export)
|
|
13
19
|
end
|
|
14
20
|
def create(
|
|
15
|
-
# The
|
|
16
|
-
|
|
21
|
+
# The type of Export to create.
|
|
22
|
+
category:,
|
|
23
|
+
# Options for the created export. Required if `category` is equal to
|
|
24
|
+
# `form_1099_int`.
|
|
25
|
+
form_1099_int: nil,
|
|
17
26
|
request_options: {}
|
|
18
27
|
)
|
|
19
28
|
end
|
|
@@ -102,9 +102,6 @@ module Increase
|
|
|
102
102
|
sig { returns(Increase::Resources::Simulations::AccountStatements) }
|
|
103
103
|
attr_reader :account_statements
|
|
104
104
|
|
|
105
|
-
sig { returns(Increase::Resources::Simulations::Documents) }
|
|
106
|
-
attr_reader :documents
|
|
107
|
-
|
|
108
105
|
sig { returns(Increase::Resources::Simulations::Exports) }
|
|
109
106
|
attr_reader :exports
|
|
110
107
|
|
data/sig/increase/client.rbs
CHANGED
|
@@ -2,23 +2,56 @@ module Increase
|
|
|
2
2
|
module Models
|
|
3
3
|
module Simulations
|
|
4
4
|
type export_create_params =
|
|
5
|
-
{
|
|
5
|
+
{
|
|
6
|
+
category: Increase::Models::Simulations::ExportCreateParams::category,
|
|
7
|
+
:form_1099_int => Increase::Simulations::ExportCreateParams::Form1099Int
|
|
8
|
+
}
|
|
9
|
+
& Increase::Internal::Type::request_parameters
|
|
6
10
|
|
|
7
11
|
class ExportCreateParams < Increase::Internal::Type::BaseModel
|
|
8
12
|
extend Increase::Internal::Type::RequestParameters::Converter
|
|
9
13
|
include Increase::Internal::Type::RequestParameters
|
|
10
14
|
|
|
11
|
-
attr_accessor
|
|
15
|
+
attr_accessor category: Increase::Models::Simulations::ExportCreateParams::category
|
|
16
|
+
|
|
17
|
+
attr_reader form_1099_int: Increase::Simulations::ExportCreateParams::Form1099Int?
|
|
18
|
+
|
|
19
|
+
def form_1099_int=: (
|
|
20
|
+
Increase::Simulations::ExportCreateParams::Form1099Int
|
|
21
|
+
) -> Increase::Simulations::ExportCreateParams::Form1099Int
|
|
12
22
|
|
|
13
23
|
def initialize: (
|
|
14
|
-
|
|
24
|
+
category: Increase::Models::Simulations::ExportCreateParams::category,
|
|
25
|
+
?form_1099_int: Increase::Simulations::ExportCreateParams::Form1099Int,
|
|
15
26
|
?request_options: Increase::request_opts
|
|
16
27
|
) -> void
|
|
17
28
|
|
|
18
29
|
def to_hash: -> {
|
|
19
|
-
|
|
30
|
+
category: Increase::Models::Simulations::ExportCreateParams::category,
|
|
31
|
+
:form_1099_int => Increase::Simulations::ExportCreateParams::Form1099Int,
|
|
20
32
|
request_options: Increase::RequestOptions
|
|
21
33
|
}
|
|
34
|
+
|
|
35
|
+
type category = :form_1099_int
|
|
36
|
+
|
|
37
|
+
module Category
|
|
38
|
+
extend Increase::Internal::Type::Enum
|
|
39
|
+
|
|
40
|
+
# A PDF of an Internal Revenue Service Form 1099-INT.
|
|
41
|
+
FORM_1099_INT: :form_1099_int
|
|
42
|
+
|
|
43
|
+
def self?.values: -> ::Array[Increase::Models::Simulations::ExportCreateParams::category]
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
type form1099_int = { account_id: String }
|
|
47
|
+
|
|
48
|
+
class Form1099Int < Increase::Internal::Type::BaseModel
|
|
49
|
+
attr_accessor account_id: String
|
|
50
|
+
|
|
51
|
+
def initialize: (account_id: String) -> void
|
|
52
|
+
|
|
53
|
+
def to_hash: -> { account_id: String }
|
|
54
|
+
end
|
|
22
55
|
end
|
|
23
56
|
end
|
|
24
57
|
end
|
data/sig/increase/models.rbs
CHANGED
|
@@ -209,14 +209,6 @@ module Increase
|
|
|
209
209
|
|
|
210
210
|
class DigitalWalletTokenRetrieveParams = Increase::Models::DigitalWalletTokenRetrieveParams
|
|
211
211
|
|
|
212
|
-
class Document = Increase::Models::Document
|
|
213
|
-
|
|
214
|
-
class DocumentCreateParams = Increase::Models::DocumentCreateParams
|
|
215
|
-
|
|
216
|
-
class DocumentListParams = Increase::Models::DocumentListParams
|
|
217
|
-
|
|
218
|
-
class DocumentRetrieveParams = Increase::Models::DocumentRetrieveParams
|
|
219
|
-
|
|
220
212
|
class Entity = Increase::Models::Entity
|
|
221
213
|
|
|
222
214
|
class EntityArchiveBeneficialOwnerParams = Increase::Models::EntityArchiveBeneficialOwnerParams
|
|
@@ -3,7 +3,8 @@ module Increase
|
|
|
3
3
|
class Simulations
|
|
4
4
|
class Exports
|
|
5
5
|
def create: (
|
|
6
|
-
|
|
6
|
+
category: Increase::Models::Simulations::ExportCreateParams::category,
|
|
7
|
+
?form_1099_int: Increase::Simulations::ExportCreateParams::Form1099Int,
|
|
7
8
|
?request_options: Increase::request_opts
|
|
8
9
|
) -> Increase::Export
|
|
9
10
|
|
|
@@ -59,8 +59,6 @@ module Increase
|
|
|
59
59
|
|
|
60
60
|
attr_reader account_statements: Increase::Resources::Simulations::AccountStatements
|
|
61
61
|
|
|
62
|
-
attr_reader documents: Increase::Resources::Simulations::Documents
|
|
63
|
-
|
|
64
62
|
attr_reader exports: Increase::Resources::Simulations::Exports
|
|
65
63
|
|
|
66
64
|
attr_reader card_tokens: Increase::Resources::Simulations::CardTokens
|
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.169.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-12-
|
|
11
|
+
date: 2025-12-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|
|
@@ -161,10 +161,6 @@ files:
|
|
|
161
161
|
- lib/increase/models/digital_wallet_token.rb
|
|
162
162
|
- lib/increase/models/digital_wallet_token_list_params.rb
|
|
163
163
|
- lib/increase/models/digital_wallet_token_retrieve_params.rb
|
|
164
|
-
- lib/increase/models/document.rb
|
|
165
|
-
- lib/increase/models/document_create_params.rb
|
|
166
|
-
- lib/increase/models/document_list_params.rb
|
|
167
|
-
- lib/increase/models/document_retrieve_params.rb
|
|
168
164
|
- lib/increase/models/entity.rb
|
|
169
165
|
- lib/increase/models/entity_archive_beneficial_owner_params.rb
|
|
170
166
|
- lib/increase/models/entity_archive_params.rb
|
|
@@ -316,7 +312,6 @@ files:
|
|
|
316
312
|
- lib/increase/models/simulations/check_transfer_mail_params.rb
|
|
317
313
|
- lib/increase/models/simulations/digital_wallet_token_request_create_params.rb
|
|
318
314
|
- lib/increase/models/simulations/digital_wallet_token_request_create_response.rb
|
|
319
|
-
- lib/increase/models/simulations/document_create_params.rb
|
|
320
315
|
- lib/increase/models/simulations/export_create_params.rb
|
|
321
316
|
- lib/increase/models/simulations/inbound_ach_transfer_create_params.rb
|
|
322
317
|
- lib/increase/models/simulations/inbound_check_deposit_create_params.rb
|
|
@@ -372,7 +367,6 @@ files:
|
|
|
372
367
|
- lib/increase/resources/declined_transactions.rb
|
|
373
368
|
- lib/increase/resources/digital_card_profiles.rb
|
|
374
369
|
- lib/increase/resources/digital_wallet_tokens.rb
|
|
375
|
-
- lib/increase/resources/documents.rb
|
|
376
370
|
- lib/increase/resources/entities.rb
|
|
377
371
|
- lib/increase/resources/event_subscriptions.rb
|
|
378
372
|
- lib/increase/resources/events.rb
|
|
@@ -420,7 +414,6 @@ files:
|
|
|
420
414
|
- lib/increase/resources/simulations/check_deposits.rb
|
|
421
415
|
- lib/increase/resources/simulations/check_transfers.rb
|
|
422
416
|
- lib/increase/resources/simulations/digital_wallet_token_requests.rb
|
|
423
|
-
- lib/increase/resources/simulations/documents.rb
|
|
424
417
|
- lib/increase/resources/simulations/exports.rb
|
|
425
418
|
- lib/increase/resources/simulations/inbound_ach_transfers.rb
|
|
426
419
|
- lib/increase/resources/simulations/inbound_check_deposits.rb
|
|
@@ -567,10 +560,6 @@ files:
|
|
|
567
560
|
- rbi/increase/models/digital_wallet_token.rbi
|
|
568
561
|
- rbi/increase/models/digital_wallet_token_list_params.rbi
|
|
569
562
|
- rbi/increase/models/digital_wallet_token_retrieve_params.rbi
|
|
570
|
-
- rbi/increase/models/document.rbi
|
|
571
|
-
- rbi/increase/models/document_create_params.rbi
|
|
572
|
-
- rbi/increase/models/document_list_params.rbi
|
|
573
|
-
- rbi/increase/models/document_retrieve_params.rbi
|
|
574
563
|
- rbi/increase/models/entity.rbi
|
|
575
564
|
- rbi/increase/models/entity_archive_beneficial_owner_params.rbi
|
|
576
565
|
- rbi/increase/models/entity_archive_params.rbi
|
|
@@ -722,7 +711,6 @@ files:
|
|
|
722
711
|
- rbi/increase/models/simulations/check_transfer_mail_params.rbi
|
|
723
712
|
- rbi/increase/models/simulations/digital_wallet_token_request_create_params.rbi
|
|
724
713
|
- rbi/increase/models/simulations/digital_wallet_token_request_create_response.rbi
|
|
725
|
-
- rbi/increase/models/simulations/document_create_params.rbi
|
|
726
714
|
- rbi/increase/models/simulations/export_create_params.rbi
|
|
727
715
|
- rbi/increase/models/simulations/inbound_ach_transfer_create_params.rbi
|
|
728
716
|
- rbi/increase/models/simulations/inbound_check_deposit_create_params.rbi
|
|
@@ -778,7 +766,6 @@ files:
|
|
|
778
766
|
- rbi/increase/resources/declined_transactions.rbi
|
|
779
767
|
- rbi/increase/resources/digital_card_profiles.rbi
|
|
780
768
|
- rbi/increase/resources/digital_wallet_tokens.rbi
|
|
781
|
-
- rbi/increase/resources/documents.rbi
|
|
782
769
|
- rbi/increase/resources/entities.rbi
|
|
783
770
|
- rbi/increase/resources/event_subscriptions.rbi
|
|
784
771
|
- rbi/increase/resources/events.rbi
|
|
@@ -826,7 +813,6 @@ files:
|
|
|
826
813
|
- rbi/increase/resources/simulations/check_deposits.rbi
|
|
827
814
|
- rbi/increase/resources/simulations/check_transfers.rbi
|
|
828
815
|
- rbi/increase/resources/simulations/digital_wallet_token_requests.rbi
|
|
829
|
-
- rbi/increase/resources/simulations/documents.rbi
|
|
830
816
|
- rbi/increase/resources/simulations/exports.rbi
|
|
831
817
|
- rbi/increase/resources/simulations/inbound_ach_transfers.rbi
|
|
832
818
|
- rbi/increase/resources/simulations/inbound_check_deposits.rbi
|
|
@@ -972,10 +958,6 @@ files:
|
|
|
972
958
|
- sig/increase/models/digital_wallet_token.rbs
|
|
973
959
|
- sig/increase/models/digital_wallet_token_list_params.rbs
|
|
974
960
|
- sig/increase/models/digital_wallet_token_retrieve_params.rbs
|
|
975
|
-
- sig/increase/models/document.rbs
|
|
976
|
-
- sig/increase/models/document_create_params.rbs
|
|
977
|
-
- sig/increase/models/document_list_params.rbs
|
|
978
|
-
- sig/increase/models/document_retrieve_params.rbs
|
|
979
961
|
- sig/increase/models/entity.rbs
|
|
980
962
|
- sig/increase/models/entity_archive_beneficial_owner_params.rbs
|
|
981
963
|
- sig/increase/models/entity_archive_params.rbs
|
|
@@ -1127,7 +1109,6 @@ files:
|
|
|
1127
1109
|
- sig/increase/models/simulations/check_transfer_mail_params.rbs
|
|
1128
1110
|
- sig/increase/models/simulations/digital_wallet_token_request_create_params.rbs
|
|
1129
1111
|
- sig/increase/models/simulations/digital_wallet_token_request_create_response.rbs
|
|
1130
|
-
- sig/increase/models/simulations/document_create_params.rbs
|
|
1131
1112
|
- sig/increase/models/simulations/export_create_params.rbs
|
|
1132
1113
|
- sig/increase/models/simulations/inbound_ach_transfer_create_params.rbs
|
|
1133
1114
|
- sig/increase/models/simulations/inbound_check_deposit_create_params.rbs
|
|
@@ -1183,7 +1164,6 @@ files:
|
|
|
1183
1164
|
- sig/increase/resources/declined_transactions.rbs
|
|
1184
1165
|
- sig/increase/resources/digital_card_profiles.rbs
|
|
1185
1166
|
- sig/increase/resources/digital_wallet_tokens.rbs
|
|
1186
|
-
- sig/increase/resources/documents.rbs
|
|
1187
1167
|
- sig/increase/resources/entities.rbs
|
|
1188
1168
|
- sig/increase/resources/event_subscriptions.rbs
|
|
1189
1169
|
- sig/increase/resources/events.rbs
|
|
@@ -1231,7 +1211,6 @@ files:
|
|
|
1231
1211
|
- sig/increase/resources/simulations/check_deposits.rbs
|
|
1232
1212
|
- sig/increase/resources/simulations/check_transfers.rbs
|
|
1233
1213
|
- sig/increase/resources/simulations/digital_wallet_token_requests.rbs
|
|
1234
|
-
- sig/increase/resources/simulations/documents.rbs
|
|
1235
1214
|
- sig/increase/resources/simulations/exports.rbs
|
|
1236
1215
|
- sig/increase/resources/simulations/inbound_ach_transfers.rbs
|
|
1237
1216
|
- sig/increase/resources/simulations/inbound_check_deposits.rbs
|