@moovio/sdk 0.21.15 → 0.21.16

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.
Files changed (118) hide show
  1. package/bin/mcp-server.js +227 -141
  2. package/bin/mcp-server.js.map +22 -18
  3. package/examples/package-lock.json +1 -1
  4. package/jsr.json +1 -1
  5. package/lib/config.d.ts +3 -3
  6. package/lib/config.js +3 -3
  7. package/mcp-server/mcp-server.js +1 -1
  8. package/mcp-server/server.js +1 -1
  9. package/models/components/createpaymentlink.d.ts +3 -3
  10. package/models/components/createpaymentlink.d.ts.map +1 -1
  11. package/models/components/createpaymentlink.js +3 -3
  12. package/models/components/createpaymentlink.js.map +1 -1
  13. package/models/components/createpaymentlinklineitem.d.ts +50 -0
  14. package/models/components/createpaymentlinklineitem.d.ts.map +1 -0
  15. package/models/components/createpaymentlinklineitem.js +70 -0
  16. package/models/components/createpaymentlinklineitem.js.map +1 -0
  17. package/models/components/createpaymentlinklineitemoption.d.ts +44 -0
  18. package/models/components/createpaymentlinklineitemoption.d.ts.map +1 -0
  19. package/models/components/createpaymentlinklineitemoption.js +67 -0
  20. package/models/components/createpaymentlinklineitemoption.js.map +1 -0
  21. package/models/components/createpaymentlinklineitemoptionvalidationerror.d.ts +24 -0
  22. package/models/components/createpaymentlinklineitemoptionvalidationerror.d.ts.map +1 -0
  23. package/models/components/{paymentlinklineitemoptionvalidationerror.js → createpaymentlinklineitemoptionvalidationerror.js} +10 -10
  24. package/models/components/createpaymentlinklineitemoptionvalidationerror.js.map +1 -0
  25. package/models/components/createpaymentlinklineitems.d.ts +27 -0
  26. package/models/components/createpaymentlinklineitems.d.ts.map +1 -0
  27. package/models/components/{paymentlinklineitemsupdate.js → createpaymentlinklineitems.js} +13 -13
  28. package/models/components/createpaymentlinklineitems.js.map +1 -0
  29. package/models/components/createpaymentlinklineitemsupdate.d.ts +27 -0
  30. package/models/components/createpaymentlinklineitemsupdate.d.ts.map +1 -0
  31. package/models/components/{paymentlinklineitemsvalidationerror.js → createpaymentlinklineitemsupdate.js} +13 -13
  32. package/models/components/createpaymentlinklineitemsupdate.js.map +1 -0
  33. package/models/components/createpaymentlinklineitemsvalidationerror.d.ts +22 -0
  34. package/models/components/createpaymentlinklineitemsvalidationerror.d.ts.map +1 -0
  35. package/models/components/createpaymentlinklineitemsvalidationerror.js +61 -0
  36. package/models/components/createpaymentlinklineitemsvalidationerror.js.map +1 -0
  37. package/models/components/createpaymentlinklineitemvalidationerror.d.ts +31 -0
  38. package/models/components/createpaymentlinklineitemvalidationerror.d.ts.map +1 -0
  39. package/models/components/{paymentlinklineitemvalidationerror.js → createpaymentlinklineitemvalidationerror.js} +13 -15
  40. package/models/components/createpaymentlinklineitemvalidationerror.js.map +1 -0
  41. package/models/components/index.d.ts +8 -4
  42. package/models/components/index.d.ts.map +1 -1
  43. package/models/components/index.js +8 -4
  44. package/models/components/index.js.map +1 -1
  45. package/models/components/paymentlinklineitem.d.ts +6 -0
  46. package/models/components/paymentlinklineitem.d.ts.map +1 -1
  47. package/models/components/paymentlinklineitem.js +3 -0
  48. package/models/components/paymentlinklineitem.js.map +1 -1
  49. package/models/components/paymentlinklineitemimagemetadata.d.ts +35 -0
  50. package/models/components/paymentlinklineitemimagemetadata.d.ts.map +1 -0
  51. package/models/components/paymentlinklineitemimagemetadata.js +64 -0
  52. package/models/components/paymentlinklineitemimagemetadata.js.map +1 -0
  53. package/models/components/paymentlinklineitemoption.d.ts +6 -0
  54. package/models/components/paymentlinklineitemoption.d.ts.map +1 -1
  55. package/models/components/paymentlinklineitemoption.js +3 -0
  56. package/models/components/paymentlinklineitemoption.js.map +1 -1
  57. package/models/components/updatepaymentlink.d.ts +3 -3
  58. package/models/components/updatepaymentlink.d.ts.map +1 -1
  59. package/models/components/updatepaymentlink.js +3 -3
  60. package/models/components/updatepaymentlink.js.map +1 -1
  61. package/models/errors/createpaymentlinkerror.d.ts +3 -3
  62. package/models/errors/createpaymentlinkerror.d.ts.map +1 -1
  63. package/models/errors/createpaymentlinkerror.js +3 -3
  64. package/models/errors/createpaymentlinkerror.js.map +1 -1
  65. package/models/errors/updatepaymentlinkerror.d.ts +3 -3
  66. package/models/errors/updatepaymentlinkerror.d.ts.map +1 -1
  67. package/models/errors/updatepaymentlinkerror.js +3 -3
  68. package/models/errors/updatepaymentlinkerror.js.map +1 -1
  69. package/package.json +1 -1
  70. package/src/lib/config.ts +3 -3
  71. package/src/mcp-server/mcp-server.ts +1 -1
  72. package/src/mcp-server/server.ts +1 -1
  73. package/src/models/components/createpaymentlink.ts +10 -10
  74. package/src/models/components/createpaymentlinklineitem.ts +104 -0
  75. package/src/models/components/createpaymentlinklineitemoption.ts +93 -0
  76. package/src/models/components/createpaymentlinklineitemoptionvalidationerror.ts +80 -0
  77. package/src/models/components/createpaymentlinklineitems.ts +66 -0
  78. package/src/models/components/createpaymentlinklineitemsupdate.ts +68 -0
  79. package/src/models/components/createpaymentlinklineitemsvalidationerror.ts +71 -0
  80. package/src/models/components/createpaymentlinklineitemvalidationerror.ts +96 -0
  81. package/src/models/components/index.ts +8 -4
  82. package/src/models/components/paymentlinklineitem.ts +13 -0
  83. package/src/models/components/paymentlinklineitemimagemetadata.ts +77 -0
  84. package/src/models/components/paymentlinklineitemoption.ts +13 -0
  85. package/src/models/components/updatepaymentlink.ts +10 -10
  86. package/src/models/errors/createpaymentlinkerror.ts +6 -6
  87. package/src/models/errors/updatepaymentlinkerror.ts +6 -6
  88. package/src/types/enums.ts +1 -21
  89. package/src/types/index.ts +2 -1
  90. package/src/types/unrecognized.ts +27 -0
  91. package/types/enums.d.ts +1 -8
  92. package/types/enums.d.ts.map +1 -1
  93. package/types/enums.js +3 -21
  94. package/types/enums.js.map +1 -1
  95. package/types/index.d.ts +2 -1
  96. package/types/index.d.ts.map +1 -1
  97. package/types/index.js +15 -0
  98. package/types/index.js.map +1 -1
  99. package/types/unrecognized.d.ts +10 -0
  100. package/types/unrecognized.d.ts.map +1 -0
  101. package/types/unrecognized.js +26 -0
  102. package/types/unrecognized.js.map +1 -0
  103. package/models/components/paymentlinklineitemoptionvalidationerror.d.ts +0 -24
  104. package/models/components/paymentlinklineitemoptionvalidationerror.d.ts.map +0 -1
  105. package/models/components/paymentlinklineitemoptionvalidationerror.js.map +0 -1
  106. package/models/components/paymentlinklineitemsupdate.d.ts +0 -27
  107. package/models/components/paymentlinklineitemsupdate.d.ts.map +0 -1
  108. package/models/components/paymentlinklineitemsupdate.js.map +0 -1
  109. package/models/components/paymentlinklineitemsvalidationerror.d.ts +0 -22
  110. package/models/components/paymentlinklineitemsvalidationerror.d.ts.map +0 -1
  111. package/models/components/paymentlinklineitemsvalidationerror.js.map +0 -1
  112. package/models/components/paymentlinklineitemvalidationerror.d.ts +0 -31
  113. package/models/components/paymentlinklineitemvalidationerror.d.ts.map +0 -1
  114. package/models/components/paymentlinklineitemvalidationerror.js.map +0 -1
  115. package/src/models/components/paymentlinklineitemoptionvalidationerror.ts +0 -78
  116. package/src/models/components/paymentlinklineitemsupdate.ts +0 -66
  117. package/src/models/components/paymentlinklineitemsvalidationerror.ts +0 -62
  118. package/src/models/components/paymentlinklineitemvalidationerror.ts +0 -88
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.21.15",
34034
- genVersion: "2.755.9",
34035
- userAgent: "speakeasy-sdk/typescript 0.21.15 2.755.9 latest @moovio/sdk"
34033
+ sdkVersion: "0.21.16",
34034
+ genVersion: "2.760.2",
34035
+ userAgent: "speakeasy-sdk/typescript 0.21.16 2.760.2 latest @moovio/sdk"
34036
34036
  };
34037
34037
  });
34038
34038
 
@@ -42611,90 +42611,94 @@ var init_createinvoice = __esm(() => {
42611
42611
  });
42612
42612
  });
42613
42613
 
42614
- // src/models/components/paymentlinkcustomeroptions.ts
42615
- var PaymentLinkCustomerOptions$inboundSchema, PaymentLinkCustomerOptions$outboundSchema;
42616
- var init_paymentlinkcustomeroptions = __esm(() => {
42617
- init_esm();
42618
- PaymentLinkCustomerOptions$inboundSchema = objectType({
42619
- requireAddress: booleanType().optional(),
42620
- requirePhone: booleanType().optional(),
42621
- metadata: recordType(stringType()).optional()
42622
- });
42623
- PaymentLinkCustomerOptions$outboundSchema = objectType({
42624
- requireAddress: booleanType().optional(),
42625
- requirePhone: booleanType().optional(),
42626
- metadata: recordType(stringType()).optional()
42627
- });
42628
- });
42629
-
42630
- // src/models/components/paymentlinkdisplayoptions.ts
42631
- var PaymentLinkDisplayOptions$inboundSchema, PaymentLinkDisplayOptions$outboundSchema;
42632
- var init_paymentlinkdisplayoptions = __esm(() => {
42633
- init_esm();
42634
- init_calltoaction();
42635
- PaymentLinkDisplayOptions$inboundSchema = objectType({
42636
- title: stringType(),
42637
- description: stringType(),
42638
- callToAction: CallToAction$inboundSchema
42639
- });
42640
- PaymentLinkDisplayOptions$outboundSchema = objectType({
42641
- title: stringType(),
42642
- description: stringType(),
42643
- callToAction: CallToAction$outboundSchema
42644
- });
42645
- });
42646
-
42647
- // src/models/components/paymentlinklineitemoption.ts
42648
- var PaymentLinkLineItemOption$inboundSchema, PaymentLinkLineItemOption$outboundSchema;
42649
- var init_paymentlinklineitemoption = __esm(() => {
42614
+ // src/models/components/createpaymentlinklineitemoption.ts
42615
+ var CreatePaymentLinkLineItemOption$inboundSchema, CreatePaymentLinkLineItemOption$outboundSchema;
42616
+ var init_createpaymentlinklineitemoption = __esm(() => {
42650
42617
  init_esm();
42651
42618
  init_amountdecimal();
42652
- PaymentLinkLineItemOption$inboundSchema = objectType({
42619
+ CreatePaymentLinkLineItemOption$inboundSchema = objectType({
42653
42620
  name: stringType(),
42654
42621
  quantity: numberType().int(),
42655
42622
  priceModifier: AmountDecimal$inboundSchema.optional(),
42623
+ imageIDs: arrayType(stringType()).optional(),
42656
42624
  group: stringType().optional()
42657
42625
  });
42658
- PaymentLinkLineItemOption$outboundSchema = objectType({
42626
+ CreatePaymentLinkLineItemOption$outboundSchema = objectType({
42659
42627
  name: stringType(),
42660
42628
  quantity: numberType().int(),
42661
42629
  priceModifier: AmountDecimal$outboundSchema.optional(),
42630
+ imageIDs: arrayType(stringType()).optional(),
42662
42631
  group: stringType().optional()
42663
42632
  });
42664
42633
  });
42665
42634
 
42666
- // src/models/components/paymentlinklineitem.ts
42667
- var PaymentLinkLineItem$inboundSchema, PaymentLinkLineItem$outboundSchema;
42668
- var init_paymentlinklineitem = __esm(() => {
42635
+ // src/models/components/createpaymentlinklineitem.ts
42636
+ var CreatePaymentLinkLineItem$inboundSchema, CreatePaymentLinkLineItem$outboundSchema;
42637
+ var init_createpaymentlinklineitem = __esm(() => {
42669
42638
  init_esm();
42670
42639
  init_amountdecimal();
42671
- init_paymentlinklineitemoption();
42672
- PaymentLinkLineItem$inboundSchema = objectType({
42640
+ init_createpaymentlinklineitemoption();
42641
+ CreatePaymentLinkLineItem$inboundSchema = objectType({
42673
42642
  name: stringType(),
42674
42643
  basePrice: AmountDecimal$inboundSchema,
42675
42644
  quantity: numberType().int(),
42676
- options: arrayType(PaymentLinkLineItemOption$inboundSchema).optional(),
42645
+ options: arrayType(CreatePaymentLinkLineItemOption$inboundSchema).optional(),
42646
+ imageIDs: arrayType(stringType()).optional(),
42677
42647
  productID: stringType().optional()
42678
42648
  });
42679
- PaymentLinkLineItem$outboundSchema = objectType({
42649
+ CreatePaymentLinkLineItem$outboundSchema = objectType({
42680
42650
  name: stringType(),
42681
42651
  basePrice: AmountDecimal$outboundSchema,
42682
42652
  quantity: numberType().int(),
42683
- options: arrayType(PaymentLinkLineItemOption$outboundSchema).optional(),
42653
+ options: arrayType(CreatePaymentLinkLineItemOption$outboundSchema).optional(),
42654
+ imageIDs: arrayType(stringType()).optional(),
42684
42655
  productID: stringType().optional()
42685
42656
  });
42686
42657
  });
42687
42658
 
42688
- // src/models/components/paymentlinklineitems.ts
42689
- var PaymentLinkLineItems$inboundSchema, PaymentLinkLineItems$outboundSchema;
42690
- var init_paymentlinklineitems = __esm(() => {
42659
+ // src/models/components/createpaymentlinklineitems.ts
42660
+ var CreatePaymentLinkLineItems$inboundSchema, CreatePaymentLinkLineItems$outboundSchema;
42661
+ var init_createpaymentlinklineitems = __esm(() => {
42691
42662
  init_esm();
42692
- init_paymentlinklineitem();
42693
- PaymentLinkLineItems$inboundSchema = objectType({
42694
- items: arrayType(PaymentLinkLineItem$inboundSchema)
42663
+ init_createpaymentlinklineitem();
42664
+ CreatePaymentLinkLineItems$inboundSchema = objectType({
42665
+ items: arrayType(CreatePaymentLinkLineItem$inboundSchema)
42695
42666
  });
42696
- PaymentLinkLineItems$outboundSchema = objectType({
42697
- items: arrayType(PaymentLinkLineItem$outboundSchema)
42667
+ CreatePaymentLinkLineItems$outboundSchema = objectType({
42668
+ items: arrayType(CreatePaymentLinkLineItem$outboundSchema)
42669
+ });
42670
+ });
42671
+
42672
+ // src/models/components/paymentlinkcustomeroptions.ts
42673
+ var PaymentLinkCustomerOptions$inboundSchema, PaymentLinkCustomerOptions$outboundSchema;
42674
+ var init_paymentlinkcustomeroptions = __esm(() => {
42675
+ init_esm();
42676
+ PaymentLinkCustomerOptions$inboundSchema = objectType({
42677
+ requireAddress: booleanType().optional(),
42678
+ requirePhone: booleanType().optional(),
42679
+ metadata: recordType(stringType()).optional()
42680
+ });
42681
+ PaymentLinkCustomerOptions$outboundSchema = objectType({
42682
+ requireAddress: booleanType().optional(),
42683
+ requirePhone: booleanType().optional(),
42684
+ metadata: recordType(stringType()).optional()
42685
+ });
42686
+ });
42687
+
42688
+ // src/models/components/paymentlinkdisplayoptions.ts
42689
+ var PaymentLinkDisplayOptions$inboundSchema, PaymentLinkDisplayOptions$outboundSchema;
42690
+ var init_paymentlinkdisplayoptions = __esm(() => {
42691
+ init_esm();
42692
+ init_calltoaction();
42693
+ PaymentLinkDisplayOptions$inboundSchema = objectType({
42694
+ title: stringType(),
42695
+ description: stringType(),
42696
+ callToAction: CallToAction$inboundSchema
42697
+ });
42698
+ PaymentLinkDisplayOptions$outboundSchema = objectType({
42699
+ title: stringType(),
42700
+ description: stringType(),
42701
+ callToAction: CallToAction$outboundSchema
42698
42702
  });
42699
42703
  });
42700
42704
 
@@ -42771,9 +42775,9 @@ var CreatePaymentLink$inboundSchema, CreatePaymentLink$outboundSchema;
42771
42775
  var init_createpaymentlink = __esm(() => {
42772
42776
  init_esm();
42773
42777
  init_amount();
42778
+ init_createpaymentlinklineitems();
42774
42779
  init_paymentlinkcustomeroptions();
42775
42780
  init_paymentlinkdisplayoptions();
42776
- init_paymentlinklineitems();
42777
42781
  init_paymentlinkpaymentdetails();
42778
42782
  init_paymentlinkpayoutdetails();
42779
42783
  CreatePaymentLink$inboundSchema = objectType({
@@ -42786,7 +42790,7 @@ var init_createpaymentlink = __esm(() => {
42786
42790
  customer: PaymentLinkCustomerOptions$inboundSchema.optional(),
42787
42791
  payment: PaymentLinkPaymentDetails$inboundSchema.optional(),
42788
42792
  payout: PaymentLinkPayoutDetails$inboundSchema.optional(),
42789
- lineItems: PaymentLinkLineItems$inboundSchema.optional()
42793
+ lineItems: CreatePaymentLinkLineItems$inboundSchema.optional()
42790
42794
  });
42791
42795
  CreatePaymentLink$outboundSchema = objectType({
42792
42796
  partnerAccountID: stringType(),
@@ -42798,7 +42802,74 @@ var init_createpaymentlink = __esm(() => {
42798
42802
  customer: PaymentLinkCustomerOptions$outboundSchema.optional(),
42799
42803
  payment: PaymentLinkPaymentDetails$outboundSchema.optional(),
42800
42804
  payout: PaymentLinkPayoutDetails$outboundSchema.optional(),
42801
- lineItems: PaymentLinkLineItems$outboundSchema.optional()
42805
+ lineItems: CreatePaymentLinkLineItems$outboundSchema.optional()
42806
+ });
42807
+ });
42808
+
42809
+ // src/models/components/createpaymentlinklineitemoptionvalidationerror.ts
42810
+ var CreatePaymentLinkLineItemOptionValidationError$inboundSchema, CreatePaymentLinkLineItemOptionValidationError$outboundSchema;
42811
+ var init_createpaymentlinklineitemoptionvalidationerror = __esm(() => {
42812
+ init_esm();
42813
+ init_amountdecimalvalidationerror();
42814
+ CreatePaymentLinkLineItemOptionValidationError$inboundSchema = objectType({
42815
+ name: stringType().optional(),
42816
+ group: stringType().optional(),
42817
+ priceModifier: AmountDecimalValidationError$inboundSchema.optional(),
42818
+ quantity: stringType().optional()
42819
+ });
42820
+ CreatePaymentLinkLineItemOptionValidationError$outboundSchema = objectType({
42821
+ name: stringType().optional(),
42822
+ group: stringType().optional(),
42823
+ priceModifier: AmountDecimalValidationError$outboundSchema.optional(),
42824
+ quantity: stringType().optional()
42825
+ });
42826
+ });
42827
+
42828
+ // src/models/components/createpaymentlinklineitemsupdate.ts
42829
+ var CreatePaymentLinkLineItemsUpdate$inboundSchema, CreatePaymentLinkLineItemsUpdate$outboundSchema;
42830
+ var init_createpaymentlinklineitemsupdate = __esm(() => {
42831
+ init_esm();
42832
+ init_createpaymentlinklineitem();
42833
+ CreatePaymentLinkLineItemsUpdate$inboundSchema = objectType({
42834
+ items: arrayType(CreatePaymentLinkLineItem$inboundSchema).optional()
42835
+ });
42836
+ CreatePaymentLinkLineItemsUpdate$outboundSchema = objectType({
42837
+ items: arrayType(CreatePaymentLinkLineItem$outboundSchema).optional()
42838
+ });
42839
+ });
42840
+
42841
+ // src/models/components/createpaymentlinklineitemvalidationerror.ts
42842
+ var CreatePaymentLinkLineItemValidationError$inboundSchema, CreatePaymentLinkLineItemValidationError$outboundSchema;
42843
+ var init_createpaymentlinklineitemvalidationerror = __esm(() => {
42844
+ init_esm();
42845
+ init_amountdecimalvalidationerror();
42846
+ init_createpaymentlinklineitemoptionvalidationerror();
42847
+ CreatePaymentLinkLineItemValidationError$inboundSchema = objectType({
42848
+ productID: stringType().optional(),
42849
+ name: stringType().optional(),
42850
+ basePrice: AmountDecimalValidationError$inboundSchema.optional(),
42851
+ options: recordType(CreatePaymentLinkLineItemOptionValidationError$inboundSchema).optional(),
42852
+ quantity: stringType().optional()
42853
+ });
42854
+ CreatePaymentLinkLineItemValidationError$outboundSchema = objectType({
42855
+ productID: stringType().optional(),
42856
+ name: stringType().optional(),
42857
+ basePrice: AmountDecimalValidationError$outboundSchema.optional(),
42858
+ options: recordType(CreatePaymentLinkLineItemOptionValidationError$outboundSchema).optional(),
42859
+ quantity: stringType().optional()
42860
+ });
42861
+ });
42862
+
42863
+ // src/models/components/createpaymentlinklineitemsvalidationerror.ts
42864
+ var CreatePaymentLinkLineItemsValidationError$inboundSchema, CreatePaymentLinkLineItemsValidationError$outboundSchema;
42865
+ var init_createpaymentlinklineitemsvalidationerror = __esm(() => {
42866
+ init_esm();
42867
+ init_createpaymentlinklineitemvalidationerror();
42868
+ CreatePaymentLinkLineItemsValidationError$inboundSchema = objectType({
42869
+ items: recordType(CreatePaymentLinkLineItemValidationError$inboundSchema).optional()
42870
+ });
42871
+ CreatePaymentLinkLineItemsValidationError$outboundSchema = objectType({
42872
+ items: recordType(CreatePaymentLinkLineItemValidationError$outboundSchema).optional()
42802
42873
  });
42803
42874
  });
42804
42875
 
@@ -45809,6 +45880,84 @@ var init_paymentdetailserror = __esm(() => {
45809
45880
  });
45810
45881
  });
45811
45882
 
45883
+ // src/models/components/paymentlinklineitemimagemetadata.ts
45884
+ var PaymentLinkLineItemImageMetadata$inboundSchema, PaymentLinkLineItemImageMetadata$outboundSchema;
45885
+ var init_paymentlinklineitemimagemetadata = __esm(() => {
45886
+ init_esm();
45887
+ PaymentLinkLineItemImageMetadata$inboundSchema = objectType({
45888
+ imageID: stringType(),
45889
+ altText: stringType().optional(),
45890
+ link: stringType(),
45891
+ publicID: stringType()
45892
+ });
45893
+ PaymentLinkLineItemImageMetadata$outboundSchema = objectType({
45894
+ imageID: stringType(),
45895
+ altText: stringType().optional(),
45896
+ link: stringType(),
45897
+ publicID: stringType()
45898
+ });
45899
+ });
45900
+
45901
+ // src/models/components/paymentlinklineitemoption.ts
45902
+ var PaymentLinkLineItemOption$inboundSchema, PaymentLinkLineItemOption$outboundSchema;
45903
+ var init_paymentlinklineitemoption = __esm(() => {
45904
+ init_esm();
45905
+ init_amountdecimal();
45906
+ init_paymentlinklineitemimagemetadata();
45907
+ PaymentLinkLineItemOption$inboundSchema = objectType({
45908
+ name: stringType(),
45909
+ quantity: numberType().int(),
45910
+ priceModifier: AmountDecimal$inboundSchema.optional(),
45911
+ images: arrayType(PaymentLinkLineItemImageMetadata$inboundSchema).optional(),
45912
+ group: stringType().optional()
45913
+ });
45914
+ PaymentLinkLineItemOption$outboundSchema = objectType({
45915
+ name: stringType(),
45916
+ quantity: numberType().int(),
45917
+ priceModifier: AmountDecimal$outboundSchema.optional(),
45918
+ images: arrayType(PaymentLinkLineItemImageMetadata$outboundSchema).optional(),
45919
+ group: stringType().optional()
45920
+ });
45921
+ });
45922
+
45923
+ // src/models/components/paymentlinklineitem.ts
45924
+ var PaymentLinkLineItem$inboundSchema, PaymentLinkLineItem$outboundSchema;
45925
+ var init_paymentlinklineitem = __esm(() => {
45926
+ init_esm();
45927
+ init_amountdecimal();
45928
+ init_paymentlinklineitemimagemetadata();
45929
+ init_paymentlinklineitemoption();
45930
+ PaymentLinkLineItem$inboundSchema = objectType({
45931
+ name: stringType(),
45932
+ basePrice: AmountDecimal$inboundSchema,
45933
+ quantity: numberType().int(),
45934
+ options: arrayType(PaymentLinkLineItemOption$inboundSchema).optional(),
45935
+ images: arrayType(PaymentLinkLineItemImageMetadata$inboundSchema).optional(),
45936
+ productID: stringType().optional()
45937
+ });
45938
+ PaymentLinkLineItem$outboundSchema = objectType({
45939
+ name: stringType(),
45940
+ basePrice: AmountDecimal$outboundSchema,
45941
+ quantity: numberType().int(),
45942
+ options: arrayType(PaymentLinkLineItemOption$outboundSchema).optional(),
45943
+ images: arrayType(PaymentLinkLineItemImageMetadata$outboundSchema).optional(),
45944
+ productID: stringType().optional()
45945
+ });
45946
+ });
45947
+
45948
+ // src/models/components/paymentlinklineitems.ts
45949
+ var PaymentLinkLineItems$inboundSchema, PaymentLinkLineItems$outboundSchema;
45950
+ var init_paymentlinklineitems = __esm(() => {
45951
+ init_esm();
45952
+ init_paymentlinklineitem();
45953
+ PaymentLinkLineItems$inboundSchema = objectType({
45954
+ items: arrayType(PaymentLinkLineItem$inboundSchema)
45955
+ });
45956
+ PaymentLinkLineItems$outboundSchema = objectType({
45957
+ items: arrayType(PaymentLinkLineItem$outboundSchema)
45958
+ });
45959
+ });
45960
+
45812
45961
  // src/models/components/paymentlinkstatus.ts
45813
45962
  var PaymentLinkStatus, PaymentLinkStatus$inboundSchema, PaymentLinkStatus$outboundSchema;
45814
45963
  var init_paymentlinkstatus = __esm(() => {
@@ -45915,73 +46064,6 @@ var init_paymentlinkdisplayoptionsupdate = __esm(() => {
45915
46064
  });
45916
46065
  });
45917
46066
 
45918
- // src/models/components/paymentlinklineitemoptionvalidationerror.ts
45919
- var PaymentLinkLineItemOptionValidationError$inboundSchema, PaymentLinkLineItemOptionValidationError$outboundSchema;
45920
- var init_paymentlinklineitemoptionvalidationerror = __esm(() => {
45921
- init_esm();
45922
- init_amountdecimalvalidationerror();
45923
- PaymentLinkLineItemOptionValidationError$inboundSchema = objectType({
45924
- name: stringType().optional(),
45925
- group: stringType().optional(),
45926
- priceModifier: AmountDecimalValidationError$inboundSchema.optional(),
45927
- quantity: stringType().optional()
45928
- });
45929
- PaymentLinkLineItemOptionValidationError$outboundSchema = objectType({
45930
- name: stringType().optional(),
45931
- group: stringType().optional(),
45932
- priceModifier: AmountDecimalValidationError$outboundSchema.optional(),
45933
- quantity: stringType().optional()
45934
- });
45935
- });
45936
-
45937
- // src/models/components/paymentlinklineitemsupdate.ts
45938
- var PaymentLinkLineItemsUpdate$inboundSchema, PaymentLinkLineItemsUpdate$outboundSchema;
45939
- var init_paymentlinklineitemsupdate = __esm(() => {
45940
- init_esm();
45941
- init_paymentlinklineitem();
45942
- PaymentLinkLineItemsUpdate$inboundSchema = objectType({
45943
- items: arrayType(PaymentLinkLineItem$inboundSchema).optional()
45944
- });
45945
- PaymentLinkLineItemsUpdate$outboundSchema = objectType({
45946
- items: arrayType(PaymentLinkLineItem$outboundSchema).optional()
45947
- });
45948
- });
45949
-
45950
- // src/models/components/paymentlinklineitemvalidationerror.ts
45951
- var PaymentLinkLineItemValidationError$inboundSchema, PaymentLinkLineItemValidationError$outboundSchema;
45952
- var init_paymentlinklineitemvalidationerror = __esm(() => {
45953
- init_esm();
45954
- init_amountdecimalvalidationerror();
45955
- init_paymentlinklineitemoptionvalidationerror();
45956
- PaymentLinkLineItemValidationError$inboundSchema = objectType({
45957
- productID: stringType().optional(),
45958
- name: stringType().optional(),
45959
- basePrice: AmountDecimalValidationError$inboundSchema.optional(),
45960
- options: recordType(PaymentLinkLineItemOptionValidationError$inboundSchema).optional(),
45961
- quantity: stringType().optional()
45962
- });
45963
- PaymentLinkLineItemValidationError$outboundSchema = objectType({
45964
- productID: stringType().optional(),
45965
- name: stringType().optional(),
45966
- basePrice: AmountDecimalValidationError$outboundSchema.optional(),
45967
- options: recordType(PaymentLinkLineItemOptionValidationError$outboundSchema).optional(),
45968
- quantity: stringType().optional()
45969
- });
45970
- });
45971
-
45972
- // src/models/components/paymentlinklineitemsvalidationerror.ts
45973
- var PaymentLinkLineItemsValidationError$inboundSchema, PaymentLinkLineItemsValidationError$outboundSchema;
45974
- var init_paymentlinklineitemsvalidationerror = __esm(() => {
45975
- init_esm();
45976
- init_paymentlinklineitemvalidationerror();
45977
- PaymentLinkLineItemsValidationError$inboundSchema = objectType({
45978
- items: recordType(PaymentLinkLineItemValidationError$inboundSchema).optional()
45979
- });
45980
- PaymentLinkLineItemsValidationError$outboundSchema = objectType({
45981
- items: recordType(PaymentLinkLineItemValidationError$outboundSchema).optional()
45982
- });
45983
- });
45984
-
45985
46067
  // src/models/components/paymentlinkpaymentdetailsupdate.ts
45986
46068
  var PaymentLinkPaymentDetailsUpdate$inboundSchema, PaymentLinkPaymentDetailsUpdate$outboundSchema;
45987
46069
  var init_paymentlinkpaymentdetailsupdate = __esm(() => {
@@ -47707,9 +47789,9 @@ var UpdatePaymentLink$inboundSchema, UpdatePaymentLink$outboundSchema;
47707
47789
  var init_updatepaymentlink = __esm(() => {
47708
47790
  init_esm();
47709
47791
  init_amountupdate();
47792
+ init_createpaymentlinklineitemsupdate();
47710
47793
  init_paymentlinkcustomeroptions();
47711
47794
  init_paymentlinkdisplayoptionsupdate();
47712
- init_paymentlinklineitemsupdate();
47713
47795
  init_paymentlinkpaymentdetailsupdate();
47714
47796
  init_paymentlinkpayoutdetailsupdate();
47715
47797
  UpdatePaymentLink$inboundSchema = objectType({
@@ -47719,7 +47801,7 @@ var init_updatepaymentlink = __esm(() => {
47719
47801
  customer: PaymentLinkCustomerOptions$inboundSchema.optional(),
47720
47802
  payment: PaymentLinkPaymentDetailsUpdate$inboundSchema.optional(),
47721
47803
  payout: PaymentLinkPayoutDetailsUpdate$inboundSchema.optional(),
47722
- lineItems: PaymentLinkLineItemsUpdate$inboundSchema.optional()
47804
+ lineItems: CreatePaymentLinkLineItemsUpdate$inboundSchema.optional()
47723
47805
  });
47724
47806
  UpdatePaymentLink$outboundSchema = objectType({
47725
47807
  amount: AmountUpdate$outboundSchema.optional(),
@@ -47728,7 +47810,7 @@ var init_updatepaymentlink = __esm(() => {
47728
47810
  customer: PaymentLinkCustomerOptions$outboundSchema.optional(),
47729
47811
  payment: PaymentLinkPaymentDetailsUpdate$outboundSchema.optional(),
47730
47812
  payout: PaymentLinkPayoutDetailsUpdate$outboundSchema.optional(),
47731
- lineItems: PaymentLinkLineItemsUpdate$outboundSchema.optional()
47813
+ lineItems: CreatePaymentLinkLineItemsUpdate$outboundSchema.optional()
47732
47814
  });
47733
47815
  });
47734
47816
 
@@ -49104,6 +49186,13 @@ var init_components = __esm(() => {
49104
49186
  init_createindividualprofile();
49105
49187
  init_createinvoice();
49106
49188
  init_createpaymentlink();
49189
+ init_createpaymentlinklineitem();
49190
+ init_createpaymentlinklineitemoption();
49191
+ init_createpaymentlinklineitemoptionvalidationerror();
49192
+ init_createpaymentlinklineitems();
49193
+ init_createpaymentlinklineitemsupdate();
49194
+ init_createpaymentlinklineitemsvalidationerror();
49195
+ init_createpaymentlinklineitemvalidationerror();
49107
49196
  init_createproductoption();
49108
49197
  init_createproductoptiongroup();
49109
49198
  init_createprofile();
@@ -49276,12 +49365,9 @@ var init_components = __esm(() => {
49276
49365
  init_paymentlinkdisplayoptions();
49277
49366
  init_paymentlinkdisplayoptionsupdate();
49278
49367
  init_paymentlinklineitem();
49368
+ init_paymentlinklineitemimagemetadata();
49279
49369
  init_paymentlinklineitemoption();
49280
- init_paymentlinklineitemoptionvalidationerror();
49281
49370
  init_paymentlinklineitems();
49282
- init_paymentlinklineitemsupdate();
49283
- init_paymentlinklineitemsvalidationerror();
49284
- init_paymentlinklineitemvalidationerror();
49285
49371
  init_paymentlinkpaymentdetails();
49286
49372
  init_paymentlinkpaymentdetailsupdate();
49287
49373
  init_paymentlinkpayoutdetails();
@@ -49761,7 +49847,7 @@ var init_createpaymentlinkerror = __esm(() => {
49761
49847
  display: DisplayOptionsError$inboundSchema.optional(),
49762
49848
  payment: PaymentDetailsError$inboundSchema.optional(),
49763
49849
  payout: PayoutDetailsError$inboundSchema.optional(),
49764
- lineItems: PaymentLinkLineItemsValidationError$inboundSchema.optional(),
49850
+ lineItems: CreatePaymentLinkLineItemsValidationError$inboundSchema.optional(),
49765
49851
  request$: instanceOfType(Request),
49766
49852
  response$: instanceOfType(Response),
49767
49853
  body$: stringType()
@@ -49781,7 +49867,7 @@ var init_createpaymentlinkerror = __esm(() => {
49781
49867
  display: DisplayOptionsError$outboundSchema.optional(),
49782
49868
  payment: PaymentDetailsError$outboundSchema.optional(),
49783
49869
  payout: PayoutDetailsError$outboundSchema.optional(),
49784
- lineItems: PaymentLinkLineItemsValidationError$outboundSchema.optional()
49870
+ lineItems: CreatePaymentLinkLineItemsValidationError$outboundSchema.optional()
49785
49871
  }));
49786
49872
  });
49787
49873
 
@@ -51856,7 +51942,7 @@ var init_updatepaymentlinkerror = __esm(() => {
51856
51942
  display: DisplayOptionsError$inboundSchema.optional(),
51857
51943
  payment: PaymentDetailsError$inboundSchema.optional(),
51858
51944
  payout: PayoutDetailsError$inboundSchema.optional(),
51859
- lineItems: PaymentLinkLineItemsValidationError$inboundSchema.optional(),
51945
+ lineItems: CreatePaymentLinkLineItemsValidationError$inboundSchema.optional(),
51860
51946
  request$: instanceOfType(Request),
51861
51947
  response$: instanceOfType(Response),
51862
51948
  body$: stringType()
@@ -51873,7 +51959,7 @@ var init_updatepaymentlinkerror = __esm(() => {
51873
51959
  display: DisplayOptionsError$outboundSchema.optional(),
51874
51960
  payment: PaymentDetailsError$outboundSchema.optional(),
51875
51961
  payout: PayoutDetailsError$outboundSchema.optional(),
51876
- lineItems: PaymentLinkLineItemsValidationError$outboundSchema.optional()
51962
+ lineItems: CreatePaymentLinkLineItemsValidationError$outboundSchema.optional()
51877
51963
  }));
51878
51964
  });
51879
51965
 
@@ -81377,7 +81463,7 @@ you'll need to specify the \`/accounts/{accountID}/wallets.read\` scope.`,
81377
81463
  function createMCPServer(deps) {
81378
81464
  const server = new McpServer({
81379
81465
  name: "Moov",
81380
- version: "0.21.15"
81466
+ version: "0.21.16"
81381
81467
  });
81382
81468
  const client = new MoovCore({
81383
81469
  security: deps.security,
@@ -82937,7 +83023,7 @@ var routes = rn({
82937
83023
  var app = Ve(routes, {
82938
83024
  name: "mcp",
82939
83025
  versionInfo: {
82940
- currentVersion: "0.21.15"
83026
+ currentVersion: "0.21.16"
82941
83027
  }
82942
83028
  });
82943
83029
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -82945,5 +83031,5 @@ export {
82945
83031
  app
82946
83032
  };
82947
83033
 
82948
- //# debugId=88F89244FDD160AE64756E2164756E21
83034
+ //# debugId=C07E726DBC15D39A64756E2164756E21
82949
83035
  //# sourceMappingURL=mcp-server.js.map