@moovio/sdk 0.14.11 → 0.14.13
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 +19 -7
- package/bin/mcp-server.js.map +6 -6
- package/examples/README.md +5 -0
- package/examples/accountsCreate.example.ts +2 -0
- 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/requirementid.d.ts +36 -0
- package/models/components/requirementid.d.ts.map +1 -1
- package/models/components/requirementid.js +12 -0
- package/models/components/requirementid.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/requirementid.ts +19 -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.13",
|
|
34179
|
+
genVersion: "2.660.0",
|
|
34180
|
+
userAgent: "speakeasy-sdk/typescript 0.14.13 2.660.0 latest @moovio/sdk"
|
|
34181
34181
|
};
|
|
34182
34182
|
});
|
|
34183
34183
|
|
|
@@ -38213,7 +38213,19 @@ var init_requirementid = __esm(() => {
|
|
|
38213
38213
|
RepresentativeRepUuidIsController: "representative.{rep-uuid}.is-controller",
|
|
38214
38214
|
RepresentativeRepUuidIsOwner: "representative.{rep-uuid}.is-owner",
|
|
38215
38215
|
RepresentativeRepUuidOwnership: "representative.{rep-uuid}.ownership",
|
|
38216
|
-
DocumentDocUuid: "document.{doc-uuid}"
|
|
38216
|
+
DocumentDocUuid: "document.{doc-uuid}",
|
|
38217
|
+
UnderwritingBusinessPresence: "underwriting.businessPresence",
|
|
38218
|
+
UnderwritingCapabilityCardAcceptanceMethods: "underwriting.{capability}.cardAcceptanceMethods",
|
|
38219
|
+
UnderwritingCapabilityCurrentlyAcceptsCards: "underwriting.{capability}.currentlyAcceptsCards",
|
|
38220
|
+
UnderwritingCapabilityEstimatedActivityAverageTransactionAmount: "underwriting.{capability}.estimatedActivity.averageTransactionAmount",
|
|
38221
|
+
UnderwritingCapabilityEstimatedActivityMaximumTransactionAmount: "underwriting.{capability}.estimatedActivity.maximumTransactionAmount",
|
|
38222
|
+
UnderwritingCapabilityEstimatedActivityMonthlyVolumeRange: "underwriting.{capability}.estimatedActivity.monthlyVolumeRange",
|
|
38223
|
+
UnderwritingCapabilityFulfillment: "underwriting.{capability}.fulfillment",
|
|
38224
|
+
UnderwritingGeographicReach: "underwriting.geographicReach",
|
|
38225
|
+
UnderwritingPendingLitigation: "underwriting.pendingLitigation",
|
|
38226
|
+
UnderwritingDocumentsProcessingStatementsPast3Months: "underwriting.documents.processingStatementsPast3Months",
|
|
38227
|
+
UnderwritingCapabilityRefundPolicy: "underwriting.{capability}.refundPolicy",
|
|
38228
|
+
UnderwritingVolumeShareByCustomerType: "underwriting.volumeShareByCustomerType"
|
|
38217
38229
|
};
|
|
38218
38230
|
RequirementID$inboundSchema = nativeEnumType(RequirementID);
|
|
38219
38231
|
RequirementID$outboundSchema = RequirementID$inboundSchema;
|
|
@@ -75976,7 +75988,7 @@ you'll need to specify the \`/accounts/{accountID}/wallets.read\` scope.`,
|
|
|
75976
75988
|
function createMCPServer(deps) {
|
|
75977
75989
|
const server = new McpServer({
|
|
75978
75990
|
name: "Moov",
|
|
75979
|
-
version: "0.14.
|
|
75991
|
+
version: "0.14.13"
|
|
75980
75992
|
});
|
|
75981
75993
|
const client = new MoovCore({
|
|
75982
75994
|
security: deps.security,
|
|
@@ -77486,7 +77498,7 @@ var routes = rn({
|
|
|
77486
77498
|
var app = Ve(routes, {
|
|
77487
77499
|
name: "mcp",
|
|
77488
77500
|
versionInfo: {
|
|
77489
|
-
currentVersion: "0.14.
|
|
77501
|
+
currentVersion: "0.14.13"
|
|
77490
77502
|
}
|
|
77491
77503
|
});
|
|
77492
77504
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -77494,5 +77506,5 @@ export {
|
|
|
77494
77506
|
app
|
|
77495
77507
|
};
|
|
77496
77508
|
|
|
77497
|
-
//# debugId=
|
|
77509
|
+
//# debugId=84BA8E749D37135364756E2164756E21
|
|
77498
77510
|
//# sourceMappingURL=mcp-server.js.map
|