@moovio/sdk 0.22.4 → 0.22.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 +90 -36
- package/bin/mcp-server.js.map +21 -19
- 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/createpaymentlink.d.ts +2 -0
- package/models/components/createpaymentlink.d.ts.map +1 -1
- package/models/components/createpaymentlink.js +2 -0
- package/models/components/createpaymentlink.js.map +1 -1
- package/models/components/index.d.ts +2 -0
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +2 -0
- package/models/components/index.js.map +1 -1
- package/models/components/invoiceexternalpayment.d.ts +11 -2
- package/models/components/invoiceexternalpayment.d.ts.map +1 -1
- package/models/components/invoiceexternalpayment.js +10 -3
- package/models/components/invoiceexternalpayment.js.map +1 -1
- package/models/components/invoicepayment.d.ts +14 -2
- package/models/components/invoicepayment.d.ts.map +1 -1
- package/models/components/invoicepayment.js +11 -8
- package/models/components/invoicepayment.js.map +1 -1
- package/models/components/invoicepaymenttype.d.ts +12 -0
- package/models/components/invoicepaymenttype.d.ts.map +1 -0
- package/models/components/invoicepaymenttype.js +49 -0
- package/models/components/invoicepaymenttype.js.map +1 -0
- package/models/components/invoicetransferpayment.d.ts +11 -2
- package/models/components/invoicetransferpayment.d.ts.map +1 -1
- package/models/components/invoicetransferpayment.js +11 -3
- package/models/components/invoicetransferpayment.js.map +1 -1
- package/models/components/issuingmerchantdata.d.ts +6 -6
- package/models/components/issuingmerchantdata.d.ts.map +1 -1
- package/models/components/issuingmerchantdata.js +6 -6
- package/models/components/issuingmerchantdata.js.map +1 -1
- package/models/components/partnerfees.d.ts +7 -7
- package/models/components/partnerfees.d.ts.map +1 -1
- package/models/components/partnerfees.js +7 -7
- package/models/components/partnerfees.js.map +1 -1
- package/models/components/paymentlink.d.ts +5 -0
- package/models/components/paymentlink.d.ts.map +1 -1
- package/models/components/paymentlink.js +2 -0
- package/models/components/paymentlink.js.map +1 -1
- package/models/components/product.d.ts +1 -1
- package/models/components/updateissuedcard.d.ts +3 -7
- package/models/components/updateissuedcard.d.ts.map +1 -1
- package/models/components/updateissuedcard.js +3 -3
- package/models/components/updateissuedcard.js.map +1 -1
- package/models/components/updateissuedcardstate.d.ts +23 -0
- package/models/components/updateissuedcardstate.d.ts.map +1 -0
- package/models/components/updateissuedcardstate.js +54 -0
- package/models/components/updateissuedcardstate.js.map +1 -0
- package/models/components/updatepaymentlink.d.ts +2 -0
- package/models/components/updatepaymentlink.d.ts.map +1 -1
- package/models/components/updatepaymentlink.js +2 -0
- package/models/components/updatepaymentlink.js.map +1 -1
- package/models/errors/createpaymentlinkerror.d.ts +3 -0
- package/models/errors/createpaymentlinkerror.d.ts.map +1 -1
- package/models/errors/createpaymentlinkerror.js +4 -0
- package/models/errors/createpaymentlinkerror.js.map +1 -1
- package/models/errors/updatepaymentlinkerror.d.ts +3 -0
- package/models/errors/updatepaymentlinkerror.d.ts.map +1 -1
- package/models/errors/updatepaymentlinkerror.js +4 -0
- package/models/errors/updatepaymentlinkerror.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/createpaymentlink.ts +4 -0
- package/src/models/components/index.ts +2 -0
- package/src/models/components/invoiceexternalpayment.ts +21 -4
- package/src/models/components/invoicepayment.ts +28 -12
- package/src/models/components/invoicepaymenttype.ts +21 -0
- package/src/models/components/invoicetransferpayment.ts +17 -4
- package/src/models/components/issuingmerchantdata.ts +12 -12
- package/src/models/components/partnerfees.ts +17 -17
- package/src/models/components/paymentlink.ts +7 -0
- package/src/models/components/product.ts +1 -1
- package/src/models/components/updateissuedcard.ts +8 -12
- package/src/models/components/updateissuedcardstate.ts +32 -0
- package/src/models/components/updatepaymentlink.ts +4 -0
- package/src/models/errors/createpaymentlinkerror.ts +6 -0
- package/src/models/errors/updatepaymentlinkerror.ts +6 -0
package/bin/mcp-server.js
CHANGED
|
@@ -34030,9 +34030,9 @@ var init_config = __esm(() => {
|
|
|
34030
34030
|
SDK_METADATA = {
|
|
34031
34031
|
language: "typescript",
|
|
34032
34032
|
openapiDocVersion: "latest",
|
|
34033
|
-
sdkVersion: "0.22.
|
|
34034
|
-
genVersion: "2.
|
|
34035
|
-
userAgent: "speakeasy-sdk/typescript 0.22.
|
|
34033
|
+
sdkVersion: "0.22.6",
|
|
34034
|
+
genVersion: "2.787.2",
|
|
34035
|
+
userAgent: "speakeasy-sdk/typescript 0.22.6 2.787.2 latest @moovio/sdk"
|
|
34036
34036
|
};
|
|
34037
34037
|
});
|
|
34038
34038
|
|
|
@@ -40179,16 +40179,16 @@ var init_billingsummaryinterchange = __esm(() => {
|
|
|
40179
40179
|
var PartnerFees$inboundSchema, PartnerFees$outboundSchema;
|
|
40180
40180
|
var init_partnerfees = __esm(() => {
|
|
40181
40181
|
init_esm();
|
|
40182
|
-
|
|
40182
|
+
init_amountdecimal();
|
|
40183
40183
|
PartnerFees$inboundSchema = objectType({
|
|
40184
|
-
minimumCommitment:
|
|
40185
|
-
monthlyPlatform:
|
|
40186
|
-
total:
|
|
40184
|
+
minimumCommitment: AmountDecimal$inboundSchema,
|
|
40185
|
+
monthlyPlatform: AmountDecimal$inboundSchema,
|
|
40186
|
+
total: AmountDecimal$inboundSchema
|
|
40187
40187
|
});
|
|
40188
40188
|
PartnerFees$outboundSchema = objectType({
|
|
40189
|
-
minimumCommitment:
|
|
40190
|
-
monthlyPlatform:
|
|
40191
|
-
total:
|
|
40189
|
+
minimumCommitment: AmountDecimal$outboundSchema,
|
|
40190
|
+
monthlyPlatform: AmountDecimal$outboundSchema,
|
|
40191
|
+
total: AmountDecimal$outboundSchema
|
|
40192
40192
|
});
|
|
40193
40193
|
});
|
|
40194
40194
|
|
|
@@ -42936,6 +42936,7 @@ var init_createpaymentlink = __esm(() => {
|
|
|
42936
42936
|
partnerAccountID: stringType(),
|
|
42937
42937
|
merchantPaymentMethodID: stringType(),
|
|
42938
42938
|
amount: Amount$inboundSchema,
|
|
42939
|
+
salesTaxAmount: Amount$inboundSchema.optional(),
|
|
42939
42940
|
maxUses: numberType().int().optional(),
|
|
42940
42941
|
expiresOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
42941
42942
|
display: PaymentLinkDisplayOptions$inboundSchema,
|
|
@@ -42948,6 +42949,7 @@ var init_createpaymentlink = __esm(() => {
|
|
|
42948
42949
|
partnerAccountID: stringType(),
|
|
42949
42950
|
merchantPaymentMethodID: stringType(),
|
|
42950
42951
|
amount: Amount$outboundSchema,
|
|
42952
|
+
salesTaxAmount: Amount$outboundSchema.optional(),
|
|
42951
42953
|
maxUses: numberType().int().optional(),
|
|
42952
42954
|
expiresOn: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
42953
42955
|
display: PaymentLinkDisplayOptions$outboundSchema,
|
|
@@ -44587,19 +44589,24 @@ var init_invoicelineitems = __esm(() => {
|
|
|
44587
44589
|
});
|
|
44588
44590
|
|
|
44589
44591
|
// src/models/components/invoiceexternalpayment.ts
|
|
44590
|
-
var InvoiceExternalPayment$inboundSchema, InvoiceExternalPayment$outboundSchema;
|
|
44592
|
+
var InvoiceExternalPaymentPaymentType, InvoiceExternalPaymentPaymentType$inboundSchema, InvoiceExternalPaymentPaymentType$outboundSchema, InvoiceExternalPayment$inboundSchema, InvoiceExternalPayment$outboundSchema;
|
|
44591
44593
|
var init_invoiceexternalpayment = __esm(() => {
|
|
44592
44594
|
init_esm();
|
|
44593
44595
|
init_amountdecimal();
|
|
44596
|
+
InvoiceExternalPaymentPaymentType = {
|
|
44597
|
+
External: "external"
|
|
44598
|
+
};
|
|
44599
|
+
InvoiceExternalPaymentPaymentType$inboundSchema = nativeEnumType(InvoiceExternalPaymentPaymentType);
|
|
44600
|
+
InvoiceExternalPaymentPaymentType$outboundSchema = InvoiceExternalPaymentPaymentType$inboundSchema;
|
|
44594
44601
|
InvoiceExternalPayment$inboundSchema = objectType({
|
|
44595
|
-
paymentType:
|
|
44602
|
+
paymentType: InvoiceExternalPaymentPaymentType$inboundSchema,
|
|
44596
44603
|
description: stringType(),
|
|
44597
44604
|
foreignID: stringType().optional(),
|
|
44598
44605
|
paymentDate: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
44599
44606
|
amount: AmountDecimal$inboundSchema
|
|
44600
44607
|
});
|
|
44601
44608
|
InvoiceExternalPayment$outboundSchema = objectType({
|
|
44602
|
-
paymentType:
|
|
44609
|
+
paymentType: InvoiceExternalPaymentPaymentType$outboundSchema,
|
|
44603
44610
|
description: stringType(),
|
|
44604
44611
|
foreignID: stringType().optional(),
|
|
44605
44612
|
paymentDate: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
@@ -44607,16 +44614,33 @@ var init_invoiceexternalpayment = __esm(() => {
|
|
|
44607
44614
|
});
|
|
44608
44615
|
});
|
|
44609
44616
|
|
|
44617
|
+
// src/models/components/invoicepaymenttype.ts
|
|
44618
|
+
var InvoicePaymentType, InvoicePaymentType$inboundSchema, InvoicePaymentType$outboundSchema;
|
|
44619
|
+
var init_invoicepaymenttype = __esm(() => {
|
|
44620
|
+
init_esm();
|
|
44621
|
+
InvoicePaymentType = {
|
|
44622
|
+
Transfer: "transfer",
|
|
44623
|
+
External: "external"
|
|
44624
|
+
};
|
|
44625
|
+
InvoicePaymentType$inboundSchema = nativeEnumType(InvoicePaymentType);
|
|
44626
|
+
InvoicePaymentType$outboundSchema = InvoicePaymentType$inboundSchema;
|
|
44627
|
+
});
|
|
44628
|
+
|
|
44610
44629
|
// src/models/components/invoicetransferpayment.ts
|
|
44611
|
-
var InvoiceTransferPayment$inboundSchema, InvoiceTransferPayment$outboundSchema;
|
|
44630
|
+
var PaymentType, PaymentType$inboundSchema, PaymentType$outboundSchema, InvoiceTransferPayment$inboundSchema, InvoiceTransferPayment$outboundSchema;
|
|
44612
44631
|
var init_invoicetransferpayment = __esm(() => {
|
|
44613
44632
|
init_esm();
|
|
44633
|
+
PaymentType = {
|
|
44634
|
+
Transfer: "transfer"
|
|
44635
|
+
};
|
|
44636
|
+
PaymentType$inboundSchema = nativeEnumType(PaymentType);
|
|
44637
|
+
PaymentType$outboundSchema = PaymentType$inboundSchema;
|
|
44614
44638
|
InvoiceTransferPayment$inboundSchema = objectType({
|
|
44615
|
-
paymentType:
|
|
44639
|
+
paymentType: PaymentType$inboundSchema,
|
|
44616
44640
|
transferID: stringType()
|
|
44617
44641
|
});
|
|
44618
44642
|
InvoiceTransferPayment$outboundSchema = objectType({
|
|
44619
|
-
paymentType:
|
|
44643
|
+
paymentType: PaymentType$outboundSchema,
|
|
44620
44644
|
transferID: stringType()
|
|
44621
44645
|
});
|
|
44622
44646
|
});
|
|
@@ -44626,15 +44650,18 @@ var InvoicePayment$inboundSchema, InvoicePayment$outboundSchema;
|
|
|
44626
44650
|
var init_invoicepayment = __esm(() => {
|
|
44627
44651
|
init_esm();
|
|
44628
44652
|
init_invoiceexternalpayment();
|
|
44653
|
+
init_invoicepaymenttype();
|
|
44629
44654
|
init_invoicetransferpayment();
|
|
44630
|
-
InvoicePayment$inboundSchema =
|
|
44631
|
-
|
|
44632
|
-
|
|
44633
|
-
|
|
44634
|
-
|
|
44635
|
-
|
|
44636
|
-
|
|
44637
|
-
|
|
44655
|
+
InvoicePayment$inboundSchema = objectType({
|
|
44656
|
+
paymentType: InvoicePaymentType$inboundSchema,
|
|
44657
|
+
transfer: InvoiceTransferPayment$inboundSchema.optional(),
|
|
44658
|
+
external: InvoiceExternalPayment$inboundSchema.optional()
|
|
44659
|
+
});
|
|
44660
|
+
InvoicePayment$outboundSchema = objectType({
|
|
44661
|
+
paymentType: InvoicePaymentType$outboundSchema,
|
|
44662
|
+
transfer: InvoiceTransferPayment$outboundSchema.optional(),
|
|
44663
|
+
external: InvoiceExternalPayment$outboundSchema.optional()
|
|
44664
|
+
});
|
|
44638
44665
|
});
|
|
44639
44666
|
|
|
44640
44667
|
// src/models/components/invoicestatus.ts
|
|
@@ -44823,22 +44850,22 @@ var IssuingMerchantData$inboundSchema, IssuingMerchantData$outboundSchema;
|
|
|
44823
44850
|
var init_issuingmerchantdata = __esm(() => {
|
|
44824
44851
|
init_esm();
|
|
44825
44852
|
IssuingMerchantData$inboundSchema = objectType({
|
|
44826
|
-
networkID: stringType()
|
|
44853
|
+
networkID: stringType(),
|
|
44827
44854
|
name: stringType().optional(),
|
|
44828
44855
|
city: stringType().optional(),
|
|
44829
|
-
country: stringType()
|
|
44856
|
+
country: stringType(),
|
|
44830
44857
|
postalCode: stringType().optional(),
|
|
44831
44858
|
state: stringType().optional(),
|
|
44832
|
-
mcc: stringType()
|
|
44859
|
+
mcc: stringType()
|
|
44833
44860
|
});
|
|
44834
44861
|
IssuingMerchantData$outboundSchema = objectType({
|
|
44835
|
-
networkID: stringType()
|
|
44862
|
+
networkID: stringType(),
|
|
44836
44863
|
name: stringType().optional(),
|
|
44837
44864
|
city: stringType().optional(),
|
|
44838
|
-
country: stringType()
|
|
44865
|
+
country: stringType(),
|
|
44839
44866
|
postalCode: stringType().optional(),
|
|
44840
44867
|
state: stringType().optional(),
|
|
44841
|
-
mcc: stringType()
|
|
44868
|
+
mcc: stringType()
|
|
44842
44869
|
});
|
|
44843
44870
|
});
|
|
44844
44871
|
|
|
@@ -46205,6 +46232,7 @@ var init_paymentlink = __esm(() => {
|
|
|
46205
46232
|
merchantPaymentMethodID: stringType(),
|
|
46206
46233
|
link: stringType(),
|
|
46207
46234
|
amount: Amount$inboundSchema,
|
|
46235
|
+
salesTaxAmount: Amount$inboundSchema.optional(),
|
|
46208
46236
|
uses: numberType().int(),
|
|
46209
46237
|
maxUses: numberType().int().optional(),
|
|
46210
46238
|
lastUsedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
@@ -46229,6 +46257,7 @@ var init_paymentlink = __esm(() => {
|
|
|
46229
46257
|
merchantPaymentMethodID: stringType(),
|
|
46230
46258
|
link: stringType(),
|
|
46231
46259
|
amount: Amount$outboundSchema,
|
|
46260
|
+
salesTaxAmount: Amount$outboundSchema.optional(),
|
|
46232
46261
|
uses: numberType().int(),
|
|
46233
46262
|
maxUses: numberType().int().optional(),
|
|
46234
46263
|
lastUsedOn: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
@@ -47906,19 +47935,30 @@ var init_updateinvoice = __esm(() => {
|
|
|
47906
47935
|
});
|
|
47907
47936
|
});
|
|
47908
47937
|
|
|
47938
|
+
// src/models/components/updateissuedcardstate.ts
|
|
47939
|
+
var UpdateIssuedCardState, UpdateIssuedCardState$inboundSchema, UpdateIssuedCardState$outboundSchema;
|
|
47940
|
+
var init_updateissuedcardstate = __esm(() => {
|
|
47941
|
+
init_esm();
|
|
47942
|
+
UpdateIssuedCardState = {
|
|
47943
|
+
Closed: "closed"
|
|
47944
|
+
};
|
|
47945
|
+
UpdateIssuedCardState$inboundSchema = nativeEnumType(UpdateIssuedCardState);
|
|
47946
|
+
UpdateIssuedCardState$outboundSchema = UpdateIssuedCardState$inboundSchema;
|
|
47947
|
+
});
|
|
47948
|
+
|
|
47909
47949
|
// src/models/components/updateissuedcard.ts
|
|
47910
47950
|
var UpdateIssuedCard$inboundSchema, UpdateIssuedCard$outboundSchema;
|
|
47911
47951
|
var init_updateissuedcard = __esm(() => {
|
|
47912
47952
|
init_esm();
|
|
47913
47953
|
init_createauthorizeduserupdate();
|
|
47914
|
-
|
|
47954
|
+
init_updateissuedcardstate();
|
|
47915
47955
|
UpdateIssuedCard$inboundSchema = objectType({
|
|
47916
|
-
state:
|
|
47956
|
+
state: UpdateIssuedCardState$inboundSchema.optional(),
|
|
47917
47957
|
memo: stringType().optional(),
|
|
47918
47958
|
authorizedUser: CreateAuthorizedUserUpdate$inboundSchema.optional()
|
|
47919
47959
|
});
|
|
47920
47960
|
UpdateIssuedCard$outboundSchema = objectType({
|
|
47921
|
-
state:
|
|
47961
|
+
state: UpdateIssuedCardState$outboundSchema.optional(),
|
|
47922
47962
|
memo: stringType().optional(),
|
|
47923
47963
|
authorizedUser: CreateAuthorizedUserUpdate$outboundSchema.optional()
|
|
47924
47964
|
});
|
|
@@ -47936,6 +47976,7 @@ var init_updatepaymentlink = __esm(() => {
|
|
|
47936
47976
|
init_paymentlinkpayoutdetailsupdate();
|
|
47937
47977
|
UpdatePaymentLink$inboundSchema = objectType({
|
|
47938
47978
|
amount: AmountUpdate$inboundSchema.optional(),
|
|
47979
|
+
salesTaxAmount: AmountUpdate$inboundSchema.optional(),
|
|
47939
47980
|
expiresOn: nullableType(stringType().datetime({ offset: true }).transform((v2) => new Date(v2))).optional(),
|
|
47940
47981
|
display: PaymentLinkDisplayOptionsUpdate$inboundSchema.optional(),
|
|
47941
47982
|
customer: PaymentLinkCustomerOptions$inboundSchema.optional(),
|
|
@@ -47945,6 +47986,7 @@ var init_updatepaymentlink = __esm(() => {
|
|
|
47945
47986
|
});
|
|
47946
47987
|
UpdatePaymentLink$outboundSchema = objectType({
|
|
47947
47988
|
amount: AmountUpdate$outboundSchema.optional(),
|
|
47989
|
+
salesTaxAmount: AmountUpdate$outboundSchema.optional(),
|
|
47948
47990
|
expiresOn: nullableType(dateType().transform((v2) => v2.toISOString())).optional(),
|
|
47949
47991
|
display: PaymentLinkDisplayOptionsUpdate$outboundSchema.optional(),
|
|
47950
47992
|
customer: PaymentLinkCustomerOptions$outboundSchema.optional(),
|
|
@@ -49437,6 +49479,7 @@ var init_components = __esm(() => {
|
|
|
49437
49479
|
init_invoicelineitemsvalidationerror();
|
|
49438
49480
|
init_invoicelineitemvalidationerror();
|
|
49439
49481
|
init_invoicepayment();
|
|
49482
|
+
init_invoicepaymenttype();
|
|
49440
49483
|
init_invoicestatus();
|
|
49441
49484
|
init_invoicetransferpayment();
|
|
49442
49485
|
init_issuedcard();
|
|
@@ -49648,6 +49691,7 @@ var init_components = __esm(() => {
|
|
|
49648
49691
|
init_updateevidence();
|
|
49649
49692
|
init_updateinvoice();
|
|
49650
49693
|
init_updateissuedcard();
|
|
49694
|
+
init_updateissuedcardstate();
|
|
49651
49695
|
init_updatepaymentlink();
|
|
49652
49696
|
init_updaterepresentative();
|
|
49653
49697
|
init_updateticket();
|
|
@@ -49948,6 +49992,7 @@ var init_createpaymentlinkerror = __esm(() => {
|
|
|
49948
49992
|
partnerAccountID;
|
|
49949
49993
|
merchantPaymentMethodID;
|
|
49950
49994
|
amount;
|
|
49995
|
+
salesTaxAmount;
|
|
49951
49996
|
maxUses;
|
|
49952
49997
|
expiresOn;
|
|
49953
49998
|
display;
|
|
@@ -49967,6 +50012,8 @@ var init_createpaymentlinkerror = __esm(() => {
|
|
|
49967
50012
|
}
|
|
49968
50013
|
if (err.amount != null)
|
|
49969
50014
|
this.amount = err.amount;
|
|
50015
|
+
if (err.salesTaxAmount != null)
|
|
50016
|
+
this.salesTaxAmount = err.salesTaxAmount;
|
|
49970
50017
|
if (err.maxUses != null)
|
|
49971
50018
|
this.maxUses = err.maxUses;
|
|
49972
50019
|
if (err.expiresOn != null)
|
|
@@ -49986,6 +50033,7 @@ var init_createpaymentlinkerror = __esm(() => {
|
|
|
49986
50033
|
partnerAccountID: stringType().optional(),
|
|
49987
50034
|
merchantPaymentMethodID: stringType().optional(),
|
|
49988
50035
|
amount: AmountValidationError$inboundSchema.optional(),
|
|
50036
|
+
salesTaxAmount: AmountValidationError$inboundSchema.optional(),
|
|
49989
50037
|
maxUses: stringType().optional(),
|
|
49990
50038
|
expiresOn: stringType().optional(),
|
|
49991
50039
|
display: DisplayOptionsError$inboundSchema.optional(),
|
|
@@ -50006,6 +50054,7 @@ var init_createpaymentlinkerror = __esm(() => {
|
|
|
50006
50054
|
partnerAccountID: stringType().optional(),
|
|
50007
50055
|
merchantPaymentMethodID: stringType().optional(),
|
|
50008
50056
|
amount: AmountValidationError$outboundSchema.optional(),
|
|
50057
|
+
salesTaxAmount: AmountValidationError$outboundSchema.optional(),
|
|
50009
50058
|
maxUses: stringType().optional(),
|
|
50010
50059
|
expiresOn: stringType().optional(),
|
|
50011
50060
|
display: DisplayOptionsError$outboundSchema.optional(),
|
|
@@ -52055,6 +52104,7 @@ var init_updatepaymentlinkerror = __esm(() => {
|
|
|
52055
52104
|
init_mooverror();
|
|
52056
52105
|
UpdatePaymentLinkError = class UpdatePaymentLinkError extends MoovError {
|
|
52057
52106
|
amount;
|
|
52107
|
+
salesTaxAmount;
|
|
52058
52108
|
expiresOn;
|
|
52059
52109
|
display;
|
|
52060
52110
|
payment;
|
|
@@ -52067,6 +52117,8 @@ var init_updatepaymentlinkerror = __esm(() => {
|
|
|
52067
52117
|
this.data$ = err;
|
|
52068
52118
|
if (err.amount != null)
|
|
52069
52119
|
this.amount = err.amount;
|
|
52120
|
+
if (err.salesTaxAmount != null)
|
|
52121
|
+
this.salesTaxAmount = err.salesTaxAmount;
|
|
52070
52122
|
if (err.expiresOn != null)
|
|
52071
52123
|
this.expiresOn = err.expiresOn;
|
|
52072
52124
|
if (err.display != null)
|
|
@@ -52082,6 +52134,7 @@ var init_updatepaymentlinkerror = __esm(() => {
|
|
|
52082
52134
|
};
|
|
52083
52135
|
UpdatePaymentLinkError$inboundSchema = objectType({
|
|
52084
52136
|
amount: AmountValidationError$inboundSchema.optional(),
|
|
52137
|
+
salesTaxAmount: AmountValidationError$inboundSchema.optional(),
|
|
52085
52138
|
expiresOn: stringType().optional(),
|
|
52086
52139
|
display: DisplayOptionsError$inboundSchema.optional(),
|
|
52087
52140
|
payment: PaymentDetailsError$inboundSchema.optional(),
|
|
@@ -52099,6 +52152,7 @@ var init_updatepaymentlinkerror = __esm(() => {
|
|
|
52099
52152
|
});
|
|
52100
52153
|
UpdatePaymentLinkError$outboundSchema = instanceOfType(UpdatePaymentLinkError).transform((v2) => v2.data$).pipe(objectType({
|
|
52101
52154
|
amount: AmountValidationError$outboundSchema.optional(),
|
|
52155
|
+
salesTaxAmount: AmountValidationError$outboundSchema.optional(),
|
|
52102
52156
|
expiresOn: stringType().optional(),
|
|
52103
52157
|
display: DisplayOptionsError$outboundSchema.optional(),
|
|
52104
52158
|
payment: PaymentDetailsError$outboundSchema.optional(),
|
|
@@ -81426,7 +81480,7 @@ you'll need to specify the \`/accounts/{accountID}/wallets.read\` scope.`,
|
|
|
81426
81480
|
function createMCPServer(deps) {
|
|
81427
81481
|
const server = new McpServer({
|
|
81428
81482
|
name: "Moov",
|
|
81429
|
-
version: "0.22.
|
|
81483
|
+
version: "0.22.6"
|
|
81430
81484
|
});
|
|
81431
81485
|
const client = new MoovCore({
|
|
81432
81486
|
security: deps.security,
|
|
@@ -82984,7 +83038,7 @@ var routes = rn({
|
|
|
82984
83038
|
var app = Ve(routes, {
|
|
82985
83039
|
name: "mcp",
|
|
82986
83040
|
versionInfo: {
|
|
82987
|
-
currentVersion: "0.22.
|
|
83041
|
+
currentVersion: "0.22.6"
|
|
82988
83042
|
}
|
|
82989
83043
|
});
|
|
82990
83044
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -82992,5 +83046,5 @@ export {
|
|
|
82992
83046
|
app
|
|
82993
83047
|
};
|
|
82994
83048
|
|
|
82995
|
-
//# debugId=
|
|
83049
|
+
//# debugId=5CB25CD9153A9C9964756E2164756E21
|
|
82996
83050
|
//# sourceMappingURL=mcp-server.js.map
|