moov_ruby 25.5.9 → 25.5.11
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/cardbrandfees.rb +6 -2
- data/lib/moov/models/components/cardbrandfees.rbi +2 -0
- data/lib/moov/models/components/filedetails.rb +1 -1
- data/lib/moov/models/components/filepurpose.rb +1 -1
- data/lib/moov/models/components/onboardinginvite.rb +1 -1
- data/lib/moov/sdkconfiguration.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0c13d5f40b2ffe8da87526c82718442f37f5b31219b0234d0ca64242ad9a36f5
|
|
4
|
+
data.tar.gz: '08a6f5dde2b1a16ed258f8b137e4ac15c965a0ad387c179f0fd04c239c10b95a'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: adf40ca8e29c373d6871d3be08f309dfa3a8484369e6d77aff3573e3f78ec6043af7f09ad989475029f007a6c98c3076f622188d33fe3204915d15880bbea2d1
|
|
7
|
+
data.tar.gz: 5db1ba6cccd4f81fcb044c52f1be40a0dd6bf5112a5779fe0ec0cd54d14c60b6afff62f859953ecdad1649b283f8bf753d4d5a3f4c1e46c885d74cf0b43de761
|
|
@@ -32,9 +32,11 @@ module Moov
|
|
|
32
32
|
field :declines, Crystalline::Nilable.new(Models::Components::BillingCountAndAmount), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('declines') } }
|
|
33
33
|
# Details of refunded transactions.
|
|
34
34
|
field :refunds, Crystalline::Nilable.new(Models::Components::BillingCountAndAmount), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('refunds') } }
|
|
35
|
+
# Details of card cancellations.
|
|
36
|
+
field :card_cancellations, Crystalline::Nilable.new(Models::Components::BillingCountAndAmount), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('cardCancellations') } }
|
|
35
37
|
|
|
36
|
-
sig { params(total: Models::Components::BillingCountAndAmount, interchange: T.nilable(Models::Components::BillingCountAndAmount), interchange_programs: T.nilable(T::Array[Models::Components::BillingInterchangeProgramFee]), network_passthrough: T.nilable(Models::Components::BillingCountAndAmount), completed_domestic_online: T.nilable(Models::Components::BillingCountAndAmount), completed_domestic_in_person: T.nilable(Models::Components::BillingCountAndAmount), completed_international_online: T.nilable(Models::Components::BillingCountAndAmount), completed_international_in_person: T.nilable(Models::Components::BillingCountAndAmount), declines: T.nilable(Models::Components::BillingCountAndAmount), refunds: T.nilable(Models::Components::BillingCountAndAmount)).void }
|
|
37
|
-
def initialize(total:, interchange: nil, interchange_programs: nil, network_passthrough: nil, completed_domestic_online: nil, completed_domestic_in_person: nil, completed_international_online: nil, completed_international_in_person: nil, declines: nil, refunds: nil)
|
|
38
|
+
sig { params(total: Models::Components::BillingCountAndAmount, interchange: T.nilable(Models::Components::BillingCountAndAmount), interchange_programs: T.nilable(T::Array[Models::Components::BillingInterchangeProgramFee]), network_passthrough: T.nilable(Models::Components::BillingCountAndAmount), completed_domestic_online: T.nilable(Models::Components::BillingCountAndAmount), completed_domestic_in_person: T.nilable(Models::Components::BillingCountAndAmount), completed_international_online: T.nilable(Models::Components::BillingCountAndAmount), completed_international_in_person: T.nilable(Models::Components::BillingCountAndAmount), declines: T.nilable(Models::Components::BillingCountAndAmount), refunds: T.nilable(Models::Components::BillingCountAndAmount), card_cancellations: T.nilable(Models::Components::BillingCountAndAmount)).void }
|
|
39
|
+
def initialize(total:, interchange: nil, interchange_programs: nil, network_passthrough: nil, completed_domestic_online: nil, completed_domestic_in_person: nil, completed_international_online: nil, completed_international_in_person: nil, declines: nil, refunds: nil, card_cancellations: nil)
|
|
38
40
|
@total = total
|
|
39
41
|
@interchange = interchange
|
|
40
42
|
@interchange_programs = interchange_programs
|
|
@@ -45,6 +47,7 @@ module Moov
|
|
|
45
47
|
@completed_international_in_person = completed_international_in_person
|
|
46
48
|
@declines = declines
|
|
47
49
|
@refunds = refunds
|
|
50
|
+
@card_cancellations = card_cancellations
|
|
48
51
|
end
|
|
49
52
|
|
|
50
53
|
sig { params(other: T.untyped).returns(T::Boolean) }
|
|
@@ -60,6 +63,7 @@ module Moov
|
|
|
60
63
|
return false unless @completed_international_in_person == other.completed_international_in_person
|
|
61
64
|
return false unless @declines == other.declines
|
|
62
65
|
return false unless @refunds == other.refunds
|
|
66
|
+
return false unless @card_cancellations == other.card_cancellations
|
|
63
67
|
true
|
|
64
68
|
end
|
|
65
69
|
end
|
|
@@ -18,7 +18,7 @@ module Moov
|
|
|
18
18
|
field :file_name, ::String, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('fileName'), required: true } }
|
|
19
19
|
|
|
20
20
|
field :account_id, ::String, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('accountID'), required: true } }
|
|
21
|
-
# The file
|
|
21
|
+
# The purpose of the file being uploaded.
|
|
22
22
|
field :file_purpose, Models::Components::FilePurpose, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('filePurpose'), required: true, 'decoder': ::Moov::Utils.enum_from_string(Models::Components::FilePurpose, false) } }
|
|
23
23
|
# The file's status.
|
|
24
24
|
field :file_status, Models::Components::FileStatus, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('fileStatus'), required: true, 'decoder': ::Moov::Utils.enum_from_string(Models::Components::FileStatus, false) } }
|
|
@@ -26,7 +26,7 @@ module Moov
|
|
|
26
26
|
field :fee_plan_codes, Crystalline::Array.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('feePlanCodes'), required: true } }
|
|
27
27
|
|
|
28
28
|
field :created_on, ::DateTime, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('createdOn'), required: true, 'decoder': ::Moov::Utils.datetime_from_iso_format(false) } }
|
|
29
|
-
#
|
|
29
|
+
# Optional URL to redirect the user to after they complete the onboarding process.
|
|
30
30
|
field :return_url, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('returnURL') } }
|
|
31
31
|
# The terms of service URL set by the inviter.
|
|
32
32
|
field :terms_of_service_url, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('termsOfServiceURL') } }
|
|
@@ -88,9 +88,9 @@ module Moov
|
|
|
88
88
|
end
|
|
89
89
|
@language = 'ruby'
|
|
90
90
|
@openapi_doc_version = 'v2025.04.00'
|
|
91
|
-
@sdk_version = '25.5.
|
|
92
|
-
@gen_version = '2.
|
|
93
|
-
@user_agent = 'speakeasy-sdk/ruby 25.5.
|
|
91
|
+
@sdk_version = '25.5.11'
|
|
92
|
+
@gen_version = '2.917.0'
|
|
93
|
+
@user_agent = 'speakeasy-sdk/ruby 25.5.11 2.917.0 v2025.04.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.5.
|
|
4
|
+
version: 25.5.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Speakeasy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: base64
|