moov_ruby 0.3.26 → 0.3.27

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: '085677798a7980900d0d686d4ab5e533e90ac61fcd660cb4afb1d7ec6cefd0fe'
4
- data.tar.gz: 16385e25f86c8d76d60cea47a677e3e1771a2dbe70a9312d5d3fcb8ea38d2d0e
3
+ metadata.gz: d53bc2fe4d90976fee33466a7dcdfcb7d532d0e1a2abde79859c232bbe17a75e
4
+ data.tar.gz: 29c1000a508ca98301c23533920119613040f598ab11b6c8af891aeada5314d1
5
5
  SHA512:
6
- metadata.gz: 9dbe183c79ae021663285db7743cf7194e1680233ba2b03159307fda4d261fa77b13bbbf02a005a567cdcbf0b4286e13b0beca8c5490a7b4ce30891701531668
7
- data.tar.gz: 40f259d769ca815870ca3a252693a00b5f16957dc880c5c670c79593157f3aa61484e0d7ee966842dfae460d50aa54481fde4cba6a72ae9bdcc92b8c7105a68f
6
+ metadata.gz: 1218bad54c738456c372302da7d5322876e17937da8516e91c56441ec7c4d1a6f54e29558e322e2cd8bb56cc9e4cc473b7f0e4720c66eec3fcd522dd63925828
7
+ data.tar.gz: f7260ca10d8407709499a4bf5b1ac4b0104b51905e8ab0e610572d064c9c779e0afda55622ccf782ff6298b6d3289f4d2068da34bf2eb1c2a0ac1e0464737307
@@ -25,17 +25,20 @@ module Moov
25
25
  field :unauthorized_return, Models::Components::BillingCountAndAmount, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('unauthorizedReturn'), required: true } }
26
26
  # Fees for notices of change.
27
27
  field :notice_of_change, Models::Components::BillingCountAndAmount, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('noticeOfChange'), required: true } }
28
+ # Fees for successful bank account verifications via Plaid or MX.
29
+ field :bank_account_verification, Models::Components::BillingCountAndAmount, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('bankAccountVerification'), required: true } }
28
30
  # Total ACH fees.
29
31
  field :total, Models::Components::BillingCountAndAmount, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('total'), required: true } }
30
32
 
31
- sig { params(standard_credit: Models::Components::BillingCountAndAmount, same_day_credit: Models::Components::BillingCountAndAmount, debits: Models::Components::BillingCountAndAmount, return_: Models::Components::BillingCountAndAmount, unauthorized_return: Models::Components::BillingCountAndAmount, notice_of_change: Models::Components::BillingCountAndAmount, total: Models::Components::BillingCountAndAmount).void }
32
- def initialize(standard_credit:, same_day_credit:, debits:, return_:, unauthorized_return:, notice_of_change:, total:)
33
+ sig { params(standard_credit: Models::Components::BillingCountAndAmount, same_day_credit: Models::Components::BillingCountAndAmount, debits: Models::Components::BillingCountAndAmount, return_: Models::Components::BillingCountAndAmount, unauthorized_return: Models::Components::BillingCountAndAmount, notice_of_change: Models::Components::BillingCountAndAmount, bank_account_verification: Models::Components::BillingCountAndAmount, total: Models::Components::BillingCountAndAmount).void }
34
+ def initialize(standard_credit:, same_day_credit:, debits:, return_:, unauthorized_return:, notice_of_change:, bank_account_verification:, total:)
33
35
  @standard_credit = standard_credit
34
36
  @same_day_credit = same_day_credit
35
37
  @debits = debits
36
38
  @return_ = return_
37
39
  @unauthorized_return = unauthorized_return
38
40
  @notice_of_change = notice_of_change
41
+ @bank_account_verification = bank_account_verification
39
42
  @total = total
40
43
  end
41
44
 
@@ -48,6 +51,7 @@ module Moov
48
51
  return false unless @return_ == other.return_
49
52
  return false unless @unauthorized_return == other.unauthorized_return
50
53
  return false unless @notice_of_change == other.notice_of_change
54
+ return false unless @bank_account_verification == other.bank_account_verification
51
55
  return false unless @total == other.total
52
56
  true
53
57
  end
@@ -20,6 +20,8 @@ class Moov::Models::Components::ACHFees
20
20
  def unauthorized_return=(str_); end
21
21
  def notice_of_change(); end
22
22
  def notice_of_change=(str_); end
23
+ def bank_account_verification(); end
24
+ def bank_account_verification=(str_); end
23
25
  def total(); end
24
26
  def total=(str_); end
25
27
  end
@@ -45,7 +45,7 @@ module Moov
45
45
  field :description, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('description') } }
46
46
 
47
47
  field :payment_link_code, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('paymentLinkCode') } }
48
-
48
+ # Payment made towards an invoice, will be either a transfer or an external payment.
49
49
  field :invoice_payments, Crystalline::Nilable.new(Crystalline::Array.new(Models::Components::InvoicePayment)), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('invoicePayments') } }
50
50
 
51
51
  field :invoice_date, Crystalline::Nilable.new(::DateTime), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('invoiceDate'), 'decoder': Utils.datetime_from_iso_format(true) } }
@@ -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.3.26'
98
+ @sdk_version = '0.3.27'
99
99
  @gen_version = '2.788.7'
100
- @user_agent = 'speakeasy-sdk/ruby 0.3.26 2.788.7 latest moov_ruby'
100
+ @user_agent = 'speakeasy-sdk/ruby 0.3.27 2.788.7 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.3.26
4
+ version: 0.3.27
5
5
  platform: ruby
6
6
  authors:
7
7
  - Speakeasy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-01-15 00:00:00.000000000 Z
11
+ date: 2026-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: base64