moov_ruby 25.2.4 → 25.2.5
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/models/components/{rtpdetails.rb → rtptransactiondetails.rb} +1 -1
- data/lib/moov/models/components/{rtpdetails.rbi → rtptransactiondetails.rbi} +2 -2
- data/lib/moov/models/components/transferdestination.rb +4 -2
- data/lib/moov/models/components.rb +1 -1
- data/lib/moov/sdkconfiguration.rb +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 492cb06c4e203395df89d5ac1637cb68b4f7344459a34f7e46e13ca2cbe8f69a
|
|
4
|
+
data.tar.gz: 540b9ae22b662efa0a01b5b496025ee02c79e878aa222f5eb6d9a4cde6947b71
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 748d01ebe6a44103edc999c48cb7513dbedb76ddf9c09de6494d92208f84fc5863f06f34eaa19cf59f8002d9584c1b9a186cc2d7e54110079f4bc3b649e458b0
|
|
7
|
+
data.tar.gz: af3bbb78617dd14d5a6418891a0bb938880713ebef203f296511ca592fc2be971df4fff272a5cbdabd73ef109cb011f4533c3bdb558cef969bee037daab1afd0
|
|
@@ -10,7 +10,7 @@ module Moov
|
|
|
10
10
|
# DEPRECATED: use `InstantBankTransactionDetails` instead (v2026.04.00 or later). RTP specific details about the transaction.
|
|
11
11
|
#
|
|
12
12
|
# @deprecated class: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
13
|
-
class
|
|
13
|
+
class RTPTransactionDetails
|
|
14
14
|
extend T::Sig
|
|
15
15
|
include Crystalline::MetadataFields
|
|
16
16
|
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
# frozen_string_literal: true
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
class Moov::Models::Components::
|
|
5
|
+
class Moov::Models::Components::RTPTransactionDetails
|
|
6
6
|
extend ::Crystalline::MetadataFields::ClassMethods
|
|
7
7
|
end
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
class Moov::Models::Components::
|
|
10
|
+
class Moov::Models::Components::RTPTransactionDetails
|
|
11
11
|
def status(); end
|
|
12
12
|
def status=(str_); end
|
|
13
13
|
def network_response_code(); end
|
|
@@ -30,12 +30,14 @@ module Moov
|
|
|
30
30
|
field :apple_pay, Crystalline::Nilable.new(Models::Components::ApplePayResponse), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('applePay') } }
|
|
31
31
|
# Card-specific details about the transaction.
|
|
32
32
|
field :card_details, Crystalline::Nilable.new(Models::Components::CardTransactionDetails), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('cardDetails') } }
|
|
33
|
+
# DEPRECATED: use `InstantBankTransactionDetails` instead (v2026.04.00 or later). RTP specific details about the transaction.
|
|
34
|
+
#
|
|
33
35
|
# @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
34
|
-
field :rtp_details, Crystalline::Nilable.new(Models::Components::
|
|
36
|
+
field :rtp_details, Crystalline::Nilable.new(Models::Components::RTPTransactionDetails), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('rtpDetails') } }
|
|
35
37
|
# Instant-bank specific details about the transaction.
|
|
36
38
|
field :instant_bank_details, Crystalline::Nilable.new(Models::Components::InstantBankTransactionDetails), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('instantBankDetails') } }
|
|
37
39
|
|
|
38
|
-
sig { params(payment_method_id: ::String, payment_method_type: Models::Components::TransferPaymentMethodType, account: Models::Components::TransferAccount, bank_account: T.nilable(Models::Components::TransferPaymentMethodsBankAccount), wallet: T.nilable(Models::Components::TransferPaymentMethodsWallet), card: T.nilable(Models::Components::TransferPaymentMethodsCard), ach_details: T.nilable(Models::Components::ACHTransactionDetails), apple_pay: T.nilable(Models::Components::ApplePayResponse), card_details: T.nilable(Models::Components::CardTransactionDetails), rtp_details: T.nilable(Models::Components::
|
|
40
|
+
sig { params(payment_method_id: ::String, payment_method_type: Models::Components::TransferPaymentMethodType, account: Models::Components::TransferAccount, bank_account: T.nilable(Models::Components::TransferPaymentMethodsBankAccount), wallet: T.nilable(Models::Components::TransferPaymentMethodsWallet), card: T.nilable(Models::Components::TransferPaymentMethodsCard), ach_details: T.nilable(Models::Components::ACHTransactionDetails), apple_pay: T.nilable(Models::Components::ApplePayResponse), card_details: T.nilable(Models::Components::CardTransactionDetails), rtp_details: T.nilable(Models::Components::RTPTransactionDetails), instant_bank_details: T.nilable(Models::Components::InstantBankTransactionDetails)).void }
|
|
39
41
|
def initialize(payment_method_id:, payment_method_type:, account:, bank_account: nil, wallet: nil, card: nil, ach_details: nil, apple_pay: nil, card_details: nil, rtp_details: nil, instant_bank_details: nil)
|
|
40
42
|
@payment_method_id = payment_method_id
|
|
41
43
|
@payment_method_type = payment_method_type
|
|
@@ -387,6 +387,7 @@ module Moov
|
|
|
387
387
|
autoload :RTPInstitution, 'moov/models/components/rtpinstitution.rb'
|
|
388
388
|
autoload :RTPRejectionCode, 'moov/models/components/rtprejectioncode.rb'
|
|
389
389
|
autoload :RTPServices, 'moov/models/components/rtpservices.rb'
|
|
390
|
+
autoload :RTPTransactionDetails, 'moov/models/components/rtptransactiondetails.rb'
|
|
390
391
|
autoload :RTPTransactionStatus, 'moov/models/components/rtptransactionstatus.rb'
|
|
391
392
|
autoload :ReceiptKind, 'moov/models/components/receiptkind.rb'
|
|
392
393
|
autoload :ReceiptRequest, 'moov/models/components/receiptrequest.rb'
|
|
@@ -566,7 +567,6 @@ module Moov
|
|
|
566
567
|
autoload :OtherFees, 'moov/models/components/otherfees.rb'
|
|
567
568
|
autoload :Phone, 'moov/models/components/phone.rb'
|
|
568
569
|
autoload :Responsibilities, 'moov/models/components/responsibilities.rb'
|
|
569
|
-
autoload :RtpDetails, 'moov/models/components/rtpdetails.rb'
|
|
570
570
|
autoload :Status, 'moov/models/components/status.rb'
|
|
571
571
|
autoload :TokenTypeHint, 'moov/models/components/token_type_hint.rb'
|
|
572
572
|
autoload :Use, 'moov/models/components/use.rb'
|
|
@@ -88,9 +88,9 @@ module Moov
|
|
|
88
88
|
end
|
|
89
89
|
@language = 'ruby'
|
|
90
90
|
@openapi_doc_version = 'v2025.01.00'
|
|
91
|
-
@sdk_version = '25.2.
|
|
92
|
-
@gen_version = '2.
|
|
93
|
-
@user_agent = 'speakeasy-sdk/ruby 25.2.
|
|
91
|
+
@sdk_version = '25.2.5'
|
|
92
|
+
@gen_version = '2.882.0'
|
|
93
|
+
@user_agent = 'speakeasy-sdk/ruby 25.2.5 2.882.0 v2025.01.00 moov_ruby'
|
|
94
94
|
end
|
|
95
95
|
|
|
96
96
|
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: 25.2.
|
|
4
|
+
version: 25.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Speakeasy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-05-
|
|
11
|
+
date: 2026-05-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: base64
|
|
@@ -1096,8 +1096,6 @@ files:
|
|
|
1096
1096
|
- lib/moov/models/components/rtpcredittransferpaymentmethod.rbi
|
|
1097
1097
|
- lib/moov/models/components/rtpcredittransferpaymentmethod_paymentmethodtype.rb
|
|
1098
1098
|
- lib/moov/models/components/rtpcredittransferpaymentmethod_paymentmethodtype.rbi
|
|
1099
|
-
- lib/moov/models/components/rtpdetails.rb
|
|
1100
|
-
- lib/moov/models/components/rtpdetails.rbi
|
|
1101
1099
|
- lib/moov/models/components/rtpfailurecode.rb
|
|
1102
1100
|
- lib/moov/models/components/rtpfailurecode.rbi
|
|
1103
1101
|
- lib/moov/models/components/rtpinstitution.rb
|
|
@@ -1106,6 +1104,8 @@ files:
|
|
|
1106
1104
|
- lib/moov/models/components/rtprejectioncode.rbi
|
|
1107
1105
|
- lib/moov/models/components/rtpservices.rb
|
|
1108
1106
|
- lib/moov/models/components/rtpservices.rbi
|
|
1107
|
+
- lib/moov/models/components/rtptransactiondetails.rb
|
|
1108
|
+
- lib/moov/models/components/rtptransactiondetails.rbi
|
|
1109
1109
|
- lib/moov/models/components/rtptransactionstatus.rb
|
|
1110
1110
|
- lib/moov/models/components/rtptransactionstatus.rbi
|
|
1111
1111
|
- lib/moov/models/components/runtransfer.rb
|