moov_ruby 26.4.16 → 26.4.18
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/authtokenrequest.rb +6 -2
- data/lib/moov/models/components/authtokenrequest.rbi +2 -0
- data/lib/moov/models/components/cardtransactionstatus.rb +1 -1
- data/lib/moov/models/components/issuedcardauthorization.rb +7 -2
- data/lib/moov/models/components/issuedcardauthorization.rbi +2 -0
- data/lib/moov/models/components/issuedcardauthorizationevent.rb +7 -2
- data/lib/moov/models/components/issuedcardauthorizationevent.rbi +2 -0
- data/lib/moov/models/components/issuingdeclinereason.rb +35 -0
- data/lib/moov/models/components/issuingdeclinereason.rbi +11 -0
- data/lib/moov/models/components/oauth2clienttype.rb +23 -0
- data/lib/moov/models/components/oauth2clienttype.rbi +11 -0
- data/lib/moov/models/components/refundcardstatus.rb +1 -1
- data/lib/moov/models/components.rb +2 -0
- data/lib/moov/sdkconfiguration.rb +3 -3
- metadata +6 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 786a10ef7a6fbdf23c2b9c19bfc9138458756bb3471bf8aa86a78bc09309aff4
|
|
4
|
+
data.tar.gz: be76bf4762eafd62496bfd4593c787a16b28b43dc35752824de48da75424913d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec2313f2c57936a0734681c0c38648ef8feabf03fa08a95d925e4d7bf5951f9b0110e5f2cb6dc4fc20e7d8878e38b0f5be74835b47e99b3009550a358b4e065c
|
|
7
|
+
data.tar.gz: b371afcb47658de54e142605f6e9d9b418d7c7d42cfecd12a45cee57b36c137521ab03cc951cf46e9abe74e7f7d2674a53e815cca31aabd5df27ae50066c95ce
|
|
@@ -25,14 +25,17 @@ module Moov
|
|
|
25
25
|
field :scope, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('scope') }, 'form': { 'field_name': 'scope' } }
|
|
26
26
|
# The refresh_token returned alongside the access token being refreshed. Required when `grant_type` is `refresh_token`.
|
|
27
27
|
field :refresh_token, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('refresh_token') }, 'form': { 'field_name': 'refresh_token' } }
|
|
28
|
+
# The client type requesting a token. `device` and `service` clients do not require browser origin binding. Defaults to `web` when omitted. This field applies to the `client_credentials` grant; refreshed tokens keep the original client type.
|
|
29
|
+
field :client_type, Crystalline::Nilable.new(Models::Components::OAuth2ClientType), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('client_type'), 'decoder': ::Moov::Utils.enum_from_string(Models::Components::OAuth2ClientType, true) }, 'form': { 'field_name': 'client_type' } }
|
|
28
30
|
|
|
29
|
-
sig { params(grant_type: Models::Components::GrantType, client_id: T.nilable(::String), client_secret: T.nilable(::String), scope: T.nilable(::String), refresh_token: T.nilable(::String)).void }
|
|
30
|
-
def initialize(grant_type:, client_id: nil, client_secret: nil, scope: nil, refresh_token: nil)
|
|
31
|
+
sig { params(grant_type: Models::Components::GrantType, client_id: T.nilable(::String), client_secret: T.nilable(::String), scope: T.nilable(::String), refresh_token: T.nilable(::String), client_type: T.nilable(Models::Components::OAuth2ClientType)).void }
|
|
32
|
+
def initialize(grant_type:, client_id: nil, client_secret: nil, scope: nil, refresh_token: nil, client_type: nil)
|
|
31
33
|
@grant_type = grant_type
|
|
32
34
|
@client_id = client_id
|
|
33
35
|
@client_secret = client_secret
|
|
34
36
|
@scope = scope
|
|
35
37
|
@refresh_token = refresh_token
|
|
38
|
+
@client_type = client_type
|
|
36
39
|
end
|
|
37
40
|
|
|
38
41
|
sig { params(other: T.untyped).returns(T::Boolean) }
|
|
@@ -43,6 +46,7 @@ module Moov
|
|
|
43
46
|
return false unless @client_secret == other.client_secret
|
|
44
47
|
return false unless @scope == other.scope
|
|
45
48
|
return false unless @refresh_token == other.refresh_token
|
|
49
|
+
return false unless @client_type == other.client_type
|
|
46
50
|
true
|
|
47
51
|
end
|
|
48
52
|
end
|
|
@@ -32,9 +32,12 @@ module Moov
|
|
|
32
32
|
field :last_four_card_number, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('lastFourCardNumber') } }
|
|
33
33
|
# List of card transaction IDs associated with this authorization.
|
|
34
34
|
field :card_transactions, Crystalline::Nilable.new(Crystalline::Array.new(::String)), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('cardTransactions') } }
|
|
35
|
+
# The reason an authorization or authorization event was declined. Only present if the
|
|
36
|
+
# authorization or event has been declined.
|
|
37
|
+
field :decline_reason, Crystalline::Nilable.new(Models::Components::IssuingDeclineReason), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('declineReason'), 'decoder': ::Moov::Utils.open_enum_from_string(Models::Components::IssuingDeclineReason, true) } }
|
|
35
38
|
|
|
36
|
-
sig { params(authorization_id: ::String, issued_card_id: ::String, funding_wallet_id: ::String, network: Models::Components::CardIssuingNetwork, authorized_amount: ::String, status: Models::Components::IssuingAuthorizationStatus, merchant_data: Models::Components::IssuingMerchantData, created_on: ::DateTime, last_four_card_number: T.nilable(::String), card_transactions: T.nilable(T::Array[::String])).void }
|
|
37
|
-
def initialize(authorization_id:, issued_card_id:, funding_wallet_id:, network:, authorized_amount:, status:, merchant_data:, created_on:, last_four_card_number: nil, card_transactions: nil)
|
|
39
|
+
sig { params(authorization_id: ::String, issued_card_id: ::String, funding_wallet_id: ::String, network: Models::Components::CardIssuingNetwork, authorized_amount: ::String, status: Models::Components::IssuingAuthorizationStatus, merchant_data: Models::Components::IssuingMerchantData, created_on: ::DateTime, last_four_card_number: T.nilable(::String), card_transactions: T.nilable(T::Array[::String]), decline_reason: T.nilable(Models::Components::IssuingDeclineReason)).void }
|
|
40
|
+
def initialize(authorization_id:, issued_card_id:, funding_wallet_id:, network:, authorized_amount:, status:, merchant_data:, created_on:, last_four_card_number: nil, card_transactions: nil, decline_reason: nil)
|
|
38
41
|
@authorization_id = authorization_id
|
|
39
42
|
@issued_card_id = issued_card_id
|
|
40
43
|
@funding_wallet_id = funding_wallet_id
|
|
@@ -45,6 +48,7 @@ module Moov
|
|
|
45
48
|
@created_on = created_on
|
|
46
49
|
@last_four_card_number = last_four_card_number
|
|
47
50
|
@card_transactions = card_transactions
|
|
51
|
+
@decline_reason = decline_reason
|
|
48
52
|
end
|
|
49
53
|
|
|
50
54
|
sig { params(other: T.untyped).returns(T::Boolean) }
|
|
@@ -60,6 +64,7 @@ module Moov
|
|
|
60
64
|
return false unless @created_on == other.created_on
|
|
61
65
|
return false unless @last_four_card_number == other.last_four_card_number
|
|
62
66
|
return false unless @card_transactions == other.card_transactions
|
|
67
|
+
return false unless @decline_reason == other.decline_reason
|
|
63
68
|
true
|
|
64
69
|
end
|
|
65
70
|
end
|
|
@@ -22,14 +22,18 @@ module Moov
|
|
|
22
22
|
field :result, Models::Components::IssuedCardAuthorizationEventResult, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('result'), required: true, 'decoder': ::Moov::Utils.open_enum_from_string(Models::Components::IssuedCardAuthorizationEventResult, false) } }
|
|
23
23
|
|
|
24
24
|
field :created_on, ::DateTime, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('createdOn'), required: true, 'decoder': ::Moov::Utils.datetime_from_iso_format(false) } }
|
|
25
|
+
# The reason an authorization or authorization event was declined. Only present if the
|
|
26
|
+
# authorization or event has been declined.
|
|
27
|
+
field :decline_reason, Crystalline::Nilable.new(Models::Components::IssuingDeclineReason), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('declineReason'), 'decoder': ::Moov::Utils.open_enum_from_string(Models::Components::IssuingDeclineReason, true) } }
|
|
25
28
|
|
|
26
|
-
sig { params(event_id: ::String, event_type: Models::Components::IssuedCardEventType, amount: ::String, result: Models::Components::IssuedCardAuthorizationEventResult, created_on: ::DateTime).void }
|
|
27
|
-
def initialize(event_id:, event_type:, amount:, result:, created_on:)
|
|
29
|
+
sig { params(event_id: ::String, event_type: Models::Components::IssuedCardEventType, amount: ::String, result: Models::Components::IssuedCardAuthorizationEventResult, created_on: ::DateTime, decline_reason: T.nilable(Models::Components::IssuingDeclineReason)).void }
|
|
30
|
+
def initialize(event_id:, event_type:, amount:, result:, created_on:, decline_reason: nil)
|
|
28
31
|
@event_id = event_id
|
|
29
32
|
@event_type = event_type
|
|
30
33
|
@amount = amount
|
|
31
34
|
@result = result
|
|
32
35
|
@created_on = created_on
|
|
36
|
+
@decline_reason = decline_reason
|
|
33
37
|
end
|
|
34
38
|
|
|
35
39
|
sig { params(other: T.untyped).returns(T::Boolean) }
|
|
@@ -40,6 +44,7 @@ module Moov
|
|
|
40
44
|
return false unless @amount == other.amount
|
|
41
45
|
return false unless @result == other.result
|
|
42
46
|
return false unless @created_on == other.created_on
|
|
47
|
+
return false unless @decline_reason == other.decline_reason
|
|
43
48
|
true
|
|
44
49
|
end
|
|
45
50
|
end
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
# IssuingDeclineReason - The reason an authorization or authorization event was declined. Only present if the
|
|
11
|
+
# authorization or event has been declined.
|
|
12
|
+
class IssuingDeclineReason
|
|
13
|
+
include ::Crystalline::Enum
|
|
14
|
+
enums do
|
|
15
|
+
INSUFFICIENT_FUNDS = new('insufficient-funds')
|
|
16
|
+
CARD_NOT_ACTIVE = new('card-not-active')
|
|
17
|
+
CARD_EXPIRATION = new('card-expiration')
|
|
18
|
+
SPEND_CUTOFF_REACHED = new('spend-cutoff-reached')
|
|
19
|
+
OUTSIDE_ALLOWED_SCHEDULE = new('outside-allowed-schedule')
|
|
20
|
+
SPEND_LIMIT_EXCEEDED = new('spend-limit-exceeded')
|
|
21
|
+
MERCHANT_CATEGORY_NOT_SUPPORTED = new('merchant-category-not-supported')
|
|
22
|
+
MERCHANT_CATEGORY_RESTRICTED = new('merchant-category-restricted')
|
|
23
|
+
MERCHANT_RESTRICTED = new('merchant-restricted')
|
|
24
|
+
MERCHANT_COUNTRY_NOT_SUPPORTED = new('merchant-country-not-supported')
|
|
25
|
+
UNSUPPORTED_TRANSACTION = new('unsupported-transaction')
|
|
26
|
+
NETWORK_STAND_IN = new('network-stand-in')
|
|
27
|
+
DECLINED_BY_ISSUER = new('declined-by-issuer')
|
|
28
|
+
INVALID_REQUEST = new('invalid-request')
|
|
29
|
+
SYSTEM_ERROR = new('system-error')
|
|
30
|
+
end
|
|
31
|
+
open!
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
@@ -0,0 +1,23 @@
|
|
|
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
|
+
# OAuth2ClientType - The type of client requesting an OAuth2 token. Short codes are accepted as aliases for the corresponding client types.
|
|
11
|
+
class OAuth2ClientType < T::Enum
|
|
12
|
+
enums do
|
|
13
|
+
WEB = new('web')
|
|
14
|
+
DEVICE = new('device')
|
|
15
|
+
SERVICE = new('service')
|
|
16
|
+
W = new('w')
|
|
17
|
+
D = new('d')
|
|
18
|
+
S = new('s')
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
@@ -354,6 +354,7 @@ module Moov
|
|
|
354
354
|
autoload :IssuingAuthorizationStatus, 'moov/models/components/issuingauthorizationstatus.rb'
|
|
355
355
|
autoload :IssuingControls, 'moov/models/components/issuingcontrols.rb'
|
|
356
356
|
autoload :IssuingControlsError, 'moov/models/components/issuingcontrolserror.rb'
|
|
357
|
+
autoload :IssuingDeclineReason, 'moov/models/components/issuingdeclinereason.rb'
|
|
357
358
|
autoload :IssuingIntervalLimit, 'moov/models/components/issuingintervallimit.rb'
|
|
358
359
|
autoload :IssuingMerchantData, 'moov/models/components/issuingmerchantdata.rb'
|
|
359
360
|
autoload :IssuingVelocityLimit, 'moov/models/components/issuingvelocitylimit.rb'
|
|
@@ -393,6 +394,7 @@ module Moov
|
|
|
393
394
|
autoload :MoovWalletTransferPaymentMethod, 'moov/models/components/moovwallettransferpaymentmethod.rb'
|
|
394
395
|
autoload :MoovWalletTransferPaymentMethodPaymentMethodType, 'moov/models/components/moovwallettransferpaymentmethod_paymentmethodtype.rb'
|
|
395
396
|
autoload :MxPayload, 'moov/models/components/mxpayload.rb'
|
|
397
|
+
autoload :OAuth2ClientType, 'moov/models/components/oauth2clienttype.rb'
|
|
396
398
|
autoload :Occurrence, 'moov/models/components/occurrence.rb'
|
|
397
399
|
autoload :OccurrenceStatus, 'moov/models/components/occurrencestatus.rb'
|
|
398
400
|
autoload :OccurrencesResponse, 'moov/models/components/occurrencesresponse.rb'
|
|
@@ -88,9 +88,9 @@ module Moov
|
|
|
88
88
|
end
|
|
89
89
|
@language = 'ruby'
|
|
90
90
|
@openapi_doc_version = 'v2026.04.00'
|
|
91
|
-
@sdk_version = '26.4.
|
|
92
|
-
@gen_version = '2.
|
|
93
|
-
@user_agent = 'speakeasy-sdk/ruby 26.4.
|
|
91
|
+
@sdk_version = '26.4.18'
|
|
92
|
+
@gen_version = '2.938.0'
|
|
93
|
+
@user_agent = 'speakeasy-sdk/ruby 26.4.18 2.938.0 v2026.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: 26.4.
|
|
4
|
+
version: 26.4.18
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Speakeasy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-09-
|
|
11
|
+
date: 2026-09-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: base64
|
|
@@ -980,6 +980,8 @@ files:
|
|
|
980
980
|
- lib/moov/models/components/issuingcontrols.rbi
|
|
981
981
|
- lib/moov/models/components/issuingcontrolserror.rb
|
|
982
982
|
- lib/moov/models/components/issuingcontrolserror.rbi
|
|
983
|
+
- lib/moov/models/components/issuingdeclinereason.rb
|
|
984
|
+
- lib/moov/models/components/issuingdeclinereason.rbi
|
|
983
985
|
- lib/moov/models/components/issuingintervallimit.rb
|
|
984
986
|
- lib/moov/models/components/issuingintervallimit.rbi
|
|
985
987
|
- lib/moov/models/components/issuingmerchantdata.rb
|
|
@@ -1064,6 +1066,8 @@ files:
|
|
|
1064
1066
|
- lib/moov/models/components/mxauthorizationcode.rbi
|
|
1065
1067
|
- lib/moov/models/components/mxpayload.rb
|
|
1066
1068
|
- lib/moov/models/components/mxpayload.rbi
|
|
1069
|
+
- lib/moov/models/components/oauth2clienttype.rb
|
|
1070
|
+
- lib/moov/models/components/oauth2clienttype.rbi
|
|
1067
1071
|
- lib/moov/models/components/occurrence.rb
|
|
1068
1072
|
- lib/moov/models/components/occurrence.rbi
|
|
1069
1073
|
- lib/moov/models/components/occurrencesresponse.rb
|