increase 1.20.0 → 1.22.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 +21 -0
- data/README.md +1 -1
- data/lib/increase/internal/transport/base_client.rb +1 -1
- data/lib/increase/models/card_payment.rb +10 -1
- data/lib/increase/models/declined_transaction.rb +10 -1
- data/lib/increase/models/physical_card_profile_clone_params.rb +9 -1
- data/lib/increase/resources/physical_card_profiles.rb +3 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/internal/transport/base_client.rbi +1 -1
- data/rbi/increase/models/card_payment.rbi +10 -0
- data/rbi/increase/models/declined_transaction.rbi +10 -0
- data/rbi/increase/models/physical_card_profile_clone_params.rbi +11 -0
- data/rbi/increase/resources/physical_card_profiles.rbi +3 -0
- data/sig/increase/internal/transport/base_client.rbs +1 -1
- data/sig/increase/models/card_payment.rbs +5 -0
- data/sig/increase/models/declined_transaction.rbs +5 -0
- data/sig/increase/models/physical_card_profile_clone_params.rbs +8 -1
- data/sig/increase/resources/physical_card_profiles.rbs +1 -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: eb491c65d1f55e747b76568f0a3fb5d466112fb93137654b3fb8a54205f405f0
|
4
|
+
data.tar.gz: 01ed005d0894e359a6b166297b4e30a0e792f2e3bbe898d772500049330d357f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25872ee275f37c812cbd7a2abff301b1ecb011c4eaa68ac7fd421890fb32943b831cef8a27432335c22c0a70f6561f6a40a3aeb70d7e50e241ae90e0cf06ffa7
|
7
|
+
data.tar.gz: 6988f2aa085d8c463cfc5b111aeef138b260b5ec3fc5f64ffe4a8ce8620ebe09a6ea825ec77b36f0f0118a745a84cc92f2b3d74b82d1c1d110167de77da7c55d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.22.0 (2025-08-01)
|
4
|
+
|
5
|
+
Full Changelog: [v1.21.0...v1.22.0](https://github.com/Increase/increase-ruby/compare/v1.21.0...v1.22.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([7be51b2](https://github.com/Increase/increase-ruby/commit/7be51b29bbd7029482f6048e2fefc70fbf2b4163))
|
10
|
+
|
11
|
+
|
12
|
+
### Chores
|
13
|
+
|
14
|
+
* **internal:** increase visibility of internal helper method ([ac6bbf0](https://github.com/Increase/increase-ruby/commit/ac6bbf06ad0adedc4d3ad1e6549ddf437db09995))
|
15
|
+
|
16
|
+
## 1.21.0 (2025-07-29)
|
17
|
+
|
18
|
+
Full Changelog: [v1.20.0...v1.21.0](https://github.com/Increase/increase-ruby/compare/v1.20.0...v1.21.0)
|
19
|
+
|
20
|
+
### Features
|
21
|
+
|
22
|
+
* **api:** api update ([8aa37f3](https://github.com/Increase/increase-ruby/commit/8aa37f3f48a32970bb8b33df798b30deaf30db2c))
|
23
|
+
|
3
24
|
## 1.20.0 (2025-07-29)
|
4
25
|
|
5
26
|
Full Changelog: [v1.19.0...v1.20.0](https://github.com/Increase/increase-ruby/compare/v1.19.0...v1.20.0)
|
data/README.md
CHANGED
@@ -365,7 +365,7 @@ module Increase
|
|
365
365
|
#
|
366
366
|
# @raise [Increase::Errors::APIError]
|
367
367
|
# @return [Array(Integer, Net::HTTPResponse, Enumerable<String>)]
|
368
|
-
|
368
|
+
def send_request(request, redirect_count:, retry_count:, send_retry_header:)
|
369
369
|
url, headers, max_retries, timeout = request.fetch_values(:url, :headers, :max_retries, :timeout)
|
370
370
|
input = {**request.except(:timeout), deadline: Increase::Internal::Util.monotonic_secs + timeout}
|
371
371
|
|
@@ -1932,6 +1932,13 @@ module Increase
|
|
1932
1932
|
# @return [Symbol, Increase::Models::CardPayment::Element::CardDecline::Direction]
|
1933
1933
|
required :direction, enum: -> { Increase::CardPayment::Element::CardDecline::Direction }
|
1934
1934
|
|
1935
|
+
# @!attribute incremented_card_authorization_id
|
1936
|
+
# The identifier of the card authorization this request attempted to incrementally
|
1937
|
+
# authorize.
|
1938
|
+
#
|
1939
|
+
# @return [String, nil]
|
1940
|
+
required :incremented_card_authorization_id, String, nil?: true
|
1941
|
+
|
1935
1942
|
# @!attribute merchant_acceptor_id
|
1936
1943
|
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
1937
1944
|
# is transacting with.
|
@@ -2062,7 +2069,7 @@ module Increase
|
|
2062
2069
|
# @return [Increase::Models::CardPayment::Element::CardDecline::Verification]
|
2063
2070
|
required :verification, -> { Increase::CardPayment::Element::CardDecline::Verification }
|
2064
2071
|
|
2065
|
-
# @!method initialize(id:, actioner:, additional_amounts:, amount:, card_payment_id:, currency:, declined_transaction_id:, digital_wallet_token_id:, direction:, merchant_acceptor_id:, merchant_category_code:, merchant_city:, merchant_country:, merchant_descriptor:, merchant_postal_code:, merchant_state:, network_details:, network_identifiers:, network_risk_score:, physical_card_id:, presentment_amount:, presentment_currency:, processing_category:, real_time_decision_id:, real_time_decision_reason:, reason:, terminal_id:, verification:)
|
2072
|
+
# @!method initialize(id:, actioner:, additional_amounts:, amount:, card_payment_id:, currency:, declined_transaction_id:, digital_wallet_token_id:, direction:, incremented_card_authorization_id:, merchant_acceptor_id:, merchant_category_code:, merchant_city:, merchant_country:, merchant_descriptor:, merchant_postal_code:, merchant_state:, network_details:, network_identifiers:, network_risk_score:, physical_card_id:, presentment_amount:, presentment_currency:, processing_category:, real_time_decision_id:, real_time_decision_reason:, reason:, terminal_id:, verification:)
|
2066
2073
|
# Some parameter documentations has been truncated, see
|
2067
2074
|
# {Increase::Models::CardPayment::Element::CardDecline} for more details.
|
2068
2075
|
#
|
@@ -2087,6 +2094,8 @@ module Increase
|
|
2087
2094
|
#
|
2088
2095
|
# @param direction [Symbol, Increase::Models::CardPayment::Element::CardDecline::Direction] The direction describes the direction the funds will move, either from the cardh
|
2089
2096
|
#
|
2097
|
+
# @param incremented_card_authorization_id [String, nil] The identifier of the card authorization this request attempted to incrementally
|
2098
|
+
#
|
2090
2099
|
# @param merchant_acceptor_id [String] The merchant identifier (commonly abbreviated as MID) of the merchant the card i
|
2091
2100
|
#
|
2092
2101
|
# @param merchant_category_code [String] The Merchant Category Code (commonly abbreviated as MCC) of the merchant the car
|
@@ -489,6 +489,13 @@ module Increase
|
|
489
489
|
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::Direction]
|
490
490
|
required :direction, enum: -> { Increase::DeclinedTransaction::Source::CardDecline::Direction }
|
491
491
|
|
492
|
+
# @!attribute incremented_card_authorization_id
|
493
|
+
# The identifier of the card authorization this request attempted to incrementally
|
494
|
+
# authorize.
|
495
|
+
#
|
496
|
+
# @return [String, nil]
|
497
|
+
required :incremented_card_authorization_id, String, nil?: true
|
498
|
+
|
492
499
|
# @!attribute merchant_acceptor_id
|
493
500
|
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
494
501
|
# is transacting with.
|
@@ -617,7 +624,7 @@ module Increase
|
|
617
624
|
# @return [Increase::Models::DeclinedTransaction::Source::CardDecline::Verification]
|
618
625
|
required :verification, -> { Increase::DeclinedTransaction::Source::CardDecline::Verification }
|
619
626
|
|
620
|
-
# @!method initialize(id:, actioner:, additional_amounts:, amount:, card_payment_id:, currency:, declined_transaction_id:, digital_wallet_token_id:, direction:, merchant_acceptor_id:, merchant_category_code:, merchant_city:, merchant_country:, merchant_descriptor:, merchant_postal_code:, merchant_state:, network_details:, network_identifiers:, network_risk_score:, physical_card_id:, presentment_amount:, presentment_currency:, processing_category:, real_time_decision_id:, real_time_decision_reason:, reason:, terminal_id:, verification:)
|
627
|
+
# @!method initialize(id:, actioner:, additional_amounts:, amount:, card_payment_id:, currency:, declined_transaction_id:, digital_wallet_token_id:, direction:, incremented_card_authorization_id:, merchant_acceptor_id:, merchant_category_code:, merchant_city:, merchant_country:, merchant_descriptor:, merchant_postal_code:, merchant_state:, network_details:, network_identifiers:, network_risk_score:, physical_card_id:, presentment_amount:, presentment_currency:, processing_category:, real_time_decision_id:, real_time_decision_reason:, reason:, terminal_id:, verification:)
|
621
628
|
# Some parameter documentations has been truncated, see
|
622
629
|
# {Increase::Models::DeclinedTransaction::Source::CardDecline} for more details.
|
623
630
|
#
|
@@ -642,6 +649,8 @@ module Increase
|
|
642
649
|
#
|
643
650
|
# @param direction [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::Direction] The direction describes the direction the funds will move, either from the cardh
|
644
651
|
#
|
652
|
+
# @param incremented_card_authorization_id [String, nil] The identifier of the card authorization this request attempted to incrementally
|
653
|
+
#
|
645
654
|
# @param merchant_acceptor_id [String] The merchant identifier (commonly abbreviated as MID) of the merchant the card i
|
646
655
|
#
|
647
656
|
# @param merchant_category_code [String] The Merchant Category Code (commonly abbreviated as MCC) of the merchant the car
|
@@ -38,7 +38,13 @@ module Increase
|
|
38
38
|
# @return [Increase::Models::PhysicalCardProfileCloneParams::FrontText, nil]
|
39
39
|
optional :front_text, -> { Increase::PhysicalCardProfileCloneParams::FrontText }
|
40
40
|
|
41
|
-
# @!
|
41
|
+
# @!attribute program_id
|
42
|
+
# The identifier of the Program to use for the cloned Physical Card Profile.
|
43
|
+
#
|
44
|
+
# @return [String, nil]
|
45
|
+
optional :program_id, String
|
46
|
+
|
47
|
+
# @!method initialize(carrier_image_file_id: nil, contact_phone: nil, description: nil, front_image_file_id: nil, front_text: nil, program_id: nil, request_options: {})
|
42
48
|
# Some parameter documentations has been truncated, see
|
43
49
|
# {Increase::Models::PhysicalCardProfileCloneParams} for more details.
|
44
50
|
#
|
@@ -52,6 +58,8 @@ module Increase
|
|
52
58
|
#
|
53
59
|
# @param front_text [Increase::Models::PhysicalCardProfileCloneParams::FrontText] Text printed on the front of the card. Reach out to [support@increase.com](mailt
|
54
60
|
#
|
61
|
+
# @param program_id [String] The identifier of the Program to use for the cloned Physical Card Profile.
|
62
|
+
#
|
55
63
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
56
64
|
|
57
65
|
class FrontText < Increase::Internal::Type::BaseModel
|
@@ -115,7 +115,7 @@ module Increase
|
|
115
115
|
#
|
116
116
|
# Clone a Physical Card Profile
|
117
117
|
#
|
118
|
-
# @overload clone_(physical_card_profile_id, carrier_image_file_id: nil, contact_phone: nil, description: nil, front_image_file_id: nil, front_text: nil, request_options: {})
|
118
|
+
# @overload clone_(physical_card_profile_id, carrier_image_file_id: nil, contact_phone: nil, description: nil, front_image_file_id: nil, front_text: nil, program_id: nil, request_options: {})
|
119
119
|
#
|
120
120
|
# @param physical_card_profile_id [String] The identifier of the Physical Card Profile to clone.
|
121
121
|
#
|
@@ -129,6 +129,8 @@ module Increase
|
|
129
129
|
#
|
130
130
|
# @param front_text [Increase::Models::PhysicalCardProfileCloneParams::FrontText] Text printed on the front of the card. Reach out to [support@increase.com](mailt
|
131
131
|
#
|
132
|
+
# @param program_id [String] The identifier of the Program to use for the cloned Physical Card Profile.
|
133
|
+
#
|
132
134
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
|
133
135
|
#
|
134
136
|
# @return [Increase::Models::PhysicalCardProfile]
|
data/lib/increase/version.rb
CHANGED
@@ -3585,6 +3585,11 @@ module Increase
|
|
3585
3585
|
end
|
3586
3586
|
attr_accessor :direction
|
3587
3587
|
|
3588
|
+
# The identifier of the card authorization this request attempted to incrementally
|
3589
|
+
# authorize.
|
3590
|
+
sig { returns(T.nilable(String)) }
|
3591
|
+
attr_accessor :incremented_card_authorization_id
|
3592
|
+
|
3588
3593
|
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
3589
3594
|
# is transacting with.
|
3590
3595
|
sig { returns(String) }
|
@@ -3734,6 +3739,7 @@ module Increase
|
|
3734
3739
|
digital_wallet_token_id: T.nilable(String),
|
3735
3740
|
direction:
|
3736
3741
|
Increase::CardPayment::Element::CardDecline::Direction::OrSymbol,
|
3742
|
+
incremented_card_authorization_id: T.nilable(String),
|
3737
3743
|
merchant_acceptor_id: String,
|
3738
3744
|
merchant_category_code: String,
|
3739
3745
|
merchant_city: T.nilable(String),
|
@@ -3789,6 +3795,9 @@ module Increase
|
|
3789
3795
|
# The direction describes the direction the funds will move, either from the
|
3790
3796
|
# cardholder to the merchant or from the merchant to the cardholder.
|
3791
3797
|
direction:,
|
3798
|
+
# The identifier of the card authorization this request attempted to incrementally
|
3799
|
+
# authorize.
|
3800
|
+
incremented_card_authorization_id:,
|
3792
3801
|
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
3793
3802
|
# is transacting with.
|
3794
3803
|
merchant_acceptor_id:,
|
@@ -3856,6 +3865,7 @@ module Increase
|
|
3856
3865
|
digital_wallet_token_id: T.nilable(String),
|
3857
3866
|
direction:
|
3858
3867
|
Increase::CardPayment::Element::CardDecline::Direction::TaggedSymbol,
|
3868
|
+
incremented_card_authorization_id: T.nilable(String),
|
3859
3869
|
merchant_acceptor_id: String,
|
3860
3870
|
merchant_category_code: String,
|
3861
3871
|
merchant_city: T.nilable(String),
|
@@ -828,6 +828,11 @@ module Increase
|
|
828
828
|
end
|
829
829
|
attr_accessor :direction
|
830
830
|
|
831
|
+
# The identifier of the card authorization this request attempted to incrementally
|
832
|
+
# authorize.
|
833
|
+
sig { returns(T.nilable(String)) }
|
834
|
+
attr_accessor :incremented_card_authorization_id
|
835
|
+
|
831
836
|
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
832
837
|
# is transacting with.
|
833
838
|
sig { returns(String) }
|
@@ -981,6 +986,7 @@ module Increase
|
|
981
986
|
digital_wallet_token_id: T.nilable(String),
|
982
987
|
direction:
|
983
988
|
Increase::DeclinedTransaction::Source::CardDecline::Direction::OrSymbol,
|
989
|
+
incremented_card_authorization_id: T.nilable(String),
|
984
990
|
merchant_acceptor_id: String,
|
985
991
|
merchant_category_code: String,
|
986
992
|
merchant_city: T.nilable(String),
|
@@ -1036,6 +1042,9 @@ module Increase
|
|
1036
1042
|
# The direction describes the direction the funds will move, either from the
|
1037
1043
|
# cardholder to the merchant or from the merchant to the cardholder.
|
1038
1044
|
direction:,
|
1045
|
+
# The identifier of the card authorization this request attempted to incrementally
|
1046
|
+
# authorize.
|
1047
|
+
incremented_card_authorization_id:,
|
1039
1048
|
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
1040
1049
|
# is transacting with.
|
1041
1050
|
merchant_acceptor_id:,
|
@@ -1103,6 +1112,7 @@ module Increase
|
|
1103
1112
|
digital_wallet_token_id: T.nilable(String),
|
1104
1113
|
direction:
|
1105
1114
|
Increase::DeclinedTransaction::Source::CardDecline::Direction::TaggedSymbol,
|
1115
|
+
incremented_card_authorization_id: T.nilable(String),
|
1106
1116
|
merchant_acceptor_id: String,
|
1107
1117
|
merchant_category_code: String,
|
1108
1118
|
merchant_city: T.nilable(String),
|
@@ -57,6 +57,13 @@ module Increase
|
|
57
57
|
end
|
58
58
|
attr_writer :front_text
|
59
59
|
|
60
|
+
# The identifier of the Program to use for the cloned Physical Card Profile.
|
61
|
+
sig { returns(T.nilable(String)) }
|
62
|
+
attr_reader :program_id
|
63
|
+
|
64
|
+
sig { params(program_id: String).void }
|
65
|
+
attr_writer :program_id
|
66
|
+
|
60
67
|
sig do
|
61
68
|
params(
|
62
69
|
carrier_image_file_id: String,
|
@@ -65,6 +72,7 @@ module Increase
|
|
65
72
|
front_image_file_id: String,
|
66
73
|
front_text:
|
67
74
|
Increase::PhysicalCardProfileCloneParams::FrontText::OrHash,
|
75
|
+
program_id: String,
|
68
76
|
request_options: Increase::RequestOptions::OrHash
|
69
77
|
).returns(T.attached_class)
|
70
78
|
end
|
@@ -80,6 +88,8 @@ module Increase
|
|
80
88
|
# Text printed on the front of the card. Reach out to
|
81
89
|
# [support@increase.com](mailto:support@increase.com) for more information.
|
82
90
|
front_text: nil,
|
91
|
+
# The identifier of the Program to use for the cloned Physical Card Profile.
|
92
|
+
program_id: nil,
|
83
93
|
request_options: {}
|
84
94
|
)
|
85
95
|
end
|
@@ -92,6 +102,7 @@ module Increase
|
|
92
102
|
description: String,
|
93
103
|
front_image_file_id: String,
|
94
104
|
front_text: Increase::PhysicalCardProfileCloneParams::FrontText,
|
105
|
+
program_id: String,
|
95
106
|
request_options: Increase::RequestOptions
|
96
107
|
}
|
97
108
|
)
|
@@ -98,6 +98,7 @@ module Increase
|
|
98
98
|
front_image_file_id: String,
|
99
99
|
front_text:
|
100
100
|
Increase::PhysicalCardProfileCloneParams::FrontText::OrHash,
|
101
|
+
program_id: String,
|
101
102
|
request_options: Increase::RequestOptions::OrHash
|
102
103
|
).returns(Increase::PhysicalCardProfile)
|
103
104
|
end
|
@@ -115,6 +116,8 @@ module Increase
|
|
115
116
|
# Text printed on the front of the card. Reach out to
|
116
117
|
# [support@increase.com](mailto:support@increase.com) for more information.
|
117
118
|
front_text: nil,
|
119
|
+
# The identifier of the Program to use for the cloned Physical Card Profile.
|
120
|
+
program_id: nil,
|
118
121
|
request_options: {}
|
119
122
|
)
|
120
123
|
end
|
@@ -1300,6 +1300,7 @@ module Increase
|
|
1300
1300
|
declined_transaction_id: String,
|
1301
1301
|
digital_wallet_token_id: String?,
|
1302
1302
|
direction: Increase::Models::CardPayment::Element::CardDecline::direction,
|
1303
|
+
incremented_card_authorization_id: String?,
|
1303
1304
|
merchant_acceptor_id: String,
|
1304
1305
|
merchant_category_code: String,
|
1305
1306
|
merchant_city: String?,
|
@@ -1340,6 +1341,8 @@ module Increase
|
|
1340
1341
|
|
1341
1342
|
attr_accessor direction: Increase::Models::CardPayment::Element::CardDecline::direction
|
1342
1343
|
|
1344
|
+
attr_accessor incremented_card_authorization_id: String?
|
1345
|
+
|
1343
1346
|
attr_accessor merchant_acceptor_id: String
|
1344
1347
|
|
1345
1348
|
attr_accessor merchant_category_code: String
|
@@ -1388,6 +1391,7 @@ module Increase
|
|
1388
1391
|
declined_transaction_id: String,
|
1389
1392
|
digital_wallet_token_id: String?,
|
1390
1393
|
direction: Increase::Models::CardPayment::Element::CardDecline::direction,
|
1394
|
+
incremented_card_authorization_id: String?,
|
1391
1395
|
merchant_acceptor_id: String,
|
1392
1396
|
merchant_category_code: String,
|
1393
1397
|
merchant_city: String?,
|
@@ -1419,6 +1423,7 @@ module Increase
|
|
1419
1423
|
declined_transaction_id: String,
|
1420
1424
|
digital_wallet_token_id: String?,
|
1421
1425
|
direction: Increase::Models::CardPayment::Element::CardDecline::direction,
|
1426
|
+
incremented_card_authorization_id: String?,
|
1422
1427
|
merchant_acceptor_id: String,
|
1423
1428
|
merchant_category_code: String,
|
1424
1429
|
merchant_city: String?,
|
@@ -324,6 +324,7 @@ module Increase
|
|
324
324
|
declined_transaction_id: String,
|
325
325
|
digital_wallet_token_id: String?,
|
326
326
|
direction: Increase::Models::DeclinedTransaction::Source::CardDecline::direction,
|
327
|
+
incremented_card_authorization_id: String?,
|
327
328
|
merchant_acceptor_id: String,
|
328
329
|
merchant_category_code: String,
|
329
330
|
merchant_city: String?,
|
@@ -364,6 +365,8 @@ module Increase
|
|
364
365
|
|
365
366
|
attr_accessor direction: Increase::Models::DeclinedTransaction::Source::CardDecline::direction
|
366
367
|
|
368
|
+
attr_accessor incremented_card_authorization_id: String?
|
369
|
+
|
367
370
|
attr_accessor merchant_acceptor_id: String
|
368
371
|
|
369
372
|
attr_accessor merchant_category_code: String
|
@@ -412,6 +415,7 @@ module Increase
|
|
412
415
|
declined_transaction_id: String,
|
413
416
|
digital_wallet_token_id: String?,
|
414
417
|
direction: Increase::Models::DeclinedTransaction::Source::CardDecline::direction,
|
418
|
+
incremented_card_authorization_id: String?,
|
415
419
|
merchant_acceptor_id: String,
|
416
420
|
merchant_category_code: String,
|
417
421
|
merchant_city: String?,
|
@@ -443,6 +447,7 @@ module Increase
|
|
443
447
|
declined_transaction_id: String,
|
444
448
|
digital_wallet_token_id: String?,
|
445
449
|
direction: Increase::Models::DeclinedTransaction::Source::CardDecline::direction,
|
450
|
+
incremented_card_authorization_id: String?,
|
446
451
|
merchant_acceptor_id: String,
|
447
452
|
merchant_category_code: String,
|
448
453
|
merchant_city: String?,
|
@@ -6,7 +6,8 @@ module Increase
|
|
6
6
|
contact_phone: String,
|
7
7
|
description: String,
|
8
8
|
front_image_file_id: String,
|
9
|
-
front_text: Increase::PhysicalCardProfileCloneParams::FrontText
|
9
|
+
front_text: Increase::PhysicalCardProfileCloneParams::FrontText,
|
10
|
+
program_id: String
|
10
11
|
}
|
11
12
|
& Increase::Internal::Type::request_parameters
|
12
13
|
|
@@ -36,12 +37,17 @@ module Increase
|
|
36
37
|
Increase::PhysicalCardProfileCloneParams::FrontText
|
37
38
|
) -> Increase::PhysicalCardProfileCloneParams::FrontText
|
38
39
|
|
40
|
+
attr_reader program_id: String?
|
41
|
+
|
42
|
+
def program_id=: (String) -> String
|
43
|
+
|
39
44
|
def initialize: (
|
40
45
|
?carrier_image_file_id: String,
|
41
46
|
?contact_phone: String,
|
42
47
|
?description: String,
|
43
48
|
?front_image_file_id: String,
|
44
49
|
?front_text: Increase::PhysicalCardProfileCloneParams::FrontText,
|
50
|
+
?program_id: String,
|
45
51
|
?request_options: Increase::request_opts
|
46
52
|
) -> void
|
47
53
|
|
@@ -51,6 +57,7 @@ module Increase
|
|
51
57
|
description: String,
|
52
58
|
front_image_file_id: String,
|
53
59
|
front_text: Increase::PhysicalCardProfileCloneParams::FrontText,
|
60
|
+
program_id: String,
|
54
61
|
request_options: Increase::RequestOptions
|
55
62
|
}
|
56
63
|
|
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.22.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-
|
11
|
+
date: 2025-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|