moov_ruby 0.1.26 → 0.1.28
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/crystalline/module.rb +4 -0
- data/lib/crystalline/utils.rb +13 -0
- data/lib/moov/account_terminal_applications.rb +4 -4
- data/lib/moov/accounts.rb +9 -9
- data/lib/moov/adjustments.rb +2 -2
- data/lib/moov/apple_pay.rb +5 -5
- data/lib/moov/authentication.rb +2 -2
- data/lib/moov/avatars.rb +1 -1
- data/lib/moov/bank_accounts.rb +9 -9
- data/lib/moov/branding.rb +4 -4
- data/lib/moov/capabilities.rb +4 -4
- data/lib/moov/card_issuing.rb +5 -5
- data/lib/moov/cards.rb +5 -5
- data/lib/moov/disputes.rb +11 -11
- data/lib/moov/end_to_end_encryption.rb +2 -2
- data/lib/moov/enriched_address.rb +1 -1
- data/lib/moov/enriched_profile.rb +1 -1
- data/lib/moov/fee_plans.rb +7 -7
- data/lib/moov/files.rb +3 -3
- data/lib/moov/images.rb +4 -4
- data/lib/moov/industries.rb +1 -1
- data/lib/moov/institutions.rb +2 -2
- data/lib/moov/issuing_transactions.rb +5 -5
- data/lib/moov/models/components/capabilityid.rb +1 -0
- data/lib/moov/models/components/sendfunds.rb +6 -2
- data/lib/moov/models/components/sendfunds.rbi +2 -0
- data/lib/moov/models/components/sendfundserror.rb +6 -2
- data/lib/moov/models/components/sendfundserror.rbi +2 -0
- data/lib/moov/models/components/sendfundsinstantbank.rb +33 -0
- data/lib/moov/models/components/sendfundsinstantbank.rbi +13 -0
- data/lib/moov/models/components/sendfundsinstantbankerror.rb +33 -0
- data/lib/moov/models/components/sendfundsinstantbankerror.rbi +13 -0
- data/lib/moov/models/components.rb +2 -0
- data/lib/moov/onboarding.rb +4 -4
- data/lib/moov/payment_links.rb +6 -6
- data/lib/moov/payment_methods.rb +2 -2
- data/lib/moov/ping.rb +1 -1
- data/lib/moov/receipts.rb +2 -2
- data/lib/moov/representatives.rb +5 -5
- data/lib/moov/scheduling.rb +6 -6
- data/lib/moov/sdkconfiguration.rb +3 -3
- data/lib/moov/statements.rb +2 -2
- data/lib/moov/support.rb +5 -5
- data/lib/moov/sweeps.rb +6 -6
- data/lib/moov/terminal_applications.rb +5 -5
- data/lib/moov/transfers.rb +11 -11
- data/lib/moov/underwriting.rb +3 -3
- data/lib/moov/wallet_transactions.rb +2 -2
- data/lib/moov/wallets.rb +4 -4
- metadata +6 -2
data/lib/moov/support.rb
CHANGED
@@ -89,7 +89,7 @@ module Moov
|
|
89
89
|
hook_ctx = SDKHooks::HookContext.new(
|
90
90
|
config: @sdk_configuration,
|
91
91
|
base_url: base_url,
|
92
|
-
oauth2_scopes:
|
92
|
+
oauth2_scopes: nil,
|
93
93
|
operation_id: 'createTicket',
|
94
94
|
security_source: @sdk_configuration.security_source
|
95
95
|
)
|
@@ -241,7 +241,7 @@ module Moov
|
|
241
241
|
hook_ctx = SDKHooks::HookContext.new(
|
242
242
|
config: @sdk_configuration,
|
243
243
|
base_url: base_url,
|
244
|
-
oauth2_scopes:
|
244
|
+
oauth2_scopes: nil,
|
245
245
|
operation_id: 'listTickets',
|
246
246
|
security_source: @sdk_configuration.security_source
|
247
247
|
)
|
@@ -367,7 +367,7 @@ module Moov
|
|
367
367
|
hook_ctx = SDKHooks::HookContext.new(
|
368
368
|
config: @sdk_configuration,
|
369
369
|
base_url: base_url,
|
370
|
-
oauth2_scopes:
|
370
|
+
oauth2_scopes: nil,
|
371
371
|
operation_id: 'getTicket',
|
372
372
|
security_source: @sdk_configuration.security_source
|
373
373
|
)
|
@@ -504,7 +504,7 @@ module Moov
|
|
504
504
|
hook_ctx = SDKHooks::HookContext.new(
|
505
505
|
config: @sdk_configuration,
|
506
506
|
base_url: base_url,
|
507
|
-
oauth2_scopes:
|
507
|
+
oauth2_scopes: nil,
|
508
508
|
operation_id: 'updateTicket',
|
509
509
|
security_source: @sdk_configuration.security_source
|
510
510
|
)
|
@@ -660,7 +660,7 @@ module Moov
|
|
660
660
|
hook_ctx = SDKHooks::HookContext.new(
|
661
661
|
config: @sdk_configuration,
|
662
662
|
base_url: base_url,
|
663
|
-
oauth2_scopes:
|
663
|
+
oauth2_scopes: nil,
|
664
664
|
operation_id: 'listTicketMessages',
|
665
665
|
security_source: @sdk_configuration.security_source
|
666
666
|
)
|
data/lib/moov/sweeps.rb
CHANGED
@@ -86,7 +86,7 @@ module Moov
|
|
86
86
|
hook_ctx = SDKHooks::HookContext.new(
|
87
87
|
config: @sdk_configuration,
|
88
88
|
base_url: base_url,
|
89
|
-
oauth2_scopes:
|
89
|
+
oauth2_scopes: nil,
|
90
90
|
operation_id: 'createSweepConfig',
|
91
91
|
security_source: @sdk_configuration.security_source
|
92
92
|
)
|
@@ -238,7 +238,7 @@ module Moov
|
|
238
238
|
hook_ctx = SDKHooks::HookContext.new(
|
239
239
|
config: @sdk_configuration,
|
240
240
|
base_url: base_url,
|
241
|
-
oauth2_scopes:
|
241
|
+
oauth2_scopes: nil,
|
242
242
|
operation_id: 'listSweepConfigs',
|
243
243
|
security_source: @sdk_configuration.security_source
|
244
244
|
)
|
@@ -360,7 +360,7 @@ module Moov
|
|
360
360
|
hook_ctx = SDKHooks::HookContext.new(
|
361
361
|
config: @sdk_configuration,
|
362
362
|
base_url: base_url,
|
363
|
-
oauth2_scopes:
|
363
|
+
oauth2_scopes: nil,
|
364
364
|
operation_id: 'getSweepConfig',
|
365
365
|
security_source: @sdk_configuration.security_source
|
366
366
|
)
|
@@ -494,7 +494,7 @@ module Moov
|
|
494
494
|
hook_ctx = SDKHooks::HookContext.new(
|
495
495
|
config: @sdk_configuration,
|
496
496
|
base_url: base_url,
|
497
|
-
oauth2_scopes:
|
497
|
+
oauth2_scopes: nil,
|
498
498
|
operation_id: 'updateSweepConfig',
|
499
499
|
security_source: @sdk_configuration.security_source
|
500
500
|
)
|
@@ -643,7 +643,7 @@ module Moov
|
|
643
643
|
hook_ctx = SDKHooks::HookContext.new(
|
644
644
|
config: @sdk_configuration,
|
645
645
|
base_url: base_url,
|
646
|
-
oauth2_scopes:
|
646
|
+
oauth2_scopes: nil,
|
647
647
|
operation_id: 'listSweeps',
|
648
648
|
security_source: @sdk_configuration.security_source
|
649
649
|
)
|
@@ -767,7 +767,7 @@ module Moov
|
|
767
767
|
hook_ctx = SDKHooks::HookContext.new(
|
768
768
|
config: @sdk_configuration,
|
769
769
|
base_url: base_url,
|
770
|
-
oauth2_scopes:
|
770
|
+
oauth2_scopes: nil,
|
771
771
|
operation_id: 'getSweep',
|
772
772
|
security_source: @sdk_configuration.security_source
|
773
773
|
)
|
@@ -79,7 +79,7 @@ module Moov
|
|
79
79
|
hook_ctx = SDKHooks::HookContext.new(
|
80
80
|
config: @sdk_configuration,
|
81
81
|
base_url: base_url,
|
82
|
-
oauth2_scopes:
|
82
|
+
oauth2_scopes: nil,
|
83
83
|
operation_id: 'createTerminalApplication',
|
84
84
|
security_source: @sdk_configuration.security_source
|
85
85
|
)
|
@@ -224,7 +224,7 @@ module Moov
|
|
224
224
|
hook_ctx = SDKHooks::HookContext.new(
|
225
225
|
config: @sdk_configuration,
|
226
226
|
base_url: base_url,
|
227
|
-
oauth2_scopes:
|
227
|
+
oauth2_scopes: nil,
|
228
228
|
operation_id: 'listTerminalApplications',
|
229
229
|
security_source: @sdk_configuration.security_source
|
230
230
|
)
|
@@ -345,7 +345,7 @@ module Moov
|
|
345
345
|
hook_ctx = SDKHooks::HookContext.new(
|
346
346
|
config: @sdk_configuration,
|
347
347
|
base_url: base_url,
|
348
|
-
oauth2_scopes:
|
348
|
+
oauth2_scopes: nil,
|
349
349
|
operation_id: 'getTerminalApplication',
|
350
350
|
security_source: @sdk_configuration.security_source
|
351
351
|
)
|
@@ -466,7 +466,7 @@ module Moov
|
|
466
466
|
hook_ctx = SDKHooks::HookContext.new(
|
467
467
|
config: @sdk_configuration,
|
468
468
|
base_url: base_url,
|
469
|
-
oauth2_scopes:
|
469
|
+
oauth2_scopes: nil,
|
470
470
|
operation_id: 'deleteTerminalApplication',
|
471
471
|
security_source: @sdk_configuration.security_source
|
472
472
|
)
|
@@ -605,7 +605,7 @@ module Moov
|
|
605
605
|
hook_ctx = SDKHooks::HookContext.new(
|
606
606
|
config: @sdk_configuration,
|
607
607
|
base_url: base_url,
|
608
|
-
oauth2_scopes:
|
608
|
+
oauth2_scopes: nil,
|
609
609
|
operation_id: 'createTerminalApplicationVersion',
|
610
610
|
security_source: @sdk_configuration.security_source
|
611
611
|
)
|
data/lib/moov/transfers.rb
CHANGED
@@ -91,7 +91,7 @@ module Moov
|
|
91
91
|
hook_ctx = SDKHooks::HookContext.new(
|
92
92
|
config: @sdk_configuration,
|
93
93
|
base_url: base_url,
|
94
|
-
oauth2_scopes:
|
94
|
+
oauth2_scopes: nil,
|
95
95
|
operation_id: 'createTransferOptions',
|
96
96
|
security_source: @sdk_configuration.security_source
|
97
97
|
)
|
@@ -252,7 +252,7 @@ module Moov
|
|
252
252
|
hook_ctx = SDKHooks::HookContext.new(
|
253
253
|
config: @sdk_configuration,
|
254
254
|
base_url: base_url,
|
255
|
-
oauth2_scopes:
|
255
|
+
oauth2_scopes: nil,
|
256
256
|
operation_id: 'createTransfer',
|
257
257
|
security_source: @sdk_configuration.security_source
|
258
258
|
)
|
@@ -467,7 +467,7 @@ module Moov
|
|
467
467
|
hook_ctx = SDKHooks::HookContext.new(
|
468
468
|
config: @sdk_configuration,
|
469
469
|
base_url: base_url,
|
470
|
-
oauth2_scopes:
|
470
|
+
oauth2_scopes: nil,
|
471
471
|
operation_id: 'listTransfers',
|
472
472
|
security_source: @sdk_configuration.security_source
|
473
473
|
)
|
@@ -608,7 +608,7 @@ module Moov
|
|
608
608
|
hook_ctx = SDKHooks::HookContext.new(
|
609
609
|
config: @sdk_configuration,
|
610
610
|
base_url: base_url,
|
611
|
-
oauth2_scopes:
|
611
|
+
oauth2_scopes: nil,
|
612
612
|
operation_id: 'getTransfer',
|
613
613
|
security_source: @sdk_configuration.security_source
|
614
614
|
)
|
@@ -744,7 +744,7 @@ module Moov
|
|
744
744
|
hook_ctx = SDKHooks::HookContext.new(
|
745
745
|
config: @sdk_configuration,
|
746
746
|
base_url: base_url,
|
747
|
-
oauth2_scopes:
|
747
|
+
oauth2_scopes: nil,
|
748
748
|
operation_id: 'updateTransfer',
|
749
749
|
security_source: @sdk_configuration.security_source
|
750
750
|
)
|
@@ -882,7 +882,7 @@ module Moov
|
|
882
882
|
hook_ctx = SDKHooks::HookContext.new(
|
883
883
|
config: @sdk_configuration,
|
884
884
|
base_url: base_url,
|
885
|
-
oauth2_scopes:
|
885
|
+
oauth2_scopes: nil,
|
886
886
|
operation_id: 'createCancellation',
|
887
887
|
security_source: @sdk_configuration.security_source
|
888
888
|
)
|
@@ -1020,7 +1020,7 @@ module Moov
|
|
1020
1020
|
hook_ctx = SDKHooks::HookContext.new(
|
1021
1021
|
config: @sdk_configuration,
|
1022
1022
|
base_url: base_url,
|
1023
|
-
oauth2_scopes:
|
1023
|
+
oauth2_scopes: nil,
|
1024
1024
|
operation_id: 'getCancellation',
|
1025
1025
|
security_source: @sdk_configuration.security_source
|
1026
1026
|
)
|
@@ -1150,7 +1150,7 @@ module Moov
|
|
1150
1150
|
hook_ctx = SDKHooks::HookContext.new(
|
1151
1151
|
config: @sdk_configuration,
|
1152
1152
|
base_url: base_url,
|
1153
|
-
oauth2_scopes:
|
1153
|
+
oauth2_scopes: nil,
|
1154
1154
|
operation_id: 'initiateRefund',
|
1155
1155
|
security_source: @sdk_configuration.security_source
|
1156
1156
|
)
|
@@ -1340,7 +1340,7 @@ module Moov
|
|
1340
1340
|
hook_ctx = SDKHooks::HookContext.new(
|
1341
1341
|
config: @sdk_configuration,
|
1342
1342
|
base_url: base_url,
|
1343
|
-
oauth2_scopes:
|
1343
|
+
oauth2_scopes: nil,
|
1344
1344
|
operation_id: 'listRefunds',
|
1345
1345
|
security_source: @sdk_configuration.security_source
|
1346
1346
|
)
|
@@ -1463,7 +1463,7 @@ module Moov
|
|
1463
1463
|
hook_ctx = SDKHooks::HookContext.new(
|
1464
1464
|
config: @sdk_configuration,
|
1465
1465
|
base_url: base_url,
|
1466
|
-
oauth2_scopes:
|
1466
|
+
oauth2_scopes: nil,
|
1467
1467
|
operation_id: 'getRefund',
|
1468
1468
|
security_source: @sdk_configuration.security_source
|
1469
1469
|
)
|
@@ -1592,7 +1592,7 @@ module Moov
|
|
1592
1592
|
hook_ctx = SDKHooks::HookContext.new(
|
1593
1593
|
config: @sdk_configuration,
|
1594
1594
|
base_url: base_url,
|
1595
|
-
oauth2_scopes:
|
1595
|
+
oauth2_scopes: nil,
|
1596
1596
|
operation_id: 'createReversal',
|
1597
1597
|
security_source: @sdk_configuration.security_source
|
1598
1598
|
)
|
data/lib/moov/underwriting.rb
CHANGED
@@ -76,7 +76,7 @@ module Moov
|
|
76
76
|
hook_ctx = SDKHooks::HookContext.new(
|
77
77
|
config: @sdk_configuration,
|
78
78
|
base_url: base_url,
|
79
|
-
oauth2_scopes:
|
79
|
+
oauth2_scopes: nil,
|
80
80
|
operation_id: 'getUnderwriting',
|
81
81
|
security_source: @sdk_configuration.security_source
|
82
82
|
)
|
@@ -211,7 +211,7 @@ module Moov
|
|
211
211
|
hook_ctx = SDKHooks::HookContext.new(
|
212
212
|
config: @sdk_configuration,
|
213
213
|
base_url: base_url,
|
214
|
-
oauth2_scopes:
|
214
|
+
oauth2_scopes: nil,
|
215
215
|
operation_id: 'saveUnderwriting',
|
216
216
|
security_source: @sdk_configuration.security_source
|
217
217
|
)
|
@@ -377,7 +377,7 @@ module Moov
|
|
377
377
|
hook_ctx = SDKHooks::HookContext.new(
|
378
378
|
config: @sdk_configuration,
|
379
379
|
base_url: base_url,
|
380
|
-
oauth2_scopes:
|
380
|
+
oauth2_scopes: nil,
|
381
381
|
operation_id: 'upsertUnderwriting',
|
382
382
|
security_source: @sdk_configuration.security_source
|
383
383
|
)
|
@@ -73,7 +73,7 @@ module Moov
|
|
73
73
|
hook_ctx = SDKHooks::HookContext.new(
|
74
74
|
config: @sdk_configuration,
|
75
75
|
base_url: base_url,
|
76
|
-
oauth2_scopes:
|
76
|
+
oauth2_scopes: nil,
|
77
77
|
operation_id: 'listWalletTransactions',
|
78
78
|
security_source: @sdk_configuration.security_source
|
79
79
|
)
|
@@ -214,7 +214,7 @@ module Moov
|
|
214
214
|
hook_ctx = SDKHooks::HookContext.new(
|
215
215
|
config: @sdk_configuration,
|
216
216
|
base_url: base_url,
|
217
|
-
oauth2_scopes:
|
217
|
+
oauth2_scopes: nil,
|
218
218
|
operation_id: 'getWalletTransaction',
|
219
219
|
security_source: @sdk_configuration.security_source
|
220
220
|
)
|
data/lib/moov/wallets.rb
CHANGED
@@ -88,7 +88,7 @@ module Moov
|
|
88
88
|
hook_ctx = SDKHooks::HookContext.new(
|
89
89
|
config: @sdk_configuration,
|
90
90
|
base_url: base_url,
|
91
|
-
oauth2_scopes:
|
91
|
+
oauth2_scopes: nil,
|
92
92
|
operation_id: 'createWallet',
|
93
93
|
security_source: @sdk_configuration.security_source
|
94
94
|
)
|
@@ -239,7 +239,7 @@ module Moov
|
|
239
239
|
hook_ctx = SDKHooks::HookContext.new(
|
240
240
|
config: @sdk_configuration,
|
241
241
|
base_url: base_url,
|
242
|
-
oauth2_scopes:
|
242
|
+
oauth2_scopes: nil,
|
243
243
|
operation_id: 'listWallets',
|
244
244
|
security_source: @sdk_configuration.security_source
|
245
245
|
)
|
@@ -379,7 +379,7 @@ module Moov
|
|
379
379
|
hook_ctx = SDKHooks::HookContext.new(
|
380
380
|
config: @sdk_configuration,
|
381
381
|
base_url: base_url,
|
382
|
-
oauth2_scopes:
|
382
|
+
oauth2_scopes: nil,
|
383
383
|
operation_id: 'getWallet',
|
384
384
|
security_source: @sdk_configuration.security_source
|
385
385
|
)
|
@@ -515,7 +515,7 @@ module Moov
|
|
515
515
|
hook_ctx = SDKHooks::HookContext.new(
|
516
516
|
config: @sdk_configuration,
|
517
517
|
base_url: base_url,
|
518
|
-
oauth2_scopes:
|
518
|
+
oauth2_scopes: nil,
|
519
519
|
operation_id: 'updateWallet',
|
520
520
|
security_source: @sdk_configuration.security_source
|
521
521
|
)
|
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.1.
|
4
|
+
version: 0.1.28
|
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-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: base64
|
@@ -1023,6 +1023,10 @@ files:
|
|
1023
1023
|
- lib/moov/models/components/sendfundsacherror.rbi
|
1024
1024
|
- lib/moov/models/components/sendfundserror.rb
|
1025
1025
|
- lib/moov/models/components/sendfundserror.rbi
|
1026
|
+
- lib/moov/models/components/sendfundsinstantbank.rb
|
1027
|
+
- lib/moov/models/components/sendfundsinstantbank.rbi
|
1028
|
+
- lib/moov/models/components/sendfundsinstantbankerror.rb
|
1029
|
+
- lib/moov/models/components/sendfundsinstantbankerror.rbi
|
1026
1030
|
- lib/moov/models/components/sendfundspushtocard.rb
|
1027
1031
|
- lib/moov/models/components/sendfundspushtocard.rbi
|
1028
1032
|
- lib/moov/models/components/sendfundspushtocarderror.rb
|