increase 1.141.0 → 1.142.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: f855d294104a394b8461eee4ac1df309f6d2447f4c8a13136c048bbbd83fcf02
4
- data.tar.gz: 153aecbe64850bebfe080d48d8c74d0d770cfc3ed2994625b9e6b59a2e051a2e
3
+ metadata.gz: 5220b81a2ead4122f88ed2ede53a1ce18d450b660994c41962e2319b89101335
4
+ data.tar.gz: 2ae9da2ccc5ead295f5f6fd43920e086004d49a21e30a0ec75e40b7aba3aaa1f
5
5
  SHA512:
6
- metadata.gz: 35e2910f6944de7c0e018a32bb6b66f606dfba203671897707255cb32103e098077d4b0c2fee18f469a62380f2537842ccc9a8050fa6144d2c7c3cd65dfbea7f
7
- data.tar.gz: c49db7b3ef9c180bf43a59f9baf951edd28df032dc32bc044711278f5723c8227000d1257a23c0b572d16c5b07c843dc91bfd51a04e438e6b9b85c5e27535f98
6
+ metadata.gz: f4bb3284b0d5f0cddc1ca0e421827218f6b1bfbf532cbf612474d3f062821af74c98f827f9427003a3b86bba7de662839dc06740afc169a4c0c0589686270b78
7
+ data.tar.gz: da2d46c4f2a30413f8adf574c75f96f197bab7a3b817bce5e4492a114de5777ff54015b542803c60e9ba76d626e6a87a1e587d42431939d1ab67a4577edaeea5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.142.0 (2025-11-14)
4
+
5
+ Full Changelog: [v1.141.0...v1.142.0](https://github.com/Increase/increase-ruby/compare/v1.141.0...v1.142.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([cb2ed86](https://github.com/Increase/increase-ruby/commit/cb2ed865efae0e15c8269c5ee94e94bfdd9e3e3c))
10
+
3
11
  ## 1.141.0 (2025-11-13)
4
12
 
5
13
  Full Changelog: [v1.140.0...v1.141.0](https://github.com/Increase/increase-ruby/compare/v1.140.0...v1.141.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.141.0"
18
+ gem "increase", "~> 1.142.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -11,13 +11,15 @@ module Increase
11
11
  required :id, String
12
12
 
13
13
  # @!attribute back_image_file_id
14
- # The identifier of the File containing the physical card's back image.
14
+ # The identifier of the File containing the physical card's back image. This will
15
+ # be missing until the image has been post-processed.
15
16
  #
16
17
  # @return [String, nil]
17
18
  required :back_image_file_id, String, nil?: true
18
19
 
19
20
  # @!attribute carrier_image_file_id
20
- # The identifier of the File containing the physical card's carrier image.
21
+ # The identifier of the File containing the physical card's carrier image. This
22
+ # will be missing until the image has been post-processed.
21
23
  #
22
24
  # @return [String, nil]
23
25
  required :carrier_image_file_id, String, nil?: true
@@ -48,7 +50,8 @@ module Increase
48
50
  required :description, String
49
51
 
50
52
  # @!attribute front_image_file_id
51
- # The identifier of the File containing the physical card's front image.
53
+ # The identifier of the File containing the physical card's front image. This will
54
+ # be missing until the image has been post-processed.
52
55
  #
53
56
  # @return [String, nil]
54
57
  required :front_image_file_id, String, nil?: true
@@ -97,9 +100,9 @@ module Increase
97
100
  #
98
101
  # @param id [String] The Card Profile identifier.
99
102
  #
100
- # @param back_image_file_id [String, nil] The identifier of the File containing the physical card's back image.
103
+ # @param back_image_file_id [String, nil] The identifier of the File containing the physical card's back image. This will
101
104
  #
102
- # @param carrier_image_file_id [String, nil] The identifier of the File containing the physical card's carrier image.
105
+ # @param carrier_image_file_id [String, nil] The identifier of the File containing the physical card's carrier image. This wi
103
106
  #
104
107
  # @param contact_phone [String, nil] A phone number the user can contact to receive support for their card.
105
108
  #
@@ -109,7 +112,7 @@ module Increase
109
112
  #
110
113
  # @param description [String] A description you can use to identify the Physical Card Profile.
111
114
  #
112
- # @param front_image_file_id [String, nil] The identifier of the File containing the physical card's front image.
115
+ # @param front_image_file_id [String, nil] The identifier of the File containing the physical card's front image. This will
113
116
  #
114
117
  # @param idempotency_key [String, nil] The idempotency key you chose for this object. This value is unique across Incre
115
118
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.141.0"
4
+ VERSION = "1.142.0"
5
5
  end
@@ -12,11 +12,13 @@ module Increase
12
12
  sig { returns(String) }
13
13
  attr_accessor :id
14
14
 
15
- # The identifier of the File containing the physical card's back image.
15
+ # The identifier of the File containing the physical card's back image. This will
16
+ # be missing until the image has been post-processed.
16
17
  sig { returns(T.nilable(String)) }
17
18
  attr_accessor :back_image_file_id
18
19
 
19
- # The identifier of the File containing the physical card's carrier image.
20
+ # The identifier of the File containing the physical card's carrier image. This
21
+ # will be missing until the image has been post-processed.
20
22
  sig { returns(T.nilable(String)) }
21
23
  attr_accessor :carrier_image_file_id
22
24
 
@@ -37,7 +39,8 @@ module Increase
37
39
  sig { returns(String) }
38
40
  attr_accessor :description
39
41
 
40
- # The identifier of the File containing the physical card's front image.
42
+ # The identifier of the File containing the physical card's front image. This will
43
+ # be missing until the image has been post-processed.
41
44
  sig { returns(T.nilable(String)) }
42
45
  attr_accessor :front_image_file_id
43
46
 
@@ -88,9 +91,11 @@ module Increase
88
91
  def self.new(
89
92
  # The Card Profile identifier.
90
93
  id:,
91
- # The identifier of the File containing the physical card's back image.
94
+ # The identifier of the File containing the physical card's back image. This will
95
+ # be missing until the image has been post-processed.
92
96
  back_image_file_id:,
93
- # The identifier of the File containing the physical card's carrier image.
97
+ # The identifier of the File containing the physical card's carrier image. This
98
+ # will be missing until the image has been post-processed.
94
99
  carrier_image_file_id:,
95
100
  # A phone number the user can contact to receive support for their card.
96
101
  contact_phone:,
@@ -101,7 +106,8 @@ module Increase
101
106
  creator:,
102
107
  # A description you can use to identify the Physical Card Profile.
103
108
  description:,
104
- # The identifier of the File containing the physical card's front image.
109
+ # The identifier of the File containing the physical card's front image. This will
110
+ # be missing until the image has been post-processed.
105
111
  front_image_file_id:,
106
112
  # The idempotency key you chose for this object. This value is unique across
107
113
  # Increase and is used to ensure that a request is only processed once. Learn more
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.141.0
4
+ version: 1.142.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-13 00:00:00.000000000 Z
11
+ date: 2025-11-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool