@moovio/sdk 0.5.2 → 0.5.4
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 +105 -92
- package/bin/mcp-server.js.map +23 -23
- package/docs/sdks/feeplans/README.md +8 -0
- package/funcs/feePlansListFeePlanAgreements.js +2 -0
- package/funcs/feePlansListFeePlanAgreements.js.map +1 -1
- package/funcs/feePlansListPartnerPricingAgreements.js +2 -0
- package/funcs/feePlansListPartnerPricingAgreements.js.map +1 -1
- 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/feecategory.d.ts +15 -12
- package/models/components/feecategory.d.ts.map +1 -1
- package/models/components/feecategory.js +5 -4
- package/models/components/feecategory.js.map +1 -1
- package/models/components/governmentid.d.ts +30 -30
- package/models/components/governmentid.d.ts.map +1 -1
- package/models/components/governmentid.js +35 -38
- package/models/components/governmentid.js.map +1 -1
- package/models/components/governmentiderror.d.ts +30 -30
- package/models/components/governmentiderror.d.ts.map +1 -1
- package/models/components/governmentiderror.js +38 -35
- package/models/components/governmentiderror.js.map +1 -1
- package/models/components/onboardinginvite.d.ts +6 -1
- package/models/components/onboardinginvite.d.ts.map +1 -1
- package/models/components/onboardinginvite.js +3 -10
- package/models/components/onboardinginvite.js.map +1 -1
- package/models/components/patchsweepconfig.d.ts +2 -2
- package/models/components/patchsweepconfig.d.ts.map +1 -1
- package/models/components/patchsweepconfig.js +2 -2
- package/models/components/patchsweepconfig.js.map +1 -1
- package/models/components/taxid.d.ts +15 -15
- package/models/components/taxid.d.ts.map +1 -1
- package/models/components/taxid.js +18 -20
- package/models/components/taxid.js.map +1 -1
- package/models/components/taxidupdate.d.ts +15 -15
- package/models/components/taxidupdate.d.ts.map +1 -1
- package/models/components/taxidupdate.js +20 -18
- package/models/components/taxidupdate.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/listfeeplanagreements.d.ts +4 -0
- package/models/operations/listfeeplanagreements.d.ts.map +1 -1
- package/models/operations/listfeeplanagreements.js +4 -0
- package/models/operations/listfeeplanagreements.js.map +1 -1
- package/models/operations/listpartnerpricingagreements.d.ts +4 -0
- package/models/operations/listpartnerpricingagreements.d.ts.map +1 -1
- package/models/operations/listpartnerpricingagreements.js +4 -0
- package/models/operations/listpartnerpricingagreements.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/feePlansListFeePlanAgreements.ts +2 -0
- package/src/funcs/feePlansListPartnerPricingAgreements.ts +2 -0
- 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/feecategory.ts +5 -4
- package/src/models/components/governmentid.ts +76 -58
- package/src/models/components/governmentiderror.ts +58 -78
- package/src/models/components/onboardinginvite.ts +9 -11
- package/src/models/components/patchsweepconfig.ts +4 -4
- package/src/models/components/taxid.ts +33 -27
- package/src/models/components/taxidupdate.ts +27 -33
- 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/listfeeplanagreements.ts +8 -0
- package/src/models/operations/listpartnerpricingagreements.ts +8 -0
- 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.4",
|
|
34217
|
+
genVersion: "2.536.0",
|
|
34218
|
+
userAgent: "speakeasy-sdk/typescript 0.5.4 2.536.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
|
});
|
|
@@ -37536,14 +37538,15 @@ var FeeCategory, FeeCategory$inboundSchema, FeeCategory$outboundSchema, FeeCateg
|
|
|
37536
37538
|
var init_feecategory = __esm(() => {
|
|
37537
37539
|
init_lib();
|
|
37538
37540
|
FeeCategory = {
|
|
37539
|
-
CardAcquiring: "card-acquiring",
|
|
37540
|
-
CardPush: "card-push",
|
|
37541
|
-
CardPull: "card-pull",
|
|
37542
37541
|
Ach: "ach",
|
|
37543
|
-
|
|
37542
|
+
CardAcquiring: "card-acquiring",
|
|
37544
37543
|
CardOther: "card-other",
|
|
37544
|
+
CardPull: "card-pull",
|
|
37545
|
+
CardPush: "card-push",
|
|
37546
|
+
MonthlyPlatform: "monthly-platform",
|
|
37545
37547
|
NetworkPassthrough: "network-passthrough",
|
|
37546
|
-
Other: "other"
|
|
37548
|
+
Other: "other",
|
|
37549
|
+
Rtp: "rtp"
|
|
37547
37550
|
};
|
|
37548
37551
|
FeeCategory$inboundSchema = nativeEnumType(FeeCategory);
|
|
37549
37552
|
FeeCategory$outboundSchema = FeeCategory$inboundSchema;
|
|
@@ -38795,24 +38798,24 @@ var init_countrieserrors = __esm(() => {
|
|
|
38795
38798
|
});
|
|
38796
38799
|
|
|
38797
38800
|
// src/models/components/taxid.ts
|
|
38798
|
-
var
|
|
38801
|
+
var TaxIDEin$inboundSchema, TaxIDEin$outboundSchema, TaxIDEin$, TaxID$inboundSchema, TaxID$outboundSchema, TaxID$;
|
|
38799
38802
|
var init_taxid = __esm(() => {
|
|
38800
38803
|
init_lib();
|
|
38801
|
-
|
|
38804
|
+
TaxIDEin$inboundSchema = objectType({
|
|
38802
38805
|
number: stringType()
|
|
38803
38806
|
});
|
|
38804
|
-
|
|
38807
|
+
TaxIDEin$outboundSchema = objectType({
|
|
38805
38808
|
number: stringType()
|
|
38806
38809
|
});
|
|
38807
|
-
((
|
|
38808
|
-
|
|
38809
|
-
|
|
38810
|
-
})(
|
|
38810
|
+
((TaxIDEin$) => {
|
|
38811
|
+
TaxIDEin$.inboundSchema = TaxIDEin$inboundSchema;
|
|
38812
|
+
TaxIDEin$.outboundSchema = TaxIDEin$outboundSchema;
|
|
38813
|
+
})(TaxIDEin$ ||= {});
|
|
38811
38814
|
TaxID$inboundSchema = objectType({
|
|
38812
|
-
ein: lazyType(() =>
|
|
38815
|
+
ein: lazyType(() => TaxIDEin$inboundSchema)
|
|
38813
38816
|
});
|
|
38814
38817
|
TaxID$outboundSchema = objectType({
|
|
38815
|
-
ein: lazyType(() =>
|
|
38818
|
+
ein: lazyType(() => TaxIDEin$outboundSchema)
|
|
38816
38819
|
});
|
|
38817
38820
|
((TaxID$) => {
|
|
38818
38821
|
TaxID$.inboundSchema = TaxID$inboundSchema;
|
|
@@ -38863,40 +38866,40 @@ var init_createbusinessprofile = __esm(() => {
|
|
|
38863
38866
|
});
|
|
38864
38867
|
|
|
38865
38868
|
// src/models/components/governmentid.ts
|
|
38866
|
-
var
|
|
38869
|
+
var GovernmentIDSsn$inboundSchema, GovernmentIDSsn$outboundSchema, GovernmentIDSsn$, GovernmentIDItin$inboundSchema, GovernmentIDItin$outboundSchema, GovernmentIDItin$, GovernmentID$inboundSchema, GovernmentID$outboundSchema, GovernmentID$;
|
|
38867
38870
|
var init_governmentid = __esm(() => {
|
|
38868
38871
|
init_lib();
|
|
38869
|
-
|
|
38872
|
+
GovernmentIDSsn$inboundSchema = objectType({
|
|
38870
38873
|
full: stringType().optional(),
|
|
38871
38874
|
lastFour: stringType().optional()
|
|
38872
38875
|
});
|
|
38873
|
-
|
|
38876
|
+
GovernmentIDSsn$outboundSchema = objectType({
|
|
38874
38877
|
full: stringType().optional(),
|
|
38875
38878
|
lastFour: stringType().optional()
|
|
38876
38879
|
});
|
|
38877
|
-
((
|
|
38878
|
-
|
|
38879
|
-
|
|
38880
|
-
})(
|
|
38881
|
-
|
|
38880
|
+
((GovernmentIDSsn$) => {
|
|
38881
|
+
GovernmentIDSsn$.inboundSchema = GovernmentIDSsn$inboundSchema;
|
|
38882
|
+
GovernmentIDSsn$.outboundSchema = GovernmentIDSsn$outboundSchema;
|
|
38883
|
+
})(GovernmentIDSsn$ ||= {});
|
|
38884
|
+
GovernmentIDItin$inboundSchema = objectType({
|
|
38882
38885
|
full: stringType().optional(),
|
|
38883
38886
|
lastFour: stringType().optional()
|
|
38884
38887
|
});
|
|
38885
|
-
|
|
38888
|
+
GovernmentIDItin$outboundSchema = objectType({
|
|
38886
38889
|
full: stringType().optional(),
|
|
38887
38890
|
lastFour: stringType().optional()
|
|
38888
38891
|
});
|
|
38889
|
-
((
|
|
38890
|
-
|
|
38891
|
-
|
|
38892
|
-
})(
|
|
38892
|
+
((GovernmentIDItin$) => {
|
|
38893
|
+
GovernmentIDItin$.inboundSchema = GovernmentIDItin$inboundSchema;
|
|
38894
|
+
GovernmentIDItin$.outboundSchema = GovernmentIDItin$outboundSchema;
|
|
38895
|
+
})(GovernmentIDItin$ ||= {});
|
|
38893
38896
|
GovernmentID$inboundSchema = objectType({
|
|
38894
|
-
ssn: lazyType(() =>
|
|
38895
|
-
itin: lazyType(() =>
|
|
38897
|
+
ssn: lazyType(() => GovernmentIDSsn$inboundSchema).optional(),
|
|
38898
|
+
itin: lazyType(() => GovernmentIDItin$inboundSchema).optional()
|
|
38896
38899
|
});
|
|
38897
38900
|
GovernmentID$outboundSchema = objectType({
|
|
38898
|
-
ssn: lazyType(() =>
|
|
38899
|
-
itin: lazyType(() =>
|
|
38901
|
+
ssn: lazyType(() => GovernmentIDSsn$outboundSchema).optional(),
|
|
38902
|
+
itin: lazyType(() => GovernmentIDItin$outboundSchema).optional()
|
|
38900
38903
|
});
|
|
38901
38904
|
((GovernmentID$) => {
|
|
38902
38905
|
GovernmentID$.inboundSchema = GovernmentID$inboundSchema;
|
|
@@ -41042,40 +41045,40 @@ var init_generatedby = __esm(() => {
|
|
|
41042
41045
|
});
|
|
41043
41046
|
|
|
41044
41047
|
// src/models/components/governmentiderror.ts
|
|
41045
|
-
var
|
|
41048
|
+
var Ssn$inboundSchema, Ssn$outboundSchema, Ssn$, Itin$inboundSchema, Itin$outboundSchema, Itin$, GovernmentIDError$inboundSchema, GovernmentIDError$outboundSchema, GovernmentIDError$;
|
|
41046
41049
|
var init_governmentiderror = __esm(() => {
|
|
41047
41050
|
init_lib();
|
|
41048
|
-
|
|
41051
|
+
Ssn$inboundSchema = objectType({
|
|
41049
41052
|
full: stringType().optional(),
|
|
41050
41053
|
lastFour: stringType().optional()
|
|
41051
41054
|
});
|
|
41052
|
-
|
|
41055
|
+
Ssn$outboundSchema = objectType({
|
|
41053
41056
|
full: stringType().optional(),
|
|
41054
41057
|
lastFour: stringType().optional()
|
|
41055
41058
|
});
|
|
41056
|
-
((
|
|
41057
|
-
|
|
41058
|
-
|
|
41059
|
-
})(
|
|
41060
|
-
|
|
41059
|
+
((Ssn$) => {
|
|
41060
|
+
Ssn$.inboundSchema = Ssn$inboundSchema;
|
|
41061
|
+
Ssn$.outboundSchema = Ssn$outboundSchema;
|
|
41062
|
+
})(Ssn$ ||= {});
|
|
41063
|
+
Itin$inboundSchema = objectType({
|
|
41061
41064
|
full: stringType().optional(),
|
|
41062
41065
|
lastFour: stringType().optional()
|
|
41063
41066
|
});
|
|
41064
|
-
|
|
41067
|
+
Itin$outboundSchema = objectType({
|
|
41065
41068
|
full: stringType().optional(),
|
|
41066
41069
|
lastFour: stringType().optional()
|
|
41067
41070
|
});
|
|
41068
|
-
((
|
|
41069
|
-
|
|
41070
|
-
|
|
41071
|
-
})(
|
|
41071
|
+
((Itin$) => {
|
|
41072
|
+
Itin$.inboundSchema = Itin$inboundSchema;
|
|
41073
|
+
Itin$.outboundSchema = Itin$outboundSchema;
|
|
41074
|
+
})(Itin$ ||= {});
|
|
41072
41075
|
GovernmentIDError$inboundSchema = objectType({
|
|
41073
|
-
ssn: lazyType(() =>
|
|
41074
|
-
itin: lazyType(() =>
|
|
41076
|
+
ssn: lazyType(() => Ssn$inboundSchema).optional(),
|
|
41077
|
+
itin: lazyType(() => Itin$inboundSchema).optional()
|
|
41075
41078
|
});
|
|
41076
41079
|
GovernmentIDError$outboundSchema = objectType({
|
|
41077
|
-
ssn: lazyType(() =>
|
|
41078
|
-
itin: lazyType(() =>
|
|
41080
|
+
ssn: lazyType(() => Ssn$outboundSchema).optional(),
|
|
41081
|
+
itin: lazyType(() => Itin$outboundSchema).optional()
|
|
41079
41082
|
});
|
|
41080
41083
|
((GovernmentIDError$) => {
|
|
41081
41084
|
GovernmentIDError$.inboundSchema = GovernmentIDError$inboundSchema;
|
|
@@ -42013,7 +42016,6 @@ var init_onboardingpartneraccount = __esm(() => {
|
|
|
42013
42016
|
var OnboardingInvite$inboundSchema, OnboardingInvite$outboundSchema, OnboardingInvite$;
|
|
42014
42017
|
var init_onboardinginvite = __esm(() => {
|
|
42015
42018
|
init_lib();
|
|
42016
|
-
init_primitives();
|
|
42017
42019
|
init_applicationscope();
|
|
42018
42020
|
init_capabilityid();
|
|
42019
42021
|
init_createaccount();
|
|
@@ -42022,19 +42024,16 @@ var init_onboardinginvite = __esm(() => {
|
|
|
42022
42024
|
code: stringType(),
|
|
42023
42025
|
link: stringType(),
|
|
42024
42026
|
returnURL: stringType().optional(),
|
|
42025
|
-
|
|
42027
|
+
termsOfServiceURL: stringType().optional(),
|
|
42026
42028
|
scopes: arrayType(ApplicationScope$inboundSchema),
|
|
42027
42029
|
capabilities: arrayType(CapabilityID$inboundSchema),
|
|
42028
42030
|
feePlanCodes: arrayType(stringType()),
|
|
42031
|
+
redeemedAccountID: stringType().optional(),
|
|
42029
42032
|
prefill: CreateAccount$inboundSchema.optional(),
|
|
42030
42033
|
partner: OnboardingPartnerAccount$inboundSchema.optional(),
|
|
42031
42034
|
createdOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)),
|
|
42032
42035
|
revokedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
42033
42036
|
redeemedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional()
|
|
42034
|
-
}).transform((v2) => {
|
|
42035
|
-
return remap(v2, {
|
|
42036
|
-
TermsOfServiceURL: "termsOfServiceURL"
|
|
42037
|
-
});
|
|
42038
42037
|
});
|
|
42039
42038
|
OnboardingInvite$outboundSchema = objectType({
|
|
42040
42039
|
code: stringType(),
|
|
@@ -42044,15 +42043,12 @@ var init_onboardinginvite = __esm(() => {
|
|
|
42044
42043
|
scopes: arrayType(ApplicationScope$outboundSchema),
|
|
42045
42044
|
capabilities: arrayType(CapabilityID$outboundSchema),
|
|
42046
42045
|
feePlanCodes: arrayType(stringType()),
|
|
42046
|
+
redeemedAccountID: stringType().optional(),
|
|
42047
42047
|
prefill: CreateAccount$outboundSchema.optional(),
|
|
42048
42048
|
partner: OnboardingPartnerAccount$outboundSchema.optional(),
|
|
42049
42049
|
createdOn: dateType().transform((v2) => v2.toISOString()),
|
|
42050
42050
|
revokedOn: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
42051
42051
|
redeemedOn: dateType().transform((v2) => v2.toISOString()).optional()
|
|
42052
|
-
}).transform((v2) => {
|
|
42053
|
-
return remap(v2, {
|
|
42054
|
-
termsOfServiceURL: "TermsOfServiceURL"
|
|
42055
|
-
});
|
|
42056
42052
|
});
|
|
42057
42053
|
((OnboardingInvite$) => {
|
|
42058
42054
|
OnboardingInvite$.inboundSchema = OnboardingInvite$inboundSchema;
|
|
@@ -42157,24 +42153,24 @@ var init_partnerpricingagreement = __esm(() => {
|
|
|
42157
42153
|
});
|
|
42158
42154
|
|
|
42159
42155
|
// src/models/components/taxidupdate.ts
|
|
42160
|
-
var
|
|
42156
|
+
var Ein$inboundSchema, Ein$outboundSchema, Ein$, TaxIDUpdate$inboundSchema, TaxIDUpdate$outboundSchema, TaxIDUpdate$;
|
|
42161
42157
|
var init_taxidupdate = __esm(() => {
|
|
42162
42158
|
init_lib();
|
|
42163
|
-
|
|
42159
|
+
Ein$inboundSchema = objectType({
|
|
42164
42160
|
number: stringType().optional()
|
|
42165
42161
|
});
|
|
42166
|
-
|
|
42162
|
+
Ein$outboundSchema = objectType({
|
|
42167
42163
|
number: stringType().optional()
|
|
42168
42164
|
});
|
|
42169
|
-
((
|
|
42170
|
-
|
|
42171
|
-
|
|
42172
|
-
})(
|
|
42165
|
+
((Ein$) => {
|
|
42166
|
+
Ein$.inboundSchema = Ein$inboundSchema;
|
|
42167
|
+
Ein$.outboundSchema = Ein$outboundSchema;
|
|
42168
|
+
})(Ein$ ||= {});
|
|
42173
42169
|
TaxIDUpdate$inboundSchema = objectType({
|
|
42174
|
-
ein: lazyType(() =>
|
|
42170
|
+
ein: lazyType(() => Ein$inboundSchema).optional()
|
|
42175
42171
|
});
|
|
42176
42172
|
TaxIDUpdate$outboundSchema = objectType({
|
|
42177
|
-
ein: lazyType(() =>
|
|
42173
|
+
ein: lazyType(() => Ein$outboundSchema).optional()
|
|
42178
42174
|
});
|
|
42179
42175
|
((TaxIDUpdate$) => {
|
|
42180
42176
|
TaxIDUpdate$.inboundSchema = TaxIDUpdate$inboundSchema;
|
|
@@ -42444,14 +42440,14 @@ var init_patchsweepconfig = __esm(() => {
|
|
|
42444
42440
|
pushPaymentMethodID: nullableType(unionType([lazyType(() => PushPaymentMethodId2$inboundSchema), stringType()])).optional(),
|
|
42445
42441
|
pullPaymentMethodID: nullableType(unionType([lazyType(() => PullPaymentMethodId2$inboundSchema), stringType()])).optional(),
|
|
42446
42442
|
statementDescriptor: nullableType(unionType([lazyType(() => StatementDescriptor2$inboundSchema), stringType()])).optional(),
|
|
42447
|
-
minimumBalance: stringType().optional()
|
|
42443
|
+
minimumBalance: nullableType(stringType()).optional()
|
|
42448
42444
|
});
|
|
42449
42445
|
PatchSweepConfig$outboundSchema = objectType({
|
|
42450
42446
|
status: nullableType(Status$outboundSchema).optional(),
|
|
42451
42447
|
pushPaymentMethodID: nullableType(unionType([lazyType(() => PushPaymentMethodId2$outboundSchema), stringType()])).optional(),
|
|
42452
42448
|
pullPaymentMethodID: nullableType(unionType([lazyType(() => PullPaymentMethodId2$outboundSchema), stringType()])).optional(),
|
|
42453
42449
|
statementDescriptor: nullableType(unionType([lazyType(() => StatementDescriptor2$outboundSchema), stringType()])).optional(),
|
|
42454
|
-
minimumBalance: stringType().optional()
|
|
42450
|
+
minimumBalance: nullableType(stringType()).optional()
|
|
42455
42451
|
});
|
|
42456
42452
|
((PatchSweepConfig$) => {
|
|
42457
42453
|
PatchSweepConfig$.inboundSchema = PatchSweepConfig$inboundSchema;
|
|
@@ -43363,11 +43359,12 @@ var init_transferdestination = __esm(() => {
|
|
|
43363
43359
|
init_paymentmethodsbankaccount();
|
|
43364
43360
|
init_paymentmethodscard();
|
|
43365
43361
|
init_paymentmethodswallet();
|
|
43362
|
+
init_paymentmethodtype();
|
|
43366
43363
|
init_rtptransactiondetails();
|
|
43367
43364
|
init_transferaccount();
|
|
43368
43365
|
TransferDestination$inboundSchema = objectType({
|
|
43369
43366
|
paymentMethodID: stringType(),
|
|
43370
|
-
paymentMethodType:
|
|
43367
|
+
paymentMethodType: PaymentMethodType$inboundSchema,
|
|
43371
43368
|
account: TransferAccount$inboundSchema,
|
|
43372
43369
|
bankAccount: PaymentMethodsBankAccount$inboundSchema.optional(),
|
|
43373
43370
|
wallet: PaymentMethodsWallet$inboundSchema.optional(),
|
|
@@ -43379,7 +43376,7 @@ var init_transferdestination = __esm(() => {
|
|
|
43379
43376
|
});
|
|
43380
43377
|
TransferDestination$outboundSchema = objectType({
|
|
43381
43378
|
paymentMethodID: stringType(),
|
|
43382
|
-
paymentMethodType:
|
|
43379
|
+
paymentMethodType: PaymentMethodType$outboundSchema,
|
|
43383
43380
|
account: TransferAccount$outboundSchema,
|
|
43384
43381
|
bankAccount: PaymentMethodsBankAccount$outboundSchema.optional(),
|
|
43385
43382
|
wallet: PaymentMethodsWallet$outboundSchema.optional(),
|
|
@@ -43424,10 +43421,12 @@ var init_transfersource = __esm(() => {
|
|
|
43424
43421
|
init_paymentmethodsbankaccount();
|
|
43425
43422
|
init_paymentmethodscard();
|
|
43426
43423
|
init_paymentmethodswallet();
|
|
43424
|
+
init_paymentmethodtype();
|
|
43427
43425
|
init_transferaccount();
|
|
43428
43426
|
TransferSource$inboundSchema = objectType({
|
|
43427
|
+
transferID: stringType().optional(),
|
|
43429
43428
|
paymentMethodID: stringType(),
|
|
43430
|
-
paymentMethodType:
|
|
43429
|
+
paymentMethodType: PaymentMethodType$inboundSchema,
|
|
43431
43430
|
account: TransferAccount$inboundSchema,
|
|
43432
43431
|
bankAccount: PaymentMethodsBankAccount$inboundSchema.optional(),
|
|
43433
43432
|
wallet: PaymentMethodsWallet$inboundSchema.optional(),
|
|
@@ -43437,8 +43436,9 @@ var init_transfersource = __esm(() => {
|
|
|
43437
43436
|
achDetails: ACHTransactionDetails$inboundSchema.optional()
|
|
43438
43437
|
});
|
|
43439
43438
|
TransferSource$outboundSchema = objectType({
|
|
43439
|
+
transferID: stringType().optional(),
|
|
43440
43440
|
paymentMethodID: stringType(),
|
|
43441
|
-
paymentMethodType:
|
|
43441
|
+
paymentMethodType: PaymentMethodType$outboundSchema,
|
|
43442
43442
|
account: TransferAccount$outboundSchema,
|
|
43443
43443
|
bankAccount: PaymentMethodsBankAccount$outboundSchema.optional(),
|
|
43444
43444
|
wallet: PaymentMethodsWallet$outboundSchema.optional(),
|
|
@@ -43490,8 +43490,8 @@ var init_transfer = __esm(() => {
|
|
|
43490
43490
|
Transfer$inboundSchema = objectType({
|
|
43491
43491
|
transferID: stringType(),
|
|
43492
43492
|
createdOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)),
|
|
43493
|
-
source: TransferSource$inboundSchema
|
|
43494
|
-
destination: TransferDestination$inboundSchema
|
|
43493
|
+
source: TransferSource$inboundSchema,
|
|
43494
|
+
destination: TransferDestination$inboundSchema,
|
|
43495
43495
|
completedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
43496
43496
|
status: TransferStatus$inboundSchema,
|
|
43497
43497
|
failureReason: TransferFailureReason$inboundSchema.optional(),
|
|
@@ -43514,8 +43514,8 @@ var init_transfer = __esm(() => {
|
|
|
43514
43514
|
Transfer$outboundSchema = objectType({
|
|
43515
43515
|
transferID: stringType(),
|
|
43516
43516
|
createdOn: dateType().transform((v2) => v2.toISOString()),
|
|
43517
|
-
source: TransferSource$outboundSchema
|
|
43518
|
-
destination: TransferDestination$outboundSchema
|
|
43517
|
+
source: TransferSource$outboundSchema,
|
|
43518
|
+
destination: TransferDestination$outboundSchema,
|
|
43519
43519
|
completedOn: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
43520
43520
|
status: TransferStatus$outboundSchema,
|
|
43521
43521
|
failureReason: TransferFailureReason$outboundSchema.optional(),
|
|
@@ -45750,10 +45750,8 @@ var init_transfer2 = __esm(() => {
|
|
|
45750
45750
|
this.data$ = err;
|
|
45751
45751
|
this.transferID = err.transferID;
|
|
45752
45752
|
this.createdOn = err.createdOn;
|
|
45753
|
-
|
|
45754
|
-
|
|
45755
|
-
if (err.destination != null)
|
|
45756
|
-
this.destination = err.destination;
|
|
45753
|
+
this.source = err.source;
|
|
45754
|
+
this.destination = err.destination;
|
|
45757
45755
|
if (err.completedOn != null)
|
|
45758
45756
|
this.completedOn = err.completedOn;
|
|
45759
45757
|
this.status = err.status;
|
|
@@ -45794,8 +45792,8 @@ var init_transfer2 = __esm(() => {
|
|
|
45794
45792
|
Transfer$inboundSchema2 = objectType({
|
|
45795
45793
|
transferID: stringType(),
|
|
45796
45794
|
createdOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)),
|
|
45797
|
-
source: TransferSource$inboundSchema
|
|
45798
|
-
destination: TransferDestination$inboundSchema
|
|
45795
|
+
source: TransferSource$inboundSchema,
|
|
45796
|
+
destination: TransferDestination$inboundSchema,
|
|
45799
45797
|
completedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
45800
45798
|
status: TransferStatus$inboundSchema,
|
|
45801
45799
|
failureReason: TransferFailureReason$inboundSchema.optional(),
|
|
@@ -45820,8 +45818,8 @@ var init_transfer2 = __esm(() => {
|
|
|
45820
45818
|
Transfer$outboundSchema2 = instanceOfType(Transfer2).transform((v2) => v2.data$).pipe(objectType({
|
|
45821
45819
|
transferID: stringType(),
|
|
45822
45820
|
createdOn: dateType().transform((v2) => v2.toISOString()),
|
|
45823
|
-
source: TransferSource$outboundSchema
|
|
45824
|
-
destination: TransferDestination$outboundSchema
|
|
45821
|
+
source: TransferSource$outboundSchema,
|
|
45822
|
+
destination: TransferDestination$outboundSchema,
|
|
45825
45823
|
completedOn: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
45826
45824
|
status: TransferStatus$outboundSchema,
|
|
45827
45825
|
failureReason: TransferFailureReason$outboundSchema.optional(),
|
|
@@ -51140,11 +51138,15 @@ var init_listfeeplanagreements = __esm(() => {
|
|
|
51140
51138
|
ListFeePlanAgreementsGlobals$.outboundSchema = ListFeePlanAgreementsGlobals$outboundSchema;
|
|
51141
51139
|
})(ListFeePlanAgreementsGlobals$ ||= {});
|
|
51142
51140
|
ListFeePlanAgreementsRequest$inboundSchema = objectType({
|
|
51141
|
+
skip: numberType().int().optional(),
|
|
51142
|
+
count: numberType().int().optional(),
|
|
51143
51143
|
accountID: stringType(),
|
|
51144
51144
|
agreementID: arrayType(stringType()).optional(),
|
|
51145
51145
|
status: arrayType(FeePlanAgreementStatus$inboundSchema).optional()
|
|
51146
51146
|
});
|
|
51147
51147
|
ListFeePlanAgreementsRequest$outboundSchema = objectType({
|
|
51148
|
+
skip: numberType().int().optional(),
|
|
51149
|
+
count: numberType().int().optional(),
|
|
51148
51150
|
accountID: stringType(),
|
|
51149
51151
|
agreementID: arrayType(stringType()).optional(),
|
|
51150
51152
|
status: arrayType(FeePlanAgreementStatus$outboundSchema).optional()
|
|
@@ -51886,11 +51888,15 @@ var init_listpartnerpricingagreements = __esm(() => {
|
|
|
51886
51888
|
ListPartnerPricingAgreementsGlobals$.outboundSchema = ListPartnerPricingAgreementsGlobals$outboundSchema;
|
|
51887
51889
|
})(ListPartnerPricingAgreementsGlobals$ ||= {});
|
|
51888
51890
|
ListPartnerPricingAgreementsRequest$inboundSchema = objectType({
|
|
51891
|
+
skip: numberType().int().optional(),
|
|
51892
|
+
count: numberType().int().optional(),
|
|
51889
51893
|
accountID: stringType(),
|
|
51890
51894
|
agreementID: arrayType(stringType()).optional(),
|
|
51891
51895
|
status: arrayType(FeePlanAgreementStatus$inboundSchema).optional()
|
|
51892
51896
|
});
|
|
51893
51897
|
ListPartnerPricingAgreementsRequest$outboundSchema = objectType({
|
|
51898
|
+
skip: numberType().int().optional(),
|
|
51899
|
+
count: numberType().int().optional(),
|
|
51894
51900
|
accountID: stringType(),
|
|
51895
51901
|
agreementID: arrayType(stringType()).optional(),
|
|
51896
51902
|
status: arrayType(FeePlanAgreementStatus$outboundSchema).optional()
|
|
@@ -52567,6 +52573,7 @@ var init_listwallettransactions = __esm(() => {
|
|
|
52567
52573
|
count: numberType().int().optional(),
|
|
52568
52574
|
walletID: stringType(),
|
|
52569
52575
|
transactionType: WalletTransactionType$inboundSchema.optional(),
|
|
52576
|
+
transactionTypes: arrayType(WalletTransactionType$inboundSchema).optional(),
|
|
52570
52577
|
sourceType: WalletTransactionSourceType$inboundSchema.optional(),
|
|
52571
52578
|
sourceID: stringType().optional(),
|
|
52572
52579
|
status: WalletTransactionStatus$inboundSchema.optional(),
|
|
@@ -52582,6 +52589,7 @@ var init_listwallettransactions = __esm(() => {
|
|
|
52582
52589
|
count: numberType().int().optional(),
|
|
52583
52590
|
walletID: stringType(),
|
|
52584
52591
|
transactionType: WalletTransactionType$outboundSchema.optional(),
|
|
52592
|
+
transactionTypes: arrayType(WalletTransactionType$outboundSchema).optional(),
|
|
52585
52593
|
sourceType: WalletTransactionSourceType$outboundSchema.optional(),
|
|
52586
52594
|
sourceID: stringType().optional(),
|
|
52587
52595
|
status: WalletTransactionStatus$outboundSchema.optional(),
|
|
@@ -61903,6 +61911,8 @@ async function $do63(client, request, options) {
|
|
|
61903
61911
|
const path = pathToFunc("/accounts/{accountID}/fee-plan-agreements")(pathParams);
|
|
61904
61912
|
const query = encodeFormQuery({
|
|
61905
61913
|
agreementID: payload.agreementID,
|
|
61914
|
+
count: payload.count,
|
|
61915
|
+
skip: payload.skip,
|
|
61906
61916
|
status: payload.status
|
|
61907
61917
|
}, { explode: false });
|
|
61908
61918
|
const headers = new Headers(compactMap({
|
|
@@ -62356,6 +62366,8 @@ async function $do67(client, request, options) {
|
|
|
62356
62366
|
const path = pathToFunc("/accounts/{accountID}/partner-pricing-agreements")(pathParams);
|
|
62357
62367
|
const query = encodeFormQuery({
|
|
62358
62368
|
agreementID: payload.agreementID,
|
|
62369
|
+
count: payload.count,
|
|
62370
|
+
skip: payload.skip,
|
|
62359
62371
|
status: payload.status
|
|
62360
62372
|
}, { explode: false });
|
|
62361
62373
|
const headers = new Headers(compactMap({
|
|
@@ -69332,7 +69344,8 @@ async function $do127(client, request, options) {
|
|
|
69332
69344
|
sourceType: payload.sourceType,
|
|
69333
69345
|
status: payload.status,
|
|
69334
69346
|
sweepID: payload.sweepID,
|
|
69335
|
-
transactionType: payload.transactionType
|
|
69347
|
+
transactionType: payload.transactionType,
|
|
69348
|
+
transactionTypes: payload.transactionTypes
|
|
69336
69349
|
}, { explode: false });
|
|
69337
69350
|
const headers = new Headers(compactMap({
|
|
69338
69351
|
Accept: "application/json",
|
|
@@ -69432,7 +69445,7 @@ you'll need to specify the \`/accounts/{accountID}/wallets.read\` scope.`,
|
|
|
69432
69445
|
function createMCPServer(deps) {
|
|
69433
69446
|
const server = new McpServer({
|
|
69434
69447
|
name: "Moov",
|
|
69435
|
-
version: "0.5.
|
|
69448
|
+
version: "0.5.4"
|
|
69436
69449
|
});
|
|
69437
69450
|
const client = new MoovCore({
|
|
69438
69451
|
security: deps.security,
|
|
@@ -70906,7 +70919,7 @@ var routes = rn({
|
|
|
70906
70919
|
var app = Ve(routes, {
|
|
70907
70920
|
name: "mcp",
|
|
70908
70921
|
versionInfo: {
|
|
70909
|
-
currentVersion: "0.5.
|
|
70922
|
+
currentVersion: "0.5.4"
|
|
70910
70923
|
}
|
|
70911
70924
|
});
|
|
70912
70925
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -70914,5 +70927,5 @@ export {
|
|
|
70914
70927
|
app
|
|
70915
70928
|
};
|
|
70916
70929
|
|
|
70917
|
-
//# debugId=
|
|
70930
|
+
//# debugId=EA4CBA0C0735281D64756E2164756E21
|
|
70918
70931
|
//# sourceMappingURL=mcp-server.js.map
|