increase 1.62.0 → 1.63.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 15b72439e813be126ada1f2b7beb01e41b0dcaca294c17b428d03b822b22a357
4
- data.tar.gz: 8042dc70cb56867f1c738c33a99c922b3f51d914e9a96ed8b37b2c313c9bd957
3
+ metadata.gz: 716171a8d1f7b05eebb131c05d5b187c128dc0c54a6545d33c3565ad2a5044dc
4
+ data.tar.gz: 451194a4710e08f5354e40d834148aab4464ef586ceb2c1cbb8020c0f8057f1e
5
5
  SHA512:
6
- metadata.gz: d10f55ebe9343ad66de8f33ec8c6cd36cff42744a8bdef1b4eeb5055d881696bcb4b75b1f2603d1e124eb5b378de9e23348df21b57b1233e696f6cbfdc18ca54
7
- data.tar.gz: 23023e9919b592b3d4b72b61b9b157ea81d0aa3b786054e96f577cca507cd27624307e4016f209786ef2416758743650369cf8ed16d66b48d2e39d47be838d5a
6
+ metadata.gz: 1dd0f6f03ed2188c7dd6ebdda1f3380a27ca2c09bb1166a295ab93814ef14801bb1062c631ff03241bd50ee7fa9c6fc6c01533f9a8911bfe7bb0cac37d0cbf38
7
+ data.tar.gz: b05d875939df12111cd73a66e0d42f351c9f056d7eabc53a9a3b786b56b7c64857078473dbe06dc6a1a2eb8b0f5b936dca42ce65a1bc997092e59c7db164f5dc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.63.0 (2025-09-04)
4
+
5
+ Full Changelog: [v1.62.0...v1.63.0](https://github.com/Increase/increase-ruby/compare/v1.62.0...v1.63.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([76b55a5](https://github.com/Increase/increase-ruby/commit/76b55a5d0254bf59bd03e72bb5db7b828d9dbd4c))
10
+
3
11
  ## 1.62.0 (2025-08-29)
4
12
 
5
13
  Full Changelog: [v1.61.0...v1.62.0](https://github.com/Increase/increase-ruby/compare/v1.61.0...v1.62.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.62.0"
18
+ gem "increase", "~> 1.63.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -37,6 +37,20 @@ module Increase
37
37
  # @return [String]
38
38
  required :program_id, String
39
39
 
40
+ # @!attribute card_stock_reference
41
+ # A reference ID provided by the fulfillment provider for the card stock used.
42
+ # Only used if you've ordered card stock separately.
43
+ #
44
+ # @return [String, nil]
45
+ optional :card_stock_reference, String
46
+
47
+ # @!attribute carrier_stock_reference
48
+ # A reference ID provided by the fulfillment provider for the carrier stock used.
49
+ # Only used if you've ordered carrier stock separately.
50
+ #
51
+ # @return [String, nil]
52
+ optional :carrier_stock_reference, String
53
+
40
54
  # @!attribute front_text
41
55
  # Text printed on the front of the card. Reach out to
42
56
  # [support@increase.com](mailto:support@increase.com) for more information.
@@ -44,7 +58,7 @@ module Increase
44
58
  # @return [Increase::Models::PhysicalCardProfileCreateParams::FrontText, nil]
45
59
  optional :front_text, -> { Increase::PhysicalCardProfileCreateParams::FrontText }
46
60
 
47
- # @!method initialize(carrier_image_file_id:, contact_phone:, description:, front_image_file_id:, program_id:, front_text: nil, request_options: {})
61
+ # @!method initialize(carrier_image_file_id:, contact_phone:, description:, front_image_file_id:, program_id:, card_stock_reference: nil, carrier_stock_reference: nil, front_text: nil, request_options: {})
48
62
  # Some parameter documentations has been truncated, see
49
63
  # {Increase::Models::PhysicalCardProfileCreateParams} for more details.
50
64
  #
@@ -58,6 +72,10 @@ module Increase
58
72
  #
59
73
  # @param program_id [String] The identifier for the Program that this Physical Card Profile falls under.
60
74
  #
75
+ # @param card_stock_reference [String] A reference ID provided by the fulfillment provider for the card stock used. Onl
76
+ #
77
+ # @param carrier_stock_reference [String] A reference ID provided by the fulfillment provider for the carrier stock used.
78
+ #
61
79
  # @param front_text [Increase::Models::PhysicalCardProfileCreateParams::FrontText] Text printed on the front of the card. Reach out to [support@increase.com](mailt
62
80
  #
63
81
  # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
@@ -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:, front_text: nil, request_options: {})
11
+ # @overload create(carrier_image_file_id:, contact_phone:, description:, front_image_file_id:, program_id:, card_stock_reference: nil, carrier_stock_reference: nil, 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,6 +20,10 @@ 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 card_stock_reference [String] A reference ID provided by the fulfillment provider for the card stock used. Onl
24
+ #
25
+ # @param carrier_stock_reference [String] A reference ID provided by the fulfillment provider for the carrier stock used.
26
+ #
23
27
  # @param front_text [Increase::Models::PhysicalCardProfileCreateParams::FrontText] Text printed on the front of the card. Reach out to [support@increase.com](mailt
24
28
  #
25
29
  # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.62.0"
4
+ VERSION = "1.63.0"
5
5
  end
@@ -34,6 +34,22 @@ module Increase
34
34
  sig { returns(String) }
35
35
  attr_accessor :program_id
36
36
 
37
+ # A reference ID provided by the fulfillment provider for the card stock used.
38
+ # Only used if you've ordered card stock separately.
39
+ sig { returns(T.nilable(String)) }
40
+ attr_reader :card_stock_reference
41
+
42
+ sig { params(card_stock_reference: String).void }
43
+ attr_writer :card_stock_reference
44
+
45
+ # A reference ID provided by the fulfillment provider for the carrier stock used.
46
+ # Only used if you've ordered carrier stock separately.
47
+ sig { returns(T.nilable(String)) }
48
+ attr_reader :carrier_stock_reference
49
+
50
+ sig { params(carrier_stock_reference: String).void }
51
+ attr_writer :carrier_stock_reference
52
+
37
53
  # Text printed on the front of the card. Reach out to
38
54
  # [support@increase.com](mailto:support@increase.com) for more information.
39
55
  sig do
@@ -56,6 +72,8 @@ module Increase
56
72
  description: String,
57
73
  front_image_file_id: String,
58
74
  program_id: String,
75
+ card_stock_reference: String,
76
+ carrier_stock_reference: String,
59
77
  front_text:
60
78
  Increase::PhysicalCardProfileCreateParams::FrontText::OrHash,
61
79
  request_options: Increase::RequestOptions::OrHash
@@ -72,6 +90,12 @@ module Increase
72
90
  front_image_file_id:,
73
91
  # The identifier for the Program that this Physical Card Profile falls under.
74
92
  program_id:,
93
+ # A reference ID provided by the fulfillment provider for the card stock used.
94
+ # Only used if you've ordered card stock separately.
95
+ card_stock_reference: nil,
96
+ # A reference ID provided by the fulfillment provider for the carrier stock used.
97
+ # Only used if you've ordered carrier stock separately.
98
+ carrier_stock_reference: nil,
75
99
  # Text printed on the front of the card. Reach out to
76
100
  # [support@increase.com](mailto:support@increase.com) for more information.
77
101
  front_text: nil,
@@ -87,6 +111,8 @@ module Increase
87
111
  description: String,
88
112
  front_image_file_id: String,
89
113
  program_id: String,
114
+ card_stock_reference: String,
115
+ carrier_stock_reference: String,
90
116
  front_text: Increase::PhysicalCardProfileCreateParams::FrontText,
91
117
  request_options: Increase::RequestOptions
92
118
  }
@@ -11,6 +11,8 @@ module Increase
11
11
  description: String,
12
12
  front_image_file_id: String,
13
13
  program_id: String,
14
+ card_stock_reference: String,
15
+ carrier_stock_reference: String,
14
16
  front_text:
15
17
  Increase::PhysicalCardProfileCreateParams::FrontText::OrHash,
16
18
  request_options: Increase::RequestOptions::OrHash
@@ -27,6 +29,12 @@ module Increase
27
29
  front_image_file_id:,
28
30
  # The identifier for the Program that this Physical Card Profile falls under.
29
31
  program_id:,
32
+ # A reference ID provided by the fulfillment provider for the card stock used.
33
+ # Only used if you've ordered card stock separately.
34
+ card_stock_reference: nil,
35
+ # A reference ID provided by the fulfillment provider for the carrier stock used.
36
+ # Only used if you've ordered carrier stock separately.
37
+ carrier_stock_reference: nil,
30
38
  # Text printed on the front of the card. Reach out to
31
39
  # [support@increase.com](mailto:support@increase.com) for more information.
32
40
  front_text: nil,
@@ -7,6 +7,8 @@ module Increase
7
7
  description: String,
8
8
  front_image_file_id: String,
9
9
  program_id: String,
10
+ card_stock_reference: String,
11
+ carrier_stock_reference: String,
10
12
  front_text: Increase::PhysicalCardProfileCreateParams::FrontText
11
13
  }
12
14
  & Increase::Internal::Type::request_parameters
@@ -25,6 +27,14 @@ module Increase
25
27
 
26
28
  attr_accessor program_id: String
27
29
 
30
+ attr_reader card_stock_reference: String?
31
+
32
+ def card_stock_reference=: (String) -> String
33
+
34
+ attr_reader carrier_stock_reference: String?
35
+
36
+ def carrier_stock_reference=: (String) -> String
37
+
28
38
  attr_reader front_text: Increase::PhysicalCardProfileCreateParams::FrontText?
29
39
 
30
40
  def front_text=: (
@@ -37,6 +47,8 @@ module Increase
37
47
  description: String,
38
48
  front_image_file_id: String,
39
49
  program_id: String,
50
+ ?card_stock_reference: String,
51
+ ?carrier_stock_reference: String,
40
52
  ?front_text: Increase::PhysicalCardProfileCreateParams::FrontText,
41
53
  ?request_options: Increase::request_opts
42
54
  ) -> void
@@ -47,6 +59,8 @@ module Increase
47
59
  description: String,
48
60
  front_image_file_id: String,
49
61
  program_id: String,
62
+ card_stock_reference: String,
63
+ carrier_stock_reference: String,
50
64
  front_text: Increase::PhysicalCardProfileCreateParams::FrontText,
51
65
  request_options: Increase::RequestOptions
52
66
  }
@@ -7,6 +7,8 @@ module Increase
7
7
  description: String,
8
8
  front_image_file_id: String,
9
9
  program_id: String,
10
+ ?card_stock_reference: String,
11
+ ?carrier_stock_reference: String,
10
12
  ?front_text: Increase::PhysicalCardProfileCreateParams::FrontText,
11
13
  ?request_options: Increase::request_opts
12
14
  ) -> Increase::PhysicalCardProfile
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.62.0
4
+ version: 1.63.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-08-29 00:00:00.000000000 Z
11
+ date: 2025-09-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool