moov_ruby 0.3.33 → 0.3.35

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.
Files changed (24) hide show
  1. checksums.yaml +4 -4
  2. data/lib/moov/models/components/createinvoicelineitem.rb +5 -5
  3. data/lib/moov/models/components/createinvoicelineitem.rbi +2 -2
  4. data/lib/moov/models/components/createinvoicelineitemimage.rb +32 -0
  5. data/lib/moov/models/components/createinvoicelineitemimage.rbi +13 -0
  6. data/lib/moov/models/components/createinvoicelineitemimagevalidationerror.rb +32 -0
  7. data/lib/moov/models/components/createinvoicelineitemimagevalidationerror.rbi +13 -0
  8. data/lib/moov/models/components/createinvoicelineitemoption.rb +6 -6
  9. data/lib/moov/models/components/createinvoicelineitemoption.rbi +2 -2
  10. data/lib/moov/models/components/createinvoicelineitemoptionvalidationerror.rb +6 -2
  11. data/lib/moov/models/components/createinvoicelineitemoptionvalidationerror.rbi +2 -0
  12. data/lib/moov/models/components/createinvoicelineitemvalidationerror.rb +6 -2
  13. data/lib/moov/models/components/createinvoicelineitemvalidationerror.rbi +2 -0
  14. data/lib/moov/models/components/createpaymentlinklineitem.rb +4 -1
  15. data/lib/moov/models/components/createpaymentlinklineitemoption.rb +4 -1
  16. data/lib/moov/models/components/invoicelineitemimagevalidationerror.rb +32 -0
  17. data/lib/moov/models/components/invoicelineitemimagevalidationerror.rbi +13 -0
  18. data/lib/moov/models/components/invoicelineitemoptionvalidationerror.rb +6 -2
  19. data/lib/moov/models/components/invoicelineitemoptionvalidationerror.rbi +2 -0
  20. data/lib/moov/models/components/invoicelineitemvalidationerror.rb +6 -2
  21. data/lib/moov/models/components/invoicelineitemvalidationerror.rbi +2 -0
  22. data/lib/moov/models/components.rb +3 -0
  23. data/lib/moov/sdkconfiguration.rb +3 -3
  24. metadata +8 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f15c765882aad24d04846dcc78b264a020cabc0a50fa735f99a0ba620659b47
4
- data.tar.gz: 6aebf6ad4ecd1fe67ebd49dd9858b8478d3946a0db8be180516fd340679a4d70
3
+ metadata.gz: e92eba9c09d60fa6b8e984614b397fa038beabc0ea40814e8a87c717d090003c
4
+ data.tar.gz: a497272928870842013640504b322ac6c633d2eea93089a1ca7993ed59df13c4
5
5
  SHA512:
6
- metadata.gz: a995dde0b4f8aa0c0bfd814d2b3d80ae9cfb4a89f08f9f1489588c63c4457e53b45024b164267576c41e8c1f76d5cbf9756faa1ede6184ec2887e3872328ca0f
7
- data.tar.gz: 3f170ee658fc0ee5ef713bbb85850a2da06c075b5b9019744654ca5a3f843b637f0cb05dd54e6467eecc3581fd761353d739a37744b93507c7eccc56ee9f346f
6
+ metadata.gz: 313819ee934d7fc56fec5b2a84ed8d6804c443edff8b0b1aa210f7b9304a9fec0ece065129146ccc7b9873ceffe45b07827c631c7b391f8576329a12a35e0f11
7
+ data.tar.gz: e6bac4a51d74bcbc6ed64d2ad31a5da8e255187058794b9846fe6b3113ba684dd35128f23fd582bb75a004120862b8afc49693d68b7ca84267179498af04c27e
@@ -24,16 +24,16 @@ module Moov
24
24
  # Optional list of modifiers applied to this item (e.g., toppings, upgrades, customizations).
25
25
  field :options, Crystalline::Nilable.new(Crystalline::Array.new(Models::Components::CreateInvoiceLineItemOption)), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('options') } }
26
26
  # Optional list of images associated with this line item.
27
- field :image_i_ds, Crystalline::Nilable.new(Crystalline::Array.new(::String)), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('imageIDs') } }
27
+ field :images, Crystalline::Nilable.new(Crystalline::Array.new(Models::Components::CreateInvoiceLineItemImage)), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('images') } }
28
28
 
29
- sig { params(name: ::String, base_price: Models::Components::AmountDecimal, quantity: ::Integer, product_id: T.nilable(::String), options: T.nilable(T::Array[Models::Components::CreateInvoiceLineItemOption]), image_i_ds: T.nilable(T::Array[::String])).void }
30
- def initialize(name:, base_price:, quantity:, product_id: nil, options: nil, image_i_ds: nil)
29
+ sig { params(name: ::String, base_price: Models::Components::AmountDecimal, quantity: ::Integer, product_id: T.nilable(::String), options: T.nilable(T::Array[Models::Components::CreateInvoiceLineItemOption]), images: T.nilable(T::Array[Models::Components::CreateInvoiceLineItemImage])).void }
30
+ def initialize(name:, base_price:, quantity:, product_id: nil, options: nil, images: nil)
31
31
  @name = name
32
32
  @base_price = base_price
33
33
  @quantity = quantity
34
34
  @product_id = product_id
35
35
  @options = options
36
- @image_i_ds = image_i_ds
36
+ @images = images
37
37
  end
38
38
 
39
39
  sig { params(other: T.untyped).returns(T::Boolean) }
@@ -44,7 +44,7 @@ module Moov
44
44
  return false unless @quantity == other.quantity
45
45
  return false unless @product_id == other.product_id
46
46
  return false unless @options == other.options
47
- return false unless @image_i_ds == other.image_i_ds
47
+ return false unless @images == other.images
48
48
  true
49
49
  end
50
50
  end
@@ -18,6 +18,6 @@ class Moov::Models::Components::CreateInvoiceLineItem
18
18
  def product_id=(str_); end
19
19
  def options(); end
20
20
  def options=(str_); end
21
- def image_i_ds(); end
22
- def image_i_ds=(str_); end
21
+ def images(); end
22
+ def images=(str_); end
23
23
  end
@@ -0,0 +1,32 @@
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 Components
10
+ # An image to associate with a line item.
11
+ class CreateInvoiceLineItemImage
12
+ extend T::Sig
13
+ include Crystalline::MetadataFields
14
+
15
+ # A unique identifier for a Moov resource. Supports UUID format (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx) or typed format with base32-encoded UUID and type suffix (e.g., kuoaydiojf7uszaokc2ggnaaaa_xfer).
16
+ field :image_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('imageID') } }
17
+
18
+ sig { params(image_id: T.nilable(::String)).void }
19
+ def initialize(image_id: nil)
20
+ @image_id = image_id
21
+ end
22
+
23
+ sig { params(other: T.untyped).returns(T::Boolean) }
24
+ def ==(other)
25
+ return false unless other.is_a? self.class
26
+ return false unless @image_id == other.image_id
27
+ true
28
+ end
29
+ end
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,13 @@
1
+ # typed: true
2
+ # frozen_string_literal: true
3
+
4
+
5
+ class Moov::Models::Components::CreateInvoiceLineItemImage
6
+ extend ::Crystalline::MetadataFields::ClassMethods
7
+ end
8
+
9
+
10
+ class Moov::Models::Components::CreateInvoiceLineItemImage
11
+ def image_id(); end
12
+ def image_id=(str_); end
13
+ end
@@ -0,0 +1,32 @@
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 Components
10
+
11
+ class CreateInvoiceLineItemImageValidationError
12
+ extend T::Sig
13
+ include Crystalline::MetadataFields
14
+
15
+
16
+ field :image_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('imageID') } }
17
+
18
+ sig { params(image_id: T.nilable(::String)).void }
19
+ def initialize(image_id: nil)
20
+ @image_id = image_id
21
+ end
22
+
23
+ sig { params(other: T.untyped).returns(T::Boolean) }
24
+ def ==(other)
25
+ return false unless other.is_a? self.class
26
+ return false unless @image_id == other.image_id
27
+ true
28
+ end
29
+ end
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,13 @@
1
+ # typed: true
2
+ # frozen_string_literal: true
3
+
4
+
5
+ class Moov::Models::Components::CreateInvoiceLineItemImageValidationError
6
+ extend ::Crystalline::MetadataFields::ClassMethods
7
+ end
8
+
9
+
10
+ class Moov::Models::Components::CreateInvoiceLineItemImageValidationError
11
+ def image_id(); end
12
+ def image_id=(str_); end
13
+ end
@@ -20,16 +20,16 @@ module Moov
20
20
  field :price_modifier, Crystalline::Nilable.new(Models::Components::AmountDecimal), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('priceModifier') } }
21
21
  # Optional group identifier to categorize related options (e.g., 'toppings').
22
22
  field :group, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('group') } }
23
- # Optional list of images associated with this line item.
24
- field :image_i_ds, Crystalline::Nilable.new(Crystalline::Array.new(::String)), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('imageIDs') } }
23
+ # Optional list of images associated with this line item option.
24
+ field :images, Crystalline::Nilable.new(Crystalline::Array.new(Models::Components::CreateInvoiceLineItemImage)), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('images') } }
25
25
 
26
- sig { params(name: ::String, quantity: ::Integer, price_modifier: T.nilable(Models::Components::AmountDecimal), group: T.nilable(::String), image_i_ds: T.nilable(T::Array[::String])).void }
27
- def initialize(name:, quantity:, price_modifier: nil, group: nil, image_i_ds: nil)
26
+ sig { params(name: ::String, quantity: ::Integer, price_modifier: T.nilable(Models::Components::AmountDecimal), group: T.nilable(::String), images: T.nilable(T::Array[Models::Components::CreateInvoiceLineItemImage])).void }
27
+ def initialize(name:, quantity:, price_modifier: nil, group: nil, images: nil)
28
28
  @name = name
29
29
  @quantity = quantity
30
30
  @price_modifier = price_modifier
31
31
  @group = group
32
- @image_i_ds = image_i_ds
32
+ @images = images
33
33
  end
34
34
 
35
35
  sig { params(other: T.untyped).returns(T::Boolean) }
@@ -39,7 +39,7 @@ module Moov
39
39
  return false unless @quantity == other.quantity
40
40
  return false unless @price_modifier == other.price_modifier
41
41
  return false unless @group == other.group
42
- return false unless @image_i_ds == other.image_i_ds
42
+ return false unless @images == other.images
43
43
  true
44
44
  end
45
45
  end
@@ -16,6 +16,6 @@ class Moov::Models::Components::CreateInvoiceLineItemOption
16
16
  def price_modifier=(str_); end
17
17
  def group(); end
18
18
  def group=(str_); end
19
- def image_i_ds(); end
20
- def image_i_ds=(str_); end
19
+ def images(); end
20
+ def images=(str_); end
21
21
  end
@@ -21,12 +21,15 @@ module Moov
21
21
 
22
22
  field :quantity, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('quantity') } }
23
23
 
24
- sig { params(name: T.nilable(::String), group: T.nilable(::String), price_modifier: T.nilable(Models::Components::AmountDecimalValidationError), quantity: T.nilable(::String)).void }
25
- def initialize(name: nil, group: nil, price_modifier: nil, quantity: nil)
24
+ field :images, Crystalline::Nilable.new(Crystalline::Hash.new(Symbol, Models::Components::CreateInvoiceLineItemImageValidationError)), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('images') } }
25
+
26
+ sig { params(name: T.nilable(::String), group: T.nilable(::String), price_modifier: T.nilable(Models::Components::AmountDecimalValidationError), quantity: T.nilable(::String), images: T.nilable(T::Hash[Symbol, Models::Components::CreateInvoiceLineItemImageValidationError])).void }
27
+ def initialize(name: nil, group: nil, price_modifier: nil, quantity: nil, images: nil)
26
28
  @name = name
27
29
  @group = group
28
30
  @price_modifier = price_modifier
29
31
  @quantity = quantity
32
+ @images = images
30
33
  end
31
34
 
32
35
  sig { params(other: T.untyped).returns(T::Boolean) }
@@ -36,6 +39,7 @@ module Moov
36
39
  return false unless @group == other.group
37
40
  return false unless @price_modifier == other.price_modifier
38
41
  return false unless @quantity == other.quantity
42
+ return false unless @images == other.images
39
43
  true
40
44
  end
41
45
  end
@@ -16,4 +16,6 @@ class Moov::Models::Components::CreateInvoiceLineItemOptionValidationError
16
16
  def price_modifier=(str_); end
17
17
  def quantity(); end
18
18
  def quantity=(str_); end
19
+ def images(); end
20
+ def images=(str_); end
19
21
  end
@@ -23,13 +23,16 @@ module Moov
23
23
 
24
24
  field :quantity, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('quantity') } }
25
25
 
26
- sig { params(product_id: T.nilable(::String), name: T.nilable(::String), base_price: T.nilable(Models::Components::AmountDecimalValidationError), options: T.nilable(T::Hash[Symbol, Models::Components::CreateInvoiceLineItemOptionValidationError]), quantity: T.nilable(::String)).void }
27
- def initialize(product_id: nil, name: nil, base_price: nil, options: nil, quantity: nil)
26
+ field :images, Crystalline::Nilable.new(Crystalline::Hash.new(Symbol, Models::Components::CreateInvoiceLineItemImageValidationError)), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('images') } }
27
+
28
+ sig { params(product_id: T.nilable(::String), name: T.nilable(::String), base_price: T.nilable(Models::Components::AmountDecimalValidationError), options: T.nilable(T::Hash[Symbol, Models::Components::CreateInvoiceLineItemOptionValidationError]), quantity: T.nilable(::String), images: T.nilable(T::Hash[Symbol, Models::Components::CreateInvoiceLineItemImageValidationError])).void }
29
+ def initialize(product_id: nil, name: nil, base_price: nil, options: nil, quantity: nil, images: nil)
28
30
  @product_id = product_id
29
31
  @name = name
30
32
  @base_price = base_price
31
33
  @options = options
32
34
  @quantity = quantity
35
+ @images = images
33
36
  end
34
37
 
35
38
  sig { params(other: T.untyped).returns(T::Boolean) }
@@ -40,6 +43,7 @@ module Moov
40
43
  return false unless @base_price == other.base_price
41
44
  return false unless @options == other.options
42
45
  return false unless @quantity == other.quantity
46
+ return false unless @images == other.images
43
47
  true
44
48
  end
45
49
  end
@@ -18,4 +18,6 @@ class Moov::Models::Components::CreateInvoiceLineItemValidationError
18
18
  def options=(str_); end
19
19
  def quantity(); end
20
20
  def quantity=(str_); end
21
+ def images(); end
22
+ def images=(str_); end
21
23
  end
@@ -20,7 +20,10 @@ module Moov
20
20
  field :quantity, ::Integer, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('quantity'), required: true } }
21
21
  # Optional list of modifiers applied to this item (e.g., toppings, upgrades, customizations).
22
22
  field :options, Crystalline::Nilable.new(Crystalline::Array.new(Models::Components::CreatePaymentLinkLineItemOption)), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('options') } }
23
- # Optional list of images associated with this line item.
23
+ # Optional list of images associated with this line item.
24
+ # This field is deprecated and will be ignored. A future release will populate images associated with the given productID.
25
+ #
26
+ # @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
24
27
  field :image_i_ds, Crystalline::Nilable.new(Crystalline::Array.new(::String)), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('imageIDs') } }
25
28
  # Optional unique identifier associating the line item with a product.
26
29
  # This is for reporting or tracking purposes, and does not populate other details of the line item.
@@ -18,7 +18,10 @@ module Moov
18
18
  field :quantity, ::Integer, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('quantity'), required: true } }
19
19
  # Optional price modification applied by this option. Can be positive, negative, or zero.
20
20
  field :price_modifier, Crystalline::Nilable.new(Models::Components::AmountDecimal), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('priceModifier') } }
21
- # Optional list of images associated with this line item option.
21
+ # Optional list of images associated with this line item option.
22
+ # This field is deprecated and will be ignored. A future release will populate images associated with the given productID.
23
+ #
24
+ # @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
22
25
  field :image_i_ds, Crystalline::Nilable.new(Crystalline::Array.new(::String)), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('imageIDs') } }
23
26
  # Optional group identifier to categorize related options (e.g., 'toppings').
24
27
  field :group, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('group') } }
@@ -0,0 +1,32 @@
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 Components
10
+
11
+ class InvoiceLineItemImageValidationError
12
+ extend T::Sig
13
+ include Crystalline::MetadataFields
14
+
15
+
16
+ field :image_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('imageID') } }
17
+
18
+ sig { params(image_id: T.nilable(::String)).void }
19
+ def initialize(image_id: nil)
20
+ @image_id = image_id
21
+ end
22
+
23
+ sig { params(other: T.untyped).returns(T::Boolean) }
24
+ def ==(other)
25
+ return false unless other.is_a? self.class
26
+ return false unless @image_id == other.image_id
27
+ true
28
+ end
29
+ end
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,13 @@
1
+ # typed: true
2
+ # frozen_string_literal: true
3
+
4
+
5
+ class Moov::Models::Components::InvoiceLineItemImageValidationError
6
+ extend ::Crystalline::MetadataFields::ClassMethods
7
+ end
8
+
9
+
10
+ class Moov::Models::Components::InvoiceLineItemImageValidationError
11
+ def image_id(); end
12
+ def image_id=(str_); end
13
+ end
@@ -21,12 +21,15 @@ module Moov
21
21
 
22
22
  field :quantity, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('quantity') } }
23
23
 
24
- sig { params(name: T.nilable(::String), group: T.nilable(::String), price_modifier: T.nilable(Models::Components::AmountDecimalValidationError), quantity: T.nilable(::String)).void }
25
- def initialize(name: nil, group: nil, price_modifier: nil, quantity: nil)
24
+ field :images, Crystalline::Nilable.new(Crystalline::Hash.new(Symbol, Models::Components::InvoiceLineItemImageValidationError)), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('images') } }
25
+
26
+ sig { params(name: T.nilable(::String), group: T.nilable(::String), price_modifier: T.nilable(Models::Components::AmountDecimalValidationError), quantity: T.nilable(::String), images: T.nilable(T::Hash[Symbol, Models::Components::InvoiceLineItemImageValidationError])).void }
27
+ def initialize(name: nil, group: nil, price_modifier: nil, quantity: nil, images: nil)
26
28
  @name = name
27
29
  @group = group
28
30
  @price_modifier = price_modifier
29
31
  @quantity = quantity
32
+ @images = images
30
33
  end
31
34
 
32
35
  sig { params(other: T.untyped).returns(T::Boolean) }
@@ -36,6 +39,7 @@ module Moov
36
39
  return false unless @group == other.group
37
40
  return false unless @price_modifier == other.price_modifier
38
41
  return false unless @quantity == other.quantity
42
+ return false unless @images == other.images
39
43
  true
40
44
  end
41
45
  end
@@ -16,4 +16,6 @@ class Moov::Models::Components::InvoiceLineItemOptionValidationError
16
16
  def price_modifier=(str_); end
17
17
  def quantity(); end
18
18
  def quantity=(str_); end
19
+ def images(); end
20
+ def images=(str_); end
19
21
  end
@@ -23,13 +23,16 @@ module Moov
23
23
 
24
24
  field :quantity, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('quantity') } }
25
25
 
26
- sig { params(product_id: T.nilable(::String), name: T.nilable(::String), base_price: T.nilable(Models::Components::AmountDecimalValidationError), options: T.nilable(T::Hash[Symbol, Models::Components::InvoiceLineItemOptionValidationError]), quantity: T.nilable(::String)).void }
27
- def initialize(product_id: nil, name: nil, base_price: nil, options: nil, quantity: nil)
26
+ field :images, Crystalline::Nilable.new(Crystalline::Hash.new(Symbol, Models::Components::InvoiceLineItemImageValidationError)), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('images') } }
27
+
28
+ sig { params(product_id: T.nilable(::String), name: T.nilable(::String), base_price: T.nilable(Models::Components::AmountDecimalValidationError), options: T.nilable(T::Hash[Symbol, Models::Components::InvoiceLineItemOptionValidationError]), quantity: T.nilable(::String), images: T.nilable(T::Hash[Symbol, Models::Components::InvoiceLineItemImageValidationError])).void }
29
+ def initialize(product_id: nil, name: nil, base_price: nil, options: nil, quantity: nil, images: nil)
28
30
  @product_id = product_id
29
31
  @name = name
30
32
  @base_price = base_price
31
33
  @options = options
32
34
  @quantity = quantity
35
+ @images = images
33
36
  end
34
37
 
35
38
  sig { params(other: T.untyped).returns(T::Boolean) }
@@ -40,6 +43,7 @@ module Moov
40
43
  return false unless @base_price == other.base_price
41
44
  return false unless @options == other.options
42
45
  return false unless @quantity == other.quantity
46
+ return false unless @images == other.images
43
47
  true
44
48
  end
45
49
  end
@@ -18,4 +18,6 @@ class Moov::Models::Components::InvoiceLineItemValidationError
18
18
  def options=(str_); end
19
19
  def quantity(); end
20
20
  def quantity=(str_); end
21
+ def images(); end
22
+ def images=(str_); end
21
23
  end
@@ -165,6 +165,8 @@ module Moov
165
165
  autoload :CreateIndividualProfile, 'moov/models/components/createindividualprofile.rb'
166
166
  autoload :CreateInvoice, 'moov/models/components/createinvoice.rb'
167
167
  autoload :CreateInvoiceLineItem, 'moov/models/components/createinvoicelineitem.rb'
168
+ autoload :CreateInvoiceLineItemImage, 'moov/models/components/createinvoicelineitemimage.rb'
169
+ autoload :CreateInvoiceLineItemImageValidationError, 'moov/models/components/createinvoicelineitemimagevalidationerror.rb'
168
170
  autoload :CreateInvoiceLineItemOption, 'moov/models/components/createinvoicelineitemoption.rb'
169
171
  autoload :CreateInvoiceLineItemOptionValidationError, 'moov/models/components/createinvoicelineitemoptionvalidationerror.rb'
170
172
  autoload :CreateInvoiceLineItemValidationError, 'moov/models/components/createinvoicelineitemvalidationerror.rb'
@@ -295,6 +297,7 @@ module Moov
295
297
  autoload :InvoiceExternalPayment, 'moov/models/components/invoiceexternalpayment.rb'
296
298
  autoload :InvoiceLineItem, 'moov/models/components/invoicelineitem.rb'
297
299
  autoload :InvoiceLineItemImageMetadata, 'moov/models/components/invoicelineitemimagemetadata.rb'
300
+ autoload :InvoiceLineItemImageValidationError, 'moov/models/components/invoicelineitemimagevalidationerror.rb'
298
301
  autoload :InvoiceLineItemOption, 'moov/models/components/invoicelineitemoption.rb'
299
302
  autoload :InvoiceLineItemOptionValidationError, 'moov/models/components/invoicelineitemoptionvalidationerror.rb'
300
303
  autoload :InvoiceLineItemValidationError, 'moov/models/components/invoicelineitemvalidationerror.rb'
@@ -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.33'
99
- @gen_version = '2.806.4'
100
- @user_agent = 'speakeasy-sdk/ruby 0.3.33 2.806.4 latest moov_ruby'
98
+ @sdk_version = '0.3.35'
99
+ @gen_version = '2.812.2'
100
+ @user_agent = 'speakeasy-sdk/ruby 0.3.35 2.812.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.33
4
+ version: 0.3.35
5
5
  platform: ruby
6
6
  authors:
7
7
  - Speakeasy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-02-05 00:00:00.000000000 Z
11
+ date: 2026-02-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: base64
@@ -580,6 +580,10 @@ files:
580
580
  - lib/moov/models/components/createinvoice.rbi
581
581
  - lib/moov/models/components/createinvoicelineitem.rb
582
582
  - lib/moov/models/components/createinvoicelineitem.rbi
583
+ - lib/moov/models/components/createinvoicelineitemimage.rb
584
+ - lib/moov/models/components/createinvoicelineitemimage.rbi
585
+ - lib/moov/models/components/createinvoicelineitemimagevalidationerror.rb
586
+ - lib/moov/models/components/createinvoicelineitemimagevalidationerror.rbi
583
587
  - lib/moov/models/components/createinvoicelineitemoption.rb
584
588
  - lib/moov/models/components/createinvoicelineitemoption.rbi
585
589
  - lib/moov/models/components/createinvoicelineitemoptionvalidationerror.rb
@@ -840,6 +844,8 @@ files:
840
844
  - lib/moov/models/components/invoicelineitem.rbi
841
845
  - lib/moov/models/components/invoicelineitemimagemetadata.rb
842
846
  - lib/moov/models/components/invoicelineitemimagemetadata.rbi
847
+ - lib/moov/models/components/invoicelineitemimagevalidationerror.rb
848
+ - lib/moov/models/components/invoicelineitemimagevalidationerror.rbi
843
849
  - lib/moov/models/components/invoicelineitemoption.rb
844
850
  - lib/moov/models/components/invoicelineitemoption.rbi
845
851
  - lib/moov/models/components/invoicelineitemoptionvalidationerror.rb