@moovio/sdk 25.11.5 → 25.11.6
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/bin/mcp-server.js +5 -5
- package/bin/mcp-server.js.map +16 -16
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/createdtransfer.d.ts +1 -1
- package/models/components/createpaymentlink.d.ts +1 -1
- package/models/components/createpaymentlinklineitems.d.ts +1 -1
- package/models/components/createpaymentlinklineitemsupdate.d.ts +1 -1
- package/models/components/createtransfer.d.ts +1 -1
- package/models/components/createtransferlineitems.d.ts +1 -1
- package/models/components/paymentlink.d.ts +1 -1
- package/models/components/paymentlinklineitems.d.ts +1 -1
- package/models/components/transfer.d.ts +1 -1
- package/models/components/transferlineitems.d.ts +1 -1
- package/models/components/updatepaymentlink.d.ts +1 -1
- package/models/errors/transfer.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/createdtransfer.ts +1 -1
- package/src/models/components/createpaymentlink.ts +1 -1
- package/src/models/components/createpaymentlinklineitems.ts +1 -1
- package/src/models/components/createpaymentlinklineitemsupdate.ts +1 -1
- package/src/models/components/createtransfer.ts +1 -1
- package/src/models/components/createtransferlineitems.ts +1 -1
- package/src/models/components/paymentlink.ts +1 -1
- package/src/models/components/paymentlinklineitems.ts +1 -1
- package/src/models/components/transfer.ts +1 -1
- package/src/models/components/transferlineitems.ts +1 -1
- package/src/models/components/updatepaymentlink.ts +1 -1
- package/src/models/errors/transfer.ts +2 -2
package/jsr.json
CHANGED
package/lib/config.d.ts
CHANGED
|
@@ -35,8 +35,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
35
35
|
export declare const SDK_METADATA: {
|
|
36
36
|
readonly language: "typescript";
|
|
37
37
|
readonly openapiDocVersion: "v2025.10.00";
|
|
38
|
-
readonly sdkVersion: "25.11.
|
|
38
|
+
readonly sdkVersion: "25.11.6";
|
|
39
39
|
readonly genVersion: "2.882.0";
|
|
40
|
-
readonly userAgent: "speakeasy-sdk/typescript 25.11.
|
|
40
|
+
readonly userAgent: "speakeasy-sdk/typescript 25.11.6 2.882.0 v2025.10.00 @moovio/sdk";
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=config.d.ts.map
|
package/lib/config.js
CHANGED
|
@@ -31,8 +31,8 @@ function serverURLFromOptions(options) {
|
|
|
31
31
|
exports.SDK_METADATA = {
|
|
32
32
|
language: "typescript",
|
|
33
33
|
openapiDocVersion: "v2025.10.00",
|
|
34
|
-
sdkVersion: "25.11.
|
|
34
|
+
sdkVersion: "25.11.6",
|
|
35
35
|
genVersion: "2.882.0",
|
|
36
|
-
userAgent: "speakeasy-sdk/typescript 25.11.
|
|
36
|
+
userAgent: "speakeasy-sdk/typescript 25.11.6 2.882.0 v2025.10.00 @moovio/sdk",
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.js.map
|
package/mcp-server/mcp-server.js
CHANGED
|
@@ -22,7 +22,7 @@ const routes = (0, core_1.buildRouteMap)({
|
|
|
22
22
|
exports.app = (0, core_1.buildApplication)(routes, {
|
|
23
23
|
name: "mcp",
|
|
24
24
|
versionInfo: {
|
|
25
|
-
currentVersion: "25.11.
|
|
25
|
+
currentVersion: "25.11.6",
|
|
26
26
|
},
|
|
27
27
|
});
|
|
28
28
|
(0, core_1.run)(exports.app, node_process_1.default.argv.slice(2), (0, cli_js_1.buildContext)(node_process_1.default));
|
package/mcp-server/server.js
CHANGED
|
@@ -184,7 +184,7 @@ const webhooksUpdate_js_1 = require("./tools/webhooksUpdate.js");
|
|
|
184
184
|
function createMCPServer(deps) {
|
|
185
185
|
const server = new mcp_js_1.McpServer({
|
|
186
186
|
name: "Moov",
|
|
187
|
-
version: "25.11.
|
|
187
|
+
version: "25.11.6",
|
|
188
188
|
});
|
|
189
189
|
const client = new core_js_1.MoovCore({
|
|
190
190
|
security: deps.security,
|
|
@@ -75,7 +75,7 @@ export type CreatedTransfer = {
|
|
|
75
75
|
* An optional collection of line items for a transfer.
|
|
76
76
|
*
|
|
77
77
|
* @remarks
|
|
78
|
-
* When line items are provided, their total plus
|
|
78
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
79
79
|
*/
|
|
80
80
|
lineItems?: TransferLineItems | undefined;
|
|
81
81
|
};
|
|
@@ -66,7 +66,7 @@ export type CreatePaymentLink = {
|
|
|
66
66
|
* An optional collection of line items for a payment link.
|
|
67
67
|
*
|
|
68
68
|
* @remarks
|
|
69
|
-
* When line items are provided, their total plus
|
|
69
|
+
* When line items are provided, their total plus tax must equal the payment link amount.
|
|
70
70
|
*/
|
|
71
71
|
lineItems?: CreatePaymentLinkLineItems | undefined;
|
|
72
72
|
};
|
|
@@ -6,7 +6,7 @@ import { CreatePaymentLinkLineItem, CreatePaymentLinkLineItem$Outbound } from ".
|
|
|
6
6
|
* An optional collection of line items for a payment link.
|
|
7
7
|
*
|
|
8
8
|
* @remarks
|
|
9
|
-
* When line items are provided, their total plus
|
|
9
|
+
* When line items are provided, their total plus tax must equal the payment link amount.
|
|
10
10
|
*/
|
|
11
11
|
export type CreatePaymentLinkLineItems = {
|
|
12
12
|
/**
|
|
@@ -6,7 +6,7 @@ import { CreatePaymentLinkLineItem, CreatePaymentLinkLineItem$Outbound } from ".
|
|
|
6
6
|
* An optional collection of line items for a payment link.
|
|
7
7
|
*
|
|
8
8
|
* @remarks
|
|
9
|
-
* When line items are provided, their total plus
|
|
9
|
+
* When line items are provided, their total plus tax must equal the payment link amount.
|
|
10
10
|
*/
|
|
11
11
|
export type CreatePaymentLinkLineItemsUpdate = {
|
|
12
12
|
/**
|
|
@@ -39,7 +39,7 @@ export type CreateTransfer = {
|
|
|
39
39
|
* An optional collection of line items for a transfer.
|
|
40
40
|
*
|
|
41
41
|
* @remarks
|
|
42
|
-
* When line items are provided, their total plus
|
|
42
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
43
43
|
*/
|
|
44
44
|
lineItems?: CreateTransferLineItems | undefined;
|
|
45
45
|
};
|
|
@@ -6,7 +6,7 @@ import { CreateTransferLineItem, CreateTransferLineItem$Outbound } from "./creat
|
|
|
6
6
|
* An optional collection of line items for a transfer.
|
|
7
7
|
*
|
|
8
8
|
* @remarks
|
|
9
|
-
* When line items are provided, their total plus
|
|
9
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
10
10
|
*/
|
|
11
11
|
export type CreateTransferLineItems = {
|
|
12
12
|
/**
|
|
@@ -90,7 +90,7 @@ export type PaymentLink = {
|
|
|
90
90
|
* An optional collection of line items for a payment link.
|
|
91
91
|
*
|
|
92
92
|
* @remarks
|
|
93
|
-
* When line items are provided, their total plus
|
|
93
|
+
* When line items are provided, their total plus tax must equal the payment link amount.
|
|
94
94
|
*/
|
|
95
95
|
lineItems?: PaymentLinkLineItems | undefined;
|
|
96
96
|
createdOn: Date;
|
|
@@ -6,7 +6,7 @@ import { PaymentLinkLineItem, PaymentLinkLineItem$Outbound } from "./paymentlink
|
|
|
6
6
|
* An optional collection of line items for a payment link.
|
|
7
7
|
*
|
|
8
8
|
* @remarks
|
|
9
|
-
* When line items are provided, their total plus
|
|
9
|
+
* When line items are provided, their total plus tax must equal the payment link amount.
|
|
10
10
|
*/
|
|
11
11
|
export type PaymentLinkLineItems = {
|
|
12
12
|
/**
|
|
@@ -83,7 +83,7 @@ export type Transfer = {
|
|
|
83
83
|
* An optional collection of line items for a transfer.
|
|
84
84
|
*
|
|
85
85
|
* @remarks
|
|
86
|
-
* When line items are provided, their total plus
|
|
86
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
87
87
|
*/
|
|
88
88
|
lineItems?: TransferLineItems | undefined;
|
|
89
89
|
};
|
|
@@ -6,7 +6,7 @@ import { TransferLineItem, TransferLineItem$Outbound } from "./transferlineitem.
|
|
|
6
6
|
* An optional collection of line items for a transfer.
|
|
7
7
|
*
|
|
8
8
|
* @remarks
|
|
9
|
-
* When line items are provided, their total plus
|
|
9
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
10
10
|
*/
|
|
11
11
|
export type TransferLineItems = {
|
|
12
12
|
/**
|
|
@@ -25,7 +25,7 @@ export type UpdatePaymentLink = {
|
|
|
25
25
|
* An optional collection of line items for a payment link.
|
|
26
26
|
*
|
|
27
27
|
* @remarks
|
|
28
|
-
* When line items are provided, their total plus
|
|
28
|
+
* When line items are provided, their total plus tax must equal the payment link amount.
|
|
29
29
|
*/
|
|
30
30
|
lineItems?: CreatePaymentLinkLineItemsUpdate | undefined;
|
|
31
31
|
};
|
|
@@ -71,7 +71,7 @@ export type TransferData = {
|
|
|
71
71
|
* An optional collection of line items for a transfer.
|
|
72
72
|
*
|
|
73
73
|
* @remarks
|
|
74
|
-
* When line items are provided, their total plus
|
|
74
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
75
75
|
*/
|
|
76
76
|
lineItems?: components.TransferLineItems | undefined;
|
|
77
77
|
};
|
|
@@ -145,7 +145,7 @@ export declare class Transfer extends MoovError {
|
|
|
145
145
|
* An optional collection of line items for a transfer.
|
|
146
146
|
*
|
|
147
147
|
* @remarks
|
|
148
|
-
* When line items are provided, their total plus
|
|
148
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
149
149
|
*/
|
|
150
150
|
lineItems?: components.TransferLineItems | undefined;
|
|
151
151
|
/** The original data that was passed to this error instance. */
|
package/package.json
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -68,7 +68,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
68
68
|
export const SDK_METADATA = {
|
|
69
69
|
language: "typescript",
|
|
70
70
|
openapiDocVersion: "v2025.10.00",
|
|
71
|
-
sdkVersion: "25.11.
|
|
71
|
+
sdkVersion: "25.11.6",
|
|
72
72
|
genVersion: "2.882.0",
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 25.11.
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 25.11.6 2.882.0 v2025.10.00 @moovio/sdk",
|
|
74
74
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -132,7 +132,7 @@ export type CreatedTransfer = {
|
|
|
132
132
|
* An optional collection of line items for a transfer.
|
|
133
133
|
*
|
|
134
134
|
* @remarks
|
|
135
|
-
* When line items are provided, their total plus
|
|
135
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
136
136
|
*/
|
|
137
137
|
lineItems?: TransferLineItems | undefined;
|
|
138
138
|
};
|
|
@@ -102,7 +102,7 @@ export type CreatePaymentLink = {
|
|
|
102
102
|
* An optional collection of line items for a payment link.
|
|
103
103
|
*
|
|
104
104
|
* @remarks
|
|
105
|
-
* When line items are provided, their total plus
|
|
105
|
+
* When line items are provided, their total plus tax must equal the payment link amount.
|
|
106
106
|
*/
|
|
107
107
|
lineItems?: CreatePaymentLinkLineItems | undefined;
|
|
108
108
|
};
|
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
* An optional collection of line items for a payment link.
|
|
18
18
|
*
|
|
19
19
|
* @remarks
|
|
20
|
-
* When line items are provided, their total plus
|
|
20
|
+
* When line items are provided, their total plus tax must equal the payment link amount.
|
|
21
21
|
*/
|
|
22
22
|
export type CreatePaymentLinkLineItems = {
|
|
23
23
|
/**
|
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
* An optional collection of line items for a payment link.
|
|
18
18
|
*
|
|
19
19
|
* @remarks
|
|
20
|
-
* When line items are provided, their total plus
|
|
20
|
+
* When line items are provided, their total plus tax must equal the payment link amount.
|
|
21
21
|
*/
|
|
22
22
|
export type CreatePaymentLinkLineItemsUpdate = {
|
|
23
23
|
/**
|
|
@@ -68,7 +68,7 @@ export type CreateTransfer = {
|
|
|
68
68
|
* An optional collection of line items for a transfer.
|
|
69
69
|
*
|
|
70
70
|
* @remarks
|
|
71
|
-
* When line items are provided, their total plus
|
|
71
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
72
72
|
*/
|
|
73
73
|
lineItems?: CreateTransferLineItems | undefined;
|
|
74
74
|
};
|
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
* An optional collection of line items for a transfer.
|
|
18
18
|
*
|
|
19
19
|
* @remarks
|
|
20
|
-
* When line items are provided, their total plus
|
|
20
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
21
21
|
*/
|
|
22
22
|
export type CreateTransferLineItems = {
|
|
23
23
|
/**
|
|
@@ -134,7 +134,7 @@ export type PaymentLink = {
|
|
|
134
134
|
* An optional collection of line items for a payment link.
|
|
135
135
|
*
|
|
136
136
|
* @remarks
|
|
137
|
-
* When line items are provided, their total plus
|
|
137
|
+
* When line items are provided, their total plus tax must equal the payment link amount.
|
|
138
138
|
*/
|
|
139
139
|
lineItems?: PaymentLinkLineItems | undefined;
|
|
140
140
|
createdOn: Date;
|
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
* An optional collection of line items for a payment link.
|
|
18
18
|
*
|
|
19
19
|
* @remarks
|
|
20
|
-
* When line items are provided, their total plus
|
|
20
|
+
* When line items are provided, their total plus tax must equal the payment link amount.
|
|
21
21
|
*/
|
|
22
22
|
export type PaymentLinkLineItems = {
|
|
23
23
|
/**
|
|
@@ -145,7 +145,7 @@ export type Transfer = {
|
|
|
145
145
|
* An optional collection of line items for a transfer.
|
|
146
146
|
*
|
|
147
147
|
* @remarks
|
|
148
|
-
* When line items are provided, their total plus
|
|
148
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
149
149
|
*/
|
|
150
150
|
lineItems?: TransferLineItems | undefined;
|
|
151
151
|
};
|
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
* An optional collection of line items for a transfer.
|
|
18
18
|
*
|
|
19
19
|
* @remarks
|
|
20
|
-
* When line items are provided, their total plus
|
|
20
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
21
21
|
*/
|
|
22
22
|
export type TransferLineItems = {
|
|
23
23
|
/**
|
|
@@ -61,7 +61,7 @@ export type UpdatePaymentLink = {
|
|
|
61
61
|
* An optional collection of line items for a payment link.
|
|
62
62
|
*
|
|
63
63
|
* @remarks
|
|
64
|
-
* When line items are provided, their total plus
|
|
64
|
+
* When line items are provided, their total plus tax must equal the payment link amount.
|
|
65
65
|
*/
|
|
66
66
|
lineItems?: CreatePaymentLinkLineItemsUpdate | undefined;
|
|
67
67
|
};
|
|
@@ -74,7 +74,7 @@ export type TransferData = {
|
|
|
74
74
|
* An optional collection of line items for a transfer.
|
|
75
75
|
*
|
|
76
76
|
* @remarks
|
|
77
|
-
* When line items are provided, their total plus
|
|
77
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
78
78
|
*/
|
|
79
79
|
lineItems?: components.TransferLineItems | undefined;
|
|
80
80
|
};
|
|
@@ -147,7 +147,7 @@ export class Transfer extends MoovError {
|
|
|
147
147
|
* An optional collection of line items for a transfer.
|
|
148
148
|
*
|
|
149
149
|
* @remarks
|
|
150
|
-
* When line items are provided, their total plus
|
|
150
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
151
151
|
*/
|
|
152
152
|
lineItems?: components.TransferLineItems | undefined;
|
|
153
153
|
|