increase 1.186.0 → 1.187.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: a4fbf7793f37f9602d17e00fed08177201bfa218a5d447fc46052afddb9c8b68
4
- data.tar.gz: 18016533b831ce5400c9feb459c30053630fb4029d2b589b6eb8de3b3aaf5a2b
3
+ metadata.gz: 45084b35519dfc71669f570a7bd6f0ef13309a2bd573a84b0670d1aa2ca5a9ba
4
+ data.tar.gz: fa903d0696bb0a75e50a4f4eb62293639837077a774f7a43fcd9300770662a55
5
5
  SHA512:
6
- metadata.gz: 51eea761796df5bf27aaeaada278c1cd14a8fd30412927db4f767939545e743568e2a99671755843285653c1f6ee34ddd7c3f520a4607c0554e4b187cb2871ef
7
- data.tar.gz: d491e3604e0a5db7f0e43695e0bc584590f486eda668f823b3e8c5866103e9ab91da6a120e6c1aa52a13ee9e7d891e0077ecf33d3a40b19926e63bbeedaaf471
6
+ metadata.gz: 9bd3e636dc84cdc9a19c786a4dd1a19ed5adec2468c5b346f36017078f882c0f4598a60da0476160642aaaee5d5a67d02de3b7112c344f6db30dc01c2881b533
7
+ data.tar.gz: df3bf415a4c65186689a7d9e7eed4709d81d860231755f1f052b6997cef6a47071e72a32d2391075265b87218b0b20eeb81717b8b06eda9a58fa272e32f8c7ff
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.187.0 (2026-01-30)
4
+
5
+ Full Changelog: [v1.186.0...v1.187.0](https://github.com/Increase/increase-ruby/compare/v1.186.0...v1.187.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([47c0b0d](https://github.com/Increase/increase-ruby/commit/47c0b0d6d71c02b51d865906d17e645302e68069))
10
+
3
11
  ## 1.186.0 (2026-01-28)
4
12
 
5
13
  Full Changelog: [v1.185.0...v1.186.0](https://github.com/Increase/increase-ruby/compare/v1.185.0...v1.186.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.186.0"
18
+ gem "increase", "~> 1.187.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -7,25 +7,13 @@ module Increase
7
7
  extend Increase::Internal::Type::RequestParameters::Converter
8
8
  include Increase::Internal::Type::RequestParameters
9
9
 
10
- # @!attribute credit_limit
11
- # The new credit limit of the Account, if and only if the Account is a loan
12
- # account.
13
- #
14
- # @return [Integer, nil]
15
- optional :credit_limit, Integer
16
-
17
10
  # @!attribute name
18
11
  # The new name of the Account.
19
12
  #
20
13
  # @return [String, nil]
21
14
  optional :name, String
22
15
 
23
- # @!method initialize(credit_limit: nil, name: nil, request_options: {})
24
- # Some parameter documentations has been truncated, see
25
- # {Increase::Models::AccountUpdateParams} for more details.
26
- #
27
- # @param credit_limit [Integer] The new credit limit of the Account, if and only if the Account is a loan accoun
28
- #
16
+ # @!method initialize(name: nil, request_options: {})
29
17
  # @param name [String] The new name of the Account.
30
18
  #
31
19
  # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
@@ -54,17 +54,12 @@ module Increase
54
54
  )
55
55
  end
56
56
 
57
- # Some parameter documentations has been truncated, see
58
- # {Increase::Models::AccountUpdateParams} for more details.
59
- #
60
57
  # Update an Account
61
58
  #
62
- # @overload update(account_id, credit_limit: nil, name: nil, request_options: {})
59
+ # @overload update(account_id, name: nil, request_options: {})
63
60
  #
64
61
  # @param account_id [String] The identifier of the Account to update.
65
62
  #
66
- # @param credit_limit [Integer] The new credit limit of the Account, if and only if the Account is a loan accoun
67
- #
68
63
  # @param name [String] The new name of the Account.
69
64
  #
70
65
  # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.186.0"
4
+ VERSION = "1.187.0"
5
5
  end
@@ -11,14 +11,6 @@ module Increase
11
11
  T.any(Increase::AccountUpdateParams, Increase::Internal::AnyHash)
12
12
  end
13
13
 
14
- # The new credit limit of the Account, if and only if the Account is a loan
15
- # account.
16
- sig { returns(T.nilable(Integer)) }
17
- attr_reader :credit_limit
18
-
19
- sig { params(credit_limit: Integer).void }
20
- attr_writer :credit_limit
21
-
22
14
  # The new name of the Account.
23
15
  sig { returns(T.nilable(String)) }
24
16
  attr_reader :name
@@ -28,15 +20,11 @@ module Increase
28
20
 
29
21
  sig do
30
22
  params(
31
- credit_limit: Integer,
32
23
  name: String,
33
24
  request_options: Increase::RequestOptions::OrHash
34
25
  ).returns(T.attached_class)
35
26
  end
36
27
  def self.new(
37
- # The new credit limit of the Account, if and only if the Account is a loan
38
- # account.
39
- credit_limit: nil,
40
28
  # The new name of the Account.
41
29
  name: nil,
42
30
  request_options: {}
@@ -45,11 +33,7 @@ module Increase
45
33
 
46
34
  sig do
47
35
  override.returns(
48
- {
49
- credit_limit: Integer,
50
- name: String,
51
- request_options: Increase::RequestOptions
52
- }
36
+ { name: String, request_options: Increase::RequestOptions }
53
37
  )
54
38
  end
55
39
  def to_hash
@@ -46,7 +46,6 @@ module Increase
46
46
  sig do
47
47
  params(
48
48
  account_id: String,
49
- credit_limit: Integer,
50
49
  name: String,
51
50
  request_options: Increase::RequestOptions::OrHash
52
51
  ).returns(Increase::Account)
@@ -54,9 +53,6 @@ module Increase
54
53
  def update(
55
54
  # The identifier of the Account to update.
56
55
  account_id,
57
- # The new credit limit of the Account, if and only if the Account is a loan
58
- # account.
59
- credit_limit: nil,
60
56
  # The new name of the Account.
61
57
  name: nil,
62
58
  request_options: {}
@@ -1,29 +1,22 @@
1
1
  module Increase
2
2
  module Models
3
3
  type account_update_params =
4
- { credit_limit: Integer, name: String }
5
- & Increase::Internal::Type::request_parameters
4
+ { name: String } & Increase::Internal::Type::request_parameters
6
5
 
7
6
  class AccountUpdateParams < Increase::Internal::Type::BaseModel
8
7
  extend Increase::Internal::Type::RequestParameters::Converter
9
8
  include Increase::Internal::Type::RequestParameters
10
9
 
11
- attr_reader credit_limit: Integer?
12
-
13
- def credit_limit=: (Integer) -> Integer
14
-
15
10
  attr_reader name: String?
16
11
 
17
12
  def name=: (String) -> String
18
13
 
19
14
  def initialize: (
20
- ?credit_limit: Integer,
21
15
  ?name: String,
22
16
  ?request_options: Increase::request_opts
23
17
  ) -> void
24
18
 
25
19
  def to_hash: -> {
26
- credit_limit: Integer,
27
20
  name: String,
28
21
  request_options: Increase::RequestOptions
29
22
  }
@@ -16,7 +16,6 @@ module Increase
16
16
 
17
17
  def update: (
18
18
  String account_id,
19
- ?credit_limit: Integer,
20
19
  ?name: String,
21
20
  ?request_options: Increase::request_opts
22
21
  ) -> Increase::Account
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.186.0
4
+ version: 1.187.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-28 00:00:00.000000000 Z
11
+ date: 2026-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi