@moovio/sdk 0.22.14 → 0.22.16
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 +20 -17
- package/bin/mcp-server.js.map +11 -11
- package/examples/package-lock.json +2 -2
- package/funcs/productsList.js +1 -0
- package/funcs/productsList.js.map +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/lib/sdks.js +2 -2
- package/lib/sdks.js.map +1 -1
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/achtransactiondetails.d.ts +4 -4
- package/models/components/achtransactiondetails.d.ts.map +1 -1
- package/models/components/achtransactiondetails.js +4 -4
- package/models/components/achtransactiondetails.js.map +1 -1
- package/models/components/cardtransactiondetails.d.ts +2 -2
- package/models/components/cardtransactiondetails.d.ts.map +1 -1
- package/models/components/cardtransactiondetails.js +2 -2
- package/models/components/cardtransactiondetails.js.map +1 -1
- package/models/components/rtptransactiondetails.d.ts +2 -2
- package/models/components/rtptransactiondetails.d.ts.map +1 -1
- package/models/components/rtptransactiondetails.js +2 -2
- package/models/components/rtptransactiondetails.js.map +1 -1
- package/models/operations/listproducts.d.ts +5 -0
- package/models/operations/listproducts.d.ts.map +1 -1
- package/models/operations/listproducts.js +2 -0
- package/models/operations/listproducts.js.map +1 -1
- package/package.json +2 -2
- package/src/funcs/productsList.ts +1 -0
- package/src/lib/config.ts +3 -3
- package/src/lib/sdks.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/achtransactiondetails.ts +8 -8
- package/src/models/components/cardtransactiondetails.ts +4 -4
- package/src/models/components/rtptransactiondetails.ts +4 -4
- package/src/models/operations/listproducts.ts +7 -0
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.16",
|
|
52417
|
+
genVersion: "2.795.6",
|
|
52418
|
+
userAgent: "speakeasy-sdk/typescript 0.22.16 2.795.6 latest @moovio/sdk"
|
|
52419
52419
|
};
|
|
52420
52420
|
});
|
|
52421
52421
|
|
|
@@ -53353,8 +53353,8 @@ var init_sdks = __esm(() => {
|
|
|
53353
53353
|
gt = typeof globalThis === "undefined" ? null : globalThis;
|
|
53354
53354
|
webWorkerLike = typeof gt === "object" && gt != null && "importScripts" in gt && typeof gt["importScripts"] === "function";
|
|
53355
53355
|
isBrowserLike = webWorkerLike || typeof navigator !== "undefined" && "serviceWorker" in navigator || typeof window === "object" && typeof window.document !== "undefined";
|
|
53356
|
-
jsonLikeContentTypeRE =
|
|
53357
|
-
jsonlLikeContentTypeRE =
|
|
53356
|
+
jsonLikeContentTypeRE = /^(application|text)\/([^+]+\+)*json.*/;
|
|
53357
|
+
jsonlLikeContentTypeRE = /^(application|text)\/([^+]+\+)*(jsonl|x-ndjson)\b.*/;
|
|
53358
53358
|
});
|
|
53359
53359
|
|
|
53360
53360
|
// src/core.ts
|
|
@@ -55262,8 +55262,8 @@ var init_achtransactiondetails = __esm(() => {
|
|
|
55262
55262
|
init_seccode();
|
|
55263
55263
|
init_transferachaddendarecord();
|
|
55264
55264
|
ACHTransactionDetails$inboundSchema = objectType({
|
|
55265
|
-
status: ACHTransactionStatus$inboundSchema,
|
|
55266
|
-
traceNumber: stringType(),
|
|
55265
|
+
status: ACHTransactionStatus$inboundSchema.optional(),
|
|
55266
|
+
traceNumber: stringType().optional(),
|
|
55267
55267
|
return: ACHException$inboundSchema.optional(),
|
|
55268
55268
|
correction: ACHException$inboundSchema.optional(),
|
|
55269
55269
|
companyEntryDescription: stringType().optional(),
|
|
@@ -55280,8 +55280,8 @@ var init_achtransactiondetails = __esm(() => {
|
|
|
55280
55280
|
addenda: arrayType(TransferACHAddendaRecord$inboundSchema).optional()
|
|
55281
55281
|
});
|
|
55282
55282
|
ACHTransactionDetails$outboundSchema = objectType({
|
|
55283
|
-
status: ACHTransactionStatus$outboundSchema,
|
|
55284
|
-
traceNumber: stringType(),
|
|
55283
|
+
status: ACHTransactionStatus$outboundSchema.optional(),
|
|
55284
|
+
traceNumber: stringType().optional(),
|
|
55285
55285
|
return: ACHException$outboundSchema.optional(),
|
|
55286
55286
|
correction: ACHException$outboundSchema.optional(),
|
|
55287
55287
|
companyEntryDescription: stringType().optional(),
|
|
@@ -59700,7 +59700,7 @@ var init_cardtransactiondetails = __esm(() => {
|
|
|
59700
59700
|
init_cardtransactionstatus();
|
|
59701
59701
|
init_transactionsource();
|
|
59702
59702
|
CardTransactionDetails$inboundSchema = objectType({
|
|
59703
|
-
status: CardTransactionStatus$inboundSchema,
|
|
59703
|
+
status: CardTransactionStatus$inboundSchema.optional(),
|
|
59704
59704
|
failureCode: CardTransactionFailureCode$inboundSchema.optional(),
|
|
59705
59705
|
dynamicDescriptor: stringType().optional(),
|
|
59706
59706
|
transactionSource: TransactionSource$inboundSchema.optional(),
|
|
@@ -59715,7 +59715,7 @@ var init_cardtransactiondetails = __esm(() => {
|
|
|
59715
59715
|
authorizationCode: stringType().optional()
|
|
59716
59716
|
});
|
|
59717
59717
|
CardTransactionDetails$outboundSchema = objectType({
|
|
59718
|
-
status: CardTransactionStatus$outboundSchema,
|
|
59718
|
+
status: CardTransactionStatus$outboundSchema.optional(),
|
|
59719
59719
|
failureCode: CardTransactionFailureCode$outboundSchema.optional(),
|
|
59720
59720
|
dynamicDescriptor: stringType().optional(),
|
|
59721
59721
|
transactionSource: TransactionSource$outboundSchema.optional(),
|
|
@@ -60565,7 +60565,7 @@ var init_rtptransactiondetails = __esm(() => {
|
|
|
60565
60565
|
init_rtpfailurecode();
|
|
60566
60566
|
init_rtptransactionstatus();
|
|
60567
60567
|
RTPTransactionDetails$inboundSchema = objectType({
|
|
60568
|
-
status: RTPTransactionStatus$inboundSchema,
|
|
60568
|
+
status: RTPTransactionStatus$inboundSchema.optional(),
|
|
60569
60569
|
networkResponseCode: stringType().optional(),
|
|
60570
60570
|
failureCode: RTPFailureCode$inboundSchema.optional(),
|
|
60571
60571
|
initiatedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
@@ -60574,7 +60574,7 @@ var init_rtptransactiondetails = __esm(() => {
|
|
|
60574
60574
|
acceptedWithoutPostingOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional()
|
|
60575
60575
|
});
|
|
60576
60576
|
RTPTransactionDetails$outboundSchema = objectType({
|
|
60577
|
-
status: RTPTransactionStatus$outboundSchema,
|
|
60577
|
+
status: RTPTransactionStatus$outboundSchema.optional(),
|
|
60578
60578
|
networkResponseCode: stringType().optional(),
|
|
60579
60579
|
failureCode: RTPFailureCode$outboundSchema.optional(),
|
|
60580
60580
|
initiatedOn: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
@@ -77747,11 +77747,13 @@ var init_listproducts = __esm(() => {
|
|
|
77747
77747
|
});
|
|
77748
77748
|
ListProductsRequest$inboundSchema = objectType({
|
|
77749
77749
|
accountID: stringType(),
|
|
77750
|
+
title: stringType().optional(),
|
|
77750
77751
|
skip: numberType().int().optional(),
|
|
77751
77752
|
count: numberType().int().optional()
|
|
77752
77753
|
});
|
|
77753
77754
|
ListProductsRequest$outboundSchema = objectType({
|
|
77754
77755
|
accountID: stringType(),
|
|
77756
|
+
title: stringType().optional(),
|
|
77755
77757
|
skip: numberType().int().optional(),
|
|
77756
77758
|
count: numberType().int().optional()
|
|
77757
77759
|
});
|
|
@@ -94899,7 +94901,8 @@ async function $do118(client, request, options) {
|
|
|
94899
94901
|
const path = pathToFunc("/accounts/{accountID}/products")(pathParams);
|
|
94900
94902
|
const query = encodeFormQuery({
|
|
94901
94903
|
count: payload.count,
|
|
94902
|
-
skip: payload.skip
|
|
94904
|
+
skip: payload.skip,
|
|
94905
|
+
title: payload.title
|
|
94903
94906
|
}, { explode: false });
|
|
94904
94907
|
const headers = new Headers(compactMap({
|
|
94905
94908
|
Accept: "application/json",
|
|
@@ -102209,7 +102212,7 @@ var init_webhooksUpdate2 = __esm(() => {
|
|
|
102209
102212
|
function createMCPServer(deps) {
|
|
102210
102213
|
const server = new McpServer({
|
|
102211
102214
|
name: "Moov",
|
|
102212
|
-
version: "0.22.
|
|
102215
|
+
version: "0.22.16"
|
|
102213
102216
|
});
|
|
102214
102217
|
const client = new MoovCore({
|
|
102215
102218
|
security: deps.security,
|
|
@@ -103789,7 +103792,7 @@ var routes = rn({
|
|
|
103789
103792
|
var app = Ve(routes, {
|
|
103790
103793
|
name: "mcp",
|
|
103791
103794
|
versionInfo: {
|
|
103792
|
-
currentVersion: "0.22.
|
|
103795
|
+
currentVersion: "0.22.16"
|
|
103793
103796
|
}
|
|
103794
103797
|
});
|
|
103795
103798
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -103797,5 +103800,5 @@ export {
|
|
|
103797
103800
|
app
|
|
103798
103801
|
};
|
|
103799
103802
|
|
|
103800
|
-
//# debugId=
|
|
103803
|
+
//# debugId=C4122DFC932E3B9264756E2164756E21
|
|
103801
103804
|
//# sourceMappingURL=mcp-server.js.map
|