increase 1.102.0 → 1.103.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: 24abc398e2520b2ea46ec6878cfcc2fd2f768dd76fc3df00c81b7f06abe7d202
4
+ data.tar.gz: 01ebbbd9fb3f74db687d42bced68daa1a45234f6db73b1847b398e1791d8a13c
5
5
  SHA512:
6
- metadata.gz: 9ec9eef0932e280e9952791c9774e2b2ea0384ba07b911c8b7f84d676237e74c5cdfe8a7a93ebd97f8beb30b6e036f03a4d3e3bad43786cb6031829b755f1aa8
7
- data.tar.gz: d36ef78910af83b9a822fb7e98e69c6ea401e4241222852d227f9a167f67991a7056c6a21f154411ecd79b4e3277dd32ea7a97939a92d370b43cbaf6469124ff
6
+ metadata.gz: 1b59bacc105d0bf2553f5d77fc4b1a1716e24a88e8134b0145adfbfe2b2463deee2598518868ce98818dd21b5ec98002f0f46a832e6a9e1831b936adea292ea6
7
+ data.tar.gz: 3943ac475b50c5ef74436ba4f28163d895edfeabb0d06181e48f94a4577dcc94ed9b1c237903b40d9ebf9fdede1f44cf7d17c3314d0cb19b51fee177b568130f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.103.0 (2025-10-07)
4
+
5
+ Full Changelog: [v1.102.0...v1.103.0](https://github.com/Increase/increase-ruby/compare/v1.102.0...v1.103.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([207fbb9](https://github.com/Increase/increase-ruby/commit/207fbb927ffcf3e900506fc28510d051ef5fa1ed))
10
+
3
11
  ## 1.102.0 (2025-10-06)
4
12
 
5
13
  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.103.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 `
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.102.0"
4
+ VERSION = "1.103.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
  }
@@ -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
  }
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.103.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-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool