increase 1.350.0 → 1.351.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/models/declined_transaction.rb +3 -0
- data/lib/increase/models/digital_wallet_token.rb +19 -1
- data/lib/increase/models/inbound_real_time_payments_transfer.rb +3 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/declined_transaction.rbi +7 -0
- data/rbi/increase/models/digital_wallet_token.rbi +16 -0
- data/rbi/increase/models/inbound_real_time_payments_transfer.rbi +7 -0
- data/sig/increase/models/declined_transaction.rbs +4 -0
- data/sig/increase/models/digital_wallet_token.rbs +10 -0
- data/sig/increase/models/inbound_real_time_payments_transfer.rbs +4 -0
- 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: 229dee88f03c345c4903597d7a20db497482448aa3268a0edf90f2bafa52450d
|
|
4
|
+
data.tar.gz: '029a7517e800af1f34139527fd05b26548bb85464855ef7ce51bed4edb031b7a'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 137e0f76116c15a8ea3cfd28d475a9f35a1531af5294e24ba92f3db5ebf2541d787fee2b19228291a4f5e8cfaeae4018b164d90b8de4f92adc89caef979b4749
|
|
7
|
+
data.tar.gz: 20c432c45dcdd377e6fe61efa6469ff320adc0a87019012c5b964fdc9d929d902671e7ba9a3b7e4e4b93078d84d3cef41b389c2a04dc5976502f92b038292e28
|
data/README.md
CHANGED
|
@@ -2594,6 +2594,9 @@ module Increase
|
|
|
2594
2594
|
# Your account is not enabled to receive Real-Time Payments transfers.
|
|
2595
2595
|
REAL_TIME_PAYMENTS_NOT_ENABLED = :real_time_payments_not_enabled
|
|
2596
2596
|
|
|
2597
|
+
# The transaction is not allowed per Increase's terms.
|
|
2598
|
+
TRANSACTION_NOT_ALLOWED = :transaction_not_allowed
|
|
2599
|
+
|
|
2597
2600
|
# @!method self.values
|
|
2598
2601
|
# @return [Array<Symbol>]
|
|
2599
2602
|
end
|
|
@@ -56,12 +56,24 @@ module Increase
|
|
|
56
56
|
-> { Increase::DigitalWalletToken::DynamicPrimaryAccountNumber },
|
|
57
57
|
nil?: true
|
|
58
58
|
|
|
59
|
+
# @!attribute primary_account_number_reference_identifier
|
|
60
|
+
# The reference identifier assigned by the card network to the underlying Card.
|
|
61
|
+
#
|
|
62
|
+
# @return [String]
|
|
63
|
+
required :primary_account_number_reference_identifier, String
|
|
64
|
+
|
|
59
65
|
# @!attribute status
|
|
60
66
|
# This indicates if payments can be made with the Digital Wallet Token.
|
|
61
67
|
#
|
|
62
68
|
# @return [Symbol, Increase::Models::DigitalWalletToken::Status]
|
|
63
69
|
required :status, enum: -> { Increase::DigitalWalletToken::Status }
|
|
64
70
|
|
|
71
|
+
# @!attribute token_reference_identifier
|
|
72
|
+
# The reference identifier assigned by the card network to the token.
|
|
73
|
+
#
|
|
74
|
+
# @return [String]
|
|
75
|
+
required :token_reference_identifier, String
|
|
76
|
+
|
|
65
77
|
# @!attribute token_requestor
|
|
66
78
|
# The digital wallet app being used.
|
|
67
79
|
#
|
|
@@ -81,7 +93,7 @@ module Increase
|
|
|
81
93
|
# @return [Array<Increase::Models::DigitalWalletToken::Update>]
|
|
82
94
|
required :updates, -> { Increase::Internal::Type::ArrayOf[Increase::DigitalWalletToken::Update] }
|
|
83
95
|
|
|
84
|
-
# @!method initialize(id:, account_id:, card_id:, cardholder:, created_at:, decline:, device:, dynamic_primary_account_number:, status:, token_requestor:, type:, updates:)
|
|
96
|
+
# @!method initialize(id:, account_id:, card_id:, cardholder:, created_at:, decline:, device:, dynamic_primary_account_number:, primary_account_number_reference_identifier:, status:, token_reference_identifier:, token_requestor:, type:, updates:)
|
|
85
97
|
# A Digital Wallet Token is created when a user adds a Card to their Apple Pay or
|
|
86
98
|
# Google Pay app. The Digital Wallet Token can be used for purchases just like a
|
|
87
99
|
# Card.
|
|
@@ -109,9 +121,15 @@ module Increase
|
|
|
109
121
|
# @param dynamic_primary_account_number [Increase::Models::DigitalWalletToken::DynamicPrimaryAccountNumber, nil]
|
|
110
122
|
# The redacted Dynamic Primary Account Number.
|
|
111
123
|
#
|
|
124
|
+
# @param primary_account_number_reference_identifier [String]
|
|
125
|
+
# The reference identifier assigned by the card network to the underlying Card.
|
|
126
|
+
#
|
|
112
127
|
# @param status [Symbol, Increase::Models::DigitalWalletToken::Status]
|
|
113
128
|
# This indicates if payments can be made with the Digital Wallet Token.
|
|
114
129
|
#
|
|
130
|
+
# @param token_reference_identifier [String]
|
|
131
|
+
# The reference identifier assigned by the card network to the token.
|
|
132
|
+
#
|
|
115
133
|
# @param token_requestor [Symbol, Increase::Models::DigitalWalletToken::TokenRequestor]
|
|
116
134
|
# The digital wallet app being used.
|
|
117
135
|
#
|
|
@@ -240,6 +240,9 @@ module Increase
|
|
|
240
240
|
# Your account is not enabled to receive Real-Time Payments transfers.
|
|
241
241
|
REAL_TIME_PAYMENTS_NOT_ENABLED = :real_time_payments_not_enabled
|
|
242
242
|
|
|
243
|
+
# The transaction is not allowed per Increase's terms.
|
|
244
|
+
TRANSACTION_NOT_ALLOWED = :transaction_not_allowed
|
|
245
|
+
|
|
243
246
|
# @!method self.values
|
|
244
247
|
# @return [Array<Symbol>]
|
|
245
248
|
end
|
data/lib/increase/version.rb
CHANGED
|
@@ -4744,6 +4744,13 @@ module Increase
|
|
|
4744
4744
|
Increase::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol
|
|
4745
4745
|
)
|
|
4746
4746
|
|
|
4747
|
+
# The transaction is not allowed per Increase's terms.
|
|
4748
|
+
TRANSACTION_NOT_ALLOWED =
|
|
4749
|
+
T.let(
|
|
4750
|
+
:transaction_not_allowed,
|
|
4751
|
+
Increase::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol
|
|
4752
|
+
)
|
|
4753
|
+
|
|
4747
4754
|
sig do
|
|
4748
4755
|
override.returns(
|
|
4749
4756
|
T::Array[
|
|
@@ -73,10 +73,18 @@ module Increase
|
|
|
73
73
|
end
|
|
74
74
|
attr_writer :dynamic_primary_account_number
|
|
75
75
|
|
|
76
|
+
# The reference identifier assigned by the card network to the underlying Card.
|
|
77
|
+
sig { returns(String) }
|
|
78
|
+
attr_accessor :primary_account_number_reference_identifier
|
|
79
|
+
|
|
76
80
|
# This indicates if payments can be made with the Digital Wallet Token.
|
|
77
81
|
sig { returns(Increase::DigitalWalletToken::Status::TaggedSymbol) }
|
|
78
82
|
attr_accessor :status
|
|
79
83
|
|
|
84
|
+
# The reference identifier assigned by the card network to the token.
|
|
85
|
+
sig { returns(String) }
|
|
86
|
+
attr_accessor :token_reference_identifier
|
|
87
|
+
|
|
80
88
|
# The digital wallet app being used.
|
|
81
89
|
sig do
|
|
82
90
|
returns(Increase::DigitalWalletToken::TokenRequestor::TaggedSymbol)
|
|
@@ -108,7 +116,9 @@ module Increase
|
|
|
108
116
|
T.nilable(
|
|
109
117
|
Increase::DigitalWalletToken::DynamicPrimaryAccountNumber::OrHash
|
|
110
118
|
),
|
|
119
|
+
primary_account_number_reference_identifier: String,
|
|
111
120
|
status: Increase::DigitalWalletToken::Status::OrSymbol,
|
|
121
|
+
token_reference_identifier: String,
|
|
112
122
|
token_requestor:
|
|
113
123
|
Increase::DigitalWalletToken::TokenRequestor::OrSymbol,
|
|
114
124
|
type: Increase::DigitalWalletToken::Type::OrSymbol,
|
|
@@ -134,8 +144,12 @@ module Increase
|
|
|
134
144
|
device:,
|
|
135
145
|
# The redacted Dynamic Primary Account Number.
|
|
136
146
|
dynamic_primary_account_number:,
|
|
147
|
+
# The reference identifier assigned by the card network to the underlying Card.
|
|
148
|
+
primary_account_number_reference_identifier:,
|
|
137
149
|
# This indicates if payments can be made with the Digital Wallet Token.
|
|
138
150
|
status:,
|
|
151
|
+
# The reference identifier assigned by the card network to the token.
|
|
152
|
+
token_reference_identifier:,
|
|
139
153
|
# The digital wallet app being used.
|
|
140
154
|
token_requestor:,
|
|
141
155
|
# A constant representing the object's type. For this resource it will always be
|
|
@@ -160,7 +174,9 @@ module Increase
|
|
|
160
174
|
T.nilable(
|
|
161
175
|
Increase::DigitalWalletToken::DynamicPrimaryAccountNumber
|
|
162
176
|
),
|
|
177
|
+
primary_account_number_reference_identifier: String,
|
|
163
178
|
status: Increase::DigitalWalletToken::Status::TaggedSymbol,
|
|
179
|
+
token_reference_identifier: String,
|
|
164
180
|
token_requestor:
|
|
165
181
|
Increase::DigitalWalletToken::TokenRequestor::TaggedSymbol,
|
|
166
182
|
type: Increase::DigitalWalletToken::Type::TaggedSymbol,
|
|
@@ -388,6 +388,13 @@ module Increase
|
|
|
388
388
|
Increase::InboundRealTimePaymentsTransfer::Decline::Reason::TaggedSymbol
|
|
389
389
|
)
|
|
390
390
|
|
|
391
|
+
# The transaction is not allowed per Increase's terms.
|
|
392
|
+
TRANSACTION_NOT_ALLOWED =
|
|
393
|
+
T.let(
|
|
394
|
+
:transaction_not_allowed,
|
|
395
|
+
Increase::InboundRealTimePaymentsTransfer::Decline::Reason::TaggedSymbol
|
|
396
|
+
)
|
|
397
|
+
|
|
391
398
|
sig do
|
|
392
399
|
override.returns(
|
|
393
400
|
T::Array[
|
|
@@ -1893,6 +1893,7 @@ module Increase
|
|
|
1893
1893
|
| :group_locked
|
|
1894
1894
|
| :entity_not_active
|
|
1895
1895
|
| :real_time_payments_not_enabled
|
|
1896
|
+
| :transaction_not_allowed
|
|
1896
1897
|
|
|
1897
1898
|
module Reason
|
|
1898
1899
|
extend Increase::Internal::Type::Enum
|
|
@@ -1915,6 +1916,9 @@ module Increase
|
|
|
1915
1916
|
# Your account is not enabled to receive Real-Time Payments transfers.
|
|
1916
1917
|
REAL_TIME_PAYMENTS_NOT_ENABLED: :real_time_payments_not_enabled
|
|
1917
1918
|
|
|
1919
|
+
# The transaction is not allowed per Increase's terms.
|
|
1920
|
+
TRANSACTION_NOT_ALLOWED: :transaction_not_allowed
|
|
1921
|
+
|
|
1918
1922
|
def self?.values: -> ::Array[Increase::Models::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline::reason]
|
|
1919
1923
|
end
|
|
1920
1924
|
end
|
|
@@ -10,7 +10,9 @@ module Increase
|
|
|
10
10
|
decline: Increase::DigitalWalletToken::Decline?,
|
|
11
11
|
device: Increase::DigitalWalletToken::Device,
|
|
12
12
|
dynamic_primary_account_number: Increase::DigitalWalletToken::DynamicPrimaryAccountNumber?,
|
|
13
|
+
primary_account_number_reference_identifier: String,
|
|
13
14
|
status: Increase::Models::DigitalWalletToken::status,
|
|
15
|
+
token_reference_identifier: String,
|
|
14
16
|
token_requestor: Increase::Models::DigitalWalletToken::token_requestor,
|
|
15
17
|
type: Increase::Models::DigitalWalletToken::type_,
|
|
16
18
|
updates: ::Array[Increase::DigitalWalletToken::Update]
|
|
@@ -33,8 +35,12 @@ module Increase
|
|
|
33
35
|
|
|
34
36
|
attr_accessor dynamic_primary_account_number: Increase::DigitalWalletToken::DynamicPrimaryAccountNumber?
|
|
35
37
|
|
|
38
|
+
attr_accessor primary_account_number_reference_identifier: String
|
|
39
|
+
|
|
36
40
|
attr_accessor status: Increase::Models::DigitalWalletToken::status
|
|
37
41
|
|
|
42
|
+
attr_accessor token_reference_identifier: String
|
|
43
|
+
|
|
38
44
|
attr_accessor token_requestor: Increase::Models::DigitalWalletToken::token_requestor
|
|
39
45
|
|
|
40
46
|
attr_accessor type: Increase::Models::DigitalWalletToken::type_
|
|
@@ -50,7 +56,9 @@ module Increase
|
|
|
50
56
|
decline: Increase::DigitalWalletToken::Decline?,
|
|
51
57
|
device: Increase::DigitalWalletToken::Device,
|
|
52
58
|
dynamic_primary_account_number: Increase::DigitalWalletToken::DynamicPrimaryAccountNumber?,
|
|
59
|
+
primary_account_number_reference_identifier: String,
|
|
53
60
|
status: Increase::Models::DigitalWalletToken::status,
|
|
61
|
+
token_reference_identifier: String,
|
|
54
62
|
token_requestor: Increase::Models::DigitalWalletToken::token_requestor,
|
|
55
63
|
type: Increase::Models::DigitalWalletToken::type_,
|
|
56
64
|
updates: ::Array[Increase::DigitalWalletToken::Update]
|
|
@@ -65,7 +73,9 @@ module Increase
|
|
|
65
73
|
decline: Increase::DigitalWalletToken::Decline?,
|
|
66
74
|
device: Increase::DigitalWalletToken::Device,
|
|
67
75
|
dynamic_primary_account_number: Increase::DigitalWalletToken::DynamicPrimaryAccountNumber?,
|
|
76
|
+
primary_account_number_reference_identifier: String,
|
|
68
77
|
status: Increase::Models::DigitalWalletToken::status,
|
|
78
|
+
token_reference_identifier: String,
|
|
69
79
|
token_requestor: Increase::Models::DigitalWalletToken::token_requestor,
|
|
70
80
|
type: Increase::Models::DigitalWalletToken::type_,
|
|
71
81
|
updates: ::Array[Increase::DigitalWalletToken::Update]
|
|
@@ -147,6 +147,7 @@ module Increase
|
|
|
147
147
|
| :group_locked
|
|
148
148
|
| :entity_not_active
|
|
149
149
|
| :real_time_payments_not_enabled
|
|
150
|
+
| :transaction_not_allowed
|
|
150
151
|
|
|
151
152
|
module Reason
|
|
152
153
|
extend Increase::Internal::Type::Enum
|
|
@@ -169,6 +170,9 @@ module Increase
|
|
|
169
170
|
# Your account is not enabled to receive Real-Time Payments transfers.
|
|
170
171
|
REAL_TIME_PAYMENTS_NOT_ENABLED: :real_time_payments_not_enabled
|
|
171
172
|
|
|
173
|
+
# The transaction is not allowed per Increase's terms.
|
|
174
|
+
TRANSACTION_NOT_ALLOWED: :transaction_not_allowed
|
|
175
|
+
|
|
172
176
|
def self?.values: -> ::Array[Increase::Models::InboundRealTimePaymentsTransfer::Decline::reason]
|
|
173
177
|
end
|
|
174
178
|
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.351.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-09-
|
|
11
|
+
date: 2026-09-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|