moov_ruby 0.3.12 → 0.3.13

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: 5790ad88b3eddbad449bbc92ca2bf7d9dbe82b9f6fe8d97786c057ccc7e649b4
4
- data.tar.gz: 6ffaa12aff6fee5ad0078237ccc79d0a1243b106bb9727dc3c7502585493069a
3
+ metadata.gz: e05d0635b49ad3ed4e5becb750d7da726f2a9c3ca40caf2db2211660e711fd2e
4
+ data.tar.gz: 34af1c3843d3522dde9fa28ddf7b92065abe0dfbfa4fadad61b7eac3dbda7c7e
5
5
  SHA512:
6
- metadata.gz: 251481a3ca5a70b7800097471153da5198583cfdb109f7396b3e13a4328582821842be857912d660cb3c130f4fc821d2fe6a14d2ea056b00badef6f62d7856d3
7
- data.tar.gz: 1d62309d7c18935e1091a4fbabcef0b5fb1f105c8497b2dc613b0b9a9a39100475543cabb4ffb3b32c678eb04b92c6f55d109c340cca141cb8d22ff0933b3b97
6
+ metadata.gz: 47d19af43555a0d14da330eb4f38cf1fca64e5afa332eec103bc431b48346e5373a622cb84499a2ac5038c4399feb5d9aaec6e344f82a8f295dd8747ed5fbf85
7
+ data.tar.gz: e635f58a685c3d4c308156b7ef1d903637646b516b2a492d10820b5c280dd60e0c1fb2847e355fc54ad507d2e7ad6b91485ae984eb32e1c8f26db0d89a778132
@@ -23,14 +23,17 @@ module Moov
23
23
  field :source, Models::Components::SchedulePaymentMethod, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('source'), required: true } }
24
24
  # Simple description to place on the transfer.
25
25
  field :description, ::String, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('description'), required: true } }
26
+ # Optional sales tax amount. This amount is included in the total transfer amount.
27
+ field :sales_tax_amount, Crystalline::Nilable.new(Models::Components::Amount), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('salesTaxAmount') } }
26
28
 
27
- sig { params(amount: Models::Components::Amount, destination: Models::Components::SchedulePaymentMethod, partner_account_id: ::String, source: Models::Components::SchedulePaymentMethod, description: ::String).void }
28
- def initialize(amount:, destination:, partner_account_id:, source:, description:)
29
+ sig { params(amount: Models::Components::Amount, destination: Models::Components::SchedulePaymentMethod, partner_account_id: ::String, source: Models::Components::SchedulePaymentMethod, description: ::String, sales_tax_amount: T.nilable(Models::Components::Amount)).void }
30
+ def initialize(amount:, destination:, partner_account_id:, source:, description:, sales_tax_amount: nil)
29
31
  @amount = amount
30
32
  @destination = destination
31
33
  @partner_account_id = partner_account_id
32
34
  @source = source
33
35
  @description = description
36
+ @sales_tax_amount = sales_tax_amount
34
37
  end
35
38
 
36
39
  sig { params(other: T.untyped).returns(T::Boolean) }
@@ -41,6 +44,7 @@ module Moov
41
44
  return false unless @partner_account_id == other.partner_account_id
42
45
  return false unless @source == other.source
43
46
  return false unless @description == other.description
47
+ return false unless @sales_tax_amount == other.sales_tax_amount
44
48
  true
45
49
  end
46
50
  end
@@ -18,4 +18,6 @@ class Moov::Models::Components::RunTransfer
18
18
  def source=(str_); end
19
19
  def description(); end
20
20
  def description=(str_); end
21
+ def sales_tax_amount(); end
22
+ def sales_tax_amount=(str_); end
21
23
  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.3.12'
99
- @gen_version = '2.778.0'
100
- @user_agent = 'speakeasy-sdk/ruby 0.3.12 2.778.0 latest moov_ruby'
98
+ @sdk_version = '0.3.13'
99
+ @gen_version = '2.779.2'
100
+ @user_agent = 'speakeasy-sdk/ruby 0.3.13 2.779.2 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.12
4
+ version: 0.3.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Speakeasy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-12-10 00:00:00.000000000 Z
11
+ date: 2025-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: base64