increase 1.22.0 → 1.23.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: eb491c65d1f55e747b76568f0a3fb5d466112fb93137654b3fb8a54205f405f0
4
- data.tar.gz: 01ed005d0894e359a6b166297b4e30a0e792f2e3bbe898d772500049330d357f
3
+ metadata.gz: 5550ee7efebdb3f58b6750a66d126ee79bc4ec230d05be2b03e049015b30c510
4
+ data.tar.gz: 3f1ed46bcac3b69a74c591dffae37f60790c370ab393f3d656010fc1b814f78a
5
5
  SHA512:
6
- metadata.gz: 25872ee275f37c812cbd7a2abff301b1ecb011c4eaa68ac7fd421890fb32943b831cef8a27432335c22c0a70f6561f6a40a3aeb70d7e50e241ae90e0cf06ffa7
7
- data.tar.gz: 6988f2aa085d8c463cfc5b111aeef138b260b5ec3fc5f64ffe4a8ce8620ebe09a6ea825ec77b36f0f0118a745a84cc92f2b3d74b82d1c1d110167de77da7c55d
6
+ metadata.gz: 23bd60638942c786c521c570d9833ecd460fb80f6ef7a3f84f6b2260d6ffc0600f34748ee536ee03ff2d44a0043ef0d77f680b2f7901fb47cd9ac9128039fd88
7
+ data.tar.gz: 637a0e8b970e3f613a577ffb729096d19ad1214b279013bde56faadb47a5a1c2ade345c210d920ffaa0b9f466ceb120dff403a09934748d6c66468a30f2f433a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.23.0 (2025-08-01)
4
+
5
+ Full Changelog: [v1.22.0...v1.23.0](https://github.com/Increase/increase-ruby/compare/v1.22.0...v1.23.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([16fe155](https://github.com/Increase/increase-ruby/commit/16fe1558aeff7263c3cb1cf49cf42e919dd55a73))
10
+
3
11
  ## 1.22.0 (2025-08-01)
4
12
 
5
13
  Full Changelog: [v1.21.0...v1.22.0](https://github.com/Increase/increase-ruby/compare/v1.21.0...v1.22.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.22.0"
18
+ gem "increase", "~> 1.23.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -600,9 +600,18 @@ module Increase
600
600
  module Category
601
601
  extend Increase::Internal::Type::Enum
602
602
 
603
- # The Public Entity is a Municipality.
603
+ # A municipality.
604
604
  MUNICIPALITY = :municipality
605
605
 
606
+ # A state agency.
607
+ STATE_AGENCY = :state_agency
608
+
609
+ # A state government.
610
+ STATE_GOVERNMENT = :state_government
611
+
612
+ # A federal agency.
613
+ FEDERAL_AGENCY = :federal_agency
614
+
606
615
  # @!method self.values
607
616
  # @return [Array<Symbol>]
608
617
  end
@@ -794,9 +794,18 @@ module Increase
794
794
  module Category
795
795
  extend Increase::Internal::Type::Enum
796
796
 
797
- # The Public Entity is a Municipality.
797
+ # A municipality.
798
798
  MUNICIPALITY = :municipality
799
799
 
800
+ # A state agency.
801
+ STATE_AGENCY = :state_agency
802
+
803
+ # A state government.
804
+ STATE_GOVERNMENT = :state_government
805
+
806
+ # A federal agency.
807
+ FEDERAL_AGENCY = :federal_agency
808
+
800
809
  # @!method self.values
801
810
  # @return [Array<Symbol>]
802
811
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.22.0"
4
+ VERSION = "1.23.0"
5
5
  end
@@ -981,13 +981,34 @@ module Increase
981
981
  end
982
982
  OrSymbol = T.type_alias { T.any(Symbol, String) }
983
983
 
984
- # The Public Entity is a Municipality.
984
+ # A municipality.
985
985
  MUNICIPALITY =
986
986
  T.let(
987
987
  :municipality,
988
988
  Increase::Entity::GovernmentAuthority::Category::TaggedSymbol
989
989
  )
990
990
 
991
+ # A state agency.
992
+ STATE_AGENCY =
993
+ T.let(
994
+ :state_agency,
995
+ Increase::Entity::GovernmentAuthority::Category::TaggedSymbol
996
+ )
997
+
998
+ # A state government.
999
+ STATE_GOVERNMENT =
1000
+ T.let(
1001
+ :state_government,
1002
+ Increase::Entity::GovernmentAuthority::Category::TaggedSymbol
1003
+ )
1004
+
1005
+ # A federal agency.
1006
+ FEDERAL_AGENCY =
1007
+ T.let(
1008
+ :federal_agency,
1009
+ Increase::Entity::GovernmentAuthority::Category::TaggedSymbol
1010
+ )
1011
+
991
1012
  sig do
992
1013
  override.returns(
993
1014
  T::Array[
@@ -1433,13 +1433,34 @@ module Increase
1433
1433
  end
1434
1434
  OrSymbol = T.type_alias { T.any(Symbol, String) }
1435
1435
 
1436
- # The Public Entity is a Municipality.
1436
+ # A municipality.
1437
1437
  MUNICIPALITY =
1438
1438
  T.let(
1439
1439
  :municipality,
1440
1440
  Increase::EntityCreateParams::GovernmentAuthority::Category::TaggedSymbol
1441
1441
  )
1442
1442
 
1443
+ # A state agency.
1444
+ STATE_AGENCY =
1445
+ T.let(
1446
+ :state_agency,
1447
+ Increase::EntityCreateParams::GovernmentAuthority::Category::TaggedSymbol
1448
+ )
1449
+
1450
+ # A state government.
1451
+ STATE_GOVERNMENT =
1452
+ T.let(
1453
+ :state_government,
1454
+ Increase::EntityCreateParams::GovernmentAuthority::Category::TaggedSymbol
1455
+ )
1456
+
1457
+ # A federal agency.
1458
+ FEDERAL_AGENCY =
1459
+ T.let(
1460
+ :federal_agency,
1461
+ Increase::EntityCreateParams::GovernmentAuthority::Category::TaggedSymbol
1462
+ )
1463
+
1443
1464
  sig do
1444
1465
  override.returns(
1445
1466
  T::Array[
@@ -430,14 +430,24 @@ module Increase
430
430
  def to_hash: -> { authorized_person_id: String, name: String }
431
431
  end
432
432
 
433
- type category = :municipality
433
+ type category =
434
+ :municipality | :state_agency | :state_government | :federal_agency
434
435
 
435
436
  module Category
436
437
  extend Increase::Internal::Type::Enum
437
438
 
438
- # The Public Entity is a Municipality.
439
+ # A municipality.
439
440
  MUNICIPALITY: :municipality
440
441
 
442
+ # A state agency.
443
+ STATE_AGENCY: :state_agency
444
+
445
+ # A state government.
446
+ STATE_GOVERNMENT: :state_government
447
+
448
+ # A federal agency.
449
+ FEDERAL_AGENCY: :federal_agency
450
+
441
451
  def self?.values: -> ::Array[Increase::Models::Entity::GovernmentAuthority::category]
442
452
  end
443
453
  end
@@ -636,14 +636,24 @@ module Increase
636
636
  def to_hash: -> { name: String }
637
637
  end
638
638
 
639
- type category = :municipality
639
+ type category =
640
+ :municipality | :state_agency | :state_government | :federal_agency
640
641
 
641
642
  module Category
642
643
  extend Increase::Internal::Type::Enum
643
644
 
644
- # The Public Entity is a Municipality.
645
+ # A municipality.
645
646
  MUNICIPALITY: :municipality
646
647
 
648
+ # A state agency.
649
+ STATE_AGENCY: :state_agency
650
+
651
+ # A state government.
652
+ STATE_GOVERNMENT: :state_government
653
+
654
+ # A federal agency.
655
+ FEDERAL_AGENCY: :federal_agency
656
+
647
657
  def self?.values: -> ::Array[Increase::Models::EntityCreateParams::GovernmentAuthority::category]
648
658
  end
649
659
  end
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.22.0
4
+ version: 1.23.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-01 00:00:00.000000000 Z
11
+ date: 2025-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool