@moovio/sdk 0.22.19 → 0.22.20
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.
- package/README.md +12 -12
- package/bin/mcp-server.js +12 -12
- package/bin/mcp-server.js.map +10 -10
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/mcp-server/tools/invoicesCreateInvoice.js +1 -1
- package/mcp-server/tools/invoicesCreateInvoicePayment.js +1 -1
- package/mcp-server/tools/invoicesGetInvoice.js +1 -1
- package/mcp-server/tools/invoicesListInvoicePayments.js +1 -1
- package/mcp-server/tools/invoicesListInvoices.js +1 -1
- package/mcp-server/tools/invoicesUpdateInvoice.js +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/mcp-server/tools/invoicesCreateInvoice.ts +1 -1
- package/src/mcp-server/tools/invoicesCreateInvoicePayment.ts +1 -1
- package/src/mcp-server/tools/invoicesGetInvoice.ts +1 -1
- package/src/mcp-server/tools/invoicesListInvoicePayments.ts +1 -1
- package/src/mcp-server/tools/invoicesListInvoices.ts +1 -1
- package/src/mcp-server/tools/invoicesUpdateInvoice.ts +1 -1
package/README.md
CHANGED
|
@@ -812,28 +812,28 @@ you'll need to specify the `/fed.read` scope. :warning: **Deprecated**
|
|
|
812
812
|
|
|
813
813
|
* [createInvoice](docs/sdks/invoices/README.md#createinvoice) - Create an invoice for a Moov account.
|
|
814
814
|
|
|
815
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
815
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
816
816
|
you'll need to specify the `/accounts/{accountID}/invoices.write` scope.
|
|
817
817
|
* [listInvoices](docs/sdks/invoices/README.md#listinvoices) - List all the invoices created under a Moov account.
|
|
818
818
|
|
|
819
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
819
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
820
820
|
you'll need to specify the `/accounts/{accountID}/invoices.read` scope.
|
|
821
821
|
* [getInvoice](docs/sdks/invoices/README.md#getinvoice) - Retrieve an invoice by ID.
|
|
822
822
|
|
|
823
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
823
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
824
824
|
you'll need to specify the `/accounts/{accountID}/invoices.read` scope.
|
|
825
825
|
* [updateInvoice](docs/sdks/invoices/README.md#updateinvoice) - Updates an invoice.
|
|
826
826
|
|
|
827
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
827
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
828
828
|
you'll need to specify the `/accounts/{accountID}/invoices.write` scope.
|
|
829
829
|
* [createInvoicePayment](docs/sdks/invoices/README.md#createinvoicepayment) - Creates a payment resource to represent that an invoice was paid outside of the Moov platform.
|
|
830
830
|
If a payment link was created for the invoice, the corresponding payment link is canceled, but a receipt is still sent.
|
|
831
831
|
|
|
832
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
832
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
833
833
|
you'll need to specify the `/accounts/{accountID}/invoices.write` scope.
|
|
834
834
|
* [listInvoicePayments](docs/sdks/invoices/README.md#listinvoicepayments) - List all the payments made towards an invoice.
|
|
835
835
|
|
|
836
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
836
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
837
837
|
you'll need to specify the `/accounts/{accountID}/invoices.read` scope.
|
|
838
838
|
|
|
839
839
|
### [IssuingTransactions](docs/sdks/issuingtransactions/README.md)
|
|
@@ -1775,28 +1775,28 @@ To access this endpoint using an [access token](https://docs.moov.io/api/authent
|
|
|
1775
1775
|
you'll need to specify the `/institutions.read` scope.
|
|
1776
1776
|
- [`invoicesCreateInvoice`](docs/sdks/invoices/README.md#createinvoice) - Create an invoice for a Moov account.
|
|
1777
1777
|
|
|
1778
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1778
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1779
1779
|
you'll need to specify the `/accounts/{accountID}/invoices.write` scope.
|
|
1780
1780
|
- [`invoicesCreateInvoicePayment`](docs/sdks/invoices/README.md#createinvoicepayment) - Creates a payment resource to represent that an invoice was paid outside of the Moov platform.
|
|
1781
1781
|
If a payment link was created for the invoice, the corresponding payment link is canceled, but a receipt is still sent.
|
|
1782
1782
|
|
|
1783
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1783
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1784
1784
|
you'll need to specify the `/accounts/{accountID}/invoices.write` scope.
|
|
1785
1785
|
- [`invoicesGetInvoice`](docs/sdks/invoices/README.md#getinvoice) - Retrieve an invoice by ID.
|
|
1786
1786
|
|
|
1787
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1787
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1788
1788
|
you'll need to specify the `/accounts/{accountID}/invoices.read` scope.
|
|
1789
1789
|
- [`invoicesListInvoicePayments`](docs/sdks/invoices/README.md#listinvoicepayments) - List all the payments made towards an invoice.
|
|
1790
1790
|
|
|
1791
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1791
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1792
1792
|
you'll need to specify the `/accounts/{accountID}/invoices.read` scope.
|
|
1793
1793
|
- [`invoicesListInvoices`](docs/sdks/invoices/README.md#listinvoices) - List all the invoices created under a Moov account.
|
|
1794
1794
|
|
|
1795
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1795
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1796
1796
|
you'll need to specify the `/accounts/{accountID}/invoices.read` scope.
|
|
1797
1797
|
- [`invoicesUpdateInvoice`](docs/sdks/invoices/README.md#updateinvoice) - Updates an invoice.
|
|
1798
1798
|
|
|
1799
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1799
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1800
1800
|
you'll need to specify the `/accounts/{accountID}/invoices.write` scope.
|
|
1801
1801
|
- [`issuingTransactionsGet`](docs/sdks/issuingtransactions/README.md#get) - Retrieves details of an issued card transaction associated with a specific Moov account.
|
|
1802
1802
|
|
package/bin/mcp-server.js
CHANGED
|
@@ -52413,9 +52413,9 @@ var init_config = __esm(() => {
|
|
|
52413
52413
|
SDK_METADATA = {
|
|
52414
52414
|
language: "typescript",
|
|
52415
52415
|
openapiDocVersion: "latest",
|
|
52416
|
-
sdkVersion: "0.22.
|
|
52417
|
-
genVersion: "2.
|
|
52418
|
-
userAgent: "speakeasy-sdk/typescript 0.22.
|
|
52416
|
+
sdkVersion: "0.22.20",
|
|
52417
|
+
genVersion: "2.799.0",
|
|
52418
|
+
userAgent: "speakeasy-sdk/typescript 0.22.20 2.799.0 latest @moovio/sdk"
|
|
52419
52419
|
};
|
|
52420
52420
|
});
|
|
52421
52421
|
|
|
@@ -91857,7 +91857,7 @@ var init_invoicesCreateInvoice2 = __esm(() => {
|
|
|
91857
91857
|
name: "invoices-create-invoice",
|
|
91858
91858
|
description: `Create an invoice for a Moov account.
|
|
91859
91859
|
|
|
91860
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
91860
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
91861
91861
|
you'll need to specify the \`/accounts/{accountID}/invoices.write\` scope.`,
|
|
91862
91862
|
args: args91,
|
|
91863
91863
|
tool: async (client, args92, ctx) => {
|
|
@@ -91991,7 +91991,7 @@ var init_invoicesCreateInvoicePayment2 = __esm(() => {
|
|
|
91991
91991
|
description: `Creates a payment resource to represent that an invoice was paid outside of the Moov platform.
|
|
91992
91992
|
If a payment link was created for the invoice, the corresponding payment link is canceled, but a receipt is still sent.
|
|
91993
91993
|
|
|
91994
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
91994
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
91995
91995
|
you'll need to specify the \`/accounts/{accountID}/invoices.write\` scope.`,
|
|
91996
91996
|
args: args92,
|
|
91997
91997
|
tool: async (client, args93, ctx) => {
|
|
@@ -92106,7 +92106,7 @@ var init_invoicesGetInvoice2 = __esm(() => {
|
|
|
92106
92106
|
name: "invoices-get-invoice",
|
|
92107
92107
|
description: `Retrieve an invoice by ID.
|
|
92108
92108
|
|
|
92109
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
92109
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
92110
92110
|
you'll need to specify the \`/accounts/{accountID}/invoices.read\` scope.`,
|
|
92111
92111
|
args: args93,
|
|
92112
92112
|
tool: async (client, args94, ctx) => {
|
|
@@ -92221,7 +92221,7 @@ var init_invoicesListInvoicePayments2 = __esm(() => {
|
|
|
92221
92221
|
name: "invoices-list-invoice-payments",
|
|
92222
92222
|
description: `List all the payments made towards an invoice.
|
|
92223
92223
|
|
|
92224
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
92224
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
92225
92225
|
you'll need to specify the \`/accounts/{accountID}/invoices.read\` scope.`,
|
|
92226
92226
|
args: args94,
|
|
92227
92227
|
tool: async (client, args95, ctx) => {
|
|
@@ -92346,7 +92346,7 @@ var init_invoicesListInvoices2 = __esm(() => {
|
|
|
92346
92346
|
name: "invoices-list-invoices",
|
|
92347
92347
|
description: `List all the invoices created under a Moov account.
|
|
92348
92348
|
|
|
92349
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
92349
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
92350
92350
|
you'll need to specify the \`/accounts/{accountID}/invoices.read\` scope.`,
|
|
92351
92351
|
args: args95,
|
|
92352
92352
|
tool: async (client, args96, ctx) => {
|
|
@@ -92475,7 +92475,7 @@ var init_invoicesUpdateInvoice2 = __esm(() => {
|
|
|
92475
92475
|
name: "invoices-update-invoice",
|
|
92476
92476
|
description: `Updates an invoice.
|
|
92477
92477
|
|
|
92478
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
92478
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
92479
92479
|
you'll need to specify the \`/accounts/{accountID}/invoices.write\` scope.`,
|
|
92480
92480
|
args: args96,
|
|
92481
92481
|
tool: async (client, args97, ctx) => {
|
|
@@ -102249,7 +102249,7 @@ var init_webhooksUpdate2 = __esm(() => {
|
|
|
102249
102249
|
function createMCPServer(deps) {
|
|
102250
102250
|
const server = new McpServer({
|
|
102251
102251
|
name: "Moov",
|
|
102252
|
-
version: "0.22.
|
|
102252
|
+
version: "0.22.20"
|
|
102253
102253
|
});
|
|
102254
102254
|
const client = new MoovCore({
|
|
102255
102255
|
security: deps.security,
|
|
@@ -103829,7 +103829,7 @@ var routes = rn({
|
|
|
103829
103829
|
var app = Ve(routes, {
|
|
103830
103830
|
name: "mcp",
|
|
103831
103831
|
versionInfo: {
|
|
103832
|
-
currentVersion: "0.22.
|
|
103832
|
+
currentVersion: "0.22.20"
|
|
103833
103833
|
}
|
|
103834
103834
|
});
|
|
103835
103835
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -103837,5 +103837,5 @@ export {
|
|
|
103837
103837
|
app
|
|
103838
103838
|
};
|
|
103839
103839
|
|
|
103840
|
-
//# debugId=
|
|
103840
|
+
//# debugId=3B533D0DB06AA2C364756E2164756E21
|
|
103841
103841
|
//# sourceMappingURL=mcp-server.js.map
|