moov_ruby 0.3.29 → 0.3.30

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ad733455d15d5138422ac9b412dc826c4f75c1e237de7a98c5d81d7d3f9f926
4
- data.tar.gz: 149c8958dd951b724885d16a6689b49d5e21f97db776c7ab3bb96683d6551951
3
+ metadata.gz: b457dff04e764fbce1a9d4f420b86648e706673155a434f304b7050a5788fcb4
4
+ data.tar.gz: 4525715b78324441e21245d8c5e843c932b8393512e4659d29f1211dc4217d8f
5
5
  SHA512:
6
- metadata.gz: 53c296a5a5d1a7773d30b1cf647a5493c48e29f4f5084c0f8bfeb22f7ebe68eec8bf7b251866746222d58bc3900daf4a86c71ac68b789bc45e88bd93f589e13f
7
- data.tar.gz: e95ef7ac01b0f5a89a7cdc01ad6320f9f328770056e7b9ea4c0f94aea9095861ab4eecd8bc4d99a170882594e589e506b0c62cf3c9cb32cd8c47b90f46f83f3f
6
+ metadata.gz: b87125c1f8a9b643c475653459ab65e7729ba28a6bbb964fc1570ff671de42d05fb7550e621a991ca6dce3fdc5bdd3458e6b5b58cba05779f7b45a907085de4a
7
+ data.tar.gz: 864dc50f26f74a6dd7b167ab029dfa60bffed2314f87ebaf620c2d6ac09fab7ecd5ff3d9e4c5d970b5008a18ba39fdb2f4883b8553de078b57533d0ee8d28629
data/lib/moov/invoices.rb CHANGED
@@ -43,7 +43,7 @@ module Moov
43
43
  def create_invoice(create_invoice:, account_id:, x_moov_version: nil, timeout_ms: nil)
44
44
  # create_invoice - Create an invoice for a Moov account.
45
45
  #
46
- # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
46
+ # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
47
47
  # you'll need to specify the `/accounts/{accountID}/invoices.write` scope.
48
48
  request = Models::Operations::CreateInvoiceRequest.new(
49
49
  account_id: account_id,
@@ -207,7 +207,7 @@ module Moov
207
207
  def list_invoices(request:, timeout_ms: nil)
208
208
  # list_invoices - List all the invoices created under a Moov account.
209
209
  #
210
- # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
210
+ # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
211
211
  # you'll need to specify the `/accounts/{accountID}/invoices.read` scope.
212
212
  url, params = @sdk_configuration.get_server_details
213
213
  base_url = Utils.template_url(url, params)
@@ -341,7 +341,7 @@ module Moov
341
341
  def get_invoice(account_id:, invoice_id:, x_moov_version: nil, timeout_ms: nil)
342
342
  # get_invoice - Retrieve an invoice by ID.
343
343
  #
344
- # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
344
+ # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
345
345
  # you'll need to specify the `/accounts/{accountID}/invoices.read` scope.
346
346
  request = Models::Operations::GetInvoiceRequest.new(
347
347
  account_id: account_id,
@@ -463,7 +463,7 @@ module Moov
463
463
  def update_invoice(update_invoice:, account_id:, invoice_id:, x_moov_version: nil, timeout_ms: nil)
464
464
  # update_invoice - Updates an invoice.
465
465
  #
466
- # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
466
+ # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
467
467
  # you'll need to specify the `/accounts/{accountID}/invoices.write` scope.
468
468
  request = Models::Operations::UpdateInvoiceRequest.new(
469
469
  account_id: account_id,
@@ -629,7 +629,7 @@ module Moov
629
629
  # create_invoice_payment - Creates a payment resource to represent that an invoice was paid outside of the Moov platform.
630
630
  # If a payment link was created for the invoice, the corresponding payment link is canceled, but a receipt is still sent.
631
631
  #
632
- # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
632
+ # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
633
633
  # you'll need to specify the `/accounts/{accountID}/invoices.write` scope.
634
634
  request = Models::Operations::CreateInvoicePaymentRequest.new(
635
635
  account_id: account_id,
@@ -794,7 +794,7 @@ module Moov
794
794
  def list_invoice_payments(account_id:, invoice_id:, x_moov_version: nil, timeout_ms: nil)
795
795
  # list_invoice_payments - List all the payments made towards an invoice.
796
796
  #
797
- # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
797
+ # To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
798
798
  # you'll need to specify the `/accounts/{accountID}/invoices.read` scope.
799
799
  request = Models::Operations::ListInvoicePaymentsRequest.new(
800
800
  account_id: account_id,
@@ -95,9 +95,9 @@ module Moov
95
95
  @globals = globals.nil? ? {} : globals
96
96
  @language = 'ruby'
97
97
  @openapi_doc_version = 'latest'
98
- @sdk_version = '0.3.29'
99
- @gen_version = '2.797.1'
100
- @user_agent = 'speakeasy-sdk/ruby 0.3.29 2.797.1 latest moov_ruby'
98
+ @sdk_version = '0.3.30'
99
+ @gen_version = '2.799.0'
100
+ @user_agent = 'speakeasy-sdk/ruby 0.3.30 2.799.0 latest moov_ruby'
101
101
  end
102
102
 
103
103
  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: 0.3.29
4
+ version: 0.3.30
5
5
  platform: ruby
6
6
  authors:
7
7
  - Speakeasy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-01-22 00:00:00.000000000 Z
11
+ date: 2026-01-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: base64