moov_ruby 0.0.0.pre.dev.3 → 0.0.0.pre.dev.5

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.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/lib/crystalline/types.rb +11 -3
  3. data/lib/moov/account_terminal_applications.rb +23 -9
  4. data/lib/moov/accounts.rb +58 -23
  5. data/lib/moov/adjustments.rb +13 -5
  6. data/lib/moov/apple_pay.rb +28 -11
  7. data/lib/moov/authentication.rb +13 -5
  8. data/lib/moov/avatars.rb +8 -3
  9. data/lib/moov/bank_accounts.rb +48 -19
  10. data/lib/moov/branding.rb +18 -7
  11. data/lib/moov/capabilities.rb +23 -9
  12. data/lib/moov/card_issuing.rb +28 -11
  13. data/lib/moov/cards.rb +28 -11
  14. data/lib/moov/client.rb +2 -1
  15. data/lib/moov/disputes.rb +58 -23
  16. data/lib/moov/end_to_end_encryption.rb +13 -5
  17. data/lib/moov/enriched_address.rb +8 -3
  18. data/lib/moov/enriched_profile.rb +8 -3
  19. data/lib/moov/fee_plans.rb +53 -21
  20. data/lib/moov/files.rb +18 -7
  21. data/lib/moov/images.rb +39 -19
  22. data/lib/moov/industries.rb +8 -3
  23. data/lib/moov/institutions.rb +13 -5
  24. data/lib/moov/invoices.rb +170 -13
  25. data/lib/moov/issuing_transactions.rb +28 -11
  26. data/lib/moov/models/components/createinvoicelineitem.rb +2 -1
  27. data/lib/moov/models/components/createpaymentlinklineitem.rb +2 -1
  28. data/lib/moov/models/components/feecategory.rb +1 -0
  29. data/lib/moov/models/components/invoice.rb +14 -2
  30. data/lib/moov/models/components/invoice.rbi +6 -0
  31. data/lib/moov/models/components/invoicelineitem.rb +2 -1
  32. data/lib/moov/models/components/transferdestination.rb +2 -6
  33. data/lib/moov/models/components/transferdestination.rbi +0 -2
  34. data/lib/moov/models/components/updateinvoice.rb +4 -1
  35. data/lib/moov/models/components.rb +0 -3
  36. data/lib/moov/models/operations/deleteinvoice_request.rb +49 -0
  37. data/lib/moov/models/operations/deleteinvoice_request.rbi +17 -0
  38. data/lib/moov/models/operations/deleteinvoice_response.rb +44 -0
  39. data/lib/moov/models/operations/deleteinvoice_response.rbi +19 -0
  40. data/lib/moov/models/operations.rb +2 -0
  41. data/lib/moov/onboarding.rb +23 -9
  42. data/lib/moov/payment_links.rb +33 -13
  43. data/lib/moov/payment_methods.rb +13 -5
  44. data/lib/moov/ping.rb +8 -3
  45. data/lib/moov/products.rb +28 -11
  46. data/lib/moov/receipts.rb +13 -5
  47. data/lib/moov/representatives.rb +28 -11
  48. data/lib/moov/scheduling.rb +33 -13
  49. data/lib/moov/sdkconfiguration.rb +3 -3
  50. data/lib/moov/statements.rb +13 -5
  51. data/lib/moov/support.rb +28 -11
  52. data/lib/moov/sweeps.rb +33 -13
  53. data/lib/moov/terminal_applications.rb +28 -11
  54. data/lib/moov/transfers.rb +58 -23
  55. data/lib/moov/underwriting.rb +18 -7
  56. data/lib/moov/wallet_transactions.rb +13 -5
  57. data/lib/moov/wallets.rb +23 -9
  58. data/lib/moov/webhooks.rb +43 -17
  59. metadata +20 -8
  60. data/lib/moov/models/components/rtpfailurecode.rb +0 -27
  61. data/lib/moov/models/components/rtpfailurecode.rbi +0 -11
  62. data/lib/moov/models/components/rtptransactiondetails.rb +0 -56
  63. data/lib/moov/models/components/rtptransactiondetails.rbi +0 -25
  64. data/lib/moov/models/components/rtptransactionstatus.rb +0 -21
  65. data/lib/moov/models/components/rtptransactionstatus.rbi +0 -11
data/lib/moov/products.rb CHANGED
@@ -39,8 +39,10 @@ module Moov
39
39
  end
40
40
 
41
41
 
42
- sig { params(request: Models::Operations::ListProductsRequest, timeout_ms: T.nilable(Integer)).returns(Models::Operations::ListProductsResponse) }
43
- def list(request:, timeout_ms: nil)
42
+
43
+
44
+ sig { params(request: Models::Operations::ListProductsRequest, timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::ListProductsResponse) }
45
+ def list(request:, timeout_ms: nil, http_headers: nil)
44
46
  # list - List active (non-disabled) products for an account.
45
47
  url, params = @sdk_configuration.get_server_details
46
48
  base_url = Utils.template_url(url, params)
@@ -83,6 +85,9 @@ module Moov
83
85
  req.options.timeout = timeout unless timeout.nil?
84
86
  req.params = query_params
85
87
  Utils.configure_request_security(req, security)
88
+ http_headers&.each do |key, value|
89
+ req.headers[key.to_s] = value
90
+ end
86
91
 
87
92
  @sdk_configuration.hooks.before_request(
88
93
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -155,8 +160,8 @@ module Moov
155
160
  end
156
161
 
157
162
 
158
- sig { params(product_request: Models::Components::ProductRequest, account_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::CreateProductResponse) }
159
- def create(product_request:, account_id:, x_moov_version: nil, timeout_ms: nil)
163
+ sig { params(product_request: Models::Components::ProductRequest, account_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::CreateProductResponse) }
164
+ def create(product_request:, account_id:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
160
165
  # create - Creates a new product for the specified account.
161
166
  request = Models::Operations::CreateProductRequest.new(
162
167
  account_id: account_id,
@@ -214,6 +219,9 @@ module Moov
214
219
  req.headers.merge!(headers)
215
220
  req.options.timeout = timeout unless timeout.nil?
216
221
  Utils.configure_request_security(req, security)
222
+ http_headers&.each do |key, value|
223
+ req.headers[key.to_s] = value
224
+ end
217
225
 
218
226
  @sdk_configuration.hooks.before_request(
219
227
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -316,8 +324,8 @@ module Moov
316
324
  end
317
325
 
318
326
 
319
- sig { params(account_id: ::String, product_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::GetProductResponse) }
320
- def get(account_id:, product_id:, x_moov_version: nil, timeout_ms: nil)
327
+ sig { params(account_id: ::String, product_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::GetProductResponse) }
328
+ def get(account_id:, product_id:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
321
329
  # get - Retrieve a product by ID.
322
330
  request = Models::Operations::GetProductRequest.new(
323
331
  account_id: account_id,
@@ -363,6 +371,9 @@ module Moov
363
371
  req.headers.merge!(headers)
364
372
  req.options.timeout = timeout unless timeout.nil?
365
373
  Utils.configure_request_security(req, security)
374
+ http_headers&.each do |key, value|
375
+ req.headers[key.to_s] = value
376
+ end
366
377
 
367
378
  @sdk_configuration.hooks.before_request(
368
379
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -435,8 +446,8 @@ module Moov
435
446
  end
436
447
 
437
448
 
438
- sig { params(product_request: Models::Components::ProductRequest, account_id: ::String, product_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::UpdateProductResponse) }
439
- def update(product_request:, account_id:, product_id:, x_moov_version: nil, timeout_ms: nil)
449
+ sig { params(product_request: Models::Components::ProductRequest, account_id: ::String, product_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::UpdateProductResponse) }
450
+ def update(product_request:, account_id:, product_id:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
440
451
  # update - Update a product and its options.
441
452
  request = Models::Operations::UpdateProductRequest.new(
442
453
  account_id: account_id,
@@ -495,6 +506,9 @@ module Moov
495
506
  req.headers.merge!(headers)
496
507
  req.options.timeout = timeout unless timeout.nil?
497
508
  Utils.configure_request_security(req, security)
509
+ http_headers&.each do |key, value|
510
+ req.headers[key.to_s] = value
511
+ end
498
512
 
499
513
  @sdk_configuration.hooks.before_request(
500
514
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -597,8 +611,8 @@ module Moov
597
611
  end
598
612
 
599
613
 
600
- sig { params(account_id: ::String, product_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::DisableProductResponse) }
601
- def disable(account_id:, product_id:, x_moov_version: nil, timeout_ms: nil)
614
+ sig { params(account_id: ::String, product_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::DisableProductResponse) }
615
+ def disable(account_id:, product_id:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
602
616
  # disable - Disable a product by ID.
603
617
  #
604
618
  # The product will no longer be available, but will remain in the system for historical and reporting purposes.
@@ -646,6 +660,9 @@ module Moov
646
660
  req.headers.merge!(headers)
647
661
  req.options.timeout = timeout unless timeout.nil?
648
662
  Utils.configure_request_security(req, security)
663
+ http_headers&.each do |key, value|
664
+ req.headers[key.to_s] = value
665
+ end
649
666
 
650
667
  @sdk_configuration.hooks.before_request(
651
668
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -722,5 +739,5 @@ module Moov
722
739
 
723
740
  end
724
741
  end
725
- end
742
+ end
726
743
  end
data/lib/moov/receipts.rb CHANGED
@@ -39,8 +39,10 @@ module Moov
39
39
  end
40
40
 
41
41
 
42
- sig { params(request_body: T::Array[Models::Components::ReceiptRequest], x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::CreateReceiptsResponse) }
43
- def create(request_body:, x_moov_version: nil, timeout_ms: nil)
42
+
43
+
44
+ sig { params(request_body: T::Array[Models::Components::ReceiptRequest], x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::CreateReceiptsResponse) }
45
+ def create(request_body:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
44
46
  # create - Create receipts for transfers and scheduled transfers.
45
47
  #
46
48
  # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -94,6 +96,9 @@ module Moov
94
96
  req.headers.merge!(headers)
95
97
  req.options.timeout = timeout unless timeout.nil?
96
98
  Utils.configure_request_security(req, security)
99
+ http_headers&.each do |key, value|
100
+ req.headers[key.to_s] = value
101
+ end
97
102
 
98
103
  @sdk_configuration.hooks.before_request(
99
104
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -181,8 +186,8 @@ module Moov
181
186
  end
182
187
 
183
188
 
184
- sig { params(id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::ListReceiptsResponse) }
185
- def list(id:, x_moov_version: nil, timeout_ms: nil)
189
+ sig { params(id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::ListReceiptsResponse) }
190
+ def list(id:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
186
191
  # list - List receipts by transferID, scheduleID, or occurrenceID.
187
192
  #
188
193
  # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -226,6 +231,9 @@ module Moov
226
231
  req.options.timeout = timeout unless timeout.nil?
227
232
  req.params = query_params
228
233
  Utils.configure_request_security(req, security)
234
+ http_headers&.each do |key, value|
235
+ req.headers[key.to_s] = value
236
+ end
229
237
 
230
238
  @sdk_configuration.hooks.before_request(
231
239
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -296,5 +304,5 @@ module Moov
296
304
 
297
305
  end
298
306
  end
299
- end
307
+ end
300
308
  end
@@ -39,8 +39,10 @@ module Moov
39
39
  end
40
40
 
41
41
 
42
- sig { params(create_representative: Models::Components::CreateRepresentative, account_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::CreateRepresentativeResponse) }
43
- def create(create_representative:, account_id:, x_moov_version: nil, timeout_ms: nil)
42
+
43
+
44
+ sig { params(create_representative: Models::Components::CreateRepresentative, account_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::CreateRepresentativeResponse) }
45
+ def create(create_representative:, account_id:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
44
46
  # create - Moov accounts associated with businesses require information regarding individuals who represent the business.
45
47
  # You can provide this information by creating a representative. Each account is allowed a maximum of 7 representatives.
46
48
  # Read our [business representatives guide](https://docs.moov.io/guides/accounts/requirements/business-representatives/) to learn more.
@@ -103,6 +105,9 @@ module Moov
103
105
  req.headers.merge!(headers)
104
106
  req.options.timeout = timeout unless timeout.nil?
105
107
  Utils.configure_request_security(req, security)
108
+ http_headers&.each do |key, value|
109
+ req.headers[key.to_s] = value
110
+ end
106
111
 
107
112
  @sdk_configuration.hooks.before_request(
108
113
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -205,8 +210,8 @@ module Moov
205
210
  end
206
211
 
207
212
 
208
- sig { params(account_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::ListRepresentativesResponse) }
209
- def list(account_id:, x_moov_version: nil, timeout_ms: nil)
213
+ sig { params(account_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::ListRepresentativesResponse) }
214
+ def list(account_id:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
210
215
  # list - A Moov account may have multiple representatives depending on the associated business's ownership and management structure.
211
216
  # You can use this method to list all the representatives for a given Moov account.
212
217
  # Note that Moov accounts associated with an individual do not have representatives.
@@ -257,6 +262,9 @@ module Moov
257
262
  req.headers.merge!(headers)
258
263
  req.options.timeout = timeout unless timeout.nil?
259
264
  Utils.configure_request_security(req, security)
265
+ http_headers&.each do |key, value|
266
+ req.headers[key.to_s] = value
267
+ end
260
268
 
261
269
  @sdk_configuration.hooks.before_request(
262
270
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -329,8 +337,8 @@ module Moov
329
337
  end
330
338
 
331
339
 
332
- sig { params(account_id: ::String, representative_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::DeleteRepresentativeResponse) }
333
- def delete(account_id:, representative_id:, x_moov_version: nil, timeout_ms: nil)
340
+ sig { params(account_id: ::String, representative_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::DeleteRepresentativeResponse) }
341
+ def delete(account_id:, representative_id:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
334
342
  # delete - Deletes a business representative associated with a Moov account. Read our [business representatives guide](https://docs.moov.io/guides/accounts/requirements/business-representatives/) to learn more.
335
343
  #
336
344
  # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -379,6 +387,9 @@ module Moov
379
387
  req.headers.merge!(headers)
380
388
  req.options.timeout = timeout unless timeout.nil?
381
389
  Utils.configure_request_security(req, security)
390
+ http_headers&.each do |key, value|
391
+ req.headers[key.to_s] = value
392
+ end
382
393
 
383
394
  @sdk_configuration.hooks.before_request(
384
395
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -457,8 +468,8 @@ module Moov
457
468
  end
458
469
 
459
470
 
460
- sig { params(account_id: ::String, representative_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::GetRepresentativeResponse) }
461
- def get(account_id:, representative_id:, x_moov_version: nil, timeout_ms: nil)
471
+ sig { params(account_id: ::String, representative_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::GetRepresentativeResponse) }
472
+ def get(account_id:, representative_id:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
462
473
  # get - Retrieve a specific representative associated with a given Moov account. Read our [business representatives guide](https://docs.moov.io/guides/accounts/requirements/business-representatives/) to learn more.
463
474
  #
464
475
  # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -507,6 +518,9 @@ module Moov
507
518
  req.headers.merge!(headers)
508
519
  req.options.timeout = timeout unless timeout.nil?
509
520
  Utils.configure_request_security(req, security)
521
+ http_headers&.each do |key, value|
522
+ req.headers[key.to_s] = value
523
+ end
510
524
 
511
525
  @sdk_configuration.hooks.before_request(
512
526
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -579,8 +593,8 @@ module Moov
579
593
  end
580
594
 
581
595
 
582
- sig { params(update_representative: Models::Components::UpdateRepresentative, account_id: ::String, representative_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::UpdateRepresentativeResponse) }
583
- def update(update_representative:, account_id:, representative_id:, x_moov_version: nil, timeout_ms: nil)
596
+ sig { params(update_representative: Models::Components::UpdateRepresentative, account_id: ::String, representative_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::UpdateRepresentativeResponse) }
597
+ def update(update_representative:, account_id:, representative_id:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
584
598
  # update - If a representative's information has changed you can patch the information associated with a specific representative ID.
585
599
  # Read our [business representatives guide](https://docs.moov.io/guides/accounts/requirements/business-representatives/) to learn more.
586
600
  #
@@ -655,6 +669,9 @@ module Moov
655
669
  req.headers.merge!(headers)
656
670
  req.options.timeout = timeout unless timeout.nil?
657
671
  Utils.configure_request_security(req, security)
672
+ http_headers&.each do |key, value|
673
+ req.headers[key.to_s] = value
674
+ end
658
675
 
659
676
  @sdk_configuration.hooks.before_request(
660
677
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -740,5 +757,5 @@ module Moov
740
757
 
741
758
  end
742
759
  end
743
- end
760
+ end
744
761
  end
@@ -39,8 +39,10 @@ module Moov
39
39
  end
40
40
 
41
41
 
42
- sig { params(upsert_schedule: Models::Components::UpsertSchedule, account_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::CreateScheduleResponse) }
43
- def create(upsert_schedule:, account_id:, x_moov_version: nil, timeout_ms: nil)
42
+
43
+
44
+ sig { params(upsert_schedule: Models::Components::UpsertSchedule, account_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::CreateScheduleResponse) }
45
+ def create(upsert_schedule:, account_id:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
44
46
  # create - Describes the schedule to create or modify.
45
47
  #
46
48
  # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -101,6 +103,9 @@ module Moov
101
103
  req.headers.merge!(headers)
102
104
  req.options.timeout = timeout unless timeout.nil?
103
105
  Utils.configure_request_security(req, security)
106
+ http_headers&.each do |key, value|
107
+ req.headers[key.to_s] = value
108
+ end
104
109
 
105
110
  @sdk_configuration.hooks.before_request(
106
111
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -203,8 +208,8 @@ module Moov
203
208
  end
204
209
 
205
210
 
206
- sig { params(request: Models::Operations::ListSchedulesRequest, timeout_ms: T.nilable(Integer)).returns(Models::Operations::ListSchedulesResponse) }
207
- def list(request:, timeout_ms: nil)
211
+ sig { params(request: Models::Operations::ListSchedulesRequest, timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::ListSchedulesResponse) }
212
+ def list(request:, timeout_ms: nil, http_headers: nil)
208
213
  # list - Describes a list of schedules associated with an account. Append the `hydrate=accounts` query parameter to include partial account details in the response.
209
214
  #
210
215
  # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -250,6 +255,9 @@ module Moov
250
255
  req.options.timeout = timeout unless timeout.nil?
251
256
  req.params = query_params
252
257
  Utils.configure_request_security(req, security)
258
+ http_headers&.each do |key, value|
259
+ req.headers[key.to_s] = value
260
+ end
253
261
 
254
262
  @sdk_configuration.hooks.before_request(
255
263
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -322,8 +330,8 @@ module Moov
322
330
  end
323
331
 
324
332
 
325
- sig { params(upsert_schedule: Models::Components::UpsertSchedule, account_id: ::String, schedule_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::UpdateScheduleResponse) }
326
- def update(upsert_schedule:, account_id:, schedule_id:, x_moov_version: nil, timeout_ms: nil)
333
+ sig { params(upsert_schedule: Models::Components::UpsertSchedule, account_id: ::String, schedule_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::UpdateScheduleResponse) }
334
+ def update(upsert_schedule:, account_id:, schedule_id:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
327
335
  # update - Describes the schedule to modify.
328
336
  #
329
337
  # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -385,6 +393,9 @@ module Moov
385
393
  req.headers.merge!(headers)
386
394
  req.options.timeout = timeout unless timeout.nil?
387
395
  Utils.configure_request_security(req, security)
396
+ http_headers&.each do |key, value|
397
+ req.headers[key.to_s] = value
398
+ end
388
399
 
389
400
  @sdk_configuration.hooks.before_request(
390
401
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -487,8 +498,8 @@ module Moov
487
498
  end
488
499
 
489
500
 
490
- sig { params(account_id: ::String, schedule_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::GetSchedulesResponse) }
491
- def get(account_id:, schedule_id:, x_moov_version: nil, timeout_ms: nil)
501
+ sig { params(account_id: ::String, schedule_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::GetSchedulesResponse) }
502
+ def get(account_id:, schedule_id:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
492
503
  # get - Describes a schedule associated with an account. Requires at least 1 occurrence or recurTransfer to be specified.
493
504
  #
494
505
  # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -537,6 +548,9 @@ module Moov
537
548
  req.headers.merge!(headers)
538
549
  req.options.timeout = timeout unless timeout.nil?
539
550
  Utils.configure_request_security(req, security)
551
+ http_headers&.each do |key, value|
552
+ req.headers[key.to_s] = value
553
+ end
540
554
 
541
555
  @sdk_configuration.hooks.before_request(
542
556
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -609,8 +623,8 @@ module Moov
609
623
  end
610
624
 
611
625
 
612
- sig { params(account_id: ::String, schedule_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::CancelScheduleResponse) }
613
- def cancel(account_id:, schedule_id:, x_moov_version: nil, timeout_ms: nil)
626
+ sig { params(account_id: ::String, schedule_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::CancelScheduleResponse) }
627
+ def cancel(account_id:, schedule_id:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
614
628
  # cancel - Describes the schedule to cancel.
615
629
  #
616
630
  # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -659,6 +673,9 @@ module Moov
659
673
  req.headers.merge!(headers)
660
674
  req.options.timeout = timeout unless timeout.nil?
661
675
  Utils.configure_request_security(req, security)
676
+ http_headers&.each do |key, value|
677
+ req.headers[key.to_s] = value
678
+ end
662
679
 
663
680
  @sdk_configuration.hooks.before_request(
664
681
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -737,8 +754,8 @@ module Moov
737
754
  end
738
755
 
739
756
 
740
- sig { params(account_id: ::String, schedule_id: ::String, occurrence_filter: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::GetScheduledOccurrenceResponse) }
741
- def get_occurrance(account_id:, schedule_id:, occurrence_filter:, x_moov_version: nil, timeout_ms: nil)
757
+ sig { params(account_id: ::String, schedule_id: ::String, occurrence_filter: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::GetScheduledOccurrenceResponse) }
758
+ def get_occurrance(account_id:, schedule_id:, occurrence_filter:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
742
759
  # get_occurrance - Gets a specific occurrence.
743
760
  #
744
761
  # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -788,6 +805,9 @@ module Moov
788
805
  req.headers.merge!(headers)
789
806
  req.options.timeout = timeout unless timeout.nil?
790
807
  Utils.configure_request_security(req, security)
808
+ http_headers&.each do |key, value|
809
+ req.headers[key.to_s] = value
810
+ end
791
811
 
792
812
  @sdk_configuration.hooks.before_request(
793
813
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -858,5 +878,5 @@ module Moov
858
878
 
859
879
  end
860
880
  end
861
- end
881
+ end
862
882
  end
@@ -95,9 +95,9 @@ module Moov
95
95
  @globals = globals.nil? ? {} : globals
96
96
  @language = 'ruby'
97
97
  @openapi_doc_version = 'dev'
98
- @sdk_version = '0.0.0-dev.3'
99
- @gen_version = '2.836.5'
100
- @user_agent = 'speakeasy-sdk/ruby 0.0.0-dev.3 2.836.5 dev moov_ruby'
98
+ @sdk_version = '0.0.0-dev.5'
99
+ @gen_version = '2.856.1'
100
+ @user_agent = 'speakeasy-sdk/ruby 0.0.0-dev.5 2.856.1 dev moov_ruby'
101
101
  end
102
102
 
103
103
  sig { returns([String, T::Hash[Symbol, String]]) }
@@ -39,8 +39,10 @@ module Moov
39
39
  end
40
40
 
41
41
 
42
- sig { params(request: Models::Operations::ListStatementsRequest, timeout_ms: T.nilable(Integer)).returns(Models::Operations::ListStatementsResponse) }
43
- def list(request:, timeout_ms: nil)
42
+
43
+
44
+ sig { params(request: Models::Operations::ListStatementsRequest, timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::ListStatementsResponse) }
45
+ def list(request:, timeout_ms: nil, http_headers: nil)
44
46
  # list - Retrieve all statements associated with an account.
45
47
  #
46
48
  # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -86,6 +88,9 @@ module Moov
86
88
  req.options.timeout = timeout unless timeout.nil?
87
89
  req.params = query_params
88
90
  Utils.configure_request_security(req, security)
91
+ http_headers&.each do |key, value|
92
+ req.headers[key.to_s] = value
93
+ end
89
94
 
90
95
  @sdk_configuration.hooks.before_request(
91
96
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -173,8 +178,8 @@ module Moov
173
178
  end
174
179
 
175
180
 
176
- sig { params(account_id: ::String, statement_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), accept_header_override: T.nilable(String)).returns(Models::Operations::GetStatementResponse) }
177
- def get(account_id:, statement_id:, x_moov_version: nil, timeout_ms: nil, accept_header_override: nil)
181
+ sig { params(account_id: ::String, statement_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), accept_header_override: T.nilable(String), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::GetStatementResponse) }
182
+ def get(account_id:, statement_id:, x_moov_version: nil, timeout_ms: nil, accept_header_override: nil, http_headers: nil)
178
183
  # get - Retrieve a statement by its ID.
179
184
  #
180
185
  # Use the `Accept` header to specify the format of the response. Supported formats are `application/json` and `application/pdf`.
@@ -225,6 +230,9 @@ module Moov
225
230
  req.headers.merge!(headers)
226
231
  req.options.timeout = timeout unless timeout.nil?
227
232
  Utils.configure_request_security(req, security)
233
+ http_headers&.each do |key, value|
234
+ req.headers[key.to_s] = value
235
+ end
228
236
 
229
237
  @sdk_configuration.hooks.before_request(
230
238
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -311,5 +319,5 @@ module Moov
311
319
 
312
320
  end
313
321
  end
314
- end
322
+ end
315
323
  end
data/lib/moov/support.rb CHANGED
@@ -39,8 +39,10 @@ module Moov
39
39
  end
40
40
 
41
41
 
42
- sig { params(create_ticket: Models::Components::CreateTicket, account_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::CreateTicketResponse) }
43
- def create_ticket(create_ticket:, account_id:, x_moov_version: nil, timeout_ms: nil)
42
+
43
+
44
+ sig { params(create_ticket: Models::Components::CreateTicket, account_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::CreateTicketResponse) }
45
+ def create_ticket(create_ticket:, account_id:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
44
46
  # create_ticket - Create a support ticket for a Moov account.
45
47
  #
46
48
  # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -104,6 +106,9 @@ module Moov
104
106
  req.headers.merge!(headers)
105
107
  req.options.timeout = timeout unless timeout.nil?
106
108
  Utils.configure_request_security(req, security)
109
+ http_headers&.each do |key, value|
110
+ req.headers[key.to_s] = value
111
+ end
107
112
 
108
113
  @sdk_configuration.hooks.before_request(
109
114
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -206,8 +211,8 @@ module Moov
206
211
  end
207
212
 
208
213
 
209
- sig { params(request: Models::Operations::ListTicketsRequest, timeout_ms: T.nilable(Integer)).returns(Models::Operations::ListTicketsResponse) }
210
- def list_tickets(request:, timeout_ms: nil)
214
+ sig { params(request: Models::Operations::ListTicketsRequest, timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::ListTicketsResponse) }
215
+ def list_tickets(request:, timeout_ms: nil, http_headers: nil)
211
216
  # list_tickets - List all the support tickets created under a Moov account.
212
217
  #
213
218
  # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -256,6 +261,9 @@ module Moov
256
261
  req.options.timeout = timeout unless timeout.nil?
257
262
  req.params = query_params
258
263
  Utils.configure_request_security(req, security)
264
+ http_headers&.each do |key, value|
265
+ req.headers[key.to_s] = value
266
+ end
259
267
 
260
268
  @sdk_configuration.hooks.before_request(
261
269
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -328,8 +336,8 @@ module Moov
328
336
  end
329
337
 
330
338
 
331
- sig { params(account_id: ::String, ticket_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::GetTicketResponse) }
332
- def get_ticket(account_id:, ticket_id:, x_moov_version: nil, timeout_ms: nil)
339
+ sig { params(account_id: ::String, ticket_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::GetTicketResponse) }
340
+ def get_ticket(account_id:, ticket_id:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
333
341
  # get_ticket - Retrieve a support ticket by ID.
334
342
  #
335
343
  # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -381,6 +389,9 @@ module Moov
381
389
  req.headers.merge!(headers)
382
390
  req.options.timeout = timeout unless timeout.nil?
383
391
  Utils.configure_request_security(req, security)
392
+ http_headers&.each do |key, value|
393
+ req.headers[key.to_s] = value
394
+ end
384
395
 
385
396
  @sdk_configuration.hooks.before_request(
386
397
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -453,8 +464,8 @@ module Moov
453
464
  end
454
465
 
455
466
 
456
- sig { params(update_ticket: Models::Components::UpdateTicket, account_id: ::String, ticket_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::UpdateTicketResponse) }
457
- def update_ticket(update_ticket:, account_id:, ticket_id:, x_moov_version: nil, timeout_ms: nil)
467
+ sig { params(update_ticket: Models::Components::UpdateTicket, account_id: ::String, ticket_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::UpdateTicketResponse) }
468
+ def update_ticket(update_ticket:, account_id:, ticket_id:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
458
469
  # update_ticket - Updates a support ticket.
459
470
  #
460
471
  # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -519,6 +530,9 @@ module Moov
519
530
  req.headers.merge!(headers)
520
531
  req.options.timeout = timeout unless timeout.nil?
521
532
  Utils.configure_request_security(req, security)
533
+ http_headers&.each do |key, value|
534
+ req.headers[key.to_s] = value
535
+ end
522
536
 
523
537
  @sdk_configuration.hooks.before_request(
524
538
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -621,8 +635,8 @@ module Moov
621
635
  end
622
636
 
623
637
 
624
- sig { params(account_id: ::String, ticket_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer)).returns(Models::Operations::ListTicketMessagesResponse) }
625
- def list_ticket_messages(account_id:, ticket_id:, x_moov_version: nil, timeout_ms: nil)
638
+ sig { params(account_id: ::String, ticket_id: ::String, x_moov_version: T.nilable(::String), timeout_ms: T.nilable(Integer), http_headers: T.nilable(T::Hash[T.any(String, Symbol), String])).returns(Models::Operations::ListTicketMessagesResponse) }
639
+ def list_ticket_messages(account_id:, ticket_id:, x_moov_version: nil, timeout_ms: nil, http_headers: nil)
626
640
  # list_ticket_messages - List all the messages for a support ticket.
627
641
  #
628
642
  # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -674,6 +688,9 @@ module Moov
674
688
  req.headers.merge!(headers)
675
689
  req.options.timeout = timeout unless timeout.nil?
676
690
  Utils.configure_request_security(req, security)
691
+ http_headers&.each do |key, value|
692
+ req.headers[key.to_s] = value
693
+ end
677
694
 
678
695
  @sdk_configuration.hooks.before_request(
679
696
  hook_ctx: SDKHooks::BeforeRequestHookContext.new(
@@ -744,5 +761,5 @@ module Moov
744
761
 
745
762
  end
746
763
  end
747
- end
764
+ end
748
765
  end