@moovio/sdk 0.14.13 → 0.14.15
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 +28 -8
- package/bin/mcp-server.js.map +11 -10
- 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/models/components/index.d.ts +1 -0
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +1 -0
- package/models/components/index.js.map +1 -1
- package/models/components/submissionintent.d.ts +28 -0
- package/models/components/submissionintent.d.ts.map +1 -0
- package/models/components/submissionintent.js +60 -0
- package/models/components/submissionintent.js.map +1 -0
- package/models/components/sweepconfig.d.ts +2 -2
- package/models/components/sweepconfigpaymentmethod.d.ts +1 -1
- package/models/components/upsertunderwriting.d.ts +3 -0
- package/models/components/upsertunderwriting.d.ts.map +1 -1
- package/models/components/upsertunderwriting.js +3 -0
- package/models/components/upsertunderwriting.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/models/components/index.ts +1 -0
- package/src/models/components/submissionintent.ts +33 -0
- package/src/models/components/sweepconfig.ts +2 -2
- package/src/models/components/sweepconfigpaymentmethod.ts +1 -1
- package/src/models/components/upsertunderwriting.ts +9 -0
package/bin/mcp-server.js
CHANGED
|
@@ -34175,9 +34175,9 @@ var init_config = __esm(() => {
|
|
|
34175
34175
|
SDK_METADATA = {
|
|
34176
34176
|
language: "typescript",
|
|
34177
34177
|
openapiDocVersion: "latest",
|
|
34178
|
-
sdkVersion: "0.14.
|
|
34179
|
-
genVersion: "2.
|
|
34180
|
-
userAgent: "speakeasy-sdk/typescript 0.14.
|
|
34178
|
+
sdkVersion: "0.14.15",
|
|
34179
|
+
genVersion: "2.666.0",
|
|
34180
|
+
userAgent: "speakeasy-sdk/typescript 0.14.15 2.666.0 latest @moovio/sdk"
|
|
34181
34181
|
};
|
|
34182
34182
|
});
|
|
34183
34183
|
|
|
@@ -44906,6 +44906,22 @@ var init_sendfundserror = __esm(() => {
|
|
|
44906
44906
|
})(SendFundsError$ ||= {});
|
|
44907
44907
|
});
|
|
44908
44908
|
|
|
44909
|
+
// src/models/components/submissionintent.ts
|
|
44910
|
+
var SubmissionIntent, SubmissionIntent$inboundSchema, SubmissionIntent$outboundSchema, SubmissionIntent$;
|
|
44911
|
+
var init_submissionintent = __esm(() => {
|
|
44912
|
+
init_esm();
|
|
44913
|
+
SubmissionIntent = {
|
|
44914
|
+
Wait: "wait",
|
|
44915
|
+
Submit: "submit"
|
|
44916
|
+
};
|
|
44917
|
+
SubmissionIntent$inboundSchema = nativeEnumType(SubmissionIntent);
|
|
44918
|
+
SubmissionIntent$outboundSchema = SubmissionIntent$inboundSchema;
|
|
44919
|
+
((SubmissionIntent$) => {
|
|
44920
|
+
SubmissionIntent$.inboundSchema = SubmissionIntent$inboundSchema;
|
|
44921
|
+
SubmissionIntent$.outboundSchema = SubmissionIntent$outboundSchema;
|
|
44922
|
+
})(SubmissionIntent$ ||= {});
|
|
44923
|
+
});
|
|
44924
|
+
|
|
44909
44925
|
// src/models/components/sweepstatus.ts
|
|
44910
44926
|
var SweepStatus, SweepStatus$inboundSchema, SweepStatus$outboundSchema, SweepStatus$;
|
|
44911
44927
|
var init_sweepstatus = __esm(() => {
|
|
@@ -45909,6 +45925,7 @@ var init_upsertunderwriting = __esm(() => {
|
|
|
45909
45925
|
init_moneytransfer();
|
|
45910
45926
|
init_pendinglitigation();
|
|
45911
45927
|
init_sendfunds();
|
|
45928
|
+
init_submissionintent();
|
|
45912
45929
|
init_volumesharebycustomertype();
|
|
45913
45930
|
UpsertUnderwriting$inboundSchema = objectType({
|
|
45914
45931
|
geographicReach: GeographicReach$inboundSchema.optional(),
|
|
@@ -45917,7 +45934,8 @@ var init_upsertunderwriting = __esm(() => {
|
|
|
45917
45934
|
volumeShareByCustomerType: VolumeShareByCustomerType$inboundSchema.optional(),
|
|
45918
45935
|
collectFunds: CollectFunds$inboundSchema.optional(),
|
|
45919
45936
|
moneyTransfer: MoneyTransfer$inboundSchema.optional(),
|
|
45920
|
-
sendFunds: SendFunds$inboundSchema.optional()
|
|
45937
|
+
sendFunds: SendFunds$inboundSchema.optional(),
|
|
45938
|
+
submissionIntent: SubmissionIntent$inboundSchema.optional()
|
|
45921
45939
|
});
|
|
45922
45940
|
UpsertUnderwriting$outboundSchema = objectType({
|
|
45923
45941
|
geographicReach: GeographicReach$outboundSchema.optional(),
|
|
@@ -45926,7 +45944,8 @@ var init_upsertunderwriting = __esm(() => {
|
|
|
45926
45944
|
volumeShareByCustomerType: VolumeShareByCustomerType$outboundSchema.optional(),
|
|
45927
45945
|
collectFunds: CollectFunds$outboundSchema.optional(),
|
|
45928
45946
|
moneyTransfer: MoneyTransfer$outboundSchema.optional(),
|
|
45929
|
-
sendFunds: SendFunds$outboundSchema.optional()
|
|
45947
|
+
sendFunds: SendFunds$outboundSchema.optional(),
|
|
45948
|
+
submissionIntent: SubmissionIntent$outboundSchema.optional()
|
|
45930
45949
|
});
|
|
45931
45950
|
((UpsertUnderwriting$) => {
|
|
45932
45951
|
UpsertUnderwriting$.inboundSchema = UpsertUnderwriting$inboundSchema;
|
|
@@ -47305,6 +47324,7 @@ var init_components = __esm(() => {
|
|
|
47305
47324
|
init_sentreceipt();
|
|
47306
47325
|
init_settings();
|
|
47307
47326
|
init_sourcedestinationoptions();
|
|
47327
|
+
init_submissionintent();
|
|
47308
47328
|
init_sweep();
|
|
47309
47329
|
init_sweepconfig();
|
|
47310
47330
|
init_sweepconfigpaymentmethod();
|
|
@@ -75988,7 +76008,7 @@ you'll need to specify the \`/accounts/{accountID}/wallets.read\` scope.`,
|
|
|
75988
76008
|
function createMCPServer(deps) {
|
|
75989
76009
|
const server = new McpServer({
|
|
75990
76010
|
name: "Moov",
|
|
75991
|
-
version: "0.14.
|
|
76011
|
+
version: "0.14.15"
|
|
75992
76012
|
});
|
|
75993
76013
|
const client = new MoovCore({
|
|
75994
76014
|
security: deps.security,
|
|
@@ -77498,7 +77518,7 @@ var routes = rn({
|
|
|
77498
77518
|
var app = Ve(routes, {
|
|
77499
77519
|
name: "mcp",
|
|
77500
77520
|
versionInfo: {
|
|
77501
|
-
currentVersion: "0.14.
|
|
77521
|
+
currentVersion: "0.14.15"
|
|
77502
77522
|
}
|
|
77503
77523
|
});
|
|
77504
77524
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -77506,5 +77526,5 @@ export {
|
|
|
77506
77526
|
app
|
|
77507
77527
|
};
|
|
77508
77528
|
|
|
77509
|
-
//# debugId=
|
|
77529
|
+
//# debugId=34947BC433FBEB4364756E2164756E21
|
|
77510
77530
|
//# sourceMappingURL=mcp-server.js.map
|