increase 1.177.0 → 1.178.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: 94dd47486710d361ab07c2cd99e8db7b942055aa1ac43c509abe209fe3fe39ae
4
- data.tar.gz: 9b340bacecd6d0bacaa58693533f75b7c9da8a599d556597610bf7e43510ba21
3
+ metadata.gz: 3d17e8dd210b789bf883a3e7acc28fd3f21fa291ae54f04189f57c2f1405a88f
4
+ data.tar.gz: 85c70f77d29988418162c5bf607e8edc0cbf5136c2fa0ef731b4e04cf4d4d3b0
5
5
  SHA512:
6
- metadata.gz: ba098064e7fd448c32a8b92fc8e6f7a949e82cadd994d3483baf73e845923e377a3ab8e781e024b9d9a24b927c9deda266831d4a16dbe24a4acc83c2f1b427f5
7
- data.tar.gz: 95eb72594004e680d16762cd12c26f269a008b19d3e69a12bee638f7a7c623513d20f38b6078c9ac2638ec017d3baf1801105013bfec9d39a37daac4b172f8e8
6
+ metadata.gz: 99325b0c2d977d086724b40bead1444fcdf6dd8fe69826018851d067f74c4f2c800aed42b977c800220d9330d62a488b68dedffbf754718b3b8c5b11786e8765
7
+ data.tar.gz: b1397f9e0e1e27d2e7b51e5d4003b62a1e886c910e951944bc3db4331118b804cdd6786fcc4cc58d93f7a5bb891c4fc121540b061d6ff96f8bc452d5ac7d26be
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.178.0 (2026-01-21)
4
+
5
+ Full Changelog: [v1.177.0...v1.178.0](https://github.com/Increase/increase-ruby/compare/v1.177.0...v1.178.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([36361bc](https://github.com/Increase/increase-ruby/commit/36361bcbef8213d9aeb54e6f4b90dae74bcb21e0))
10
+
11
+
12
+ ### Chores
13
+
14
+ * **internal:** update `actions/checkout` version ([3a61451](https://github.com/Increase/increase-ruby/commit/3a61451c76a17f7b56580c139e06db98bf4ea402))
15
+
3
16
  ## 1.177.0 (2026-01-16)
4
17
 
5
18
  Full Changelog: [v1.176.0...v1.177.0](https://github.com/Increase/increase-ruby/compare/v1.176.0...v1.177.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.177.0"
18
+ gem "increase", "~> 1.178.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -913,16 +913,6 @@ module Increase
913
913
 
914
914
  # @see Increase::Models::CheckTransfer#submission
915
915
  class Submission < Increase::Internal::Type::BaseModel
916
- # @!attribute address_correction_action
917
- # Per USPS requirements, Increase will standardize the address to USPS standards
918
- # and check it against the USPS National Change of Address (NCOA) database before
919
- # mailing it. This indicates what modifications, if any, were made to the address
920
- # before printing and mailing the check.
921
- #
922
- # @return [Symbol, Increase::Models::CheckTransfer::Submission::AddressCorrectionAction]
923
- required :address_correction_action,
924
- enum: -> { Increase::CheckTransfer::Submission::AddressCorrectionAction }
925
-
926
916
  # @!attribute submitted_address
927
917
  # The address we submitted to the printer. This is what is physically printed on
928
918
  # the check.
@@ -931,47 +921,20 @@ module Increase
931
921
  required :submitted_address, -> { Increase::CheckTransfer::Submission::SubmittedAddress }
932
922
 
933
923
  # @!attribute submitted_at
934
- # When this check transfer was submitted to our check printer.
924
+ # When this check was submitted to our check printer.
935
925
  #
936
926
  # @return [Time]
937
927
  required :submitted_at, Time
938
928
 
939
- # @!method initialize(address_correction_action:, submitted_address:, submitted_at:)
929
+ # @!method initialize(submitted_address:, submitted_at:)
940
930
  # Some parameter documentations has been truncated, see
941
931
  # {Increase::Models::CheckTransfer::Submission} for more details.
942
932
  #
943
933
  # After the transfer is submitted, this will contain supplemental details.
944
934
  #
945
- # @param address_correction_action [Symbol, Increase::Models::CheckTransfer::Submission::AddressCorrectionAction] Per USPS requirements, Increase will standardize the address to USPS standards a
946
- #
947
935
  # @param submitted_address [Increase::Models::CheckTransfer::Submission::SubmittedAddress] The address we submitted to the printer. This is what is physically printed on t
948
936
  #
949
- # @param submitted_at [Time] When this check transfer was submitted to our check printer.
950
-
951
- # Per USPS requirements, Increase will standardize the address to USPS standards
952
- # and check it against the USPS National Change of Address (NCOA) database before
953
- # mailing it. This indicates what modifications, if any, were made to the address
954
- # before printing and mailing the check.
955
- #
956
- # @see Increase::Models::CheckTransfer::Submission#address_correction_action
957
- module AddressCorrectionAction
958
- extend Increase::Internal::Type::Enum
959
-
960
- # No address correction took place.
961
- NONE = :none
962
-
963
- # The address was standardized.
964
- STANDARDIZATION = :standardization
965
-
966
- # The address was first standardized and then changed because the recipient moved.
967
- STANDARDIZATION_WITH_ADDRESS_CHANGE = :standardization_with_address_change
968
-
969
- # An error occurred while correcting the address. This typically means the USPS could not find that address. The address was not changed.
970
- ERROR = :error
971
-
972
- # @!method self.values
973
- # @return [Array<Symbol>]
974
- end
937
+ # @param submitted_at [Time] When this check was submitted to our check printer.
975
938
 
976
939
  # @see Increase::Models::CheckTransfer::Submission#submitted_address
977
940
  class SubmittedAddress < Increase::Internal::Type::BaseModel
@@ -310,6 +310,12 @@ module Increase
310
310
  # Occurs whenever a Physical Card Profile is updated.
311
311
  PHYSICAL_CARD_PROFILE_UPDATED = :"physical_card_profile.updated"
312
312
 
313
+ # Occurs whenever a Physical Check is created.
314
+ PHYSICAL_CHECK_CREATED = :"physical_check.created"
315
+
316
+ # Occurs whenever a Physical Check is updated.
317
+ PHYSICAL_CHECK_UPDATED = :"physical_check.updated"
318
+
313
319
  # Occurs whenever a Program is created.
314
320
  PROGRAM_CREATED = :"program.created"
315
321
 
@@ -312,6 +312,12 @@ module Increase
312
312
  # Occurs whenever a Physical Card Profile is updated.
313
313
  PHYSICAL_CARD_PROFILE_UPDATED = :"physical_card_profile.updated"
314
314
 
315
+ # Occurs whenever a Physical Check is created.
316
+ PHYSICAL_CHECK_CREATED = :"physical_check.created"
317
+
318
+ # Occurs whenever a Physical Check is updated.
319
+ PHYSICAL_CHECK_UPDATED = :"physical_check.updated"
320
+
315
321
  # Occurs whenever a Program is created.
316
322
  PROGRAM_CREATED = :"program.created"
317
323
 
@@ -333,6 +333,12 @@ module Increase
333
333
  # Occurs whenever a Physical Card Profile is updated.
334
334
  PHYSICAL_CARD_PROFILE_UPDATED = :"physical_card_profile.updated"
335
335
 
336
+ # Occurs whenever a Physical Check is created.
337
+ PHYSICAL_CHECK_CREATED = :"physical_check.created"
338
+
339
+ # Occurs whenever a Physical Check is updated.
340
+ PHYSICAL_CHECK_UPDATED = :"physical_check.updated"
341
+
336
342
  # Occurs whenever a Program is created.
337
343
  PROGRAM_CREATED = :"program.created"
338
344
 
@@ -302,6 +302,12 @@ module Increase
302
302
  # Occurs whenever a Physical Card Profile is updated.
303
303
  PHYSICAL_CARD_PROFILE_UPDATED = :"physical_card_profile.updated"
304
304
 
305
+ # Occurs whenever a Physical Check is created.
306
+ PHYSICAL_CHECK_CREATED = :"physical_check.created"
307
+
308
+ # Occurs whenever a Physical Check is updated.
309
+ PHYSICAL_CHECK_UPDATED = :"physical_check.updated"
310
+
305
311
  # Occurs whenever a Program is created.
306
312
  PROGRAM_CREATED = :"program.created"
307
313
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.177.0"
4
+ VERSION = "1.178.0"
5
5
  end
@@ -1529,17 +1529,6 @@ module Increase
1529
1529
  )
1530
1530
  end
1531
1531
 
1532
- # Per USPS requirements, Increase will standardize the address to USPS standards
1533
- # and check it against the USPS National Change of Address (NCOA) database before
1534
- # mailing it. This indicates what modifications, if any, were made to the address
1535
- # before printing and mailing the check.
1536
- sig do
1537
- returns(
1538
- Increase::CheckTransfer::Submission::AddressCorrectionAction::TaggedSymbol
1539
- )
1540
- end
1541
- attr_accessor :address_correction_action
1542
-
1543
1532
  # The address we submitted to the printer. This is what is physically printed on
1544
1533
  # the check.
1545
1534
  sig { returns(Increase::CheckTransfer::Submission::SubmittedAddress) }
@@ -1553,30 +1542,23 @@ module Increase
1553
1542
  end
1554
1543
  attr_writer :submitted_address
1555
1544
 
1556
- # When this check transfer was submitted to our check printer.
1545
+ # When this check was submitted to our check printer.
1557
1546
  sig { returns(Time) }
1558
1547
  attr_accessor :submitted_at
1559
1548
 
1560
1549
  # After the transfer is submitted, this will contain supplemental details.
1561
1550
  sig do
1562
1551
  params(
1563
- address_correction_action:
1564
- Increase::CheckTransfer::Submission::AddressCorrectionAction::OrSymbol,
1565
1552
  submitted_address:
1566
1553
  Increase::CheckTransfer::Submission::SubmittedAddress::OrHash,
1567
1554
  submitted_at: Time
1568
1555
  ).returns(T.attached_class)
1569
1556
  end
1570
1557
  def self.new(
1571
- # Per USPS requirements, Increase will standardize the address to USPS standards
1572
- # and check it against the USPS National Change of Address (NCOA) database before
1573
- # mailing it. This indicates what modifications, if any, were made to the address
1574
- # before printing and mailing the check.
1575
- address_correction_action:,
1576
1558
  # The address we submitted to the printer. This is what is physically printed on
1577
1559
  # the check.
1578
1560
  submitted_address:,
1579
- # When this check transfer was submitted to our check printer.
1561
+ # When this check was submitted to our check printer.
1580
1562
  submitted_at:
1581
1563
  )
1582
1564
  end
@@ -1584,8 +1566,6 @@ module Increase
1584
1566
  sig do
1585
1567
  override.returns(
1586
1568
  {
1587
- address_correction_action:
1588
- Increase::CheckTransfer::Submission::AddressCorrectionAction::TaggedSymbol,
1589
1569
  submitted_address:
1590
1570
  Increase::CheckTransfer::Submission::SubmittedAddress,
1591
1571
  submitted_at: Time
@@ -1595,61 +1575,6 @@ module Increase
1595
1575
  def to_hash
1596
1576
  end
1597
1577
 
1598
- # Per USPS requirements, Increase will standardize the address to USPS standards
1599
- # and check it against the USPS National Change of Address (NCOA) database before
1600
- # mailing it. This indicates what modifications, if any, were made to the address
1601
- # before printing and mailing the check.
1602
- module AddressCorrectionAction
1603
- extend Increase::Internal::Type::Enum
1604
-
1605
- TaggedSymbol =
1606
- T.type_alias do
1607
- T.all(
1608
- Symbol,
1609
- Increase::CheckTransfer::Submission::AddressCorrectionAction
1610
- )
1611
- end
1612
- OrSymbol = T.type_alias { T.any(Symbol, String) }
1613
-
1614
- # No address correction took place.
1615
- NONE =
1616
- T.let(
1617
- :none,
1618
- Increase::CheckTransfer::Submission::AddressCorrectionAction::TaggedSymbol
1619
- )
1620
-
1621
- # The address was standardized.
1622
- STANDARDIZATION =
1623
- T.let(
1624
- :standardization,
1625
- Increase::CheckTransfer::Submission::AddressCorrectionAction::TaggedSymbol
1626
- )
1627
-
1628
- # The address was first standardized and then changed because the recipient moved.
1629
- STANDARDIZATION_WITH_ADDRESS_CHANGE =
1630
- T.let(
1631
- :standardization_with_address_change,
1632
- Increase::CheckTransfer::Submission::AddressCorrectionAction::TaggedSymbol
1633
- )
1634
-
1635
- # An error occurred while correcting the address. This typically means the USPS could not find that address. The address was not changed.
1636
- ERROR =
1637
- T.let(
1638
- :error,
1639
- Increase::CheckTransfer::Submission::AddressCorrectionAction::TaggedSymbol
1640
- )
1641
-
1642
- sig do
1643
- override.returns(
1644
- T::Array[
1645
- Increase::CheckTransfer::Submission::AddressCorrectionAction::TaggedSymbol
1646
- ]
1647
- )
1648
- end
1649
- def self.values
1650
- end
1651
- end
1652
-
1653
1578
  class SubmittedAddress < Increase::Internal::Type::BaseModel
1654
1579
  OrHash =
1655
1580
  T.type_alias do
@@ -605,6 +605,20 @@ module Increase
605
605
  Increase::Event::Category::TaggedSymbol
606
606
  )
607
607
 
608
+ # Occurs whenever a Physical Check is created.
609
+ PHYSICAL_CHECK_CREATED =
610
+ T.let(
611
+ :"physical_check.created",
612
+ Increase::Event::Category::TaggedSymbol
613
+ )
614
+
615
+ # Occurs whenever a Physical Check is updated.
616
+ PHYSICAL_CHECK_UPDATED =
617
+ T.let(
618
+ :"physical_check.updated",
619
+ Increase::Event::Category::TaggedSymbol
620
+ )
621
+
608
622
  # Occurs whenever a Program is created.
609
623
  PROGRAM_CREATED =
610
624
  T.let(:"program.created", Increase::Event::Category::TaggedSymbol)
@@ -704,6 +704,20 @@ module Increase
704
704
  Increase::EventListParams::Category::In::TaggedSymbol
705
705
  )
706
706
 
707
+ # Occurs whenever a Physical Check is created.
708
+ PHYSICAL_CHECK_CREATED =
709
+ T.let(
710
+ :"physical_check.created",
711
+ Increase::EventListParams::Category::In::TaggedSymbol
712
+ )
713
+
714
+ # Occurs whenever a Physical Check is updated.
715
+ PHYSICAL_CHECK_UPDATED =
716
+ T.let(
717
+ :"physical_check.updated",
718
+ Increase::EventListParams::Category::In::TaggedSymbol
719
+ )
720
+
707
721
  # Occurs whenever a Program is created.
708
722
  PROGRAM_CREATED =
709
723
  T.let(
@@ -688,6 +688,20 @@ module Increase
688
688
  Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
689
689
  )
690
690
 
691
+ # Occurs whenever a Physical Check is created.
692
+ PHYSICAL_CHECK_CREATED =
693
+ T.let(
694
+ :"physical_check.created",
695
+ Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
696
+ )
697
+
698
+ # Occurs whenever a Physical Check is updated.
699
+ PHYSICAL_CHECK_UPDATED =
700
+ T.let(
701
+ :"physical_check.updated",
702
+ Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
703
+ )
704
+
691
705
  # Occurs whenever a Program is created.
692
706
  PROGRAM_CREATED =
693
707
  T.let(
@@ -687,6 +687,20 @@ module Increase
687
687
  Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
688
688
  )
689
689
 
690
+ # Occurs whenever a Physical Check is created.
691
+ PHYSICAL_CHECK_CREATED =
692
+ T.let(
693
+ :"physical_check.created",
694
+ Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
695
+ )
696
+
697
+ # Occurs whenever a Physical Check is updated.
698
+ PHYSICAL_CHECK_UPDATED =
699
+ T.let(
700
+ :"physical_check.updated",
701
+ Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
702
+ )
703
+
690
704
  # Occurs whenever a Program is created.
691
705
  PROGRAM_CREATED =
692
706
  T.let(
@@ -661,54 +661,25 @@ module Increase
661
661
 
662
662
  type submission =
663
663
  {
664
- address_correction_action: Increase::Models::CheckTransfer::Submission::address_correction_action,
665
664
  submitted_address: Increase::CheckTransfer::Submission::SubmittedAddress,
666
665
  submitted_at: Time
667
666
  }
668
667
 
669
668
  class Submission < Increase::Internal::Type::BaseModel
670
- attr_accessor address_correction_action: Increase::Models::CheckTransfer::Submission::address_correction_action
671
-
672
669
  attr_accessor submitted_address: Increase::CheckTransfer::Submission::SubmittedAddress
673
670
 
674
671
  attr_accessor submitted_at: Time
675
672
 
676
673
  def initialize: (
677
- address_correction_action: Increase::Models::CheckTransfer::Submission::address_correction_action,
678
674
  submitted_address: Increase::CheckTransfer::Submission::SubmittedAddress,
679
675
  submitted_at: Time
680
676
  ) -> void
681
677
 
682
678
  def to_hash: -> {
683
- address_correction_action: Increase::Models::CheckTransfer::Submission::address_correction_action,
684
679
  submitted_address: Increase::CheckTransfer::Submission::SubmittedAddress,
685
680
  submitted_at: Time
686
681
  }
687
682
 
688
- type address_correction_action =
689
- :none
690
- | :standardization
691
- | :standardization_with_address_change
692
- | :error
693
-
694
- module AddressCorrectionAction
695
- extend Increase::Internal::Type::Enum
696
-
697
- # No address correction took place.
698
- NONE: :none
699
-
700
- # The address was standardized.
701
- STANDARDIZATION: :standardization
702
-
703
- # The address was first standardized and then changed because the recipient moved.
704
- STANDARDIZATION_WITH_ADDRESS_CHANGE: :standardization_with_address_change
705
-
706
- # An error occurred while correcting the address. This typically means the USPS could not find that address. The address was not changed.
707
- ERROR: :error
708
-
709
- def self?.values: -> ::Array[Increase::Models::CheckTransfer::Submission::address_correction_action]
710
- end
711
-
712
683
  type submitted_address =
713
684
  {
714
685
  city: String,
@@ -122,6 +122,8 @@ module Increase
122
122
  | :"physical_card.updated"
123
123
  | :"physical_card_profile.created"
124
124
  | :"physical_card_profile.updated"
125
+ | :"physical_check.created"
126
+ | :"physical_check.updated"
125
127
  | :"program.created"
126
128
  | :"program.updated"
127
129
  | :"proof_of_authorization_request.created"
@@ -387,6 +389,12 @@ module Increase
387
389
  # Occurs whenever a Physical Card Profile is updated.
388
390
  PHYSICAL_CARD_PROFILE_UPDATED: :"physical_card_profile.updated"
389
391
 
392
+ # Occurs whenever a Physical Check is created.
393
+ PHYSICAL_CHECK_CREATED: :"physical_check.created"
394
+
395
+ # Occurs whenever a Physical Check is updated.
396
+ PHYSICAL_CHECK_UPDATED: :"physical_check.updated"
397
+
390
398
  # Occurs whenever a Program is created.
391
399
  PROGRAM_CREATED: :"program.created"
392
400
 
@@ -155,6 +155,8 @@ module Increase
155
155
  | :"physical_card.updated"
156
156
  | :"physical_card_profile.created"
157
157
  | :"physical_card_profile.updated"
158
+ | :"physical_check.created"
159
+ | :"physical_check.updated"
158
160
  | :"program.created"
159
161
  | :"program.updated"
160
162
  | :"proof_of_authorization_request.created"
@@ -420,6 +422,12 @@ module Increase
420
422
  # Occurs whenever a Physical Card Profile is updated.
421
423
  PHYSICAL_CARD_PROFILE_UPDATED: :"physical_card_profile.updated"
422
424
 
425
+ # Occurs whenever a Physical Check is created.
426
+ PHYSICAL_CHECK_CREATED: :"physical_check.created"
427
+
428
+ # Occurs whenever a Physical Check is updated.
429
+ PHYSICAL_CHECK_UPDATED: :"physical_check.updated"
430
+
423
431
  # Occurs whenever a Program is created.
424
432
  PROGRAM_CREATED: :"program.created"
425
433
 
@@ -132,6 +132,8 @@ module Increase
132
132
  | :"physical_card.updated"
133
133
  | :"physical_card_profile.created"
134
134
  | :"physical_card_profile.updated"
135
+ | :"physical_check.created"
136
+ | :"physical_check.updated"
135
137
  | :"program.created"
136
138
  | :"program.updated"
137
139
  | :"proof_of_authorization_request.created"
@@ -397,6 +399,12 @@ module Increase
397
399
  # Occurs whenever a Physical Card Profile is updated.
398
400
  PHYSICAL_CARD_PROFILE_UPDATED: :"physical_card_profile.updated"
399
401
 
402
+ # Occurs whenever a Physical Check is created.
403
+ PHYSICAL_CHECK_CREATED: :"physical_check.created"
404
+
405
+ # Occurs whenever a Physical Check is updated.
406
+ PHYSICAL_CHECK_UPDATED: :"physical_check.updated"
407
+
400
408
  # Occurs whenever a Program is created.
401
409
  PROGRAM_CREATED: :"program.created"
402
410
 
@@ -135,6 +135,8 @@ module Increase
135
135
  | :"physical_card.updated"
136
136
  | :"physical_card_profile.created"
137
137
  | :"physical_card_profile.updated"
138
+ | :"physical_check.created"
139
+ | :"physical_check.updated"
138
140
  | :"program.created"
139
141
  | :"program.updated"
140
142
  | :"proof_of_authorization_request.created"
@@ -400,6 +402,12 @@ module Increase
400
402
  # Occurs whenever a Physical Card Profile is updated.
401
403
  PHYSICAL_CARD_PROFILE_UPDATED: :"physical_card_profile.updated"
402
404
 
405
+ # Occurs whenever a Physical Check is created.
406
+ PHYSICAL_CHECK_CREATED: :"physical_check.created"
407
+
408
+ # Occurs whenever a Physical Check is updated.
409
+ PHYSICAL_CHECK_UPDATED: :"physical_check.updated"
410
+
403
411
  # Occurs whenever a Program is created.
404
412
  PROGRAM_CREATED: :"program.created"
405
413
 
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.177.0
4
+ version: 1.178.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-01-16 00:00:00.000000000 Z
11
+ date: 2026-01-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi