increase 1.102.0 → 1.104.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: 0073e33da4dc5316fa83774df2a6fa059ebb617ea2b59228baadbf5badc23f45
4
- data.tar.gz: afc8cc41146b15bb5235d757acc800561995a5eb14d66704cd3601d0a629ba5a
3
+ metadata.gz: ca00dda0edaaea7e9afa6072fc1ca92a9514a3d66f379436ee2f34286aca4252
4
+ data.tar.gz: '095cd4637b53dcb4b2f012c0c5029ea74a1f9eeb4e95ebd2b6a6bb286e4bd071'
5
5
  SHA512:
6
- metadata.gz: 9ec9eef0932e280e9952791c9774e2b2ea0384ba07b911c8b7f84d676237e74c5cdfe8a7a93ebd97f8beb30b6e036f03a4d3e3bad43786cb6031829b755f1aa8
7
- data.tar.gz: d36ef78910af83b9a822fb7e98e69c6ea401e4241222852d227f9a167f67991a7056c6a21f154411ecd79b4e3277dd32ea7a97939a92d370b43cbaf6469124ff
6
+ metadata.gz: ef97276a0d698db3b6b43de5b1abecff24d98573f22941ed96ec05bd1f97032b82ebb706435d0c8fb5f428fce48526e6326717c85c76d1e171cfef762e6a11ed
7
+ data.tar.gz: d3b6bed98ffd6fe10a1b9e2fe168ba8047ddca65d6a79bf3e173a57ae1adeb27d3b1fd7421f925014accc00b2c082b40ecd66fd6ce642173c70ce7b74ea7c2f3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.104.0 (2025-10-08)
4
+
5
+ Full Changelog: [v1.103.0...v1.104.0](https://github.com/Increase/increase-ruby/compare/v1.103.0...v1.104.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([5545b1f](https://github.com/Increase/increase-ruby/commit/5545b1f1c1a7e380c58188aeaf0f61ccd10ad6b1))
10
+
11
+
12
+ ### Chores
13
+
14
+ * ignore linter error for tests having large collections ([406ab23](https://github.com/Increase/increase-ruby/commit/406ab231f510d6ac99e93568458b3d083b4130de))
15
+
16
+ ## 1.103.0 (2025-10-07)
17
+
18
+ Full Changelog: [v1.102.0...v1.103.0](https://github.com/Increase/increase-ruby/compare/v1.102.0...v1.103.0)
19
+
20
+ ### Features
21
+
22
+ * **api:** api update ([207fbb9](https://github.com/Increase/increase-ruby/commit/207fbb927ffcf3e900506fc28510d051ef5fa1ed))
23
+
3
24
  ## 1.102.0 (2025-10-06)
4
25
 
5
26
  Full Changelog: [v1.101.0...v1.102.0](https://github.com/Increase/increase-ruby/compare/v1.101.0...v1.102.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.102.0"
18
+ gem "increase", "~> 1.104.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -11,6 +11,12 @@ module Increase
11
11
  # @return [String]
12
12
  required :access_token, String
13
13
 
14
+ # @!attribute group_id
15
+ # The Group's identifier. A Group is the top-level organization in Increase.
16
+ #
17
+ # @return [String]
18
+ required :group_id, String
19
+
14
20
  # @!attribute token_type
15
21
  # The type of OAuth token.
16
22
  #
@@ -24,7 +30,7 @@ module Increase
24
30
  # @return [Symbol, Increase::Models::OAuthToken::Type]
25
31
  required :type, enum: -> { Increase::OAuthToken::Type }
26
32
 
27
- # @!method initialize(access_token:, token_type:, type:)
33
+ # @!method initialize(access_token:, group_id:, token_type:, type:)
28
34
  # Some parameter documentations has been truncated, see
29
35
  # {Increase::Models::OAuthToken} for more details.
30
36
  #
@@ -34,6 +40,8 @@ module Increase
34
40
  #
35
41
  # @param access_token [String] You may use this token in place of an API key to make OAuth requests on a user's
36
42
  #
43
+ # @param group_id [String] The Group's identifier. A Group is the top-level organization in Increase.
44
+ #
37
45
  # @param token_type [Symbol, Increase::Models::OAuthToken::TokenType] The type of OAuth token.
38
46
  #
39
47
  # @param type [Symbol, Increase::Models::OAuthToken::Type] A constant representing the object's type. For this resource it will always be `
@@ -6820,6 +6820,9 @@ module Increase
6820
6820
  # Account closure
6821
6821
  ACCOUNT_CLOSURE = :account_closure
6822
6822
 
6823
+ # Account revenue payment distribution
6824
+ ACCOUNT_REVENUE_PAYMENT_DISTRIBUTION = :account_revenue_payment_distribution
6825
+
6823
6826
  # Bank-drawn check
6824
6827
  BANK_DRAWN_CHECK = :bank_drawn_check
6825
6828
 
@@ -6838,6 +6841,9 @@ module Increase
6838
6841
  # Collection receivable
6839
6842
  COLLECTION_RECEIVABLE = :collection_receivable
6840
6843
 
6844
+ # Dishonored ACH return
6845
+ DISHONORED_ACH_RETURN = :dishonored_ach_return
6846
+
6841
6847
  # Empyreal adjustment
6842
6848
  EMPYREAL_ADJUSTMENT = :empyreal_adjustment
6843
6849
 
@@ -6862,9 +6868,6 @@ module Increase
6862
6868
  # Sample funds return
6863
6869
  SAMPLE_FUNDS_RETURN = :sample_funds_return
6864
6870
 
6865
- # Account revenue payment distribution
6866
- ACCOUNT_REVENUE_PAYMENT_DISTRIBUTION = :account_revenue_payment_distribution
6867
-
6868
6871
  # @!method self.values
6869
6872
  # @return [Array<Symbol>]
6870
6873
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.102.0"
4
+ VERSION = "1.104.0"
5
5
  end
@@ -13,6 +13,10 @@ module Increase
13
13
  sig { returns(String) }
14
14
  attr_accessor :access_token
15
15
 
16
+ # The Group's identifier. A Group is the top-level organization in Increase.
17
+ sig { returns(String) }
18
+ attr_accessor :group_id
19
+
16
20
  # The type of OAuth token.
17
21
  sig { returns(Increase::OAuthToken::TokenType::TaggedSymbol) }
18
22
  attr_accessor :token_type
@@ -28,6 +32,7 @@ module Increase
28
32
  sig do
29
33
  params(
30
34
  access_token: String,
35
+ group_id: String,
31
36
  token_type: Increase::OAuthToken::TokenType::OrSymbol,
32
37
  type: Increase::OAuthToken::Type::OrSymbol
33
38
  ).returns(T.attached_class)
@@ -36,6 +41,8 @@ module Increase
36
41
  # You may use this token in place of an API key to make OAuth requests on a user's
37
42
  # behalf.
38
43
  access_token:,
44
+ # The Group's identifier. A Group is the top-level organization in Increase.
45
+ group_id:,
39
46
  # The type of OAuth token.
40
47
  token_type:,
41
48
  # A constant representing the object's type. For this resource it will always be
@@ -48,6 +55,7 @@ module Increase
48
55
  override.returns(
49
56
  {
50
57
  access_token: String,
58
+ group_id: String,
51
59
  token_type: Increase::OAuthToken::TokenType::TaggedSymbol,
52
60
  type: Increase::OAuthToken::Type::TaggedSymbol
53
61
  }
@@ -12592,6 +12592,13 @@ module Increase
12592
12592
  Increase::Transaction::Source::InternalSource::Reason::TaggedSymbol
12593
12593
  )
12594
12594
 
12595
+ # Account revenue payment distribution
12596
+ ACCOUNT_REVENUE_PAYMENT_DISTRIBUTION =
12597
+ T.let(
12598
+ :account_revenue_payment_distribution,
12599
+ Increase::Transaction::Source::InternalSource::Reason::TaggedSymbol
12600
+ )
12601
+
12595
12602
  # Bank-drawn check
12596
12603
  BANK_DRAWN_CHECK =
12597
12604
  T.let(
@@ -12634,6 +12641,13 @@ module Increase
12634
12641
  Increase::Transaction::Source::InternalSource::Reason::TaggedSymbol
12635
12642
  )
12636
12643
 
12644
+ # Dishonored ACH return
12645
+ DISHONORED_ACH_RETURN =
12646
+ T.let(
12647
+ :dishonored_ach_return,
12648
+ Increase::Transaction::Source::InternalSource::Reason::TaggedSymbol
12649
+ )
12650
+
12637
12651
  # Empyreal adjustment
12638
12652
  EMPYREAL_ADJUSTMENT =
12639
12653
  T.let(
@@ -12690,13 +12704,6 @@ module Increase
12690
12704
  Increase::Transaction::Source::InternalSource::Reason::TaggedSymbol
12691
12705
  )
12692
12706
 
12693
- # Account revenue payment distribution
12694
- ACCOUNT_REVENUE_PAYMENT_DISTRIBUTION =
12695
- T.let(
12696
- :account_revenue_payment_distribution,
12697
- Increase::Transaction::Source::InternalSource::Reason::TaggedSymbol
12698
- )
12699
-
12700
12707
  sig do
12701
12708
  override.returns(
12702
12709
  T::Array[
@@ -3,6 +3,7 @@ module Increase
3
3
  type oauth_token =
4
4
  {
5
5
  access_token: String,
6
+ group_id: String,
6
7
  token_type: Increase::Models::OAuthToken::token_type,
7
8
  type: Increase::Models::OAuthToken::type_
8
9
  }
@@ -10,18 +11,22 @@ module Increase
10
11
  class OAuthToken < Increase::Internal::Type::BaseModel
11
12
  attr_accessor access_token: String
12
13
 
14
+ attr_accessor group_id: String
15
+
13
16
  attr_accessor token_type: Increase::Models::OAuthToken::token_type
14
17
 
15
18
  attr_accessor type: Increase::Models::OAuthToken::type_
16
19
 
17
20
  def initialize: (
18
21
  access_token: String,
22
+ group_id: String,
19
23
  token_type: Increase::Models::OAuthToken::token_type,
20
24
  type: Increase::Models::OAuthToken::type_
21
25
  ) -> void
22
26
 
23
27
  def to_hash: -> {
24
28
  access_token: String,
29
+ group_id: String,
25
30
  token_type: Increase::Models::OAuthToken::token_type,
26
31
  type: Increase::Models::OAuthToken::type_
27
32
  }
@@ -5043,12 +5043,14 @@ module Increase
5043
5043
 
5044
5044
  type reason =
5045
5045
  :account_closure
5046
+ | :account_revenue_payment_distribution
5046
5047
  | :bank_drawn_check
5047
5048
  | :bank_drawn_check_credit
5048
5049
  | :bank_migration
5049
5050
  | :check_adjustment
5050
5051
  | :collection_payment
5051
5052
  | :collection_receivable
5053
+ | :dishonored_ach_return
5052
5054
  | :empyreal_adjustment
5053
5055
  | :error
5054
5056
  | :error_correction
@@ -5057,7 +5059,6 @@ module Increase
5057
5059
  | :negative_balance_forgiveness
5058
5060
  | :sample_funds
5059
5061
  | :sample_funds_return
5060
- | :account_revenue_payment_distribution
5061
5062
 
5062
5063
  module Reason
5063
5064
  extend Increase::Internal::Type::Enum
@@ -5065,6 +5066,9 @@ module Increase
5065
5066
  # Account closure
5066
5067
  ACCOUNT_CLOSURE: :account_closure
5067
5068
 
5069
+ # Account revenue payment distribution
5070
+ ACCOUNT_REVENUE_PAYMENT_DISTRIBUTION: :account_revenue_payment_distribution
5071
+
5068
5072
  # Bank-drawn check
5069
5073
  BANK_DRAWN_CHECK: :bank_drawn_check
5070
5074
 
@@ -5083,6 +5087,9 @@ module Increase
5083
5087
  # Collection receivable
5084
5088
  COLLECTION_RECEIVABLE: :collection_receivable
5085
5089
 
5090
+ # Dishonored ACH return
5091
+ DISHONORED_ACH_RETURN: :dishonored_ach_return
5092
+
5086
5093
  # Empyreal adjustment
5087
5094
  EMPYREAL_ADJUSTMENT: :empyreal_adjustment
5088
5095
 
@@ -5107,9 +5114,6 @@ module Increase
5107
5114
  # Sample funds return
5108
5115
  SAMPLE_FUNDS_RETURN: :sample_funds_return
5109
5116
 
5110
- # Account revenue payment distribution
5111
- ACCOUNT_REVENUE_PAYMENT_DISTRIBUTION: :account_revenue_payment_distribution
5112
-
5113
5117
  def self?.values: -> ::Array[Increase::Models::Transaction::Source::InternalSource::reason]
5114
5118
  end
5115
5119
  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.102.0
4
+ version: 1.104.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-10-06 00:00:00.000000000 Z
11
+ date: 2025-10-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool