moov_ruby 0.1.16 → 0.1.17
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 932522ae150d97e420425e0fb557c99d61952b0e00d63e37039bec581638ec43
|
4
|
+
data.tar.gz: 3fc60364e8aa3da3847685bf9a940dee0ab01772ae8fdb82d6afc6dde619095b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f74cf0184f536eab697bc570b702c7accfecc6f0c5abd9aa412a95f8134a3cf6b9ebb07da6310a6abe40688428967bafa94bc626e276d4baf138937dad19b277
|
7
|
+
data.tar.gz: d8594f0e99a012204997659bd8266ed396547a5a62e41b74969731807fc532174d96caa2f0e4034b7259127500aade9f30166e0f1fe221590ee93e60198e73ac
|
data/lib/moov/accounts.rb
CHANGED
@@ -213,7 +213,7 @@ module Moov
|
|
213
213
|
#
|
214
214
|
# All supported query parameters are optional. If none are provided the response will include all connected accounts.
|
215
215
|
# Pagination is supported via the `skip` and `count` query parameters. Searching by name and email will overlap and
|
216
|
-
# return results based on relevance.
|
216
|
+
# return results based on relevance. Accounts with AccountType `guest` will not be included in the response.
|
217
217
|
#
|
218
218
|
# To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) you'll need
|
219
219
|
# to specify the `/accounts.read` scope.
|
@@ -21,7 +21,7 @@ module Moov
|
|
21
21
|
field :account_type, Models::Components::AccountType, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('accountType'), required: true, 'decoder': Utils.enum_from_string(Models::Components::AccountType, false) } }
|
22
22
|
|
23
23
|
field :display_name, ::String, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('displayName'), required: true } }
|
24
|
-
# Describes a Moov account profile. A profile will have a business or
|
24
|
+
# Describes a Moov account profile. A profile will have a business, individual, or guest depending on the account's type.
|
25
25
|
field :profile, Models::Components::Profile, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('profile'), required: true } }
|
26
26
|
# Describes identity verification status and relevant identity verification documents.
|
27
27
|
field :verification, Models::Components::Verification, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('verification'), required: true } }
|
@@ -8,7 +8,7 @@ module Moov
|
|
8
8
|
module Models
|
9
9
|
module Components
|
10
10
|
|
11
|
-
# Describes a Moov account profile. A profile will have a business or
|
11
|
+
# Describes a Moov account profile. A profile will have a business, individual, or guest depending on the account's type.
|
12
12
|
class Profile
|
13
13
|
extend T::Sig
|
14
14
|
include Crystalline::MetadataFields
|
@@ -21,6 +21,8 @@ module Moov
|
|
21
21
|
# <li>Individual Profile `firstName`, `middleName`, and `lastName`</li>
|
22
22
|
# <li>Business Profile `legalBusinessName`</li>
|
23
23
|
# </ul>
|
24
|
+
#
|
25
|
+
# Filtering by Guest Profile `name` is not currently supported.
|
24
26
|
field :name, Crystalline::Nilable.new(::String), { 'query_param': { 'field_name': 'name', 'style': 'form', 'explode': false } }
|
25
27
|
# Filter connected accounts by email address.
|
26
28
|
#
|
@@ -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.
|
99
|
-
@gen_version = '2.
|
100
|
-
@user_agent = 'speakeasy-sdk/ruby 0.1.
|
98
|
+
@sdk_version = '0.1.17'
|
99
|
+
@gen_version = '2.701.8'
|
100
|
+
@user_agent = 'speakeasy-sdk/ruby 0.1.17 2.701.8 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.
|
4
|
+
version: 0.1.17
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Speakeasy
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-09-
|
11
|
+
date: 2025-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: base64
|