increase 1.26.0 → 1.27.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: 56a924360e0d8ea38207c5e7f661b0825fcc4bc15856c66b99710e4e1aa47651
4
- data.tar.gz: 82a9337987e06e0342ce0aa0cace248e23024f0a95dc585d17151649e7a43f3a
3
+ metadata.gz: 19774f02f0d7c5cc8292878a4157a0074006611b1cfb5f71f24a8c4cf7250406
4
+ data.tar.gz: 557d9b19db840937aa44e3792d4f5d40014f5d73db2f9c16e245f5a42422ad8c
5
5
  SHA512:
6
- metadata.gz: ba796987e6672567c22272829bd3d12e1ffaf73f8591f91586a1ec6e7cce117cde25e8257bb4e88b9ecd61ce48826728454fa32d21e19256861fbed8af833bed
7
- data.tar.gz: 858a9db4237e4e8cda5163e0bd51c2a2950dfc794ab6ff86f7c923bbf5b79279de2a9e82d91859656d8f9a6b989ae6979fb363060f26e6d672e7e5f987ac9769
6
+ metadata.gz: 4c49f1338f2681debedb5c68a65f0e191b9366766d57353890908cf49f67d2e62eec94f99d12f13348da744d3c08965a4a96d17c24fe2e001d215d4146c7d82f
7
+ data.tar.gz: fea2dacba8503378793ee41a544f0af7a6a9d08790d46154aa001e960ca71a312ed20d2cc6b362153f4d3f2068b56e1213b26d146c339d4710d26fbef511bb73
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.27.0 (2025-08-07)
4
+
5
+ Full Changelog: [v1.26.0...v1.27.0](https://github.com/Increase/increase-ruby/compare/v1.26.0...v1.27.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([44729b9](https://github.com/Increase/increase-ruby/commit/44729b9363b7c96a58f9e5bf77ffdbd981dc7a3e))
10
+
3
11
  ## 1.26.0 (2025-08-06)
4
12
 
5
13
  Full Changelog: [v1.25.0...v1.26.0](https://github.com/Increase/increase-ruby/compare/v1.25.0...v1.26.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.26.0"
18
+ gem "increase", "~> 1.27.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -114,6 +114,9 @@ module Increase
114
114
  module Purpose
115
115
  extend Increase::Internal::Type::Enum
116
116
 
117
+ # A file to be attached to a Card Dispute.
118
+ CARD_DISPUTE_ATTACHMENT = :card_dispute_attachment
119
+
117
120
  # An image of the front of a check, used for check deposits.
118
121
  CHECK_IMAGE_FRONT = :check_image_front
119
122
 
@@ -43,6 +43,9 @@ module Increase
43
43
  module Purpose
44
44
  extend Increase::Internal::Type::Enum
45
45
 
46
+ # A file to be attached to a Card Dispute.
47
+ CARD_DISPUTE_ATTACHMENT = :card_dispute_attachment
48
+
46
49
  # An image of the front of a check, used for check deposits.
47
50
  CHECK_IMAGE_FRONT = :check_image_front
48
51
 
@@ -116,6 +116,9 @@ module Increase
116
116
  module In
117
117
  extend Increase::Internal::Type::Enum
118
118
 
119
+ # A file to be attached to a Card Dispute.
120
+ CARD_DISPUTE_ATTACHMENT = :card_dispute_attachment
121
+
119
122
  # An image of the front of a check, used for check deposits.
120
123
  CHECK_IMAGE_FRONT = :check_image_front
121
124
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.26.0"
4
+ VERSION = "1.27.0"
5
5
  end
@@ -140,6 +140,10 @@ module Increase
140
140
  TaggedSymbol = T.type_alias { T.all(Symbol, Increase::File::Purpose) }
141
141
  OrSymbol = T.type_alias { T.any(Symbol, String) }
142
142
 
143
+ # A file to be attached to a Card Dispute.
144
+ CARD_DISPUTE_ATTACHMENT =
145
+ T.let(:card_dispute_attachment, Increase::File::Purpose::TaggedSymbol)
146
+
143
147
  # An image of the front of a check, used for check deposits.
144
148
  CHECK_IMAGE_FRONT =
145
149
  T.let(:check_image_front, Increase::File::Purpose::TaggedSymbol)
@@ -70,6 +70,13 @@ module Increase
70
70
  T.type_alias { T.all(Symbol, Increase::FileCreateParams::Purpose) }
71
71
  OrSymbol = T.type_alias { T.any(Symbol, String) }
72
72
 
73
+ # A file to be attached to a Card Dispute.
74
+ CARD_DISPUTE_ATTACHMENT =
75
+ T.let(
76
+ :card_dispute_attachment,
77
+ Increase::FileCreateParams::Purpose::TaggedSymbol
78
+ )
79
+
73
80
  # An image of the front of a check, used for check deposits.
74
81
  CHECK_IMAGE_FRONT =
75
82
  T.let(
@@ -220,6 +220,13 @@ module Increase
220
220
  end
221
221
  OrSymbol = T.type_alias { T.any(Symbol, String) }
222
222
 
223
+ # A file to be attached to a Card Dispute.
224
+ CARD_DISPUTE_ATTACHMENT =
225
+ T.let(
226
+ :card_dispute_attachment,
227
+ Increase::FileListParams::Purpose::In::TaggedSymbol
228
+ )
229
+
223
230
  # An image of the front of a check, used for check deposits.
224
231
  CHECK_IMAGE_FRONT =
225
232
  T.let(
@@ -71,7 +71,8 @@ module Increase
71
71
  end
72
72
 
73
73
  type purpose =
74
- :check_image_front
74
+ :card_dispute_attachment
75
+ | :check_image_front
75
76
  | :check_image_back
76
77
  | :processed_check_image_front
77
78
  | :processed_check_image_back
@@ -103,6 +104,9 @@ module Increase
103
104
  module Purpose
104
105
  extend Increase::Internal::Type::Enum
105
106
 
107
+ # A file to be attached to a Card Dispute.
108
+ CARD_DISPUTE_ATTACHMENT: :card_dispute_attachment
109
+
106
110
  # An image of the front of a check, used for check deposits.
107
111
  CHECK_IMAGE_FRONT: :check_image_front
108
112
 
@@ -35,7 +35,8 @@ module Increase
35
35
  }
36
36
 
37
37
  type purpose =
38
- :check_image_front
38
+ :card_dispute_attachment
39
+ | :check_image_front
39
40
  | :check_image_back
40
41
  | :mailed_check_image
41
42
  | :check_attachment
@@ -55,6 +56,9 @@ module Increase
55
56
  module Purpose
56
57
  extend Increase::Internal::Type::Enum
57
58
 
59
+ # A file to be attached to a Card Dispute.
60
+ CARD_DISPUTE_ATTACHMENT: :card_dispute_attachment
61
+
58
62
  # An image of the front of a check, used for check deposits.
59
63
  CHECK_IMAGE_FRONT: :check_image_front
60
64
 
@@ -110,7 +110,8 @@ module Increase
110
110
  }
111
111
 
112
112
  type in_ =
113
- :check_image_front
113
+ :card_dispute_attachment
114
+ | :check_image_front
114
115
  | :check_image_back
115
116
  | :processed_check_image_front
116
117
  | :processed_check_image_back
@@ -142,6 +143,9 @@ module Increase
142
143
  module In
143
144
  extend Increase::Internal::Type::Enum
144
145
 
146
+ # A file to be attached to a Card Dispute.
147
+ CARD_DISPUTE_ATTACHMENT: :card_dispute_attachment
148
+
145
149
  # An image of the front of a check, used for check deposits.
146
150
  CHECK_IMAGE_FRONT: :check_image_front
147
151
 
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.26.0
4
+ version: 1.27.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-06 00:00:00.000000000 Z
11
+ date: 2025-08-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool