moov_ruby 25.2.17 → 25.2.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/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.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: ad49e21edc6621bbc1aa92ff3be353378a9129a9c0041cc47193a6e2a3e873d5
|
|
4
|
+
data.tar.gz: 66561480ee58c76bda8d4969d6c845b5cba08ca00be75b9ad64fce7cc1dced82
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 80458840e3821f037aeb330636fb44cb8e3d8b1d2f51524dbdbd103dc1cd5e206931304a20302005b8577f3bc1f121325a4464f47c87f4ffe5d56e7edf864495
|
|
7
|
+
data.tar.gz: 404cae359a5c01d7874d94a8f0a4b02f58ba667a0ffca5efd0f73f1f77744c9931143a94eda61a375516aa96ab93fafd34ee7b9334e4113e3b39163bb59bf049
|
|
@@ -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
|
|
@@ -285,6 +285,7 @@ module Moov
|
|
|
285
285
|
autoload :IssuingAuthorizationStatus, 'moov/models/components/issuingauthorizationstatus.rb'
|
|
286
286
|
autoload :IssuingControls, 'moov/models/components/issuingcontrols.rb'
|
|
287
287
|
autoload :IssuingControlsError, 'moov/models/components/issuingcontrolserror.rb'
|
|
288
|
+
autoload :IssuingDeclineReason, 'moov/models/components/issuingdeclinereason.rb'
|
|
288
289
|
autoload :IssuingIntervalLimit, 'moov/models/components/issuingintervallimit.rb'
|
|
289
290
|
autoload :IssuingMerchantData, 'moov/models/components/issuingmerchantdata.rb'
|
|
290
291
|
autoload :IssuingVelocityLimit, 'moov/models/components/issuingvelocitylimit.rb'
|
|
@@ -314,6 +315,7 @@ module Moov
|
|
|
314
315
|
autoload :MoovWalletTransferPaymentMethod, 'moov/models/components/moovwallettransferpaymentmethod.rb'
|
|
315
316
|
autoload :MoovWalletTransferPaymentMethodPaymentMethodType, 'moov/models/components/moovwallettransferpaymentmethod_paymentmethodtype.rb'
|
|
316
317
|
autoload :MxPayload, 'moov/models/components/mxpayload.rb'
|
|
318
|
+
autoload :OAuth2ClientType, 'moov/models/components/oauth2clienttype.rb'
|
|
317
319
|
autoload :Occurrence, 'moov/models/components/occurrence.rb'
|
|
318
320
|
autoload :OccurrenceStatus, 'moov/models/components/occurrencestatus.rb'
|
|
319
321
|
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 = 'v2025.01.00'
|
|
91
|
-
@sdk_version = '25.2.
|
|
92
|
-
@gen_version = '2.
|
|
93
|
-
@user_agent = 'speakeasy-sdk/ruby 25.2.
|
|
91
|
+
@sdk_version = '25.2.18'
|
|
92
|
+
@gen_version = '2.938.0'
|
|
93
|
+
@user_agent = 'speakeasy-sdk/ruby 25.2.18 2.938.0 v2025.01.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.2.
|
|
4
|
+
version: 25.2.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
|
|
@@ -834,6 +834,8 @@ files:
|
|
|
834
834
|
- lib/moov/models/components/issuingcontrols.rbi
|
|
835
835
|
- lib/moov/models/components/issuingcontrolserror.rb
|
|
836
836
|
- lib/moov/models/components/issuingcontrolserror.rbi
|
|
837
|
+
- lib/moov/models/components/issuingdeclinereason.rb
|
|
838
|
+
- lib/moov/models/components/issuingdeclinereason.rbi
|
|
837
839
|
- lib/moov/models/components/issuingintervallimit.rb
|
|
838
840
|
- lib/moov/models/components/issuingintervallimit.rbi
|
|
839
841
|
- lib/moov/models/components/issuingmerchantdata.rb
|
|
@@ -898,6 +900,8 @@ files:
|
|
|
898
900
|
- lib/moov/models/components/mxauthorizationcode.rbi
|
|
899
901
|
- lib/moov/models/components/mxpayload.rb
|
|
900
902
|
- lib/moov/models/components/mxpayload.rbi
|
|
903
|
+
- lib/moov/models/components/oauth2clienttype.rb
|
|
904
|
+
- lib/moov/models/components/oauth2clienttype.rbi
|
|
901
905
|
- lib/moov/models/components/occurrence.rb
|
|
902
906
|
- lib/moov/models/components/occurrence.rbi
|
|
903
907
|
- lib/moov/models/components/occurrencesresponse.rb
|