increase 1.2.0 → 1.4.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: eb7e5ddb2c0c579922ff793e013bff0a18a505a7e4742c0151ba7af767121b98
4
- data.tar.gz: de47bd4f65da4448630165bc126857e911b94bea05318b62dfe8c42fb189e25f
3
+ metadata.gz: e94ebe9bc63b65902186c70281214c9649c5fd0fb65b1cb6fe80b479ccc64b69
4
+ data.tar.gz: 3be70889c40cb73efe83ebb78eedd106ce10a515113f1edfc38bae6f3216443a
5
5
  SHA512:
6
- metadata.gz: 0eab39f31c6018075f2dc39608f57789a671f0c56d355a351d862af5dacb3d4157df1fe6f69ff6e8282a1c501e910e53cd6b50cb0e3877ac4952a6692e679a3c
7
- data.tar.gz: f0c954610ec5af0a7de85bce17b190a774998b9d42017be268efbf764ef8c63a382204e9e0b5b01155a80676dce17c3267e37a6307d4257c494d86523df44c9d
6
+ metadata.gz: bd87d277dbe003a5c3b13f120a039a5496b6cf80f64a208b41694c910714e6e9011ab01777d6fe6ad5599d75eb2a9d758d1447a095d15b7680bccabb8830ad2f
7
+ data.tar.gz: 1375e3276f7776f49f65f2ee94922542ae3aa4149e07edffc7e53f77d293336ffa948a3ec0541b24c8a68fa89ca547eed6b91d487e5bb6c1fad439ea56e205ca
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.4.0 (2025-06-25)
4
+
5
+ Full Changelog: [v1.3.0...v1.4.0](https://github.com/Increase/increase-ruby/compare/v1.3.0...v1.4.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([5e84760](https://github.com/Increase/increase-ruby/commit/5e847601520f15c05af732d75fc3836a0db58e11))
10
+ * **api:** api update ([05ab542](https://github.com/Increase/increase-ruby/commit/05ab5422b9a7ca0fef94405a930ca991ae2b7b34))
11
+
12
+ ## 1.3.0 (2025-06-24)
13
+
14
+ Full Changelog: [v1.2.0...v1.3.0](https://github.com/Increase/increase-ruby/compare/v1.2.0...v1.3.0)
15
+
16
+ ### Features
17
+
18
+ * **api:** api update ([4bc56cc](https://github.com/Increase/increase-ruby/commit/4bc56cc2a93fddc9d94c6ddc6fb885915cc74c99))
19
+
3
20
  ## 1.2.0 (2025-06-24)
4
21
 
5
22
  Full Changelog: [v1.1.0...v1.2.0](https://github.com/Increase/increase-ruby/compare/v1.1.0...v1.2.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.2.0"
18
+ gem "increase", "~> 1.4.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -1207,6 +1207,12 @@ module Increase
1207
1207
  # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder.
1208
1208
  REFUND = :refund
1209
1209
 
1210
+ # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
1211
+ CASH_DISBURSEMENT = :cash_disbursement
1212
+
1213
+ # The processing category is unknown.
1214
+ UNKNOWN = :unknown
1215
+
1210
1216
  # @!method self.values
1211
1217
  # @return [Array<Symbol>]
1212
1218
  end
@@ -2081,6 +2087,12 @@ module Increase
2081
2087
  # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder.
2082
2088
  REFUND = :refund
2083
2089
 
2090
+ # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
2091
+ CASH_DISBURSEMENT = :cash_disbursement
2092
+
2093
+ # The processing category is unknown.
2094
+ UNKNOWN = :unknown
2095
+
2084
2096
  # @!method self.values
2085
2097
  # @return [Array<Symbol>]
2086
2098
  end
@@ -999,6 +999,12 @@ module Increase
999
999
  # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder.
1000
1000
  REFUND = :refund
1001
1001
 
1002
+ # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
1003
+ CASH_DISBURSEMENT = :cash_disbursement
1004
+
1005
+ # The processing category is unknown.
1006
+ UNKNOWN = :unknown
1007
+
1002
1008
  # @!method self.values
1003
1009
  # @return [Array<Symbol>]
1004
1010
  end
@@ -312,7 +312,7 @@ module Increase
312
312
  class Other < Increase::Internal::Type::BaseModel
313
313
  # @!attribute country
314
314
  # The two-character ISO 3166-1 code representing the country that issued the
315
- # document.
315
+ # document (e.g., `US`).
316
316
  #
317
317
  # @return [String]
318
318
  required :country, String
@@ -364,7 +364,8 @@ module Increase
364
364
  # @see Increase::Models::EntityCreateBeneficialOwnerParams::BeneficialOwner::Individual::Identification#passport
365
365
  class Passport < Increase::Internal::Type::BaseModel
366
366
  # @!attribute country
367
- # The country that issued the passport.
367
+ # The two-character ISO 3166-1 code representing the country that issued the
368
+ # document (e.g., `US`).
368
369
  #
369
370
  # @return [String]
370
371
  required :country, String
@@ -382,10 +383,14 @@ module Increase
382
383
  required :file_id, String
383
384
 
384
385
  # @!method initialize(country:, expiration_date:, file_id:)
386
+ # Some parameter documentations has been truncated, see
387
+ # {Increase::Models::EntityCreateBeneficialOwnerParams::BeneficialOwner::Individual::Identification::Passport}
388
+ # for more details.
389
+ #
385
390
  # Information about the passport used for identification. Required if `method` is
386
391
  # equal to `passport`.
387
392
  #
388
- # @param country [String] The country that issued the passport.
393
+ # @param country [String] The two-character ISO 3166-1 code representing the country that issued the docum
389
394
  #
390
395
  # @param expiration_date [Date] The passport's expiration date in YYYY-MM-DD format.
391
396
  #
@@ -542,7 +542,7 @@ module Increase
542
542
  class Other < Increase::Internal::Type::BaseModel
543
543
  # @!attribute country
544
544
  # The two-character ISO 3166-1 code representing the country that issued the
545
- # document.
545
+ # document (e.g., `US`).
546
546
  #
547
547
  # @return [String]
548
548
  required :country, String
@@ -594,7 +594,8 @@ module Increase
594
594
  # @see Increase::Models::EntityCreateParams::Corporation::BeneficialOwner::Individual::Identification#passport
595
595
  class Passport < Increase::Internal::Type::BaseModel
596
596
  # @!attribute country
597
- # The country that issued the passport.
597
+ # The two-character ISO 3166-1 code representing the country that issued the
598
+ # document (e.g., `US`).
598
599
  #
599
600
  # @return [String]
600
601
  required :country, String
@@ -612,10 +613,14 @@ module Increase
612
613
  required :file_id, String
613
614
 
614
615
  # @!method initialize(country:, expiration_date:, file_id:)
616
+ # Some parameter documentations has been truncated, see
617
+ # {Increase::Models::EntityCreateParams::Corporation::BeneficialOwner::Individual::Identification::Passport}
618
+ # for more details.
619
+ #
615
620
  # Information about the passport used for identification. Required if `method` is
616
621
  # equal to `passport`.
617
622
  #
618
- # @param country [String] The country that issued the passport.
623
+ # @param country [String] The two-character ISO 3166-1 code representing the country that issued the docum
619
624
  #
620
625
  # @param expiration_date [Date] The passport's expiration date in YYYY-MM-DD format.
621
626
  #
@@ -1047,7 +1052,7 @@ module Increase
1047
1052
  class Other < Increase::Internal::Type::BaseModel
1048
1053
  # @!attribute country
1049
1054
  # The two-character ISO 3166-1 code representing the country that issued the
1050
- # document.
1055
+ # document (e.g., `US`).
1051
1056
  #
1052
1057
  # @return [String]
1053
1058
  required :country, String
@@ -1099,7 +1104,8 @@ module Increase
1099
1104
  # @see Increase::Models::EntityCreateParams::Joint::Individual::Identification#passport
1100
1105
  class Passport < Increase::Internal::Type::BaseModel
1101
1106
  # @!attribute country
1102
- # The country that issued the passport.
1107
+ # The two-character ISO 3166-1 code representing the country that issued the
1108
+ # passport (e.g., `US`).
1103
1109
  #
1104
1110
  # @return [String]
1105
1111
  required :country, String
@@ -1117,10 +1123,14 @@ module Increase
1117
1123
  required :file_id, String
1118
1124
 
1119
1125
  # @!method initialize(country:, expiration_date:, file_id:)
1126
+ # Some parameter documentations has been truncated, see
1127
+ # {Increase::Models::EntityCreateParams::Joint::Individual::Identification::Passport}
1128
+ # for more details.
1129
+ #
1120
1130
  # Information about the passport used for identification. Required if `method` is
1121
1131
  # equal to `passport`.
1122
1132
  #
1123
- # @param country [String] The country that issued the passport.
1133
+ # @param country [String] The two-character ISO 3166-1 code representing the country that issued the passp
1124
1134
  #
1125
1135
  # @param expiration_date [Date] The passport's expiration date in YYYY-MM-DD format.
1126
1136
  #
@@ -1359,7 +1369,7 @@ module Increase
1359
1369
  class Other < Increase::Internal::Type::BaseModel
1360
1370
  # @!attribute country
1361
1371
  # The two-character ISO 3166-1 code representing the country that issued the
1362
- # document.
1372
+ # document (e.g., `US`).
1363
1373
  #
1364
1374
  # @return [String]
1365
1375
  required :country, String
@@ -1411,7 +1421,8 @@ module Increase
1411
1421
  # @see Increase::Models::EntityCreateParams::NaturalPerson::Identification#passport
1412
1422
  class Passport < Increase::Internal::Type::BaseModel
1413
1423
  # @!attribute country
1414
- # The country that issued the passport.
1424
+ # The two-character ISO 3166-1 code representing the country that issued the
1425
+ # passport (e.g., `US`).
1415
1426
  #
1416
1427
  # @return [String]
1417
1428
  required :country, String
@@ -1429,10 +1440,14 @@ module Increase
1429
1440
  required :file_id, String
1430
1441
 
1431
1442
  # @!method initialize(country:, expiration_date:, file_id:)
1443
+ # Some parameter documentations has been truncated, see
1444
+ # {Increase::Models::EntityCreateParams::NaturalPerson::Identification::Passport}
1445
+ # for more details.
1446
+ #
1432
1447
  # Information about the passport used for identification. Required if `method` is
1433
1448
  # equal to `passport`.
1434
1449
  #
1435
- # @param country [String] The country that issued the passport.
1450
+ # @param country [String] The two-character ISO 3166-1 code representing the country that issued the passp
1436
1451
  #
1437
1452
  # @param expiration_date [Date] The passport's expiration date in YYYY-MM-DD format.
1438
1453
  #
@@ -1920,7 +1935,7 @@ module Increase
1920
1935
  class Other < Increase::Internal::Type::BaseModel
1921
1936
  # @!attribute country
1922
1937
  # The two-character ISO 3166-1 code representing the country that issued the
1923
- # document.
1938
+ # document (e.g., `US`).
1924
1939
  #
1925
1940
  # @return [String]
1926
1941
  required :country, String
@@ -1972,7 +1987,8 @@ module Increase
1972
1987
  # @see Increase::Models::EntityCreateParams::Trust::Trustee::Individual::Identification#passport
1973
1988
  class Passport < Increase::Internal::Type::BaseModel
1974
1989
  # @!attribute country
1975
- # The country that issued the passport.
1990
+ # The two-character ISO 3166-1 code representing the country that issued the
1991
+ # passport (e.g., `US`).
1976
1992
  #
1977
1993
  # @return [String]
1978
1994
  required :country, String
@@ -1990,10 +2006,14 @@ module Increase
1990
2006
  required :file_id, String
1991
2007
 
1992
2008
  # @!method initialize(country:, expiration_date:, file_id:)
2009
+ # Some parameter documentations has been truncated, see
2010
+ # {Increase::Models::EntityCreateParams::Trust::Trustee::Individual::Identification::Passport}
2011
+ # for more details.
2012
+ #
1993
2013
  # Information about the passport used for identification. Required if `method` is
1994
2014
  # equal to `passport`.
1995
2015
  #
1996
- # @param country [String] The country that issued the passport.
2016
+ # @param country [String] The two-character ISO 3166-1 code representing the country that issued the passp
1997
2017
  #
1998
2018
  # @param expiration_date [Date] The passport's expiration date in YYYY-MM-DD format.
1999
2019
  #
@@ -2231,7 +2251,7 @@ module Increase
2231
2251
  class Other < Increase::Internal::Type::BaseModel
2232
2252
  # @!attribute country
2233
2253
  # The two-character ISO 3166-1 code representing the country that issued the
2234
- # document.
2254
+ # document (e.g., `US`).
2235
2255
  #
2236
2256
  # @return [String]
2237
2257
  required :country, String
@@ -2283,7 +2303,8 @@ module Increase
2283
2303
  # @see Increase::Models::EntityCreateParams::Trust::Grantor::Identification#passport
2284
2304
  class Passport < Increase::Internal::Type::BaseModel
2285
2305
  # @!attribute country
2286
- # The country that issued the passport.
2306
+ # The two-character ISO 3166-1 code representing the country that issued the
2307
+ # passport (e.g., `US`).
2287
2308
  #
2288
2309
  # @return [String]
2289
2310
  required :country, String
@@ -2301,10 +2322,14 @@ module Increase
2301
2322
  required :file_id, String
2302
2323
 
2303
2324
  # @!method initialize(country:, expiration_date:, file_id:)
2325
+ # Some parameter documentations has been truncated, see
2326
+ # {Increase::Models::EntityCreateParams::Trust::Grantor::Identification::Passport}
2327
+ # for more details.
2328
+ #
2304
2329
  # Information about the passport used for identification. Required if `method` is
2305
2330
  # equal to `passport`.
2306
2331
  #
2307
- # @param country [String] The country that issued the passport.
2332
+ # @param country [String] The two-character ISO 3166-1 code representing the country that issued the passp
2308
2333
  #
2309
2334
  # @param expiration_date [Date] The passport's expiration date in YYYY-MM-DD format.
2310
2335
  #
@@ -100,7 +100,9 @@ module Increase
100
100
  # {Increase::Models::PendingTransaction} for more details.
101
101
  #
102
102
  # Pending Transactions are potential future additions and removals of money from
103
- # your bank account.
103
+ # your bank account. They impact your available balance, but not your current
104
+ # balance. To learn more, see
105
+ # [Transactions and Transfers](/documentation/transactions-transfers).
104
106
  #
105
107
  # @param id [String] The Pending Transaction identifier.
106
108
  #
@@ -1037,6 +1039,12 @@ module Increase
1037
1039
  # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder.
1038
1040
  REFUND = :refund
1039
1041
 
1042
+ # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
1043
+ CASH_DISBURSEMENT = :cash_disbursement
1044
+
1045
+ # The processing category is unknown.
1046
+ UNKNOWN = :unknown
1047
+
1040
1048
  # @!method self.values
1041
1049
  # @return [Array<Symbol>]
1042
1050
  end
@@ -770,6 +770,12 @@ module Increase
770
770
  # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder.
771
771
  REFUND = :refund
772
772
 
773
+ # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
774
+ CASH_DISBURSEMENT = :cash_disbursement
775
+
776
+ # The processing category is unknown.
777
+ UNKNOWN = :unknown
778
+
773
779
  # @!method self.values
774
780
  # @return [Array<Symbol>]
775
781
  end
@@ -80,7 +80,8 @@ module Increase
80
80
  # {Increase::Models::Transaction} for more details.
81
81
  #
82
82
  # Transactions are the immutable additions and removals of money from your bank
83
- # account. They're the equivalent of line items on your bank statement.
83
+ # account. They're the equivalent of line items on your bank statement. To learn
84
+ # more, see [Transactions and Transfers](/documentation/transactions-transfers).
84
85
  #
85
86
  # @param id [String] The Transaction identifier.
86
87
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.2.0"
4
+ VERSION = "1.4.0"
5
5
  end
@@ -2245,6 +2245,20 @@ module Increase
2245
2245
  Increase::CardPayment::Element::CardAuthorization::ProcessingCategory::TaggedSymbol
2246
2246
  )
2247
2247
 
2248
+ # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
2249
+ CASH_DISBURSEMENT =
2250
+ T.let(
2251
+ :cash_disbursement,
2252
+ Increase::CardPayment::Element::CardAuthorization::ProcessingCategory::TaggedSymbol
2253
+ )
2254
+
2255
+ # The processing category is unknown.
2256
+ UNKNOWN =
2257
+ T.let(
2258
+ :unknown,
2259
+ Increase::CardPayment::Element::CardAuthorization::ProcessingCategory::TaggedSymbol
2260
+ )
2261
+
2248
2262
  sig do
2249
2263
  override.returns(
2250
2264
  T::Array[
@@ -3906,6 +3920,20 @@ module Increase
3906
3920
  Increase::CardPayment::Element::CardDecline::ProcessingCategory::TaggedSymbol
3907
3921
  )
3908
3922
 
3923
+ # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
3924
+ CASH_DISBURSEMENT =
3925
+ T.let(
3926
+ :cash_disbursement,
3927
+ Increase::CardPayment::Element::CardDecline::ProcessingCategory::TaggedSymbol
3928
+ )
3929
+
3930
+ # The processing category is unknown.
3931
+ UNKNOWN =
3932
+ T.let(
3933
+ :unknown,
3934
+ Increase::CardPayment::Element::CardDecline::ProcessingCategory::TaggedSymbol
3935
+ )
3936
+
3909
3937
  sig do
3910
3938
  override.returns(
3911
3939
  T::Array[
@@ -1835,6 +1835,20 @@ module Increase
1835
1835
  Increase::DeclinedTransaction::Source::CardDecline::ProcessingCategory::TaggedSymbol
1836
1836
  )
1837
1837
 
1838
+ # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
1839
+ CASH_DISBURSEMENT =
1840
+ T.let(
1841
+ :cash_disbursement,
1842
+ Increase::DeclinedTransaction::Source::CardDecline::ProcessingCategory::TaggedSymbol
1843
+ )
1844
+
1845
+ # The processing category is unknown.
1846
+ UNKNOWN =
1847
+ T.let(
1848
+ :unknown,
1849
+ Increase::DeclinedTransaction::Source::CardDecline::ProcessingCategory::TaggedSymbol
1850
+ )
1851
+
1838
1852
  sig do
1839
1853
  override.returns(
1840
1854
  T::Array[
@@ -602,7 +602,7 @@ module Increase
602
602
  end
603
603
 
604
604
  # The two-character ISO 3166-1 code representing the country that issued the
605
- # document.
605
+ # document (e.g., `US`).
606
606
  sig { returns(String) }
607
607
  attr_accessor :country
608
608
 
@@ -642,7 +642,7 @@ module Increase
642
642
  end
643
643
  def self.new(
644
644
  # The two-character ISO 3166-1 code representing the country that issued the
645
- # document.
645
+ # document (e.g., `US`).
646
646
  country:,
647
647
  # A description of the document submitted.
648
648
  description:,
@@ -680,7 +680,8 @@ module Increase
680
680
  )
681
681
  end
682
682
 
683
- # The country that issued the passport.
683
+ # The two-character ISO 3166-1 code representing the country that issued the
684
+ # document (e.g., `US`).
684
685
  sig { returns(String) }
685
686
  attr_accessor :country
686
687
 
@@ -702,7 +703,8 @@ module Increase
702
703
  ).returns(T.attached_class)
703
704
  end
704
705
  def self.new(
705
- # The country that issued the passport.
706
+ # The two-character ISO 3166-1 code representing the country that issued the
707
+ # document (e.g., `US`).
706
708
  country:,
707
709
  # The passport's expiration date in YYYY-MM-DD format.
708
710
  expiration_date:,
@@ -1002,7 +1002,7 @@ module Increase
1002
1002
  end
1003
1003
 
1004
1004
  # The two-character ISO 3166-1 code representing the country that issued the
1005
- # document.
1005
+ # document (e.g., `US`).
1006
1006
  sig { returns(String) }
1007
1007
  attr_accessor :country
1008
1008
 
@@ -1042,7 +1042,7 @@ module Increase
1042
1042
  end
1043
1043
  def self.new(
1044
1044
  # The two-character ISO 3166-1 code representing the country that issued the
1045
- # document.
1045
+ # document (e.g., `US`).
1046
1046
  country:,
1047
1047
  # A description of the document submitted.
1048
1048
  description:,
@@ -1080,7 +1080,8 @@ module Increase
1080
1080
  )
1081
1081
  end
1082
1082
 
1083
- # The country that issued the passport.
1083
+ # The two-character ISO 3166-1 code representing the country that issued the
1084
+ # document (e.g., `US`).
1084
1085
  sig { returns(String) }
1085
1086
  attr_accessor :country
1086
1087
 
@@ -1102,7 +1103,8 @@ module Increase
1102
1103
  ).returns(T.attached_class)
1103
1104
  end
1104
1105
  def self.new(
1105
- # The country that issued the passport.
1106
+ # The two-character ISO 3166-1 code representing the country that issued the
1107
+ # document (e.g., `US`).
1106
1108
  country:,
1107
1109
  # The passport's expiration date in YYYY-MM-DD format.
1108
1110
  expiration_date:,
@@ -1940,7 +1942,7 @@ module Increase
1940
1942
  end
1941
1943
 
1942
1944
  # The two-character ISO 3166-1 code representing the country that issued the
1943
- # document.
1945
+ # document (e.g., `US`).
1944
1946
  sig { returns(String) }
1945
1947
  attr_accessor :country
1946
1948
 
@@ -1980,7 +1982,7 @@ module Increase
1980
1982
  end
1981
1983
  def self.new(
1982
1984
  # The two-character ISO 3166-1 code representing the country that issued the
1983
- # document.
1985
+ # document (e.g., `US`).
1984
1986
  country:,
1985
1987
  # A description of the document submitted.
1986
1988
  description:,
@@ -2018,7 +2020,8 @@ module Increase
2018
2020
  )
2019
2021
  end
2020
2022
 
2021
- # The country that issued the passport.
2023
+ # The two-character ISO 3166-1 code representing the country that issued the
2024
+ # passport (e.g., `US`).
2022
2025
  sig { returns(String) }
2023
2026
  attr_accessor :country
2024
2027
 
@@ -2040,7 +2043,8 @@ module Increase
2040
2043
  ).returns(T.attached_class)
2041
2044
  end
2042
2045
  def self.new(
2043
- # The country that issued the passport.
2046
+ # The two-character ISO 3166-1 code representing the country that issued the
2047
+ # passport (e.g., `US`).
2044
2048
  country:,
2045
2049
  # The passport's expiration date in YYYY-MM-DD format.
2046
2050
  expiration_date:,
@@ -2499,7 +2503,7 @@ module Increase
2499
2503
  end
2500
2504
 
2501
2505
  # The two-character ISO 3166-1 code representing the country that issued the
2502
- # document.
2506
+ # document (e.g., `US`).
2503
2507
  sig { returns(String) }
2504
2508
  attr_accessor :country
2505
2509
 
@@ -2539,7 +2543,7 @@ module Increase
2539
2543
  end
2540
2544
  def self.new(
2541
2545
  # The two-character ISO 3166-1 code representing the country that issued the
2542
- # document.
2546
+ # document (e.g., `US`).
2543
2547
  country:,
2544
2548
  # A description of the document submitted.
2545
2549
  description:,
@@ -2577,7 +2581,8 @@ module Increase
2577
2581
  )
2578
2582
  end
2579
2583
 
2580
- # The country that issued the passport.
2584
+ # The two-character ISO 3166-1 code representing the country that issued the
2585
+ # passport (e.g., `US`).
2581
2586
  sig { returns(String) }
2582
2587
  attr_accessor :country
2583
2588
 
@@ -2599,7 +2604,8 @@ module Increase
2599
2604
  ).returns(T.attached_class)
2600
2605
  end
2601
2606
  def self.new(
2602
- # The country that issued the passport.
2607
+ # The two-character ISO 3166-1 code representing the country that issued the
2608
+ # passport (e.g., `US`).
2603
2609
  country:,
2604
2610
  # The passport's expiration date in YYYY-MM-DD format.
2605
2611
  expiration_date:,
@@ -3517,7 +3523,7 @@ module Increase
3517
3523
  end
3518
3524
 
3519
3525
  # The two-character ISO 3166-1 code representing the country that issued the
3520
- # document.
3526
+ # document (e.g., `US`).
3521
3527
  sig { returns(String) }
3522
3528
  attr_accessor :country
3523
3529
 
@@ -3557,7 +3563,7 @@ module Increase
3557
3563
  end
3558
3564
  def self.new(
3559
3565
  # The two-character ISO 3166-1 code representing the country that issued the
3560
- # document.
3566
+ # document (e.g., `US`).
3561
3567
  country:,
3562
3568
  # A description of the document submitted.
3563
3569
  description:,
@@ -3595,7 +3601,8 @@ module Increase
3595
3601
  )
3596
3602
  end
3597
3603
 
3598
- # The country that issued the passport.
3604
+ # The two-character ISO 3166-1 code representing the country that issued the
3605
+ # passport (e.g., `US`).
3599
3606
  sig { returns(String) }
3600
3607
  attr_accessor :country
3601
3608
 
@@ -3617,7 +3624,8 @@ module Increase
3617
3624
  ).returns(T.attached_class)
3618
3625
  end
3619
3626
  def self.new(
3620
- # The country that issued the passport.
3627
+ # The two-character ISO 3166-1 code representing the country that issued the
3628
+ # passport (e.g., `US`).
3621
3629
  country:,
3622
3630
  # The passport's expiration date in YYYY-MM-DD format.
3623
3631
  expiration_date:,
@@ -4075,7 +4083,7 @@ module Increase
4075
4083
  end
4076
4084
 
4077
4085
  # The two-character ISO 3166-1 code representing the country that issued the
4078
- # document.
4086
+ # document (e.g., `US`).
4079
4087
  sig { returns(String) }
4080
4088
  attr_accessor :country
4081
4089
 
@@ -4115,7 +4123,7 @@ module Increase
4115
4123
  end
4116
4124
  def self.new(
4117
4125
  # The two-character ISO 3166-1 code representing the country that issued the
4118
- # document.
4126
+ # document (e.g., `US`).
4119
4127
  country:,
4120
4128
  # A description of the document submitted.
4121
4129
  description:,
@@ -4153,7 +4161,8 @@ module Increase
4153
4161
  )
4154
4162
  end
4155
4163
 
4156
- # The country that issued the passport.
4164
+ # The two-character ISO 3166-1 code representing the country that issued the
4165
+ # passport (e.g., `US`).
4157
4166
  sig { returns(String) }
4158
4167
  attr_accessor :country
4159
4168
 
@@ -4175,7 +4184,8 @@ module Increase
4175
4184
  ).returns(T.attached_class)
4176
4185
  end
4177
4186
  def self.new(
4178
- # The country that issued the passport.
4187
+ # The two-character ISO 3166-1 code representing the country that issued the
4188
+ # passport (e.g., `US`).
4179
4189
  country:,
4180
4190
  # The passport's expiration date in YYYY-MM-DD format.
4181
4191
  expiration_date:,
@@ -81,7 +81,9 @@ module Increase
81
81
  attr_accessor :type
82
82
 
83
83
  # Pending Transactions are potential future additions and removals of money from
84
- # your bank account.
84
+ # your bank account. They impact your available balance, but not your current
85
+ # balance. To learn more, see
86
+ # [Transactions and Transfers](/documentation/transactions-transfers).
85
87
  sig do
86
88
  params(
87
89
  id: String,
@@ -1940,6 +1942,20 @@ module Increase
1940
1942
  Increase::PendingTransaction::Source::CardAuthorization::ProcessingCategory::TaggedSymbol
1941
1943
  )
1942
1944
 
1945
+ # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
1946
+ CASH_DISBURSEMENT =
1947
+ T.let(
1948
+ :cash_disbursement,
1949
+ Increase::PendingTransaction::Source::CardAuthorization::ProcessingCategory::TaggedSymbol
1950
+ )
1951
+
1952
+ # The processing category is unknown.
1953
+ UNKNOWN =
1954
+ T.let(
1955
+ :unknown,
1956
+ Increase::PendingTransaction::Source::CardAuthorization::ProcessingCategory::TaggedSymbol
1957
+ )
1958
+
1943
1959
  sig do
1944
1960
  override.returns(
1945
1961
  T::Array[
@@ -1413,6 +1413,20 @@ module Increase
1413
1413
  Increase::RealTimeDecision::CardAuthorization::ProcessingCategory::TaggedSymbol
1414
1414
  )
1415
1415
 
1416
+ # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
1417
+ CASH_DISBURSEMENT =
1418
+ T.let(
1419
+ :cash_disbursement,
1420
+ Increase::RealTimeDecision::CardAuthorization::ProcessingCategory::TaggedSymbol
1421
+ )
1422
+
1423
+ # The processing category is unknown.
1424
+ UNKNOWN =
1425
+ T.let(
1426
+ :unknown,
1427
+ Increase::RealTimeDecision::CardAuthorization::ProcessingCategory::TaggedSymbol
1428
+ )
1429
+
1416
1430
  sig do
1417
1431
  override.returns(
1418
1432
  T::Array[
@@ -63,7 +63,8 @@ module Increase
63
63
  attr_accessor :type
64
64
 
65
65
  # Transactions are the immutable additions and removals of money from your bank
66
- # account. They're the equivalent of line items on your bank statement.
66
+ # account. They're the equivalent of line items on your bank statement. To learn
67
+ # more, see [Transactions and Transfers](/documentation/transactions-transfers).
67
68
  sig do
68
69
  params(
69
70
  id: String,
@@ -858,6 +858,8 @@ module Increase
858
858
  | :purchase
859
859
  | :quasi_cash
860
860
  | :refund
861
+ | :cash_disbursement
862
+ | :unknown
861
863
 
862
864
  module ProcessingCategory
863
865
  extend Increase::Internal::Type::Enum
@@ -883,6 +885,12 @@ module Increase
883
885
  # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder.
884
886
  REFUND: :refund
885
887
 
888
+ # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
889
+ CASH_DISBURSEMENT: :cash_disbursement
890
+
891
+ # The processing category is unknown.
892
+ UNKNOWN: :unknown
893
+
886
894
  def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardAuthorization::processing_category]
887
895
  end
888
896
 
@@ -1533,6 +1541,8 @@ module Increase
1533
1541
  | :purchase
1534
1542
  | :quasi_cash
1535
1543
  | :refund
1544
+ | :cash_disbursement
1545
+ | :unknown
1536
1546
 
1537
1547
  module ProcessingCategory
1538
1548
  extend Increase::Internal::Type::Enum
@@ -1558,6 +1568,12 @@ module Increase
1558
1568
  # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder.
1559
1569
  REFUND: :refund
1560
1570
 
1571
+ # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
1572
+ CASH_DISBURSEMENT: :cash_disbursement
1573
+
1574
+ # The processing category is unknown.
1575
+ UNKNOWN: :unknown
1576
+
1561
1577
  def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardDecline::processing_category]
1562
1578
  end
1563
1579
 
@@ -735,6 +735,8 @@ module Increase
735
735
  | :purchase
736
736
  | :quasi_cash
737
737
  | :refund
738
+ | :cash_disbursement
739
+ | :unknown
738
740
 
739
741
  module ProcessingCategory
740
742
  extend Increase::Internal::Type::Enum
@@ -760,6 +762,12 @@ module Increase
760
762
  # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder.
761
763
  REFUND: :refund
762
764
 
765
+ # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
766
+ CASH_DISBURSEMENT: :cash_disbursement
767
+
768
+ # The processing category is unknown.
769
+ UNKNOWN: :unknown
770
+
763
771
  def self?.values: -> ::Array[Increase::Models::DeclinedTransaction::Source::CardDecline::processing_category]
764
772
  end
765
773
 
@@ -701,6 +701,8 @@ module Increase
701
701
  | :purchase
702
702
  | :quasi_cash
703
703
  | :refund
704
+ | :cash_disbursement
705
+ | :unknown
704
706
 
705
707
  module ProcessingCategory
706
708
  extend Increase::Internal::Type::Enum
@@ -726,6 +728,12 @@ module Increase
726
728
  # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder.
727
729
  REFUND: :refund
728
730
 
731
+ # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
732
+ CASH_DISBURSEMENT: :cash_disbursement
733
+
734
+ # The processing category is unknown.
735
+ UNKNOWN: :unknown
736
+
729
737
  def self?.values: -> ::Array[Increase::Models::PendingTransaction::Source::CardAuthorization::processing_category]
730
738
  end
731
739
 
@@ -549,6 +549,8 @@ module Increase
549
549
  | :purchase
550
550
  | :quasi_cash
551
551
  | :refund
552
+ | :cash_disbursement
553
+ | :unknown
552
554
 
553
555
  module ProcessingCategory
554
556
  extend Increase::Internal::Type::Enum
@@ -574,6 +576,12 @@ module Increase
574
576
  # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder.
575
577
  REFUND: :refund
576
578
 
579
+ # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
580
+ CASH_DISBURSEMENT: :cash_disbursement
581
+
582
+ # The processing category is unknown.
583
+ UNKNOWN: :unknown
584
+
577
585
  def self?.values: -> ::Array[Increase::Models::RealTimeDecision::CardAuthorization::processing_category]
578
586
  end
579
587
 
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.2.0
4
+ version: 1.4.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-06-24 00:00:00.000000000 Z
11
+ date: 2025-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool