moov_ruby 26.7.0.pre.dev.3 → 26.7.0.pre.dev.4
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 +4 -4
- data/lib/moov/bank_accounts.rb +1 -1
- data/lib/moov/client.rb +2 -1
- data/lib/moov/deposit_view.rb +213 -0
- data/lib/moov/models/components/capabilityid.rb +1 -0
- data/lib/moov/models/components/cardtransactiondetails.rb +10 -2
- data/lib/moov/models/components/cardtransactiondetails.rbi +4 -0
- data/lib/moov/models/components/cardtransactionstatus.rb +1 -0
- data/lib/moov/models/components/createtransferdestinationcard.rb +6 -2
- data/lib/moov/models/components/createtransferdestinationcard.rbi +2 -0
- data/lib/moov/models/components/depositaccountingestedresponse.rb +44 -0
- data/lib/moov/models/components/depositaccountingestedresponse.rbi +19 -0
- data/lib/moov/models/components/fullissuedcard.rb +1 -3
- data/lib/moov/models/components/invoice.rb +6 -2
- data/lib/moov/models/components/invoice.rbi +2 -0
- data/lib/moov/models/components/issuedcard.rb +1 -3
- data/lib/moov/models/components/issuedcardstate.rb +1 -5
- data/lib/moov/models/components/manualtermsofservice.rb +1 -1
- data/lib/moov/models/components/manualtermsofserviceupdate.rb +1 -1
- data/lib/moov/models/components/patchtransfer.rb +6 -6
- data/lib/moov/models/components/patchtransfer.rbi +2 -2
- data/lib/moov/models/components/patchwallet.rb +1 -1
- data/lib/moov/models/components/paymentlinkpayoutdetails.rb +9 -2
- data/lib/moov/models/components/paymentlinkpayoutdetails.rbi +2 -0
- data/lib/moov/models/components/paymentlinkpayoutdetailsupdate.rb +9 -2
- data/lib/moov/models/components/paymentlinkpayoutdetailsupdate.rbi +2 -0
- data/lib/moov/models/components/paymentmethodscard.rb +7 -2
- data/lib/moov/models/components/paymentmethodscard.rbi +2 -0
- data/lib/moov/models/components/payoutdetailserror.rb +6 -2
- data/lib/moov/models/components/payoutdetailserror.rbi +2 -0
- data/lib/moov/models/components/pushdeliveryspeed.rb +19 -0
- data/lib/moov/models/components/pushdeliveryspeed.rbi +11 -0
- data/lib/moov/models/components/pushoptions.rb +38 -0
- data/lib/moov/models/components/pushoptions.rbi +15 -0
- data/lib/moov/models/components/pushoptionserror.rb +36 -0
- data/lib/moov/models/components/pushoptionserror.rbi +15 -0
- data/lib/moov/models/components/pushoptionsupdate.rb +38 -0
- data/lib/moov/models/components/pushoptionsupdate.rbi +15 -0
- data/lib/moov/models/components/sourcesystem.rb +23 -0
- data/lib/moov/models/components/sourcesystem.rbi +11 -0
- data/lib/moov/models/components/surcharge.rb +38 -0
- data/lib/moov/models/components/surcharge.rbi +15 -0
- data/lib/moov/models/components/tax.rb +38 -0
- data/lib/moov/models/components/tax.rbi +15 -0
- data/lib/moov/models/components/termsofservice.rb +1 -1
- data/lib/moov/models/components/updatepaymentlinkamountdetails.rb +3 -3
- data/lib/moov/models/components.rb +8 -0
- data/lib/moov/models/errors/depositaccountvalidationerror.rb +40 -0
- data/lib/moov/models/errors/depositaccountvalidationerror.rbi +17 -0
- data/lib/moov/models/errors.rb +1 -0
- data/lib/moov/models/operations/createdepositaccount_request.rb +40 -0
- data/lib/moov/models/operations/createdepositaccount_request.rbi +17 -0
- data/lib/moov/models/operations/createdepositaccount_response.rb +48 -0
- data/lib/moov/models/operations/createdepositaccount_response.rbi +21 -0
- data/lib/moov/models/operations/linkbankaccount_request.rb +1 -1
- data/lib/moov/models/operations/listissuedcards_request.rb +1 -1
- data/lib/moov/models/operations.rb +2 -0
- data/lib/moov/sdkconfiguration.rb +3 -3
- data/lib/moov_ruby.rb +1 -0
- metadata +27 -4
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
# typed: true
|
|
4
|
+
# frozen_string_literal: true
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
module Moov
|
|
8
|
+
module Models
|
|
9
|
+
module Operations
|
|
10
|
+
|
|
11
|
+
class CreateDepositAccountRequest
|
|
12
|
+
extend T::Sig
|
|
13
|
+
include Crystalline::MetadataFields
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
field :account_id, ::String, { 'path_param': { 'field_name': 'accountID', 'style': 'simple', 'explode': false } }
|
|
17
|
+
# Identifies the core banking source system that produced the request body.
|
|
18
|
+
field :x_source_system, Models::Components::SourceSystem, { 'header': { 'field_name': 'X-Source-System', 'style': 'simple', 'explode': false } }
|
|
19
|
+
|
|
20
|
+
field :request_body, ::String, { 'request': { 'media_type': 'application/octet-stream' } }
|
|
21
|
+
|
|
22
|
+
sig { params(account_id: ::String, x_source_system: Models::Components::SourceSystem, request_body: ::String).void }
|
|
23
|
+
def initialize(account_id:, x_source_system:, request_body:)
|
|
24
|
+
@account_id = account_id
|
|
25
|
+
@x_source_system = x_source_system
|
|
26
|
+
@request_body = request_body
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
sig { params(other: T.untyped).returns(T::Boolean) }
|
|
30
|
+
def ==(other)
|
|
31
|
+
return false unless other.is_a? self.class
|
|
32
|
+
return false unless @account_id == other.account_id
|
|
33
|
+
return false unless @x_source_system == other.x_source_system
|
|
34
|
+
return false unless @request_body == other.request_body
|
|
35
|
+
true
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# typed: true
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class Moov::Models::Operations::CreateDepositAccountRequest
|
|
6
|
+
extend ::Crystalline::MetadataFields::ClassMethods
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class Moov::Models::Operations::CreateDepositAccountRequest
|
|
11
|
+
def account_id(); end
|
|
12
|
+
def account_id=(str_); end
|
|
13
|
+
def x_source_system(); end
|
|
14
|
+
def x_source_system=(str_); end
|
|
15
|
+
def request_body(); end
|
|
16
|
+
def request_body=(str_); end
|
|
17
|
+
end
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
# typed: true
|
|
4
|
+
# frozen_string_literal: true
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
module Moov
|
|
8
|
+
module Models
|
|
9
|
+
module Operations
|
|
10
|
+
|
|
11
|
+
class CreateDepositAccountResponse
|
|
12
|
+
extend T::Sig
|
|
13
|
+
include Crystalline::MetadataFields
|
|
14
|
+
|
|
15
|
+
# HTTP response content type for this operation
|
|
16
|
+
field :content_type, ::String
|
|
17
|
+
# HTTP response status code for this operation
|
|
18
|
+
field :status_code, ::Integer
|
|
19
|
+
# Raw HTTP response; suitable for custom response parsing
|
|
20
|
+
field :raw_response, ::Faraday::Response
|
|
21
|
+
|
|
22
|
+
field :headers, Crystalline::Hash.new(Symbol, Crystalline::Array.new(::String))
|
|
23
|
+
# The request completed successfully.
|
|
24
|
+
field :deposit_account_ingested_response, Crystalline::Nilable.new(Models::Components::DepositAccountIngestedResponse)
|
|
25
|
+
|
|
26
|
+
sig { params(content_type: ::String, status_code: ::Integer, raw_response: ::Faraday::Response, headers: T::Hash[Symbol, T::Array[::String]], deposit_account_ingested_response: T.nilable(Models::Components::DepositAccountIngestedResponse)).void }
|
|
27
|
+
def initialize(content_type:, status_code:, raw_response:, headers:, deposit_account_ingested_response: nil)
|
|
28
|
+
@content_type = content_type
|
|
29
|
+
@status_code = status_code
|
|
30
|
+
@raw_response = raw_response
|
|
31
|
+
@headers = headers
|
|
32
|
+
@deposit_account_ingested_response = deposit_account_ingested_response
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
sig { params(other: T.untyped).returns(T::Boolean) }
|
|
36
|
+
def ==(other)
|
|
37
|
+
return false unless other.is_a? self.class
|
|
38
|
+
return false unless @content_type == other.content_type
|
|
39
|
+
return false unless @status_code == other.status_code
|
|
40
|
+
return false unless @raw_response == other.raw_response
|
|
41
|
+
return false unless @headers == other.headers
|
|
42
|
+
return false unless @deposit_account_ingested_response == other.deposit_account_ingested_response
|
|
43
|
+
true
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
end
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# typed: true
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class Moov::Models::Operations::CreateDepositAccountResponse
|
|
6
|
+
extend ::Crystalline::MetadataFields::ClassMethods
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class Moov::Models::Operations::CreateDepositAccountResponse
|
|
11
|
+
def content_type(); end
|
|
12
|
+
def content_type=(str_); end
|
|
13
|
+
def status_code(); end
|
|
14
|
+
def status_code=(str_); end
|
|
15
|
+
def raw_response(); end
|
|
16
|
+
def raw_response=(str_); end
|
|
17
|
+
def headers(); end
|
|
18
|
+
def headers=(str_); end
|
|
19
|
+
def deposit_account_ingested_response(); end
|
|
20
|
+
def deposit_account_ingested_response=(str_); end
|
|
21
|
+
end
|
|
@@ -19,7 +19,7 @@ module Moov
|
|
|
19
19
|
# Optional header to wait for certain events, such as the creation of a payment method, to occur before returning a response.
|
|
20
20
|
#
|
|
21
21
|
# When this header is set to `payment-method`, the response will include any payment methods that were created for the newly
|
|
22
|
-
# linked
|
|
22
|
+
# linked bank account in the `paymentMethods` field. Otherwise, the `paymentMethods` field will be omitted from the response.
|
|
23
23
|
field :x_wait_for, Crystalline::Nilable.new(Models::Components::BankAccountWaitFor), { 'header': { 'field_name': 'x-wait-for', 'style': 'simple', 'explode': false } }
|
|
24
24
|
|
|
25
25
|
sig { params(account_id: ::String, link_bank_account: T.any(Models::Components::BankAccountPayload, Models::Components::PlaidPayload, Models::Components::PlaidLinkPayload, Models::Components::MxPayload), x_wait_for: T.nilable(Models::Components::BankAccountWaitFor)).void }
|
|
@@ -18,7 +18,7 @@ module Moov
|
|
|
18
18
|
field :skip, Crystalline::Nilable.new(::Integer), { 'query_param': { 'field_name': 'skip', 'style': 'form', 'explode': false } }
|
|
19
19
|
|
|
20
20
|
field :count, Crystalline::Nilable.new(::Integer), { 'query_param': { 'field_name': 'count', 'style': 'form', 'explode': false } }
|
|
21
|
-
# Optional, comma-separated states to filter the Moov list issued cards response. For example `active,
|
|
21
|
+
# Optional, comma-separated states to filter the Moov list issued cards response. For example `active,closed`
|
|
22
22
|
field :states, Crystalline::Nilable.new(Crystalline::Array.new(Models::Components::IssuedCardState)), { 'query_param': { 'field_name': 'states', 'style': 'form', 'explode': false } }
|
|
23
23
|
|
|
24
24
|
sig { params(account_id: ::String, skip: T.nilable(::Integer), count: T.nilable(::Integer), states: T.nilable(T::Array[Models::Components::IssuedCardState])).void }
|
|
@@ -28,6 +28,8 @@ module Moov
|
|
|
28
28
|
autoload :CreateBrandResponse, 'moov/models/operations/createbrand_response.rb'
|
|
29
29
|
autoload :CreateCancellationRequest, 'moov/models/operations/createcancellation_request.rb'
|
|
30
30
|
autoload :CreateCancellationResponse, 'moov/models/operations/createcancellation_response.rb'
|
|
31
|
+
autoload :CreateDepositAccountRequest, 'moov/models/operations/createdepositaccount_request.rb'
|
|
32
|
+
autoload :CreateDepositAccountResponse, 'moov/models/operations/createdepositaccount_response.rb'
|
|
31
33
|
autoload :CreateFeePlanAgreementsRequest, 'moov/models/operations/createfeeplanagreements_request.rb'
|
|
32
34
|
autoload :CreateFeePlanAgreementsResponse, 'moov/models/operations/createfeeplanagreements_response.rb'
|
|
33
35
|
autoload :CreateInvoicePaymentRequest, 'moov/models/operations/createinvoicepayment_request.rb'
|
|
@@ -88,9 +88,9 @@ module Moov
|
|
|
88
88
|
end
|
|
89
89
|
@language = 'ruby'
|
|
90
90
|
@openapi_doc_version = 'v2026.07.00'
|
|
91
|
-
@sdk_version = '26.7.0-dev.
|
|
92
|
-
@gen_version = '2.
|
|
93
|
-
@user_agent = 'speakeasy-sdk/ruby 26.7.0-dev.
|
|
91
|
+
@sdk_version = '26.7.0-dev.4'
|
|
92
|
+
@gen_version = '2.916.2'
|
|
93
|
+
@user_agent = 'speakeasy-sdk/ruby 26.7.0-dev.4 2.916.2 v2026.07.00 moov_ruby'
|
|
94
94
|
end
|
|
95
95
|
|
|
96
96
|
sig { returns([String, T::Hash[Symbol, String]]) }
|
data/lib/moov_ruby.rb
CHANGED
|
@@ -47,6 +47,7 @@ module Moov
|
|
|
47
47
|
autoload :Ping, 'moov/ping'
|
|
48
48
|
autoload :Receipts, 'moov/receipts'
|
|
49
49
|
autoload :TerminalApplications, 'moov/terminal_applications'
|
|
50
|
+
autoload :DepositView, 'moov/deposit_view'
|
|
50
51
|
module Models
|
|
51
52
|
autoload :Components, 'moov/models/components'
|
|
52
53
|
autoload :Operations, 'moov/models/operations'
|
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: 26.7.0.pre.dev.
|
|
4
|
+
version: 26.7.0.pre.dev.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Speakeasy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-07-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: base64
|
|
@@ -36,14 +36,14 @@ dependencies:
|
|
|
36
36
|
requirements:
|
|
37
37
|
- - ">="
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: 2.14.
|
|
39
|
+
version: 2.14.3
|
|
40
40
|
type: :runtime
|
|
41
41
|
prerelease: false
|
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
|
43
43
|
requirements:
|
|
44
44
|
- - ">="
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 2.14.
|
|
46
|
+
version: 2.14.3
|
|
47
47
|
- !ruby/object:Gem::Dependency
|
|
48
48
|
name: faraday-multipart
|
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -250,6 +250,7 @@ files:
|
|
|
250
250
|
- lib/moov/card_issuing.rb
|
|
251
251
|
- lib/moov/cards.rb
|
|
252
252
|
- lib/moov/client.rb
|
|
253
|
+
- lib/moov/deposit_view.rb
|
|
253
254
|
- lib/moov/disputes.rb
|
|
254
255
|
- lib/moov/end_to_end_encryption.rb
|
|
255
256
|
- lib/moov/enriched_address.rb
|
|
@@ -760,6 +761,8 @@ files:
|
|
|
760
761
|
- lib/moov/models/components/customersupporterror.rbi
|
|
761
762
|
- lib/moov/models/components/debitholdperiod.rb
|
|
762
763
|
- lib/moov/models/components/debitholdperiod.rbi
|
|
764
|
+
- lib/moov/models/components/depositaccountingestedresponse.rb
|
|
765
|
+
- lib/moov/models/components/depositaccountingestedresponse.rbi
|
|
763
766
|
- lib/moov/models/components/disbursementpaymentmethodtype.rb
|
|
764
767
|
- lib/moov/models/components/disbursementpaymentmethodtype.rbi
|
|
765
768
|
- lib/moov/models/components/displayoptionserror.rb
|
|
@@ -1234,6 +1237,14 @@ files:
|
|
|
1234
1237
|
- lib/moov/models/components/pullfromgooglepaytransferpaymentmethod.rbi
|
|
1235
1238
|
- lib/moov/models/components/pullfromgooglepaytransferpaymentmethod_paymentmethodtype.rb
|
|
1236
1239
|
- lib/moov/models/components/pullfromgooglepaytransferpaymentmethod_paymentmethodtype.rbi
|
|
1240
|
+
- lib/moov/models/components/pushdeliveryspeed.rb
|
|
1241
|
+
- lib/moov/models/components/pushdeliveryspeed.rbi
|
|
1242
|
+
- lib/moov/models/components/pushoptions.rb
|
|
1243
|
+
- lib/moov/models/components/pushoptions.rbi
|
|
1244
|
+
- lib/moov/models/components/pushoptionserror.rb
|
|
1245
|
+
- lib/moov/models/components/pushoptionserror.rbi
|
|
1246
|
+
- lib/moov/models/components/pushoptionsupdate.rb
|
|
1247
|
+
- lib/moov/models/components/pushoptionsupdate.rbi
|
|
1237
1248
|
- lib/moov/models/components/pushtoapplepaypaymentmethod.rb
|
|
1238
1249
|
- lib/moov/models/components/pushtoapplepaypaymentmethod.rbi
|
|
1239
1250
|
- lib/moov/models/components/pushtoapplepaypaymentmethod_paymentmethodtype.rb
|
|
@@ -1390,12 +1401,16 @@ files:
|
|
|
1390
1401
|
- lib/moov/models/components/sharescopes.rbi
|
|
1391
1402
|
- lib/moov/models/components/sourcedestinationoptions.rb
|
|
1392
1403
|
- lib/moov/models/components/sourcedestinationoptions.rbi
|
|
1404
|
+
- lib/moov/models/components/sourcesystem.rb
|
|
1405
|
+
- lib/moov/models/components/sourcesystem.rbi
|
|
1393
1406
|
- lib/moov/models/components/statement.rb
|
|
1394
1407
|
- lib/moov/models/components/statement.rbi
|
|
1395
1408
|
- lib/moov/models/components/status.rb
|
|
1396
1409
|
- lib/moov/models/components/status.rbi
|
|
1397
1410
|
- lib/moov/models/components/submissionintent.rb
|
|
1398
1411
|
- lib/moov/models/components/submissionintent.rbi
|
|
1412
|
+
- lib/moov/models/components/surcharge.rb
|
|
1413
|
+
- lib/moov/models/components/surcharge.rbi
|
|
1399
1414
|
- lib/moov/models/components/sweep.rb
|
|
1400
1415
|
- lib/moov/models/components/sweep.rbi
|
|
1401
1416
|
- lib/moov/models/components/sweepconfig.rb
|
|
@@ -1408,6 +1423,8 @@ files:
|
|
|
1408
1423
|
- lib/moov/models/components/sweepstatus.rbi
|
|
1409
1424
|
- lib/moov/models/components/sweepsubtotal.rb
|
|
1410
1425
|
- lib/moov/models/components/sweepsubtotal.rbi
|
|
1426
|
+
- lib/moov/models/components/tax.rb
|
|
1427
|
+
- lib/moov/models/components/tax.rbi
|
|
1411
1428
|
- lib/moov/models/components/taxid.rb
|
|
1412
1429
|
- lib/moov/models/components/taxid.rbi
|
|
1413
1430
|
- lib/moov/models/components/taxid_ein.rb
|
|
@@ -1725,6 +1742,8 @@ files:
|
|
|
1725
1742
|
- lib/moov/models/errors/createwalletvalidationerror.rbi
|
|
1726
1743
|
- lib/moov/models/errors/createwebhookvalidationerror.rb
|
|
1727
1744
|
- lib/moov/models/errors/createwebhookvalidationerror.rbi
|
|
1745
|
+
- lib/moov/models/errors/depositaccountvalidationerror.rb
|
|
1746
|
+
- lib/moov/models/errors/depositaccountvalidationerror.rbi
|
|
1728
1747
|
- lib/moov/models/errors/duplicatecarderror.rb
|
|
1729
1748
|
- lib/moov/models/errors/duplicatecarderror.rbi
|
|
1730
1749
|
- lib/moov/models/errors/feeplanagreementerror.rb
|
|
@@ -1850,6 +1869,10 @@ files:
|
|
|
1850
1869
|
- lib/moov/models/operations/createcancellation_request.rbi
|
|
1851
1870
|
- lib/moov/models/operations/createcancellation_response.rb
|
|
1852
1871
|
- lib/moov/models/operations/createcancellation_response.rbi
|
|
1872
|
+
- lib/moov/models/operations/createdepositaccount_request.rb
|
|
1873
|
+
- lib/moov/models/operations/createdepositaccount_request.rbi
|
|
1874
|
+
- lib/moov/models/operations/createdepositaccount_response.rb
|
|
1875
|
+
- lib/moov/models/operations/createdepositaccount_response.rbi
|
|
1853
1876
|
- lib/moov/models/operations/createfeeplanagreements_request.rb
|
|
1854
1877
|
- lib/moov/models/operations/createfeeplanagreements_request.rbi
|
|
1855
1878
|
- lib/moov/models/operations/createfeeplanagreements_response.rb
|