@moovio/sdk 0.22.19 → 0.22.21
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 +16 -12
- package/bin/mcp-server.js.map +13 -13
- 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/models/components/onboardinginvite.d.ts +8 -0
- package/models/components/onboardinginvite.d.ts.map +1 -1
- package/models/components/onboardinginvite.js +2 -0
- package/models/components/onboardinginvite.js.map +1 -1
- package/models/components/onboardinginviterequest.d.ts +8 -0
- package/models/components/onboardinginviterequest.d.ts.map +1 -1
- package/models/components/onboardinginviterequest.js +2 -0
- package/models/components/onboardinginviterequest.js.map +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/src/models/components/onboardinginvite.ts +10 -0
- package/src/models/components/onboardinginviterequest.ts +10 -0
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.21",
|
|
52417
|
+
genVersion: "2.801.0",
|
|
52418
|
+
userAgent: "speakeasy-sdk/typescript 0.22.21 2.801.0 latest @moovio/sdk"
|
|
52419
52419
|
};
|
|
52420
52420
|
});
|
|
52421
52421
|
|
|
@@ -64457,6 +64457,7 @@ var init_onboardinginvite = __esm(() => {
|
|
|
64457
64457
|
returnURL: stringType().optional(),
|
|
64458
64458
|
termsOfServiceURL: stringType().optional(),
|
|
64459
64459
|
scopes: arrayType(ApplicationScope$inboundSchema),
|
|
64460
|
+
grantScopes: arrayType(ApplicationScope$inboundSchema).optional(),
|
|
64460
64461
|
capabilities: arrayType(CapabilityID$inboundSchema),
|
|
64461
64462
|
feePlanCodes: arrayType(stringType()),
|
|
64462
64463
|
redeemedAccountID: stringType().optional(),
|
|
@@ -64472,6 +64473,7 @@ var init_onboardinginvite = __esm(() => {
|
|
|
64472
64473
|
returnURL: stringType().optional(),
|
|
64473
64474
|
termsOfServiceURL: stringType().optional(),
|
|
64474
64475
|
scopes: arrayType(ApplicationScope$outboundSchema),
|
|
64476
|
+
grantScopes: arrayType(ApplicationScope$outboundSchema).optional(),
|
|
64475
64477
|
capabilities: arrayType(CapabilityID$outboundSchema),
|
|
64476
64478
|
feePlanCodes: arrayType(stringType()),
|
|
64477
64479
|
redeemedAccountID: stringType().optional(),
|
|
@@ -64494,6 +64496,7 @@ var init_onboardinginviterequest = __esm(() => {
|
|
|
64494
64496
|
returnURL: stringType().optional(),
|
|
64495
64497
|
termsOfServiceURL: stringType().optional(),
|
|
64496
64498
|
scopes: arrayType(ApplicationScope$inboundSchema),
|
|
64499
|
+
grantScopes: arrayType(ApplicationScope$inboundSchema).optional(),
|
|
64497
64500
|
capabilities: arrayType(CapabilityID$inboundSchema),
|
|
64498
64501
|
feePlanCodes: arrayType(stringType()),
|
|
64499
64502
|
prefill: CreateAccount$inboundSchema.optional()
|
|
@@ -64502,6 +64505,7 @@ var init_onboardinginviterequest = __esm(() => {
|
|
|
64502
64505
|
returnURL: stringType().optional(),
|
|
64503
64506
|
termsOfServiceURL: stringType().optional(),
|
|
64504
64507
|
scopes: arrayType(ApplicationScope$outboundSchema),
|
|
64508
|
+
grantScopes: arrayType(ApplicationScope$outboundSchema).optional(),
|
|
64505
64509
|
capabilities: arrayType(CapabilityID$outboundSchema),
|
|
64506
64510
|
feePlanCodes: arrayType(stringType()),
|
|
64507
64511
|
prefill: CreateAccount$outboundSchema.optional()
|
|
@@ -91857,7 +91861,7 @@ var init_invoicesCreateInvoice2 = __esm(() => {
|
|
|
91857
91861
|
name: "invoices-create-invoice",
|
|
91858
91862
|
description: `Create an invoice for a Moov account.
|
|
91859
91863
|
|
|
91860
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
91864
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
91861
91865
|
you'll need to specify the \`/accounts/{accountID}/invoices.write\` scope.`,
|
|
91862
91866
|
args: args91,
|
|
91863
91867
|
tool: async (client, args92, ctx) => {
|
|
@@ -91991,7 +91995,7 @@ var init_invoicesCreateInvoicePayment2 = __esm(() => {
|
|
|
91991
91995
|
description: `Creates a payment resource to represent that an invoice was paid outside of the Moov platform.
|
|
91992
91996
|
If a payment link was created for the invoice, the corresponding payment link is canceled, but a receipt is still sent.
|
|
91993
91997
|
|
|
91994
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
91998
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
91995
91999
|
you'll need to specify the \`/accounts/{accountID}/invoices.write\` scope.`,
|
|
91996
92000
|
args: args92,
|
|
91997
92001
|
tool: async (client, args93, ctx) => {
|
|
@@ -92106,7 +92110,7 @@ var init_invoicesGetInvoice2 = __esm(() => {
|
|
|
92106
92110
|
name: "invoices-get-invoice",
|
|
92107
92111
|
description: `Retrieve an invoice by ID.
|
|
92108
92112
|
|
|
92109
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
92113
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
92110
92114
|
you'll need to specify the \`/accounts/{accountID}/invoices.read\` scope.`,
|
|
92111
92115
|
args: args93,
|
|
92112
92116
|
tool: async (client, args94, ctx) => {
|
|
@@ -92221,7 +92225,7 @@ var init_invoicesListInvoicePayments2 = __esm(() => {
|
|
|
92221
92225
|
name: "invoices-list-invoice-payments",
|
|
92222
92226
|
description: `List all the payments made towards an invoice.
|
|
92223
92227
|
|
|
92224
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
92228
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
92225
92229
|
you'll need to specify the \`/accounts/{accountID}/invoices.read\` scope.`,
|
|
92226
92230
|
args: args94,
|
|
92227
92231
|
tool: async (client, args95, ctx) => {
|
|
@@ -92346,7 +92350,7 @@ var init_invoicesListInvoices2 = __esm(() => {
|
|
|
92346
92350
|
name: "invoices-list-invoices",
|
|
92347
92351
|
description: `List all the invoices created under a Moov account.
|
|
92348
92352
|
|
|
92349
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
92353
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
92350
92354
|
you'll need to specify the \`/accounts/{accountID}/invoices.read\` scope.`,
|
|
92351
92355
|
args: args95,
|
|
92352
92356
|
tool: async (client, args96, ctx) => {
|
|
@@ -92475,7 +92479,7 @@ var init_invoicesUpdateInvoice2 = __esm(() => {
|
|
|
92475
92479
|
name: "invoices-update-invoice",
|
|
92476
92480
|
description: `Updates an invoice.
|
|
92477
92481
|
|
|
92478
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
92482
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
92479
92483
|
you'll need to specify the \`/accounts/{accountID}/invoices.write\` scope.`,
|
|
92480
92484
|
args: args96,
|
|
92481
92485
|
tool: async (client, args97, ctx) => {
|
|
@@ -102249,7 +102253,7 @@ var init_webhooksUpdate2 = __esm(() => {
|
|
|
102249
102253
|
function createMCPServer(deps) {
|
|
102250
102254
|
const server = new McpServer({
|
|
102251
102255
|
name: "Moov",
|
|
102252
|
-
version: "0.22.
|
|
102256
|
+
version: "0.22.21"
|
|
102253
102257
|
});
|
|
102254
102258
|
const client = new MoovCore({
|
|
102255
102259
|
security: deps.security,
|
|
@@ -103829,7 +103833,7 @@ var routes = rn({
|
|
|
103829
103833
|
var app = Ve(routes, {
|
|
103830
103834
|
name: "mcp",
|
|
103831
103835
|
versionInfo: {
|
|
103832
|
-
currentVersion: "0.22.
|
|
103836
|
+
currentVersion: "0.22.21"
|
|
103833
103837
|
}
|
|
103834
103838
|
});
|
|
103835
103839
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -103837,5 +103841,5 @@ export {
|
|
|
103837
103841
|
app
|
|
103838
103842
|
};
|
|
103839
103843
|
|
|
103840
|
-
//# debugId=
|
|
103844
|
+
//# debugId=2A0DDA3A8875D69364756E2164756E21
|
|
103841
103845
|
//# sourceMappingURL=mcp-server.js.map
|