@moovio/sdk 0.15.4 → 0.15.6
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 +45 -40
- package/bin/mcp-server.js.map +10 -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/lib/config.js.map +1 -1
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/patchsweepconfig.d.ts +12 -12
- package/models/components/patchsweepconfig.d.ts.map +1 -1
- package/models/components/patchsweepconfig.js +12 -12
- package/models/components/patchsweepconfig.js.map +1 -1
- package/models/components/paymentmethodswallet.d.ts +12 -0
- package/models/components/paymentmethodswallet.d.ts.map +1 -1
- package/models/components/paymentmethodswallet.js +5 -0
- package/models/components/paymentmethodswallet.js.map +1 -1
- package/models/components/updaterepresentative.d.ts +4 -4
- package/models/components/updaterepresentative.d.ts.map +1 -1
- package/models/components/updaterepresentative.js +4 -4
- package/models/components/updaterepresentative.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/patchsweepconfig.ts +27 -27
- package/src/models/components/paymentmethodswallet.ts +20 -0
- package/src/models/components/updaterepresentative.ts +8 -8
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.15.
|
|
34179
|
-
genVersion: "2.716.
|
|
34180
|
-
userAgent: "speakeasy-sdk/typescript 0.15.
|
|
34178
|
+
sdkVersion: "0.15.6",
|
|
34179
|
+
genVersion: "2.716.16",
|
|
34180
|
+
userAgent: "speakeasy-sdk/typescript 0.15.6 2.716.16 latest @moovio/sdk"
|
|
34181
34181
|
};
|
|
34182
34182
|
});
|
|
34183
34183
|
|
|
@@ -42769,15 +42769,36 @@ var init_moovfeedetails = __esm(() => {
|
|
|
42769
42769
|
})(MoovFeeDetails$ ||= {});
|
|
42770
42770
|
});
|
|
42771
42771
|
|
|
42772
|
+
// src/models/components/wallettype.ts
|
|
42773
|
+
var WalletType, WalletType$inboundSchema, WalletType$outboundSchema, WalletType$;
|
|
42774
|
+
var init_wallettype = __esm(() => {
|
|
42775
|
+
init_esm();
|
|
42776
|
+
WalletType = {
|
|
42777
|
+
Default: "default",
|
|
42778
|
+
General: "general"
|
|
42779
|
+
};
|
|
42780
|
+
WalletType$inboundSchema = nativeEnumType(WalletType);
|
|
42781
|
+
WalletType$outboundSchema = WalletType$inboundSchema;
|
|
42782
|
+
((WalletType$) => {
|
|
42783
|
+
WalletType$.inboundSchema = WalletType$inboundSchema;
|
|
42784
|
+
WalletType$.outboundSchema = WalletType$outboundSchema;
|
|
42785
|
+
})(WalletType$ ||= {});
|
|
42786
|
+
});
|
|
42787
|
+
|
|
42772
42788
|
// src/models/components/paymentmethodswallet.ts
|
|
42773
42789
|
var PaymentMethodsWallet$inboundSchema, PaymentMethodsWallet$outboundSchema, PaymentMethodsWallet$;
|
|
42774
42790
|
var init_paymentmethodswallet = __esm(() => {
|
|
42775
42791
|
init_esm();
|
|
42792
|
+
init_wallettype();
|
|
42776
42793
|
PaymentMethodsWallet$inboundSchema = objectType({
|
|
42777
|
-
walletID: stringType()
|
|
42794
|
+
walletID: stringType(),
|
|
42795
|
+
partnerAccountID: stringType(),
|
|
42796
|
+
walletType: WalletType$inboundSchema
|
|
42778
42797
|
});
|
|
42779
42798
|
PaymentMethodsWallet$outboundSchema = objectType({
|
|
42780
|
-
walletID: stringType()
|
|
42799
|
+
walletID: stringType(),
|
|
42800
|
+
partnerAccountID: stringType(),
|
|
42801
|
+
walletType: WalletType$outboundSchema
|
|
42781
42802
|
});
|
|
42782
42803
|
((PaymentMethodsWallet$) => {
|
|
42783
42804
|
PaymentMethodsWallet$.inboundSchema = PaymentMethodsWallet$inboundSchema;
|
|
@@ -46648,8 +46669,8 @@ var init_patchsweepconfig = __esm(() => {
|
|
|
46648
46669
|
PushPaymentMethodId2$.inboundSchema = PushPaymentMethodId2$inboundSchema;
|
|
46649
46670
|
PushPaymentMethodId2$.outboundSchema = PushPaymentMethodId2$outboundSchema;
|
|
46650
46671
|
})(PushPaymentMethodId2$ ||= {});
|
|
46651
|
-
PushPaymentMethodID$inboundSchema = unionType([lazyType(() => PushPaymentMethodId2$inboundSchema)
|
|
46652
|
-
PushPaymentMethodID$outboundSchema = unionType([lazyType(() => PushPaymentMethodId2$outboundSchema)
|
|
46672
|
+
PushPaymentMethodID$inboundSchema = unionType([stringType(), lazyType(() => PushPaymentMethodId2$inboundSchema)]);
|
|
46673
|
+
PushPaymentMethodID$outboundSchema = unionType([stringType(), lazyType(() => PushPaymentMethodId2$outboundSchema)]);
|
|
46653
46674
|
((PushPaymentMethodID$) => {
|
|
46654
46675
|
PushPaymentMethodID$.inboundSchema = PushPaymentMethodID$inboundSchema;
|
|
46655
46676
|
PushPaymentMethodID$.outboundSchema = PushPaymentMethodID$outboundSchema;
|
|
@@ -46660,8 +46681,8 @@ var init_patchsweepconfig = __esm(() => {
|
|
|
46660
46681
|
PullPaymentMethodId2$.inboundSchema = PullPaymentMethodId2$inboundSchema;
|
|
46661
46682
|
PullPaymentMethodId2$.outboundSchema = PullPaymentMethodId2$outboundSchema;
|
|
46662
46683
|
})(PullPaymentMethodId2$ ||= {});
|
|
46663
|
-
PullPaymentMethodID$inboundSchema = unionType([lazyType(() => PullPaymentMethodId2$inboundSchema)
|
|
46664
|
-
PullPaymentMethodID$outboundSchema = unionType([lazyType(() => PullPaymentMethodId2$outboundSchema)
|
|
46684
|
+
PullPaymentMethodID$inboundSchema = unionType([stringType(), lazyType(() => PullPaymentMethodId2$inboundSchema)]);
|
|
46685
|
+
PullPaymentMethodID$outboundSchema = unionType([stringType(), lazyType(() => PullPaymentMethodId2$outboundSchema)]);
|
|
46665
46686
|
((PullPaymentMethodID$) => {
|
|
46666
46687
|
PullPaymentMethodID$.inboundSchema = PullPaymentMethodID$inboundSchema;
|
|
46667
46688
|
PullPaymentMethodID$.outboundSchema = PullPaymentMethodID$outboundSchema;
|
|
@@ -46672,24 +46693,24 @@ var init_patchsweepconfig = __esm(() => {
|
|
|
46672
46693
|
StatementDescriptor2$.inboundSchema = StatementDescriptor2$inboundSchema;
|
|
46673
46694
|
StatementDescriptor2$.outboundSchema = StatementDescriptor2$outboundSchema;
|
|
46674
46695
|
})(StatementDescriptor2$ ||= {});
|
|
46675
|
-
StatementDescriptor$inboundSchema = unionType([lazyType(() => StatementDescriptor2$inboundSchema)
|
|
46676
|
-
StatementDescriptor$outboundSchema = unionType([lazyType(() => StatementDescriptor2$outboundSchema)
|
|
46696
|
+
StatementDescriptor$inboundSchema = unionType([stringType(), lazyType(() => StatementDescriptor2$inboundSchema)]);
|
|
46697
|
+
StatementDescriptor$outboundSchema = unionType([stringType(), lazyType(() => StatementDescriptor2$outboundSchema)]);
|
|
46677
46698
|
((StatementDescriptor$) => {
|
|
46678
46699
|
StatementDescriptor$.inboundSchema = StatementDescriptor$inboundSchema;
|
|
46679
46700
|
StatementDescriptor$.outboundSchema = StatementDescriptor$outboundSchema;
|
|
46680
46701
|
})(StatementDescriptor$ ||= {});
|
|
46681
46702
|
PatchSweepConfig$inboundSchema = objectType({
|
|
46682
46703
|
status: nullableType(Status$inboundSchema).optional(),
|
|
46683
|
-
pushPaymentMethodID: nullableType(unionType([lazyType(() => PushPaymentMethodId2$inboundSchema)
|
|
46684
|
-
pullPaymentMethodID: nullableType(unionType([lazyType(() => PullPaymentMethodId2$inboundSchema)
|
|
46685
|
-
statementDescriptor: nullableType(unionType([lazyType(() => StatementDescriptor2$inboundSchema)
|
|
46704
|
+
pushPaymentMethodID: nullableType(unionType([stringType(), lazyType(() => PushPaymentMethodId2$inboundSchema)])).optional(),
|
|
46705
|
+
pullPaymentMethodID: nullableType(unionType([stringType(), lazyType(() => PullPaymentMethodId2$inboundSchema)])).optional(),
|
|
46706
|
+
statementDescriptor: nullableType(unionType([stringType(), lazyType(() => StatementDescriptor2$inboundSchema)])).optional(),
|
|
46686
46707
|
minimumBalance: nullableType(stringType()).optional()
|
|
46687
46708
|
});
|
|
46688
46709
|
PatchSweepConfig$outboundSchema = objectType({
|
|
46689
46710
|
status: nullableType(Status$outboundSchema).optional(),
|
|
46690
|
-
pushPaymentMethodID: nullableType(unionType([lazyType(() => PushPaymentMethodId2$outboundSchema)
|
|
46691
|
-
pullPaymentMethodID: nullableType(unionType([lazyType(() => PullPaymentMethodId2$outboundSchema)
|
|
46692
|
-
statementDescriptor: nullableType(unionType([lazyType(() => StatementDescriptor2$outboundSchema)
|
|
46711
|
+
pushPaymentMethodID: nullableType(unionType([stringType(), lazyType(() => PushPaymentMethodId2$outboundSchema)])).optional(),
|
|
46712
|
+
pullPaymentMethodID: nullableType(unionType([stringType(), lazyType(() => PullPaymentMethodId2$outboundSchema)])).optional(),
|
|
46713
|
+
statementDescriptor: nullableType(unionType([stringType(), lazyType(() => StatementDescriptor2$outboundSchema)])).optional(),
|
|
46693
46714
|
minimumBalance: nullableType(stringType()).optional()
|
|
46694
46715
|
});
|
|
46695
46716
|
((PatchSweepConfig$) => {
|
|
@@ -48613,8 +48634,8 @@ var init_updaterepresentative = __esm(() => {
|
|
|
48613
48634
|
Two$.inboundSchema = Two$inboundSchema;
|
|
48614
48635
|
Two$.outboundSchema = Two$outboundSchema;
|
|
48615
48636
|
})(Two$ ||= {});
|
|
48616
|
-
Email$inboundSchema = unionType([lazyType(() => Two$inboundSchema)
|
|
48617
|
-
Email$outboundSchema = unionType([lazyType(() => Two$outboundSchema)
|
|
48637
|
+
Email$inboundSchema = unionType([stringType(), lazyType(() => Two$inboundSchema)]);
|
|
48638
|
+
Email$outboundSchema = unionType([stringType(), lazyType(() => Two$outboundSchema)]);
|
|
48618
48639
|
((Email$) => {
|
|
48619
48640
|
Email$.inboundSchema = Email$inboundSchema;
|
|
48620
48641
|
Email$.outboundSchema = Email$outboundSchema;
|
|
@@ -48708,7 +48729,7 @@ var init_updaterepresentative = __esm(() => {
|
|
|
48708
48729
|
UpdateRepresentative$inboundSchema = objectType({
|
|
48709
48730
|
name: IndividualNameUpdate$inboundSchema.optional(),
|
|
48710
48731
|
phone: nullableType(lazyType(() => Phone$inboundSchema)).optional(),
|
|
48711
|
-
email: nullableType(unionType([lazyType(() => Two$inboundSchema)
|
|
48732
|
+
email: nullableType(unionType([stringType(), lazyType(() => Two$inboundSchema)])).optional(),
|
|
48712
48733
|
address: nullableType(lazyType(() => UpdateRepresentativeAddress$inboundSchema)).optional(),
|
|
48713
48734
|
birthDate: nullableType(lazyType(() => UpdateRepresentativeBirthDate$inboundSchema)).optional(),
|
|
48714
48735
|
governmentID: nullableType(lazyType(() => UpdateRepresentativeGovernmentID$inboundSchema)).optional(),
|
|
@@ -48717,7 +48738,7 @@ var init_updaterepresentative = __esm(() => {
|
|
|
48717
48738
|
UpdateRepresentative$outboundSchema = objectType({
|
|
48718
48739
|
name: IndividualNameUpdate$outboundSchema.optional(),
|
|
48719
48740
|
phone: nullableType(lazyType(() => Phone$outboundSchema)).optional(),
|
|
48720
|
-
email: nullableType(unionType([lazyType(() => Two$outboundSchema)
|
|
48741
|
+
email: nullableType(unionType([stringType(), lazyType(() => Two$outboundSchema)])).optional(),
|
|
48721
48742
|
address: nullableType(lazyType(() => UpdateRepresentativeAddress$outboundSchema)).optional(),
|
|
48722
48743
|
birthDate: nullableType(lazyType(() => UpdateRepresentativeBirthDate$outboundSchema)).optional(),
|
|
48723
48744
|
governmentID: nullableType(lazyType(() => UpdateRepresentativeGovernmentID$outboundSchema)).optional(),
|
|
@@ -48908,22 +48929,6 @@ var init_walletavailablebalance = __esm(() => {
|
|
|
48908
48929
|
})(WalletAvailableBalance$ ||= {});
|
|
48909
48930
|
});
|
|
48910
48931
|
|
|
48911
|
-
// src/models/components/wallettype.ts
|
|
48912
|
-
var WalletType, WalletType$inboundSchema, WalletType$outboundSchema, WalletType$;
|
|
48913
|
-
var init_wallettype = __esm(() => {
|
|
48914
|
-
init_esm();
|
|
48915
|
-
WalletType = {
|
|
48916
|
-
Default: "default",
|
|
48917
|
-
General: "general"
|
|
48918
|
-
};
|
|
48919
|
-
WalletType$inboundSchema = nativeEnumType(WalletType);
|
|
48920
|
-
WalletType$outboundSchema = WalletType$inboundSchema;
|
|
48921
|
-
((WalletType$) => {
|
|
48922
|
-
WalletType$.inboundSchema = WalletType$inboundSchema;
|
|
48923
|
-
WalletType$.outboundSchema = WalletType$outboundSchema;
|
|
48924
|
-
})(WalletType$ ||= {});
|
|
48925
|
-
});
|
|
48926
|
-
|
|
48927
48932
|
// src/models/components/wallet.ts
|
|
48928
48933
|
var Wallet$inboundSchema, Wallet$outboundSchema, Wallet$;
|
|
48929
48934
|
var init_wallet = __esm(() => {
|
|
@@ -80229,7 +80234,7 @@ you'll need to specify the \`/accounts/{accountID}/wallets.read\` scope.`,
|
|
|
80229
80234
|
function createMCPServer(deps) {
|
|
80230
80235
|
const server = new McpServer({
|
|
80231
80236
|
name: "Moov",
|
|
80232
|
-
version: "0.15.
|
|
80237
|
+
version: "0.15.6"
|
|
80233
80238
|
});
|
|
80234
80239
|
const client = new MoovCore({
|
|
80235
80240
|
security: deps.security,
|
|
@@ -81747,7 +81752,7 @@ var routes = rn({
|
|
|
81747
81752
|
var app = Ve(routes, {
|
|
81748
81753
|
name: "mcp",
|
|
81749
81754
|
versionInfo: {
|
|
81750
|
-
currentVersion: "0.15.
|
|
81755
|
+
currentVersion: "0.15.6"
|
|
81751
81756
|
}
|
|
81752
81757
|
});
|
|
81753
81758
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -81755,5 +81760,5 @@ export {
|
|
|
81755
81760
|
app
|
|
81756
81761
|
};
|
|
81757
81762
|
|
|
81758
|
-
//# debugId=
|
|
81763
|
+
//# debugId=512B2F32EAB79B8864756E2164756E21
|
|
81759
81764
|
//# sourceMappingURL=mcp-server.js.map
|