@moovio/sdk 0.22.15 → 0.22.17
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 -15
- package/bin/mcp-server.js.map +12 -12
- 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/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/achfees.d.ts +5 -0
- package/models/components/achfees.d.ts.map +1 -1
- package/models/components/achfees.js +2 -0
- package/models/components/achfees.js.map +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/invoice.d.ts +3 -0
- package/models/components/invoice.d.ts.map +1 -1
- package/models/components/invoice.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/sdk/cards.d.ts +2 -2
- package/sdk/cards.js +2 -2
- package/src/funcs/productsList.ts +1 -0
- 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/models/components/achfees.ts +7 -0
- package/src/models/components/achtransactiondetails.ts +8 -8
- package/src/models/components/cardtransactiondetails.ts +4 -4
- package/src/models/components/invoice.ts +3 -0
- package/src/models/components/rtptransactiondetails.ts +4 -4
- package/src/models/operations/listproducts.ts +7 -0
- package/src/sdk/cards.ts +2 -2
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.17",
|
|
52417
|
+
genVersion: "2.796.1",
|
|
52418
|
+
userAgent: "speakeasy-sdk/typescript 0.22.17 2.796.1 latest @moovio/sdk"
|
|
52419
52419
|
};
|
|
52420
52420
|
});
|
|
52421
52421
|
|
|
@@ -55025,6 +55025,7 @@ var init_achfees = __esm(() => {
|
|
|
55025
55025
|
return: BillingCountAndAmount$inboundSchema,
|
|
55026
55026
|
unauthorizedReturn: BillingCountAndAmount$inboundSchema,
|
|
55027
55027
|
noticeOfChange: BillingCountAndAmount$inboundSchema,
|
|
55028
|
+
bankAccountVerification: BillingCountAndAmount$inboundSchema,
|
|
55028
55029
|
total: BillingCountAndAmount$inboundSchema
|
|
55029
55030
|
});
|
|
55030
55031
|
ACHFees$outboundSchema = objectType({
|
|
@@ -55034,6 +55035,7 @@ var init_achfees = __esm(() => {
|
|
|
55034
55035
|
return: BillingCountAndAmount$outboundSchema,
|
|
55035
55036
|
unauthorizedReturn: BillingCountAndAmount$outboundSchema,
|
|
55036
55037
|
noticeOfChange: BillingCountAndAmount$outboundSchema,
|
|
55038
|
+
bankAccountVerification: BillingCountAndAmount$outboundSchema,
|
|
55037
55039
|
total: BillingCountAndAmount$outboundSchema
|
|
55038
55040
|
});
|
|
55039
55041
|
});
|
|
@@ -55262,8 +55264,8 @@ var init_achtransactiondetails = __esm(() => {
|
|
|
55262
55264
|
init_seccode();
|
|
55263
55265
|
init_transferachaddendarecord();
|
|
55264
55266
|
ACHTransactionDetails$inboundSchema = objectType({
|
|
55265
|
-
status: ACHTransactionStatus$inboundSchema,
|
|
55266
|
-
traceNumber: stringType(),
|
|
55267
|
+
status: ACHTransactionStatus$inboundSchema.optional(),
|
|
55268
|
+
traceNumber: stringType().optional(),
|
|
55267
55269
|
return: ACHException$inboundSchema.optional(),
|
|
55268
55270
|
correction: ACHException$inboundSchema.optional(),
|
|
55269
55271
|
companyEntryDescription: stringType().optional(),
|
|
@@ -55280,8 +55282,8 @@ var init_achtransactiondetails = __esm(() => {
|
|
|
55280
55282
|
addenda: arrayType(TransferACHAddendaRecord$inboundSchema).optional()
|
|
55281
55283
|
});
|
|
55282
55284
|
ACHTransactionDetails$outboundSchema = objectType({
|
|
55283
|
-
status: ACHTransactionStatus$outboundSchema,
|
|
55284
|
-
traceNumber: stringType(),
|
|
55285
|
+
status: ACHTransactionStatus$outboundSchema.optional(),
|
|
55286
|
+
traceNumber: stringType().optional(),
|
|
55285
55287
|
return: ACHException$outboundSchema.optional(),
|
|
55286
55288
|
correction: ACHException$outboundSchema.optional(),
|
|
55287
55289
|
companyEntryDescription: stringType().optional(),
|
|
@@ -59700,7 +59702,7 @@ var init_cardtransactiondetails = __esm(() => {
|
|
|
59700
59702
|
init_cardtransactionstatus();
|
|
59701
59703
|
init_transactionsource();
|
|
59702
59704
|
CardTransactionDetails$inboundSchema = objectType({
|
|
59703
|
-
status: CardTransactionStatus$inboundSchema,
|
|
59705
|
+
status: CardTransactionStatus$inboundSchema.optional(),
|
|
59704
59706
|
failureCode: CardTransactionFailureCode$inboundSchema.optional(),
|
|
59705
59707
|
dynamicDescriptor: stringType().optional(),
|
|
59706
59708
|
transactionSource: TransactionSource$inboundSchema.optional(),
|
|
@@ -59715,7 +59717,7 @@ var init_cardtransactiondetails = __esm(() => {
|
|
|
59715
59717
|
authorizationCode: stringType().optional()
|
|
59716
59718
|
});
|
|
59717
59719
|
CardTransactionDetails$outboundSchema = objectType({
|
|
59718
|
-
status: CardTransactionStatus$outboundSchema,
|
|
59720
|
+
status: CardTransactionStatus$outboundSchema.optional(),
|
|
59719
59721
|
failureCode: CardTransactionFailureCode$outboundSchema.optional(),
|
|
59720
59722
|
dynamicDescriptor: stringType().optional(),
|
|
59721
59723
|
transactionSource: TransactionSource$outboundSchema.optional(),
|
|
@@ -60565,7 +60567,7 @@ var init_rtptransactiondetails = __esm(() => {
|
|
|
60565
60567
|
init_rtpfailurecode();
|
|
60566
60568
|
init_rtptransactionstatus();
|
|
60567
60569
|
RTPTransactionDetails$inboundSchema = objectType({
|
|
60568
|
-
status: RTPTransactionStatus$inboundSchema,
|
|
60570
|
+
status: RTPTransactionStatus$inboundSchema.optional(),
|
|
60569
60571
|
networkResponseCode: stringType().optional(),
|
|
60570
60572
|
failureCode: RTPFailureCode$inboundSchema.optional(),
|
|
60571
60573
|
initiatedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
@@ -60574,7 +60576,7 @@ var init_rtptransactiondetails = __esm(() => {
|
|
|
60574
60576
|
acceptedWithoutPostingOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional()
|
|
60575
60577
|
});
|
|
60576
60578
|
RTPTransactionDetails$outboundSchema = objectType({
|
|
60577
|
-
status: RTPTransactionStatus$outboundSchema,
|
|
60579
|
+
status: RTPTransactionStatus$outboundSchema.optional(),
|
|
60578
60580
|
networkResponseCode: stringType().optional(),
|
|
60579
60581
|
failureCode: RTPFailureCode$outboundSchema.optional(),
|
|
60580
60582
|
initiatedOn: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
@@ -77747,11 +77749,13 @@ var init_listproducts = __esm(() => {
|
|
|
77747
77749
|
});
|
|
77748
77750
|
ListProductsRequest$inboundSchema = objectType({
|
|
77749
77751
|
accountID: stringType(),
|
|
77752
|
+
title: stringType().optional(),
|
|
77750
77753
|
skip: numberType().int().optional(),
|
|
77751
77754
|
count: numberType().int().optional()
|
|
77752
77755
|
});
|
|
77753
77756
|
ListProductsRequest$outboundSchema = objectType({
|
|
77754
77757
|
accountID: stringType(),
|
|
77758
|
+
title: stringType().optional(),
|
|
77755
77759
|
skip: numberType().int().optional(),
|
|
77756
77760
|
count: numberType().int().optional()
|
|
77757
77761
|
});
|
|
@@ -94899,7 +94903,8 @@ async function $do118(client, request, options) {
|
|
|
94899
94903
|
const path = pathToFunc("/accounts/{accountID}/products")(pathParams);
|
|
94900
94904
|
const query = encodeFormQuery({
|
|
94901
94905
|
count: payload.count,
|
|
94902
|
-
skip: payload.skip
|
|
94906
|
+
skip: payload.skip,
|
|
94907
|
+
title: payload.title
|
|
94903
94908
|
}, { explode: false });
|
|
94904
94909
|
const headers = new Headers(compactMap({
|
|
94905
94910
|
Accept: "application/json",
|
|
@@ -102209,7 +102214,7 @@ var init_webhooksUpdate2 = __esm(() => {
|
|
|
102209
102214
|
function createMCPServer(deps) {
|
|
102210
102215
|
const server = new McpServer({
|
|
102211
102216
|
name: "Moov",
|
|
102212
|
-
version: "0.22.
|
|
102217
|
+
version: "0.22.17"
|
|
102213
102218
|
});
|
|
102214
102219
|
const client = new MoovCore({
|
|
102215
102220
|
security: deps.security,
|
|
@@ -103789,7 +103794,7 @@ var routes = rn({
|
|
|
103789
103794
|
var app = Ve(routes, {
|
|
103790
103795
|
name: "mcp",
|
|
103791
103796
|
versionInfo: {
|
|
103792
|
-
currentVersion: "0.22.
|
|
103797
|
+
currentVersion: "0.22.17"
|
|
103793
103798
|
}
|
|
103794
103799
|
});
|
|
103795
103800
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -103797,5 +103802,5 @@ export {
|
|
|
103797
103802
|
app
|
|
103798
103803
|
};
|
|
103799
103804
|
|
|
103800
|
-
//# debugId=
|
|
103805
|
+
//# debugId=7292C953C392A0F564756E2164756E21
|
|
103801
103806
|
//# sourceMappingURL=mcp-server.js.map
|