moov_ruby 0.2.5 → 0.2.6
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3701b836cb5c39e6223cb3b786d42d5c6fa7c899ed9bcfa8425435b37f3cfe5a
|
|
4
|
+
data.tar.gz: 9a7e50a1fa8c1a1ebce67515b3babd5b5f41e7d5459feb979e08ba2fc4c396fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c63453e1843a1ba20ef9ab446a90e93a50928a38df99d8f5fcda1998f2c846dab90471b1474c3b44efa7e06cfe01eba8b733bb853ff2bbec59ccc238e77eb0a3
|
|
7
|
+
data.tar.gz: a9fb90de99b11b972b303499541f8a3d626a951af8cb246ebbf251004230e34dfb19980a47b21fcd54c9ba8b0f8237a82d9be478ff00a253e15cb88507d830bd
|
|
@@ -15,6 +15,8 @@ module Moov
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
field :image_id, ::String, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('imageID'), required: true } }
|
|
18
|
+
# The ID used to get an image with the public endpoint.
|
|
19
|
+
field :public_id, ::String, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('publicID'), required: true } }
|
|
18
20
|
# A public URL to access the image. An optional `size={width}x{height}`
|
|
19
21
|
# query parameter can be provided to resize the image.
|
|
20
22
|
field :link, ::String, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('link'), required: true } }
|
|
@@ -25,9 +27,10 @@ module Moov
|
|
|
25
27
|
# Alternative text for the image.
|
|
26
28
|
field :alt_text, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('altText') } }
|
|
27
29
|
|
|
28
|
-
sig { params(image_id: ::String, link: ::String, created_on: ::DateTime, updated_on: ::DateTime, alt_text: T.nilable(::String)).void }
|
|
29
|
-
def initialize(image_id:, link:, created_on:, updated_on:, alt_text: nil)
|
|
30
|
+
sig { params(image_id: ::String, public_id: ::String, link: ::String, created_on: ::DateTime, updated_on: ::DateTime, alt_text: T.nilable(::String)).void }
|
|
31
|
+
def initialize(image_id:, public_id:, link:, created_on:, updated_on:, alt_text: nil)
|
|
30
32
|
@image_id = image_id
|
|
33
|
+
@public_id = public_id
|
|
31
34
|
@link = link
|
|
32
35
|
@created_on = created_on
|
|
33
36
|
@updated_on = updated_on
|
|
@@ -38,6 +41,7 @@ module Moov
|
|
|
38
41
|
def ==(other)
|
|
39
42
|
return false unless other.is_a? self.class
|
|
40
43
|
return false unless @image_id == other.image_id
|
|
44
|
+
return false unless @public_id == other.public_id
|
|
41
45
|
return false unless @link == other.link
|
|
42
46
|
return false unless @created_on == other.created_on
|
|
43
47
|
return false unless @updated_on == other.updated_on
|
|
@@ -28,8 +28,10 @@ module Moov
|
|
|
28
28
|
# The entity that generated the fee.
|
|
29
29
|
field :generated_by, Crystalline::Nilable.new(Models::Components::GeneratedBy), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('generatedBy') } }
|
|
30
30
|
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
field :fee_group, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('feeGroup') } }
|
|
32
|
+
|
|
33
|
+
sig { params(fee_id: T.nilable(::String), account_id: T.nilable(::String), wallet_id: T.nilable(::String), created_on: T.nilable(::DateTime), fee_name: T.nilable(::String), amount: T.nilable(Models::Components::AmountDecimal), generated_by: T.nilable(Models::Components::GeneratedBy), fee_group: T.nilable(::String)).void }
|
|
34
|
+
def initialize(fee_id: nil, account_id: nil, wallet_id: nil, created_on: nil, fee_name: nil, amount: nil, generated_by: nil, fee_group: nil)
|
|
33
35
|
@fee_id = fee_id
|
|
34
36
|
@account_id = account_id
|
|
35
37
|
@wallet_id = wallet_id
|
|
@@ -37,6 +39,7 @@ module Moov
|
|
|
37
39
|
@fee_name = fee_name
|
|
38
40
|
@amount = amount
|
|
39
41
|
@generated_by = generated_by
|
|
42
|
+
@fee_group = fee_group
|
|
40
43
|
end
|
|
41
44
|
|
|
42
45
|
sig { params(other: T.untyped).returns(T::Boolean) }
|
|
@@ -49,6 +52,7 @@ module Moov
|
|
|
49
52
|
return false unless @fee_name == other.fee_name
|
|
50
53
|
return false unless @amount == other.amount
|
|
51
54
|
return false unless @generated_by == other.generated_by
|
|
55
|
+
return false unless @fee_group == other.fee_group
|
|
52
56
|
true
|
|
53
57
|
end
|
|
54
58
|
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.2.
|
|
99
|
-
@gen_version = '2.
|
|
100
|
-
@user_agent = 'speakeasy-sdk/ruby 0.2.
|
|
98
|
+
@sdk_version = '0.2.6'
|
|
99
|
+
@gen_version = '2.731.6'
|
|
100
|
+
@user_agent = 'speakeasy-sdk/ruby 0.2.6 2.731.6 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.2.
|
|
4
|
+
version: 0.2.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Speakeasy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-10-
|
|
11
|
+
date: 2025-10-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: base64
|