increase 1.93.0 → 1.95.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/card_payment.rb +3 -3
- data/lib/increase/models/declined_transaction.rb +1 -1
- data/lib/increase/models/pending_transaction.rb +1 -1
- data/lib/increase/models/physical_card_profile_create_params.rb +1 -63
- data/lib/increase/models/real_time_decision.rb +1 -1
- data/lib/increase/models/transaction.rb +1 -1
- data/lib/increase/resources/physical_card_profiles.rb +1 -9
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_payment.rbi +3 -3
- data/rbi/increase/models/declined_transaction.rbi +1 -1
- data/rbi/increase/models/pending_transaction.rbi +1 -1
- data/rbi/increase/models/physical_card_profile_create_params.rbi +0 -144
- data/rbi/increase/models/real_time_decision.rbi +1 -1
- data/rbi/increase/models/transaction.rbi +1 -1
- data/rbi/increase/resources/physical_card_profiles.rbi +0 -16
- data/sig/increase/models/card_payment.rbs +3 -3
- data/sig/increase/models/declined_transaction.rbs +1 -1
- data/sig/increase/models/pending_transaction.rbs +1 -1
- data/sig/increase/models/physical_card_profile_create_params.rbs +0 -60
- data/sig/increase/models/real_time_decision.rbs +1 -1
- data/sig/increase/models/transaction.rbs +1 -1
- data/sig/increase/resources/physical_card_profiles.rbs +0 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3da30aa3bf7a17c414fc4c89e918e54c0a5e225d8c42902c35e11b3b675176dd
|
4
|
+
data.tar.gz: 158518602cfe419844ab25a2ee189c04f34b33e85dc7cbf8d69b5f753ae47e23
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bfd164104eae844bbd658f3bb310aad070c9b58c12477bed8bc422a834f9527832bbeef6c016f0a73dc26f523918610011ee8f0bf50c35edab5180eefa5b2ec5
|
7
|
+
data.tar.gz: 5933e86d0c11450953aa7c4b68ad776e85a8ba6bd173e9576713ceba7e42d104f2dd25431857dfd1e91b4cd9b849c8c8a4b1b47344a03963e35a00f4b45bb950
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.95.0 (2025-09-26)
|
4
|
+
|
5
|
+
Full Changelog: [v1.94.0...v1.95.0](https://github.com/Increase/increase-ruby/compare/v1.94.0...v1.95.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([cdf0c13](https://github.com/Increase/increase-ruby/commit/cdf0c13ac798a43ade5f81e4e586cbd70fa6ec17))
|
10
|
+
|
11
|
+
## 1.94.0 (2025-09-26)
|
12
|
+
|
13
|
+
Full Changelog: [v1.93.0...v1.94.0](https://github.com/Increase/increase-ruby/compare/v1.93.0...v1.94.0)
|
14
|
+
|
15
|
+
### Features
|
16
|
+
|
17
|
+
* **api:** api update ([aa16efb](https://github.com/Increase/increase-ruby/commit/aa16efb8412fe7b6d5c61b9c7b541476dd0bd049))
|
18
|
+
|
3
19
|
## 1.93.0 (2025-09-26)
|
4
20
|
|
5
21
|
Full Changelog: [v1.92.0...v1.93.0](https://github.com/Increase/increase-ruby/compare/v1.92.0...v1.93.0)
|
data/README.md
CHANGED
@@ -1427,7 +1427,7 @@ module Increase
|
|
1427
1427
|
NON_AUTHENTICATED_SECURITY_TRANSACTION_AT_3DS_CAPABLE_MERCHANT =
|
1428
1428
|
:non_authenticated_security_transaction_at_3ds_capable_merchant
|
1429
1429
|
|
1430
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
1430
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
1431
1431
|
NON_AUTHENTICATED_SECURITY_TRANSACTION = :non_authenticated_security_transaction
|
1432
1432
|
|
1433
1433
|
# Non-secure transaction: Use to identify an electronic commerce transaction that has no data protection.
|
@@ -2674,7 +2674,7 @@ module Increase
|
|
2674
2674
|
NON_AUTHENTICATED_SECURITY_TRANSACTION_AT_3DS_CAPABLE_MERCHANT =
|
2675
2675
|
:non_authenticated_security_transaction_at_3ds_capable_merchant
|
2676
2676
|
|
2677
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
2677
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
2678
2678
|
NON_AUTHENTICATED_SECURITY_TRANSACTION = :non_authenticated_security_transaction
|
2679
2679
|
|
2680
2680
|
# Non-secure transaction: Use to identify an electronic commerce transaction that has no data protection.
|
@@ -7690,7 +7690,7 @@ module Increase
|
|
7690
7690
|
NON_AUTHENTICATED_SECURITY_TRANSACTION_AT_3DS_CAPABLE_MERCHANT =
|
7691
7691
|
:non_authenticated_security_transaction_at_3ds_capable_merchant
|
7692
7692
|
|
7693
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
7693
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
7694
7694
|
NON_AUTHENTICATED_SECURITY_TRANSACTION = :non_authenticated_security_transaction
|
7695
7695
|
|
7696
7696
|
# Non-secure transaction: Use to identify an electronic commerce transaction that has no data protection.
|
@@ -1246,7 +1246,7 @@ module Increase
|
|
1246
1246
|
NON_AUTHENTICATED_SECURITY_TRANSACTION_AT_3DS_CAPABLE_MERCHANT =
|
1247
1247
|
:non_authenticated_security_transaction_at_3ds_capable_merchant
|
1248
1248
|
|
1249
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
1249
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
1250
1250
|
NON_AUTHENTICATED_SECURITY_TRANSACTION = :non_authenticated_security_transaction
|
1251
1251
|
|
1252
1252
|
# Non-secure transaction: Use to identify an electronic commerce transaction that has no data protection.
|
@@ -1284,7 +1284,7 @@ module Increase
|
|
1284
1284
|
NON_AUTHENTICATED_SECURITY_TRANSACTION_AT_3DS_CAPABLE_MERCHANT =
|
1285
1285
|
:non_authenticated_security_transaction_at_3ds_capable_merchant
|
1286
1286
|
|
1287
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
1287
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
1288
1288
|
NON_AUTHENTICATED_SECURITY_TRANSACTION = :non_authenticated_security_transaction
|
1289
1289
|
|
1290
1290
|
# Non-secure transaction: Use to identify an electronic commerce transaction that has no data protection.
|
@@ -37,32 +37,6 @@ module Increase
|
|
37
37
|
# @return [String]
|
38
38
|
required :program_id, String
|
39
39
|
|
40
|
-
# @!attribute back_color
|
41
|
-
# The color of the text on the back of the card. Defaults to "black".
|
42
|
-
#
|
43
|
-
# @return [Symbol, Increase::Models::PhysicalCardProfileCreateParams::BackColor, nil]
|
44
|
-
optional :back_color, enum: -> { Increase::PhysicalCardProfileCreateParams::BackColor }
|
45
|
-
|
46
|
-
# @!attribute card_stock_reference
|
47
|
-
# A reference ID provided by the fulfillment provider for the card stock used.
|
48
|
-
# Only used if you've ordered card stock separately.
|
49
|
-
#
|
50
|
-
# @return [String, nil]
|
51
|
-
optional :card_stock_reference, String
|
52
|
-
|
53
|
-
# @!attribute carrier_stock_reference
|
54
|
-
# A reference ID provided by the fulfillment provider for the carrier stock used.
|
55
|
-
# Only used if you've ordered carrier stock separately.
|
56
|
-
#
|
57
|
-
# @return [String, nil]
|
58
|
-
optional :carrier_stock_reference, String
|
59
|
-
|
60
|
-
# @!attribute front_color
|
61
|
-
# The color of the design on the front of the card. Defaults to "black".
|
62
|
-
#
|
63
|
-
# @return [Symbol, Increase::Models::PhysicalCardProfileCreateParams::FrontColor, nil]
|
64
|
-
optional :front_color, enum: -> { Increase::PhysicalCardProfileCreateParams::FrontColor }
|
65
|
-
|
66
40
|
# @!attribute front_text
|
67
41
|
# Text printed on the front of the card. Reach out to
|
68
42
|
# [support@increase.com](mailto:support@increase.com) for more information.
|
@@ -70,7 +44,7 @@ module Increase
|
|
70
44
|
# @return [Increase::Models::PhysicalCardProfileCreateParams::FrontText, nil]
|
71
45
|
optional :front_text, -> { Increase::PhysicalCardProfileCreateParams::FrontText }
|
72
46
|
|
73
|
-
# @!method initialize(carrier_image_file_id:, contact_phone:, description:, front_image_file_id:, program_id:,
|
47
|
+
# @!method initialize(carrier_image_file_id:, contact_phone:, description:, front_image_file_id:, program_id:, front_text: nil, request_options: {})
|
74
48
|
# Some parameter documentations has been truncated, see
|
75
49
|
# {Increase::Models::PhysicalCardProfileCreateParams} for more details.
|
76
50
|
#
|
@@ -84,46 +58,10 @@ module Increase
|
|
84
58
|
#
|
85
59
|
# @param program_id [String] The identifier for the Program that this Physical Card Profile falls under.
|
86
60
|
#
|
87
|
-
# @param back_color [Symbol, Increase::Models::PhysicalCardProfileCreateParams::BackColor] The color of the text on the back of the card. Defaults to "black".
|
88
|
-
#
|
89
|
-
# @param card_stock_reference [String] A reference ID provided by the fulfillment provider for the card stock used. Onl
|
90
|
-
#
|
91
|
-
# @param carrier_stock_reference [String] A reference ID provided by the fulfillment provider for the carrier stock used.
|
92
|
-
#
|
93
|
-
# @param front_color [Symbol, Increase::Models::PhysicalCardProfileCreateParams::FrontColor] The color of the design on the front of the card. Defaults to "black".
|
94
|
-
#
|
95
61
|
# @param front_text [Increase::Models::PhysicalCardProfileCreateParams::FrontText] Text printed on the front of the card. Reach out to [support@increase.com](mailt
|
96
62
|
#
|
97
63
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
98
64
|
|
99
|
-
# The color of the text on the back of the card. Defaults to "black".
|
100
|
-
module BackColor
|
101
|
-
extend Increase::Internal::Type::Enum
|
102
|
-
|
103
|
-
# Black personalization color.
|
104
|
-
BLACK = :black
|
105
|
-
|
106
|
-
# White personalization color.
|
107
|
-
WHITE = :white
|
108
|
-
|
109
|
-
# @!method self.values
|
110
|
-
# @return [Array<Symbol>]
|
111
|
-
end
|
112
|
-
|
113
|
-
# The color of the design on the front of the card. Defaults to "black".
|
114
|
-
module FrontColor
|
115
|
-
extend Increase::Internal::Type::Enum
|
116
|
-
|
117
|
-
# Black personalization color.
|
118
|
-
BLACK = :black
|
119
|
-
|
120
|
-
# White personalization color.
|
121
|
-
WHITE = :white
|
122
|
-
|
123
|
-
# @!method self.values
|
124
|
-
# @return [Array<Symbol>]
|
125
|
-
end
|
126
|
-
|
127
65
|
class FrontText < Increase::Internal::Type::BaseModel
|
128
66
|
# @!attribute line1
|
129
67
|
# The first line of text on the front of the card.
|
@@ -1008,7 +1008,7 @@ module Increase
|
|
1008
1008
|
NON_AUTHENTICATED_SECURITY_TRANSACTION_AT_3DS_CAPABLE_MERCHANT =
|
1009
1009
|
:non_authenticated_security_transaction_at_3ds_capable_merchant
|
1010
1010
|
|
1011
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
1011
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
1012
1012
|
NON_AUTHENTICATED_SECURITY_TRANSACTION = :non_authenticated_security_transaction
|
1013
1013
|
|
1014
1014
|
# Non-secure transaction: Use to identify an electronic commerce transaction that has no data protection.
|
@@ -2068,7 +2068,7 @@ module Increase
|
|
2068
2068
|
NON_AUTHENTICATED_SECURITY_TRANSACTION_AT_3DS_CAPABLE_MERCHANT =
|
2069
2069
|
:non_authenticated_security_transaction_at_3ds_capable_merchant
|
2070
2070
|
|
2071
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
2071
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
2072
2072
|
NON_AUTHENTICATED_SECURITY_TRANSACTION = :non_authenticated_security_transaction
|
2073
2073
|
|
2074
2074
|
# Non-secure transaction: Use to identify an electronic commerce transaction that has no data protection.
|
@@ -8,7 +8,7 @@ module Increase
|
|
8
8
|
#
|
9
9
|
# Create a Physical Card Profile
|
10
10
|
#
|
11
|
-
# @overload create(carrier_image_file_id:, contact_phone:, description:, front_image_file_id:, program_id:,
|
11
|
+
# @overload create(carrier_image_file_id:, contact_phone:, description:, front_image_file_id:, program_id:, front_text: nil, request_options: {})
|
12
12
|
#
|
13
13
|
# @param carrier_image_file_id [String] The identifier of the File containing the physical card's carrier image.
|
14
14
|
#
|
@@ -20,14 +20,6 @@ module Increase
|
|
20
20
|
#
|
21
21
|
# @param program_id [String] The identifier for the Program that this Physical Card Profile falls under.
|
22
22
|
#
|
23
|
-
# @param back_color [Symbol, Increase::Models::PhysicalCardProfileCreateParams::BackColor] The color of the text on the back of the card. Defaults to "black".
|
24
|
-
#
|
25
|
-
# @param card_stock_reference [String] A reference ID provided by the fulfillment provider for the card stock used. Onl
|
26
|
-
#
|
27
|
-
# @param carrier_stock_reference [String] A reference ID provided by the fulfillment provider for the carrier stock used.
|
28
|
-
#
|
29
|
-
# @param front_color [Symbol, Increase::Models::PhysicalCardProfileCreateParams::FrontColor] The color of the design on the front of the card. Defaults to "black".
|
30
|
-
#
|
31
23
|
# @param front_text [Increase::Models::PhysicalCardProfileCreateParams::FrontText] Text printed on the front of the card. Reach out to [support@increase.com](mailt
|
32
24
|
#
|
33
25
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
|
data/lib/increase/version.rb
CHANGED
@@ -2630,7 +2630,7 @@ module Increase
|
|
2630
2630
|
Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::ElectronicCommerceIndicator::TaggedSymbol
|
2631
2631
|
)
|
2632
2632
|
|
2633
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
2633
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
2634
2634
|
NON_AUTHENTICATED_SECURITY_TRANSACTION =
|
2635
2635
|
T.let(
|
2636
2636
|
:non_authenticated_security_transaction,
|
@@ -5019,7 +5019,7 @@ module Increase
|
|
5019
5019
|
Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::ElectronicCommerceIndicator::TaggedSymbol
|
5020
5020
|
)
|
5021
5021
|
|
5022
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
5022
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
5023
5023
|
NON_AUTHENTICATED_SECURITY_TRANSACTION =
|
5024
5024
|
T.let(
|
5025
5025
|
:non_authenticated_security_transaction,
|
@@ -14204,7 +14204,7 @@ module Increase
|
|
14204
14204
|
Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::ElectronicCommerceIndicator::TaggedSymbol
|
14205
14205
|
)
|
14206
14206
|
|
14207
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
14207
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
14208
14208
|
NON_AUTHENTICATED_SECURITY_TRANSACTION =
|
14209
14209
|
T.let(
|
14210
14210
|
:non_authenticated_security_transaction,
|
@@ -2264,7 +2264,7 @@ module Increase
|
|
2264
2264
|
Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa::ElectronicCommerceIndicator::TaggedSymbol
|
2265
2265
|
)
|
2266
2266
|
|
2267
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
2267
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
2268
2268
|
NON_AUTHENTICATED_SECURITY_TRANSACTION =
|
2269
2269
|
T.let(
|
2270
2270
|
:non_authenticated_security_transaction,
|
@@ -2359,7 +2359,7 @@ module Increase
|
|
2359
2359
|
Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa::ElectronicCommerceIndicator::TaggedSymbol
|
2360
2360
|
)
|
2361
2361
|
|
2362
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
2362
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
2363
2363
|
NON_AUTHENTICATED_SECURITY_TRANSACTION =
|
2364
2364
|
T.let(
|
2365
2365
|
:non_authenticated_security_transaction,
|
@@ -34,58 +34,6 @@ module Increase
|
|
34
34
|
sig { returns(String) }
|
35
35
|
attr_accessor :program_id
|
36
36
|
|
37
|
-
# The color of the text on the back of the card. Defaults to "black".
|
38
|
-
sig do
|
39
|
-
returns(
|
40
|
-
T.nilable(
|
41
|
-
Increase::PhysicalCardProfileCreateParams::BackColor::OrSymbol
|
42
|
-
)
|
43
|
-
)
|
44
|
-
end
|
45
|
-
attr_reader :back_color
|
46
|
-
|
47
|
-
sig do
|
48
|
-
params(
|
49
|
-
back_color:
|
50
|
-
Increase::PhysicalCardProfileCreateParams::BackColor::OrSymbol
|
51
|
-
).void
|
52
|
-
end
|
53
|
-
attr_writer :back_color
|
54
|
-
|
55
|
-
# A reference ID provided by the fulfillment provider for the card stock used.
|
56
|
-
# Only used if you've ordered card stock separately.
|
57
|
-
sig { returns(T.nilable(String)) }
|
58
|
-
attr_reader :card_stock_reference
|
59
|
-
|
60
|
-
sig { params(card_stock_reference: String).void }
|
61
|
-
attr_writer :card_stock_reference
|
62
|
-
|
63
|
-
# A reference ID provided by the fulfillment provider for the carrier stock used.
|
64
|
-
# Only used if you've ordered carrier stock separately.
|
65
|
-
sig { returns(T.nilable(String)) }
|
66
|
-
attr_reader :carrier_stock_reference
|
67
|
-
|
68
|
-
sig { params(carrier_stock_reference: String).void }
|
69
|
-
attr_writer :carrier_stock_reference
|
70
|
-
|
71
|
-
# The color of the design on the front of the card. Defaults to "black".
|
72
|
-
sig do
|
73
|
-
returns(
|
74
|
-
T.nilable(
|
75
|
-
Increase::PhysicalCardProfileCreateParams::FrontColor::OrSymbol
|
76
|
-
)
|
77
|
-
)
|
78
|
-
end
|
79
|
-
attr_reader :front_color
|
80
|
-
|
81
|
-
sig do
|
82
|
-
params(
|
83
|
-
front_color:
|
84
|
-
Increase::PhysicalCardProfileCreateParams::FrontColor::OrSymbol
|
85
|
-
).void
|
86
|
-
end
|
87
|
-
attr_writer :front_color
|
88
|
-
|
89
37
|
# Text printed on the front of the card. Reach out to
|
90
38
|
# [support@increase.com](mailto:support@increase.com) for more information.
|
91
39
|
sig do
|
@@ -108,12 +56,6 @@ module Increase
|
|
108
56
|
description: String,
|
109
57
|
front_image_file_id: String,
|
110
58
|
program_id: String,
|
111
|
-
back_color:
|
112
|
-
Increase::PhysicalCardProfileCreateParams::BackColor::OrSymbol,
|
113
|
-
card_stock_reference: String,
|
114
|
-
carrier_stock_reference: String,
|
115
|
-
front_color:
|
116
|
-
Increase::PhysicalCardProfileCreateParams::FrontColor::OrSymbol,
|
117
59
|
front_text:
|
118
60
|
Increase::PhysicalCardProfileCreateParams::FrontText::OrHash,
|
119
61
|
request_options: Increase::RequestOptions::OrHash
|
@@ -130,16 +72,6 @@ module Increase
|
|
130
72
|
front_image_file_id:,
|
131
73
|
# The identifier for the Program that this Physical Card Profile falls under.
|
132
74
|
program_id:,
|
133
|
-
# The color of the text on the back of the card. Defaults to "black".
|
134
|
-
back_color: nil,
|
135
|
-
# A reference ID provided by the fulfillment provider for the card stock used.
|
136
|
-
# Only used if you've ordered card stock separately.
|
137
|
-
card_stock_reference: nil,
|
138
|
-
# A reference ID provided by the fulfillment provider for the carrier stock used.
|
139
|
-
# Only used if you've ordered carrier stock separately.
|
140
|
-
carrier_stock_reference: nil,
|
141
|
-
# The color of the design on the front of the card. Defaults to "black".
|
142
|
-
front_color: nil,
|
143
75
|
# Text printed on the front of the card. Reach out to
|
144
76
|
# [support@increase.com](mailto:support@increase.com) for more information.
|
145
77
|
front_text: nil,
|
@@ -155,12 +87,6 @@ module Increase
|
|
155
87
|
description: String,
|
156
88
|
front_image_file_id: String,
|
157
89
|
program_id: String,
|
158
|
-
back_color:
|
159
|
-
Increase::PhysicalCardProfileCreateParams::BackColor::OrSymbol,
|
160
|
-
card_stock_reference: String,
|
161
|
-
carrier_stock_reference: String,
|
162
|
-
front_color:
|
163
|
-
Increase::PhysicalCardProfileCreateParams::FrontColor::OrSymbol,
|
164
90
|
front_text: Increase::PhysicalCardProfileCreateParams::FrontText,
|
165
91
|
request_options: Increase::RequestOptions
|
166
92
|
}
|
@@ -169,76 +95,6 @@ module Increase
|
|
169
95
|
def to_hash
|
170
96
|
end
|
171
97
|
|
172
|
-
# The color of the text on the back of the card. Defaults to "black".
|
173
|
-
module BackColor
|
174
|
-
extend Increase::Internal::Type::Enum
|
175
|
-
|
176
|
-
TaggedSymbol =
|
177
|
-
T.type_alias do
|
178
|
-
T.all(Symbol, Increase::PhysicalCardProfileCreateParams::BackColor)
|
179
|
-
end
|
180
|
-
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
181
|
-
|
182
|
-
# Black personalization color.
|
183
|
-
BLACK =
|
184
|
-
T.let(
|
185
|
-
:black,
|
186
|
-
Increase::PhysicalCardProfileCreateParams::BackColor::TaggedSymbol
|
187
|
-
)
|
188
|
-
|
189
|
-
# White personalization color.
|
190
|
-
WHITE =
|
191
|
-
T.let(
|
192
|
-
:white,
|
193
|
-
Increase::PhysicalCardProfileCreateParams::BackColor::TaggedSymbol
|
194
|
-
)
|
195
|
-
|
196
|
-
sig do
|
197
|
-
override.returns(
|
198
|
-
T::Array[
|
199
|
-
Increase::PhysicalCardProfileCreateParams::BackColor::TaggedSymbol
|
200
|
-
]
|
201
|
-
)
|
202
|
-
end
|
203
|
-
def self.values
|
204
|
-
end
|
205
|
-
end
|
206
|
-
|
207
|
-
# The color of the design on the front of the card. Defaults to "black".
|
208
|
-
module FrontColor
|
209
|
-
extend Increase::Internal::Type::Enum
|
210
|
-
|
211
|
-
TaggedSymbol =
|
212
|
-
T.type_alias do
|
213
|
-
T.all(Symbol, Increase::PhysicalCardProfileCreateParams::FrontColor)
|
214
|
-
end
|
215
|
-
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
216
|
-
|
217
|
-
# Black personalization color.
|
218
|
-
BLACK =
|
219
|
-
T.let(
|
220
|
-
:black,
|
221
|
-
Increase::PhysicalCardProfileCreateParams::FrontColor::TaggedSymbol
|
222
|
-
)
|
223
|
-
|
224
|
-
# White personalization color.
|
225
|
-
WHITE =
|
226
|
-
T.let(
|
227
|
-
:white,
|
228
|
-
Increase::PhysicalCardProfileCreateParams::FrontColor::TaggedSymbol
|
229
|
-
)
|
230
|
-
|
231
|
-
sig do
|
232
|
-
override.returns(
|
233
|
-
T::Array[
|
234
|
-
Increase::PhysicalCardProfileCreateParams::FrontColor::TaggedSymbol
|
235
|
-
]
|
236
|
-
)
|
237
|
-
end
|
238
|
-
def self.values
|
239
|
-
end
|
240
|
-
end
|
241
|
-
|
242
98
|
class FrontText < Increase::Internal::Type::BaseModel
|
243
99
|
OrHash =
|
244
100
|
T.type_alias do
|
@@ -1855,7 +1855,7 @@ module Increase
|
|
1855
1855
|
Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Visa::ElectronicCommerceIndicator::TaggedSymbol
|
1856
1856
|
)
|
1857
1857
|
|
1858
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
1858
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
1859
1859
|
NON_AUTHENTICATED_SECURITY_TRANSACTION =
|
1860
1860
|
T.let(
|
1861
1861
|
:non_authenticated_security_transaction,
|
@@ -4048,7 +4048,7 @@ module Increase
|
|
4048
4048
|
Increase::Transaction::Source::CardFinancial::NetworkDetails::Visa::ElectronicCommerceIndicator::TaggedSymbol
|
4049
4049
|
)
|
4050
4050
|
|
4051
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
4051
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
4052
4052
|
NON_AUTHENTICATED_SECURITY_TRANSACTION =
|
4053
4053
|
T.let(
|
4054
4054
|
:non_authenticated_security_transaction,
|
@@ -11,12 +11,6 @@ module Increase
|
|
11
11
|
description: String,
|
12
12
|
front_image_file_id: String,
|
13
13
|
program_id: String,
|
14
|
-
back_color:
|
15
|
-
Increase::PhysicalCardProfileCreateParams::BackColor::OrSymbol,
|
16
|
-
card_stock_reference: String,
|
17
|
-
carrier_stock_reference: String,
|
18
|
-
front_color:
|
19
|
-
Increase::PhysicalCardProfileCreateParams::FrontColor::OrSymbol,
|
20
14
|
front_text:
|
21
15
|
Increase::PhysicalCardProfileCreateParams::FrontText::OrHash,
|
22
16
|
request_options: Increase::RequestOptions::OrHash
|
@@ -33,16 +27,6 @@ module Increase
|
|
33
27
|
front_image_file_id:,
|
34
28
|
# The identifier for the Program that this Physical Card Profile falls under.
|
35
29
|
program_id:,
|
36
|
-
# The color of the text on the back of the card. Defaults to "black".
|
37
|
-
back_color: nil,
|
38
|
-
# A reference ID provided by the fulfillment provider for the card stock used.
|
39
|
-
# Only used if you've ordered card stock separately.
|
40
|
-
card_stock_reference: nil,
|
41
|
-
# A reference ID provided by the fulfillment provider for the carrier stock used.
|
42
|
-
# Only used if you've ordered carrier stock separately.
|
43
|
-
carrier_stock_reference: nil,
|
44
|
-
# The color of the design on the front of the card. Defaults to "black".
|
45
|
-
front_color: nil,
|
46
30
|
# Text printed on the front of the card. Reach out to
|
47
31
|
# [support@increase.com](mailto:support@increase.com) for more information.
|
48
32
|
front_text: nil,
|
@@ -898,7 +898,7 @@ module Increase
|
|
898
898
|
# Non-authenticated security transaction at a 3-D Secure-capable merchant, and merchant attempted to authenticate the cardholder using 3-D Secure: Use to identify an electronic commerce transaction where the merchant attempted to authenticate the cardholder using 3-D Secure, but was unable to complete the authentication because the issuer or cardholder does not participate in the 3-D Secure program.
|
899
899
|
NON_AUTHENTICATED_SECURITY_TRANSACTION_AT_3DS_CAPABLE_MERCHANT: :non_authenticated_security_transaction_at_3ds_capable_merchant
|
900
900
|
|
901
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
901
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
902
902
|
NON_AUTHENTICATED_SECURITY_TRANSACTION: :non_authenticated_security_transaction
|
903
903
|
|
904
904
|
# Non-secure transaction: Use to identify an electronic commerce transaction that has no data protection.
|
@@ -1756,7 +1756,7 @@ module Increase
|
|
1756
1756
|
# Non-authenticated security transaction at a 3-D Secure-capable merchant, and merchant attempted to authenticate the cardholder using 3-D Secure: Use to identify an electronic commerce transaction where the merchant attempted to authenticate the cardholder using 3-D Secure, but was unable to complete the authentication because the issuer or cardholder does not participate in the 3-D Secure program.
|
1757
1757
|
NON_AUTHENTICATED_SECURITY_TRANSACTION_AT_3DS_CAPABLE_MERCHANT: :non_authenticated_security_transaction_at_3ds_capable_merchant
|
1758
1758
|
|
1759
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
1759
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
1760
1760
|
NON_AUTHENTICATED_SECURITY_TRANSACTION: :non_authenticated_security_transaction
|
1761
1761
|
|
1762
1762
|
# Non-secure transaction: Use to identify an electronic commerce transaction that has no data protection.
|
@@ -5363,7 +5363,7 @@ module Increase
|
|
5363
5363
|
# Non-authenticated security transaction at a 3-D Secure-capable merchant, and merchant attempted to authenticate the cardholder using 3-D Secure: Use to identify an electronic commerce transaction where the merchant attempted to authenticate the cardholder using 3-D Secure, but was unable to complete the authentication because the issuer or cardholder does not participate in the 3-D Secure program.
|
5364
5364
|
NON_AUTHENTICATED_SECURITY_TRANSACTION_AT_3DS_CAPABLE_MERCHANT: :non_authenticated_security_transaction_at_3ds_capable_merchant
|
5365
5365
|
|
5366
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
5366
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
5367
5367
|
NON_AUTHENTICATED_SECURITY_TRANSACTION: :non_authenticated_security_transaction
|
5368
5368
|
|
5369
5369
|
# Non-secure transaction: Use to identify an electronic commerce transaction that has no data protection.
|
@@ -785,7 +785,7 @@ module Increase
|
|
785
785
|
# Non-authenticated security transaction at a 3-D Secure-capable merchant, and merchant attempted to authenticate the cardholder using 3-D Secure: Use to identify an electronic commerce transaction where the merchant attempted to authenticate the cardholder using 3-D Secure, but was unable to complete the authentication because the issuer or cardholder does not participate in the 3-D Secure program.
|
786
786
|
NON_AUTHENTICATED_SECURITY_TRANSACTION_AT_3DS_CAPABLE_MERCHANT: :non_authenticated_security_transaction_at_3ds_capable_merchant
|
787
787
|
|
788
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
788
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
789
789
|
NON_AUTHENTICATED_SECURITY_TRANSACTION: :non_authenticated_security_transaction
|
790
790
|
|
791
791
|
# Non-secure transaction: Use to identify an electronic commerce transaction that has no data protection.
|
@@ -746,7 +746,7 @@ module Increase
|
|
746
746
|
# Non-authenticated security transaction at a 3-D Secure-capable merchant, and merchant attempted to authenticate the cardholder using 3-D Secure: Use to identify an electronic commerce transaction where the merchant attempted to authenticate the cardholder using 3-D Secure, but was unable to complete the authentication because the issuer or cardholder does not participate in the 3-D Secure program.
|
747
747
|
NON_AUTHENTICATED_SECURITY_TRANSACTION_AT_3DS_CAPABLE_MERCHANT: :non_authenticated_security_transaction_at_3ds_capable_merchant
|
748
748
|
|
749
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
749
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
750
750
|
NON_AUTHENTICATED_SECURITY_TRANSACTION: :non_authenticated_security_transaction
|
751
751
|
|
752
752
|
# Non-secure transaction: Use to identify an electronic commerce transaction that has no data protection.
|
@@ -7,10 +7,6 @@ module Increase
|
|
7
7
|
description: String,
|
8
8
|
front_image_file_id: String,
|
9
9
|
program_id: String,
|
10
|
-
back_color: Increase::Models::PhysicalCardProfileCreateParams::back_color,
|
11
|
-
card_stock_reference: String,
|
12
|
-
carrier_stock_reference: String,
|
13
|
-
front_color: Increase::Models::PhysicalCardProfileCreateParams::front_color,
|
14
10
|
front_text: Increase::PhysicalCardProfileCreateParams::FrontText
|
15
11
|
}
|
16
12
|
& Increase::Internal::Type::request_parameters
|
@@ -29,26 +25,6 @@ module Increase
|
|
29
25
|
|
30
26
|
attr_accessor program_id: String
|
31
27
|
|
32
|
-
attr_reader back_color: Increase::Models::PhysicalCardProfileCreateParams::back_color?
|
33
|
-
|
34
|
-
def back_color=: (
|
35
|
-
Increase::Models::PhysicalCardProfileCreateParams::back_color
|
36
|
-
) -> Increase::Models::PhysicalCardProfileCreateParams::back_color
|
37
|
-
|
38
|
-
attr_reader card_stock_reference: String?
|
39
|
-
|
40
|
-
def card_stock_reference=: (String) -> String
|
41
|
-
|
42
|
-
attr_reader carrier_stock_reference: String?
|
43
|
-
|
44
|
-
def carrier_stock_reference=: (String) -> String
|
45
|
-
|
46
|
-
attr_reader front_color: Increase::Models::PhysicalCardProfileCreateParams::front_color?
|
47
|
-
|
48
|
-
def front_color=: (
|
49
|
-
Increase::Models::PhysicalCardProfileCreateParams::front_color
|
50
|
-
) -> Increase::Models::PhysicalCardProfileCreateParams::front_color
|
51
|
-
|
52
28
|
attr_reader front_text: Increase::PhysicalCardProfileCreateParams::FrontText?
|
53
29
|
|
54
30
|
def front_text=: (
|
@@ -61,10 +37,6 @@ module Increase
|
|
61
37
|
description: String,
|
62
38
|
front_image_file_id: String,
|
63
39
|
program_id: String,
|
64
|
-
?back_color: Increase::Models::PhysicalCardProfileCreateParams::back_color,
|
65
|
-
?card_stock_reference: String,
|
66
|
-
?carrier_stock_reference: String,
|
67
|
-
?front_color: Increase::Models::PhysicalCardProfileCreateParams::front_color,
|
68
40
|
?front_text: Increase::PhysicalCardProfileCreateParams::FrontText,
|
69
41
|
?request_options: Increase::request_opts
|
70
42
|
) -> void
|
@@ -75,42 +47,10 @@ module Increase
|
|
75
47
|
description: String,
|
76
48
|
front_image_file_id: String,
|
77
49
|
program_id: String,
|
78
|
-
back_color: Increase::Models::PhysicalCardProfileCreateParams::back_color,
|
79
|
-
card_stock_reference: String,
|
80
|
-
carrier_stock_reference: String,
|
81
|
-
front_color: Increase::Models::PhysicalCardProfileCreateParams::front_color,
|
82
50
|
front_text: Increase::PhysicalCardProfileCreateParams::FrontText,
|
83
51
|
request_options: Increase::RequestOptions
|
84
52
|
}
|
85
53
|
|
86
|
-
type back_color = :black | :white
|
87
|
-
|
88
|
-
module BackColor
|
89
|
-
extend Increase::Internal::Type::Enum
|
90
|
-
|
91
|
-
# Black personalization color.
|
92
|
-
BLACK: :black
|
93
|
-
|
94
|
-
# White personalization color.
|
95
|
-
WHITE: :white
|
96
|
-
|
97
|
-
def self?.values: -> ::Array[Increase::Models::PhysicalCardProfileCreateParams::back_color]
|
98
|
-
end
|
99
|
-
|
100
|
-
type front_color = :black | :white
|
101
|
-
|
102
|
-
module FrontColor
|
103
|
-
extend Increase::Internal::Type::Enum
|
104
|
-
|
105
|
-
# Black personalization color.
|
106
|
-
BLACK: :black
|
107
|
-
|
108
|
-
# White personalization color.
|
109
|
-
WHITE: :white
|
110
|
-
|
111
|
-
def self?.values: -> ::Array[Increase::Models::PhysicalCardProfileCreateParams::front_color]
|
112
|
-
end
|
113
|
-
|
114
54
|
type front_text = { :line1 => String, :line2 => String }
|
115
55
|
|
116
56
|
class FrontText < Increase::Internal::Type::BaseModel
|
@@ -604,7 +604,7 @@ module Increase
|
|
604
604
|
# Non-authenticated security transaction at a 3-D Secure-capable merchant, and merchant attempted to authenticate the cardholder using 3-D Secure: Use to identify an electronic commerce transaction where the merchant attempted to authenticate the cardholder using 3-D Secure, but was unable to complete the authentication because the issuer or cardholder does not participate in the 3-D Secure program.
|
605
605
|
NON_AUTHENTICATED_SECURITY_TRANSACTION_AT_3DS_CAPABLE_MERCHANT: :non_authenticated_security_transaction_at_3ds_capable_merchant
|
606
606
|
|
607
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
607
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
608
608
|
NON_AUTHENTICATED_SECURITY_TRANSACTION: :non_authenticated_security_transaction
|
609
609
|
|
610
610
|
# Non-secure transaction: Use to identify an electronic commerce transaction that has no data protection.
|
@@ -1361,7 +1361,7 @@ module Increase
|
|
1361
1361
|
# Non-authenticated security transaction at a 3-D Secure-capable merchant, and merchant attempted to authenticate the cardholder using 3-D Secure: Use to identify an electronic commerce transaction where the merchant attempted to authenticate the cardholder using 3-D Secure, but was unable to complete the authentication because the issuer or cardholder does not participate in the 3-D Secure program.
|
1362
1362
|
NON_AUTHENTICATED_SECURITY_TRANSACTION_AT_3DS_CAPABLE_MERCHANT: :non_authenticated_security_transaction_at_3ds_capable_merchant
|
1363
1363
|
|
1364
|
-
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however
|
1364
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however, cardholder authentication is not performed using 3-D Secure.
|
1365
1365
|
NON_AUTHENTICATED_SECURITY_TRANSACTION: :non_authenticated_security_transaction
|
1366
1366
|
|
1367
1367
|
# Non-secure transaction: Use to identify an electronic commerce transaction that has no data protection.
|
@@ -7,10 +7,6 @@ module Increase
|
|
7
7
|
description: String,
|
8
8
|
front_image_file_id: String,
|
9
9
|
program_id: String,
|
10
|
-
?back_color: Increase::Models::PhysicalCardProfileCreateParams::back_color,
|
11
|
-
?card_stock_reference: String,
|
12
|
-
?carrier_stock_reference: String,
|
13
|
-
?front_color: Increase::Models::PhysicalCardProfileCreateParams::front_color,
|
14
10
|
?front_text: Increase::PhysicalCardProfileCreateParams::FrontText,
|
15
11
|
?request_options: Increase::request_opts
|
16
12
|
) -> Increase::PhysicalCardProfile
|