@moovio/sdk 0.5.1 → 0.5.3
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 +89 -36
- package/bin/mcp-server.js.map +14 -14
- package/funcs/walletTransactionsList.js +1 -0
- package/funcs/walletTransactionsList.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/achtransactiondetails.d.ts +2 -0
- package/models/components/achtransactiondetails.d.ts.map +1 -1
- package/models/components/achtransactiondetails.js +3 -0
- package/models/components/achtransactiondetails.js.map +1 -1
- package/models/components/cancellationstatus.d.ts +3 -0
- package/models/components/cancellationstatus.d.ts.map +1 -1
- package/models/components/cancellationstatus.js +1 -0
- package/models/components/cancellationstatus.js.map +1 -1
- package/models/components/patchsweepconfig.d.ts +162 -20
- package/models/components/patchsweepconfig.d.ts.map +1 -1
- package/models/components/patchsweepconfig.js +169 -12
- package/models/components/patchsweepconfig.js.map +1 -1
- package/models/components/transfer.d.ts +4 -4
- package/models/components/transfer.d.ts.map +1 -1
- package/models/components/transfer.js +4 -4
- package/models/components/transfer.js.map +1 -1
- package/models/components/transferdestination.d.ts +5 -1
- package/models/components/transferdestination.d.ts.map +1 -1
- package/models/components/transferdestination.js +3 -2
- package/models/components/transferdestination.js.map +1 -1
- package/models/components/transfersource.d.ts +10 -1
- package/models/components/transfersource.d.ts.map +1 -1
- package/models/components/transfersource.js +5 -2
- package/models/components/transfersource.js.map +1 -1
- package/models/errors/transfer.d.ts +6 -6
- package/models/errors/transfer.d.ts.map +1 -1
- package/models/errors/transfer.js +6 -8
- package/models/errors/transfer.js.map +1 -1
- package/models/operations/listwallettransactions.d.ts +5 -0
- package/models/operations/listwallettransactions.d.ts.map +1 -1
- package/models/operations/listwallettransactions.js +4 -0
- package/models/operations/listwallettransactions.js.map +1 -1
- package/package.json +1 -1
- package/src/funcs/walletTransactionsList.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/achtransactiondetails.ts +5 -0
- package/src/models/components/cancellationstatus.ts +1 -0
- package/src/models/components/patchsweepconfig.ts +376 -34
- package/src/models/components/transfer.ts +8 -8
- package/src/models/components/transferdestination.ts +11 -3
- package/src/models/components/transfersource.ts +18 -3
- package/src/models/errors/transfer.ts +12 -12
- package/src/models/operations/listwallettransactions.ts +9 -0
package/bin/mcp-server.js
CHANGED
|
@@ -34213,9 +34213,9 @@ var init_config = __esm(() => {
|
|
|
34213
34213
|
SDK_METADATA = {
|
|
34214
34214
|
language: "typescript",
|
|
34215
34215
|
openapiDocVersion: "latest",
|
|
34216
|
-
sdkVersion: "0.5.
|
|
34217
|
-
genVersion: "2.
|
|
34218
|
-
userAgent: "speakeasy-sdk/typescript 0.5.
|
|
34216
|
+
sdkVersion: "0.5.3",
|
|
34217
|
+
genVersion: "2.533.0",
|
|
34218
|
+
userAgent: "speakeasy-sdk/typescript 0.5.3 2.533.0 latest @moovio/sdk"
|
|
34219
34219
|
};
|
|
34220
34220
|
});
|
|
34221
34221
|
|
|
@@ -36601,6 +36601,7 @@ var init_achtransactiondetails = __esm(() => {
|
|
|
36601
36601
|
originatedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36602
36602
|
correctedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36603
36603
|
returnedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36604
|
+
failedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36604
36605
|
completedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36605
36606
|
debitHoldPeriod: DebitHoldPeriod$inboundSchema.optional()
|
|
36606
36607
|
});
|
|
@@ -36616,6 +36617,7 @@ var init_achtransactiondetails = __esm(() => {
|
|
|
36616
36617
|
originatedOn: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36617
36618
|
correctedOn: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36618
36619
|
returnedOn: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36620
|
+
failedOn: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36619
36621
|
completedOn: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36620
36622
|
debitHoldPeriod: DebitHoldPeriod$outboundSchema.optional()
|
|
36621
36623
|
});
|
|
@@ -37798,7 +37800,8 @@ var init_cancellationstatus = __esm(() => {
|
|
|
37798
37800
|
init_lib();
|
|
37799
37801
|
CancellationStatus = {
|
|
37800
37802
|
Pending: "pending",
|
|
37801
|
-
Completed: "completed"
|
|
37803
|
+
Completed: "completed",
|
|
37804
|
+
Failed: "failed"
|
|
37802
37805
|
};
|
|
37803
37806
|
CancellationStatus$inboundSchema = nativeEnumType(CancellationStatus);
|
|
37804
37807
|
CancellationStatus$outboundSchema = CancellationStatus$inboundSchema;
|
|
@@ -42389,23 +42392,68 @@ var init_patchaccounterror = __esm(() => {
|
|
|
42389
42392
|
});
|
|
42390
42393
|
|
|
42391
42394
|
// src/models/components/patchsweepconfig.ts
|
|
42392
|
-
var PatchSweepConfig$inboundSchema, PatchSweepConfig$outboundSchema, PatchSweepConfig$;
|
|
42395
|
+
var Status, Status$inboundSchema, Status$outboundSchema, Status$, PushPaymentMethodId2$inboundSchema, PushPaymentMethodId2$outboundSchema, PushPaymentMethodId2$, PushPaymentMethodID$inboundSchema, PushPaymentMethodID$outboundSchema, PushPaymentMethodID$, PullPaymentMethodId2$inboundSchema, PullPaymentMethodId2$outboundSchema, PullPaymentMethodId2$, PullPaymentMethodID$inboundSchema, PullPaymentMethodID$outboundSchema, PullPaymentMethodID$, StatementDescriptor2$inboundSchema, StatementDescriptor2$outboundSchema, StatementDescriptor2$, StatementDescriptor$inboundSchema, StatementDescriptor$outboundSchema, StatementDescriptor$, PatchSweepConfig$inboundSchema, PatchSweepConfig$outboundSchema, PatchSweepConfig$;
|
|
42393
42396
|
var init_patchsweepconfig = __esm(() => {
|
|
42394
42397
|
init_lib();
|
|
42395
|
-
|
|
42398
|
+
Status = {
|
|
42399
|
+
Enabled: "enabled",
|
|
42400
|
+
Disabled: "disabled"
|
|
42401
|
+
};
|
|
42402
|
+
Status$inboundSchema = nativeEnumType(Status);
|
|
42403
|
+
Status$outboundSchema = Status$inboundSchema;
|
|
42404
|
+
((Status$) => {
|
|
42405
|
+
Status$.inboundSchema = Status$inboundSchema;
|
|
42406
|
+
Status$.outboundSchema = Status$outboundSchema;
|
|
42407
|
+
})(Status$ ||= {});
|
|
42408
|
+
PushPaymentMethodId2$inboundSchema = objectType({});
|
|
42409
|
+
PushPaymentMethodId2$outboundSchema = objectType({});
|
|
42410
|
+
((PushPaymentMethodId2$) => {
|
|
42411
|
+
PushPaymentMethodId2$.inboundSchema = PushPaymentMethodId2$inboundSchema;
|
|
42412
|
+
PushPaymentMethodId2$.outboundSchema = PushPaymentMethodId2$outboundSchema;
|
|
42413
|
+
})(PushPaymentMethodId2$ ||= {});
|
|
42414
|
+
PushPaymentMethodID$inboundSchema = unionType([lazyType(() => PushPaymentMethodId2$inboundSchema), stringType()]);
|
|
42415
|
+
PushPaymentMethodID$outboundSchema = unionType([lazyType(() => PushPaymentMethodId2$outboundSchema), stringType()]);
|
|
42416
|
+
((PushPaymentMethodID$) => {
|
|
42417
|
+
PushPaymentMethodID$.inboundSchema = PushPaymentMethodID$inboundSchema;
|
|
42418
|
+
PushPaymentMethodID$.outboundSchema = PushPaymentMethodID$outboundSchema;
|
|
42419
|
+
})(PushPaymentMethodID$ ||= {});
|
|
42420
|
+
PullPaymentMethodId2$inboundSchema = objectType({});
|
|
42421
|
+
PullPaymentMethodId2$outboundSchema = objectType({});
|
|
42422
|
+
((PullPaymentMethodId2$) => {
|
|
42423
|
+
PullPaymentMethodId2$.inboundSchema = PullPaymentMethodId2$inboundSchema;
|
|
42424
|
+
PullPaymentMethodId2$.outboundSchema = PullPaymentMethodId2$outboundSchema;
|
|
42425
|
+
})(PullPaymentMethodId2$ ||= {});
|
|
42426
|
+
PullPaymentMethodID$inboundSchema = unionType([lazyType(() => PullPaymentMethodId2$inboundSchema), stringType()]);
|
|
42427
|
+
PullPaymentMethodID$outboundSchema = unionType([lazyType(() => PullPaymentMethodId2$outboundSchema), stringType()]);
|
|
42428
|
+
((PullPaymentMethodID$) => {
|
|
42429
|
+
PullPaymentMethodID$.inboundSchema = PullPaymentMethodID$inboundSchema;
|
|
42430
|
+
PullPaymentMethodID$.outboundSchema = PullPaymentMethodID$outboundSchema;
|
|
42431
|
+
})(PullPaymentMethodID$ ||= {});
|
|
42432
|
+
StatementDescriptor2$inboundSchema = objectType({});
|
|
42433
|
+
StatementDescriptor2$outboundSchema = objectType({});
|
|
42434
|
+
((StatementDescriptor2$) => {
|
|
42435
|
+
StatementDescriptor2$.inboundSchema = StatementDescriptor2$inboundSchema;
|
|
42436
|
+
StatementDescriptor2$.outboundSchema = StatementDescriptor2$outboundSchema;
|
|
42437
|
+
})(StatementDescriptor2$ ||= {});
|
|
42438
|
+
StatementDescriptor$inboundSchema = unionType([lazyType(() => StatementDescriptor2$inboundSchema), stringType()]);
|
|
42439
|
+
StatementDescriptor$outboundSchema = unionType([lazyType(() => StatementDescriptor2$outboundSchema), stringType()]);
|
|
42440
|
+
((StatementDescriptor$) => {
|
|
42441
|
+
StatementDescriptor$.inboundSchema = StatementDescriptor$inboundSchema;
|
|
42442
|
+
StatementDescriptor$.outboundSchema = StatementDescriptor$outboundSchema;
|
|
42443
|
+
})(StatementDescriptor$ ||= {});
|
|
42396
42444
|
PatchSweepConfig$inboundSchema = objectType({
|
|
42397
|
-
status:
|
|
42398
|
-
pushPaymentMethodID: stringType().optional(),
|
|
42399
|
-
pullPaymentMethodID: stringType().optional(),
|
|
42400
|
-
statementDescriptor: stringType().optional(),
|
|
42401
|
-
minimumBalance: stringType().optional()
|
|
42445
|
+
status: nullableType(Status$inboundSchema).optional(),
|
|
42446
|
+
pushPaymentMethodID: nullableType(unionType([lazyType(() => PushPaymentMethodId2$inboundSchema), stringType()])).optional(),
|
|
42447
|
+
pullPaymentMethodID: nullableType(unionType([lazyType(() => PullPaymentMethodId2$inboundSchema), stringType()])).optional(),
|
|
42448
|
+
statementDescriptor: nullableType(unionType([lazyType(() => StatementDescriptor2$inboundSchema), stringType()])).optional(),
|
|
42449
|
+
minimumBalance: nullableType(stringType()).optional()
|
|
42402
42450
|
});
|
|
42403
42451
|
PatchSweepConfig$outboundSchema = objectType({
|
|
42404
|
-
status:
|
|
42405
|
-
pushPaymentMethodID: stringType().optional(),
|
|
42406
|
-
pullPaymentMethodID: stringType().optional(),
|
|
42407
|
-
statementDescriptor: stringType().optional(),
|
|
42408
|
-
minimumBalance: stringType().optional()
|
|
42452
|
+
status: nullableType(Status$outboundSchema).optional(),
|
|
42453
|
+
pushPaymentMethodID: nullableType(unionType([lazyType(() => PushPaymentMethodId2$outboundSchema), stringType()])).optional(),
|
|
42454
|
+
pullPaymentMethodID: nullableType(unionType([lazyType(() => PullPaymentMethodId2$outboundSchema), stringType()])).optional(),
|
|
42455
|
+
statementDescriptor: nullableType(unionType([lazyType(() => StatementDescriptor2$outboundSchema), stringType()])).optional(),
|
|
42456
|
+
minimumBalance: nullableType(stringType()).optional()
|
|
42409
42457
|
});
|
|
42410
42458
|
((PatchSweepConfig$) => {
|
|
42411
42459
|
PatchSweepConfig$.inboundSchema = PatchSweepConfig$inboundSchema;
|
|
@@ -43317,11 +43365,12 @@ var init_transferdestination = __esm(() => {
|
|
|
43317
43365
|
init_paymentmethodsbankaccount();
|
|
43318
43366
|
init_paymentmethodscard();
|
|
43319
43367
|
init_paymentmethodswallet();
|
|
43368
|
+
init_paymentmethodtype();
|
|
43320
43369
|
init_rtptransactiondetails();
|
|
43321
43370
|
init_transferaccount();
|
|
43322
43371
|
TransferDestination$inboundSchema = objectType({
|
|
43323
43372
|
paymentMethodID: stringType(),
|
|
43324
|
-
paymentMethodType:
|
|
43373
|
+
paymentMethodType: PaymentMethodType$inboundSchema,
|
|
43325
43374
|
account: TransferAccount$inboundSchema,
|
|
43326
43375
|
bankAccount: PaymentMethodsBankAccount$inboundSchema.optional(),
|
|
43327
43376
|
wallet: PaymentMethodsWallet$inboundSchema.optional(),
|
|
@@ -43333,7 +43382,7 @@ var init_transferdestination = __esm(() => {
|
|
|
43333
43382
|
});
|
|
43334
43383
|
TransferDestination$outboundSchema = objectType({
|
|
43335
43384
|
paymentMethodID: stringType(),
|
|
43336
|
-
paymentMethodType:
|
|
43385
|
+
paymentMethodType: PaymentMethodType$outboundSchema,
|
|
43337
43386
|
account: TransferAccount$outboundSchema,
|
|
43338
43387
|
bankAccount: PaymentMethodsBankAccount$outboundSchema.optional(),
|
|
43339
43388
|
wallet: PaymentMethodsWallet$outboundSchema.optional(),
|
|
@@ -43378,10 +43427,12 @@ var init_transfersource = __esm(() => {
|
|
|
43378
43427
|
init_paymentmethodsbankaccount();
|
|
43379
43428
|
init_paymentmethodscard();
|
|
43380
43429
|
init_paymentmethodswallet();
|
|
43430
|
+
init_paymentmethodtype();
|
|
43381
43431
|
init_transferaccount();
|
|
43382
43432
|
TransferSource$inboundSchema = objectType({
|
|
43433
|
+
transferID: stringType().optional(),
|
|
43383
43434
|
paymentMethodID: stringType(),
|
|
43384
|
-
paymentMethodType:
|
|
43435
|
+
paymentMethodType: PaymentMethodType$inboundSchema,
|
|
43385
43436
|
account: TransferAccount$inboundSchema,
|
|
43386
43437
|
bankAccount: PaymentMethodsBankAccount$inboundSchema.optional(),
|
|
43387
43438
|
wallet: PaymentMethodsWallet$inboundSchema.optional(),
|
|
@@ -43391,8 +43442,9 @@ var init_transfersource = __esm(() => {
|
|
|
43391
43442
|
achDetails: ACHTransactionDetails$inboundSchema.optional()
|
|
43392
43443
|
});
|
|
43393
43444
|
TransferSource$outboundSchema = objectType({
|
|
43445
|
+
transferID: stringType().optional(),
|
|
43394
43446
|
paymentMethodID: stringType(),
|
|
43395
|
-
paymentMethodType:
|
|
43447
|
+
paymentMethodType: PaymentMethodType$outboundSchema,
|
|
43396
43448
|
account: TransferAccount$outboundSchema,
|
|
43397
43449
|
bankAccount: PaymentMethodsBankAccount$outboundSchema.optional(),
|
|
43398
43450
|
wallet: PaymentMethodsWallet$outboundSchema.optional(),
|
|
@@ -43444,8 +43496,8 @@ var init_transfer = __esm(() => {
|
|
|
43444
43496
|
Transfer$inboundSchema = objectType({
|
|
43445
43497
|
transferID: stringType(),
|
|
43446
43498
|
createdOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)),
|
|
43447
|
-
source: TransferSource$inboundSchema
|
|
43448
|
-
destination: TransferDestination$inboundSchema
|
|
43499
|
+
source: TransferSource$inboundSchema,
|
|
43500
|
+
destination: TransferDestination$inboundSchema,
|
|
43449
43501
|
completedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
43450
43502
|
status: TransferStatus$inboundSchema,
|
|
43451
43503
|
failureReason: TransferFailureReason$inboundSchema.optional(),
|
|
@@ -43468,8 +43520,8 @@ var init_transfer = __esm(() => {
|
|
|
43468
43520
|
Transfer$outboundSchema = objectType({
|
|
43469
43521
|
transferID: stringType(),
|
|
43470
43522
|
createdOn: dateType().transform((v2) => v2.toISOString()),
|
|
43471
|
-
source: TransferSource$outboundSchema
|
|
43472
|
-
destination: TransferDestination$outboundSchema
|
|
43523
|
+
source: TransferSource$outboundSchema,
|
|
43524
|
+
destination: TransferDestination$outboundSchema,
|
|
43473
43525
|
completedOn: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
43474
43526
|
status: TransferStatus$outboundSchema,
|
|
43475
43527
|
failureReason: TransferFailureReason$outboundSchema.optional(),
|
|
@@ -45704,10 +45756,8 @@ var init_transfer2 = __esm(() => {
|
|
|
45704
45756
|
this.data$ = err;
|
|
45705
45757
|
this.transferID = err.transferID;
|
|
45706
45758
|
this.createdOn = err.createdOn;
|
|
45707
|
-
|
|
45708
|
-
|
|
45709
|
-
if (err.destination != null)
|
|
45710
|
-
this.destination = err.destination;
|
|
45759
|
+
this.source = err.source;
|
|
45760
|
+
this.destination = err.destination;
|
|
45711
45761
|
if (err.completedOn != null)
|
|
45712
45762
|
this.completedOn = err.completedOn;
|
|
45713
45763
|
this.status = err.status;
|
|
@@ -45748,8 +45798,8 @@ var init_transfer2 = __esm(() => {
|
|
|
45748
45798
|
Transfer$inboundSchema2 = objectType({
|
|
45749
45799
|
transferID: stringType(),
|
|
45750
45800
|
createdOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)),
|
|
45751
|
-
source: TransferSource$inboundSchema
|
|
45752
|
-
destination: TransferDestination$inboundSchema
|
|
45801
|
+
source: TransferSource$inboundSchema,
|
|
45802
|
+
destination: TransferDestination$inboundSchema,
|
|
45753
45803
|
completedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
45754
45804
|
status: TransferStatus$inboundSchema,
|
|
45755
45805
|
failureReason: TransferFailureReason$inboundSchema.optional(),
|
|
@@ -45774,8 +45824,8 @@ var init_transfer2 = __esm(() => {
|
|
|
45774
45824
|
Transfer$outboundSchema2 = instanceOfType(Transfer2).transform((v2) => v2.data$).pipe(objectType({
|
|
45775
45825
|
transferID: stringType(),
|
|
45776
45826
|
createdOn: dateType().transform((v2) => v2.toISOString()),
|
|
45777
|
-
source: TransferSource$outboundSchema
|
|
45778
|
-
destination: TransferDestination$outboundSchema
|
|
45827
|
+
source: TransferSource$outboundSchema,
|
|
45828
|
+
destination: TransferDestination$outboundSchema,
|
|
45779
45829
|
completedOn: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
45780
45830
|
status: TransferStatus$outboundSchema,
|
|
45781
45831
|
failureReason: TransferFailureReason$outboundSchema.optional(),
|
|
@@ -52521,6 +52571,7 @@ var init_listwallettransactions = __esm(() => {
|
|
|
52521
52571
|
count: numberType().int().optional(),
|
|
52522
52572
|
walletID: stringType(),
|
|
52523
52573
|
transactionType: WalletTransactionType$inboundSchema.optional(),
|
|
52574
|
+
transactionTypes: arrayType(WalletTransactionType$inboundSchema).optional(),
|
|
52524
52575
|
sourceType: WalletTransactionSourceType$inboundSchema.optional(),
|
|
52525
52576
|
sourceID: stringType().optional(),
|
|
52526
52577
|
status: WalletTransactionStatus$inboundSchema.optional(),
|
|
@@ -52536,6 +52587,7 @@ var init_listwallettransactions = __esm(() => {
|
|
|
52536
52587
|
count: numberType().int().optional(),
|
|
52537
52588
|
walletID: stringType(),
|
|
52538
52589
|
transactionType: WalletTransactionType$outboundSchema.optional(),
|
|
52590
|
+
transactionTypes: arrayType(WalletTransactionType$outboundSchema).optional(),
|
|
52539
52591
|
sourceType: WalletTransactionSourceType$outboundSchema.optional(),
|
|
52540
52592
|
sourceID: stringType().optional(),
|
|
52541
52593
|
status: WalletTransactionStatus$outboundSchema.optional(),
|
|
@@ -69286,7 +69338,8 @@ async function $do127(client, request, options) {
|
|
|
69286
69338
|
sourceType: payload.sourceType,
|
|
69287
69339
|
status: payload.status,
|
|
69288
69340
|
sweepID: payload.sweepID,
|
|
69289
|
-
transactionType: payload.transactionType
|
|
69341
|
+
transactionType: payload.transactionType,
|
|
69342
|
+
transactionTypes: payload.transactionTypes
|
|
69290
69343
|
}, { explode: false });
|
|
69291
69344
|
const headers = new Headers(compactMap({
|
|
69292
69345
|
Accept: "application/json",
|
|
@@ -69386,7 +69439,7 @@ you'll need to specify the \`/accounts/{accountID}/wallets.read\` scope.`,
|
|
|
69386
69439
|
function createMCPServer(deps) {
|
|
69387
69440
|
const server = new McpServer({
|
|
69388
69441
|
name: "Moov",
|
|
69389
|
-
version: "0.5.
|
|
69442
|
+
version: "0.5.3"
|
|
69390
69443
|
});
|
|
69391
69444
|
const client = new MoovCore({
|
|
69392
69445
|
security: deps.security,
|
|
@@ -70860,7 +70913,7 @@ var routes = rn({
|
|
|
70860
70913
|
var app = Ve(routes, {
|
|
70861
70914
|
name: "mcp",
|
|
70862
70915
|
versionInfo: {
|
|
70863
|
-
currentVersion: "0.5.
|
|
70916
|
+
currentVersion: "0.5.3"
|
|
70864
70917
|
}
|
|
70865
70918
|
});
|
|
70866
70919
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -70868,5 +70921,5 @@ export {
|
|
|
70868
70921
|
app
|
|
70869
70922
|
};
|
|
70870
70923
|
|
|
70871
|
-
//# debugId=
|
|
70924
|
+
//# debugId=FFA3045C39D5518E64756E2164756E21
|
|
70872
70925
|
//# sourceMappingURL=mcp-server.js.map
|