@moovio/sdk 26.4.4 → 26.4.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.
- 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: "v2026.04.00";
|
|
38
|
-
readonly sdkVersion: "26.4.
|
|
38
|
+
readonly sdkVersion: "26.4.5";
|
|
39
39
|
readonly genVersion: "2.882.0";
|
|
40
|
-
readonly userAgent: "speakeasy-sdk/typescript 26.4.
|
|
40
|
+
readonly userAgent: "speakeasy-sdk/typescript 26.4.5 2.882.0 v2026.04.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: "v2026.04.00",
|
|
34
|
-
sdkVersion: "26.4.
|
|
34
|
+
sdkVersion: "26.4.5",
|
|
35
35
|
genVersion: "2.882.0",
|
|
36
|
-
userAgent: "speakeasy-sdk/typescript 26.4.
|
|
36
|
+
userAgent: "speakeasy-sdk/typescript 26.4.5 2.882.0 v2026.04.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: "26.4.
|
|
25
|
+
currentVersion: "26.4.5",
|
|
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
|
@@ -199,7 +199,7 @@ const webhooksUpdate_js_1 = require("./tools/webhooksUpdate.js");
|
|
|
199
199
|
function createMCPServer(deps) {
|
|
200
200
|
const server = new mcp_js_1.McpServer({
|
|
201
201
|
name: "Moov",
|
|
202
|
-
version: "26.4.
|
|
202
|
+
version: "26.4.5",
|
|
203
203
|
});
|
|
204
204
|
const client = new core_js_1.MoovCore({
|
|
205
205
|
security: deps.security,
|
|
@@ -76,7 +76,7 @@ export type CreatedTransfer = {
|
|
|
76
76
|
* An optional collection of line items for a transfer.
|
|
77
77
|
*
|
|
78
78
|
* @remarks
|
|
79
|
-
* When line items are provided, their total plus
|
|
79
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
80
80
|
*/
|
|
81
81
|
lineItems?: TransferLineItems | undefined;
|
|
82
82
|
amountDetails?: TransferAmountDetails | undefined;
|
|
@@ -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
|
/**
|
|
@@ -40,7 +40,7 @@ export type CreateTransfer = {
|
|
|
40
40
|
* An optional collection of line items for a transfer.
|
|
41
41
|
*
|
|
42
42
|
* @remarks
|
|
43
|
-
* When line items are provided, their total plus
|
|
43
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
44
44
|
*/
|
|
45
45
|
lineItems?: CreateTransferLineItems | undefined;
|
|
46
46
|
amountDetails?: CreateTransferAmountDetails | undefined;
|
|
@@ -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
|
/**
|
|
@@ -84,7 +84,7 @@ export type Transfer = {
|
|
|
84
84
|
* An optional collection of line items for a transfer.
|
|
85
85
|
*
|
|
86
86
|
* @remarks
|
|
87
|
-
* When line items are provided, their total plus
|
|
87
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
88
88
|
*/
|
|
89
89
|
lineItems?: TransferLineItems | undefined;
|
|
90
90
|
/**
|
|
@@ -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
|
/**
|
|
@@ -150,7 +150,7 @@ export declare class Transfer extends MoovError {
|
|
|
150
150
|
* An optional collection of line items for a transfer.
|
|
151
151
|
*
|
|
152
152
|
* @remarks
|
|
153
|
-
* When line items are provided, their total plus
|
|
153
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
154
154
|
*/
|
|
155
155
|
lineItems?: components.TransferLineItems | undefined;
|
|
156
156
|
/**
|
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: "v2026.04.00",
|
|
71
|
-
sdkVersion: "26.4.
|
|
71
|
+
sdkVersion: "26.4.5",
|
|
72
72
|
genVersion: "2.882.0",
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 26.4.
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 26.4.5 2.882.0 v2026.04.00 @moovio/sdk",
|
|
74
74
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -138,7 +138,7 @@ export type CreatedTransfer = {
|
|
|
138
138
|
* An optional collection of line items for a transfer.
|
|
139
139
|
*
|
|
140
140
|
* @remarks
|
|
141
|
-
* When line items are provided, their total plus
|
|
141
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
142
142
|
*/
|
|
143
143
|
lineItems?: TransferLineItems | undefined;
|
|
144
144
|
amountDetails?: TransferAmountDetails | undefined;
|
|
@@ -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
|
/**
|
|
@@ -74,7 +74,7 @@ export type CreateTransfer = {
|
|
|
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?: CreateTransferLineItems | undefined;
|
|
80
80
|
amountDetails?: CreateTransferAmountDetails | undefined;
|
|
@@ -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
|
/**
|
|
@@ -151,7 +151,7 @@ export type Transfer = {
|
|
|
151
151
|
* An optional collection of line items for a transfer.
|
|
152
152
|
*
|
|
153
153
|
* @remarks
|
|
154
|
-
* When line items are provided, their total plus
|
|
154
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
155
155
|
*/
|
|
156
156
|
lineItems?: TransferLineItems | undefined;
|
|
157
157
|
/**
|
|
@@ -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
|
/**
|
|
@@ -152,7 +152,7 @@ export class Transfer extends MoovError {
|
|
|
152
152
|
* An optional collection of line items for a transfer.
|
|
153
153
|
*
|
|
154
154
|
* @remarks
|
|
155
|
-
* When line items are provided, their total plus
|
|
155
|
+
* When line items are provided, their total plus tax must equal the transfer amount.
|
|
156
156
|
*/
|
|
157
157
|
lineItems?: components.TransferLineItems | undefined;
|
|
158
158
|
/**
|