moov_ruby 0.1.9 → 0.1.10

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: e9c5e25baac7f21a6c3e3a4d14db3ca1b350ffbe1b81e70ea8a87634d45e518b
4
- data.tar.gz: c745b3d2906190de0244b4530d4ee9df337dde0c5b972fc68a03ee43114d9868
3
+ metadata.gz: 17e1b475b417d03163ef05df576bd0c345088bd2f7eeb1773d01b64dcc9672a4
4
+ data.tar.gz: 1c546b9a90fd40026a8dd9138403db61b7a9794e80e8708be2dd229ded6f5055
5
5
  SHA512:
6
- metadata.gz: e02f565ab1f40f16257ff089657b2452d23b91ae649f1f40c70c081b76144b1b8a9df6cf8f5c7243945e46e55dfbaca1700dacbed061beb376c68a5582600547
7
- data.tar.gz: c9f45d92f6d3d5b29bbcfb1dffa4148a39c021e662834004dc37d0b0b4026e0f9f19d9c11b1d436d814fa9828ea8ea5f7cf0187fbc91662be6ac330b42f62101
6
+ metadata.gz: e5574fdd8dca920f2512fb9067623547b81634f585a50d1a2d3d517ccdf20d06693837f5eb0888449038e9e42c999ace6c932042cf01bca30ffa3b007566a162
7
+ data.tar.gz: 88b9483a9fa45430a61b04a0098f6689fa7c3124952f30b7c2887880c4a125c4f697d8f2dc35b8e08bb93bbad5fe3ba7887092bcf87bd122331967a311960ba7
@@ -31,11 +31,9 @@ module Moov
31
31
  # If the `type` parameter is used in combination with `name`, only the corresponding type's name fields will
32
32
  # be searched. For example, if `type=business` and `name=moov`, the search will attempt to find matches against
33
33
  # the display name and Business Profile name fields (`legalBusinessName`, and `doingBusinessAs`).
34
- field :type, Crystalline::Nilable.new(Models::Components::AccountType), { 'query_param': { 'field_name': 'type', 'style': 'form', 'explode': false } }
35
- # Filter accounts with AccountType guest.
36
- #
37
- # If true, the response will include guest accounts.
38
- field :include_guest, Crystalline::Nilable.new(Crystalline::Boolean.new), { 'query_param': { 'field_name': 'includeGuest', 'style': 'form', 'explode': false } }
34
+ #
35
+ # Filtering by `type=guest` is not currently supported.
36
+ field :type, Crystalline::Nilable.new(Models::Components::CreateAccountType), { 'query_param': { 'field_name': 'type', 'style': 'form', 'explode': false } }
39
37
  # Serves as an optional alias from a foreign/external system which can be used to reference this resource.
40
38
  field :foreign_id, Crystalline::Nilable.new(::String), { 'query_param': { 'field_name': 'foreignID', 'style': 'form', 'explode': false } }
41
39
  # Filter disconnected accounts.
@@ -61,12 +59,11 @@ module Moov
61
59
  # The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
62
60
  field :x_moov_version, Crystalline::Nilable.new(::String), { 'header': { 'field_name': 'x-moov-version', 'style': 'simple', 'explode': false } }
63
61
 
64
- sig { params(name: T.nilable(::String), email: T.nilable(::String), type: T.nilable(Models::Components::AccountType), include_guest: T.nilable(T::Boolean), foreign_id: T.nilable(::String), include_disconnected: T.nilable(T::Boolean), capability: T.nilable(Models::Components::CapabilityID), capability_status: T.nilable(Models::Components::CapabilityStatus), skip: T.nilable(::Integer), count: T.nilable(::Integer), x_moov_version: T.nilable(::String)).void }
65
- def initialize(name: nil, email: nil, type: nil, include_guest: nil, foreign_id: nil, include_disconnected: nil, capability: nil, capability_status: nil, skip: nil, count: nil, x_moov_version: 'v2024.01.00')
62
+ sig { params(name: T.nilable(::String), email: T.nilable(::String), type: T.nilable(Models::Components::CreateAccountType), foreign_id: T.nilable(::String), include_disconnected: T.nilable(T::Boolean), capability: T.nilable(Models::Components::CapabilityID), capability_status: T.nilable(Models::Components::CapabilityStatus), skip: T.nilable(::Integer), count: T.nilable(::Integer), x_moov_version: T.nilable(::String)).void }
63
+ def initialize(name: nil, email: nil, type: nil, foreign_id: nil, include_disconnected: nil, capability: nil, capability_status: nil, skip: nil, count: nil, x_moov_version: 'v2024.01.00')
66
64
  @name = name
67
65
  @email = email
68
66
  @type = type
69
- @include_guest = include_guest
70
67
  @foreign_id = foreign_id
71
68
  @include_disconnected = include_disconnected
72
69
  @capability = capability
@@ -82,7 +79,6 @@ module Moov
82
79
  return false unless @name == other.name
83
80
  return false unless @email == other.email
84
81
  return false unless @type == other.type
85
- return false unless @include_guest == other.include_guest
86
82
  return false unless @foreign_id == other.foreign_id
87
83
  return false unless @include_disconnected == other.include_disconnected
88
84
  return false unless @capability == other.capability
@@ -14,8 +14,6 @@ class Moov::Models::Operations::ListAccountsRequest
14
14
  def email=(str_); end
15
15
  def type(); end
16
16
  def type=(str_); end
17
- def include_guest(); end
18
- def include_guest=(str_); end
19
17
  def foreign_id(); end
20
18
  def foreign_id=(str_); end
21
19
  def include_disconnected(); end
@@ -95,9 +95,9 @@ module Moov
95
95
  @globals = globals.nil? ? {} : globals
96
96
  @language = 'ruby'
97
97
  @openapi_doc_version = 'latest'
98
- @sdk_version = '0.1.9'
99
- @gen_version = '2.687.1'
100
- @user_agent = 'speakeasy-sdk/ruby 0.1.9 2.687.1 latest moov_ruby'
98
+ @sdk_version = '0.1.10'
99
+ @gen_version = '2.687.13'
100
+ @user_agent = 'speakeasy-sdk/ruby 0.1.10 2.687.13 latest moov_ruby'
101
101
  end
102
102
 
103
103
  sig { returns([String, T::Hash[Symbol, String]]) }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: moov_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Speakeasy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-08-26 00:00:00.000000000 Z
11
+ date: 2025-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: base64