increase 1.86.0 → 1.88.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/models/account_transfer.rb +32 -44
- data/lib/increase/models/account_transfer_create_params.rb +11 -8
- data/lib/increase/models/card_payment.rb +144 -72
- data/lib/increase/models/declined_transaction.rb +36 -18
- data/lib/increase/models/pending_transaction.rb +36 -18
- data/lib/increase/models/real_time_decision.rb +36 -18
- data/lib/increase/resources/account_transfers.rb +6 -6
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/account_transfer.rbi +36 -53
- data/rbi/increase/models/account_transfer_create_params.rbi +14 -8
- data/rbi/increase/models/card_payment.rbi +216 -72
- data/rbi/increase/models/declined_transaction.rbi +54 -18
- data/rbi/increase/models/pending_transaction.rbi +54 -18
- data/rbi/increase/models/real_time_decision.rbi +54 -18
- data/rbi/increase/resources/account_transfers.rbi +9 -6
- data/sig/increase/models/account_transfer.rbs +2 -17
- metadata +2 -2
@@ -14,7 +14,6 @@ module Increase
|
|
14
14
|
destination_account_id: String,
|
15
15
|
destination_transaction_id: String?,
|
16
16
|
idempotency_key: String?,
|
17
|
-
network: Increase::Models::AccountTransfer::network,
|
18
17
|
pending_transaction_id: String?,
|
19
18
|
status: Increase::Models::AccountTransfer::status,
|
20
19
|
transaction_id: String?,
|
@@ -46,8 +45,6 @@ module Increase
|
|
46
45
|
|
47
46
|
attr_accessor idempotency_key: String?
|
48
47
|
|
49
|
-
attr_accessor network: Increase::Models::AccountTransfer::network
|
50
|
-
|
51
48
|
attr_accessor pending_transaction_id: String?
|
52
49
|
|
53
50
|
attr_accessor status: Increase::Models::AccountTransfer::status
|
@@ -69,7 +66,6 @@ module Increase
|
|
69
66
|
destination_account_id: String,
|
70
67
|
destination_transaction_id: String?,
|
71
68
|
idempotency_key: String?,
|
72
|
-
network: Increase::Models::AccountTransfer::network,
|
73
69
|
pending_transaction_id: String?,
|
74
70
|
status: Increase::Models::AccountTransfer::status,
|
75
71
|
transaction_id: String?,
|
@@ -89,7 +85,6 @@ module Increase
|
|
89
85
|
destination_account_id: String,
|
90
86
|
destination_transaction_id: String?,
|
91
87
|
idempotency_key: String?,
|
92
|
-
network: Increase::Models::AccountTransfer::network,
|
93
88
|
pending_transaction_id: String?,
|
94
89
|
status: Increase::Models::AccountTransfer::status,
|
95
90
|
transaction_id: String?,
|
@@ -225,25 +220,15 @@ module Increase
|
|
225
220
|
def self?.values: -> ::Array[Increase::Models::AccountTransfer::currency]
|
226
221
|
end
|
227
222
|
|
228
|
-
type network = :account
|
229
|
-
|
230
|
-
module Network
|
231
|
-
extend Increase::Internal::Type::Enum
|
232
|
-
|
233
|
-
ACCOUNT: :account
|
234
|
-
|
235
|
-
def self?.values: -> ::Array[Increase::Models::AccountTransfer::network]
|
236
|
-
end
|
237
|
-
|
238
223
|
type status = :pending_approval | :canceled | :complete
|
239
224
|
|
240
225
|
module Status
|
241
226
|
extend Increase::Internal::Type::Enum
|
242
227
|
|
243
|
-
# The transfer is pending approval.
|
228
|
+
# The transfer is pending approval from your team.
|
244
229
|
PENDING_APPROVAL: :pending_approval
|
245
230
|
|
246
|
-
# The transfer has been canceled.
|
231
|
+
# The transfer was pending approval from your team and has been canceled.
|
247
232
|
CANCELED: :canceled
|
248
233
|
|
249
234
|
# The transfer has been completed.
|
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.88.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-09-
|
11
|
+
date: 2025-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|