@moovio/sdk 0.22.2 → 0.22.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.
Files changed (98) hide show
  1. package/README.md +6 -6
  2. package/bin/mcp-server.js +221 -41
  3. package/bin/mcp-server.js.map +26 -21
  4. package/examples/package-lock.json +1 -1
  5. package/funcs/bankAccountsGetVerification.d.ts +1 -1
  6. package/funcs/bankAccountsGetVerification.js +1 -1
  7. package/funcs/bankAccountsInitiateVerification.d.ts +2 -2
  8. package/funcs/bankAccountsInitiateVerification.js +2 -2
  9. package/jsr.json +1 -1
  10. package/lib/config.d.ts +3 -3
  11. package/lib/config.js +3 -3
  12. package/mcp-server/mcp-server.js +1 -1
  13. package/mcp-server/server.js +1 -1
  14. package/mcp-server/tools/bankAccountsGetVerification.js +1 -1
  15. package/mcp-server/tools/bankAccountsInitiateVerification.js +2 -2
  16. package/models/components/accountfees.d.ts +49 -0
  17. package/models/components/accountfees.d.ts.map +1 -0
  18. package/models/components/accountfees.js +69 -0
  19. package/models/components/accountfees.js.map +1 -0
  20. package/models/components/bankaccountexception.d.ts +26 -0
  21. package/models/components/bankaccountexception.d.ts.map +1 -1
  22. package/models/components/bankaccountexception.js +2 -0
  23. package/models/components/bankaccountexception.js.map +1 -1
  24. package/models/components/bankaccountstatusreason.d.ts +1 -0
  25. package/models/components/bankaccountstatusreason.d.ts.map +1 -1
  26. package/models/components/bankaccountstatusreason.js +1 -0
  27. package/models/components/bankaccountstatusreason.js.map +1 -1
  28. package/models/components/billingcountandamount.d.ts +0 -3
  29. package/models/components/billingcountandamount.d.ts.map +1 -1
  30. package/models/components/billingcountandamount.js.map +1 -1
  31. package/models/components/billingsummary.d.ts +198 -17
  32. package/models/components/billingsummary.d.ts.map +1 -1
  33. package/models/components/billingsummary.js +106 -9
  34. package/models/components/billingsummary.js.map +1 -1
  35. package/models/components/billingsummarydetails.d.ts +51 -5
  36. package/models/components/billingsummarydetails.d.ts.map +1 -1
  37. package/models/components/billingsummarydetails.js +27 -3
  38. package/models/components/billingsummarydetails.js.map +1 -1
  39. package/models/components/cardbrandfees.d.ts +0 -3
  40. package/models/components/cardbrandfees.d.ts.map +1 -1
  41. package/models/components/cardbrandfees.js.map +1 -1
  42. package/models/components/index.d.ts +5 -0
  43. package/models/components/index.d.ts.map +1 -1
  44. package/models/components/index.js +5 -0
  45. package/models/components/index.js.map +1 -1
  46. package/models/components/partnerfees.d.ts +34 -0
  47. package/models/components/partnerfees.d.ts.map +1 -0
  48. package/models/components/partnerfees.js +63 -0
  49. package/models/components/partnerfees.js.map +1 -0
  50. package/models/components/platformfees.d.ts +3 -1
  51. package/models/components/platformfees.d.ts.map +1 -1
  52. package/models/components/platformfees.js.map +1 -1
  53. package/models/components/runtransfer.d.ts +14 -0
  54. package/models/components/runtransfer.d.ts.map +1 -1
  55. package/models/components/runtransfer.js +5 -0
  56. package/models/components/runtransfer.js.map +1 -1
  57. package/models/components/scheduledtransferlineitem.d.ts +45 -0
  58. package/models/components/scheduledtransferlineitem.d.ts.map +1 -0
  59. package/models/components/scheduledtransferlineitem.js +68 -0
  60. package/models/components/scheduledtransferlineitem.js.map +1 -0
  61. package/models/components/scheduledtransferlineitemoption.d.ts +39 -0
  62. package/models/components/scheduledtransferlineitemoption.d.ts.map +1 -0
  63. package/models/components/scheduledtransferlineitemoption.js +65 -0
  64. package/models/components/scheduledtransferlineitemoption.js.map +1 -0
  65. package/models/components/scheduledtransferlineitems.d.ts +27 -0
  66. package/models/components/scheduledtransferlineitems.d.ts.map +1 -0
  67. package/models/components/scheduledtransferlineitems.js +59 -0
  68. package/models/components/scheduledtransferlineitems.js.map +1 -0
  69. package/models/components/statement.d.ts +17 -3
  70. package/models/components/statement.d.ts.map +1 -1
  71. package/models/components/statement.js +6 -0
  72. package/models/components/statement.js.map +1 -1
  73. package/package.json +1 -1
  74. package/sdk/bankaccounts.d.ts +3 -3
  75. package/sdk/bankaccounts.js +3 -3
  76. package/src/funcs/bankAccountsGetVerification.ts +1 -1
  77. package/src/funcs/bankAccountsInitiateVerification.ts +2 -2
  78. package/src/lib/config.ts +3 -3
  79. package/src/mcp-server/mcp-server.ts +1 -1
  80. package/src/mcp-server/server.ts +1 -1
  81. package/src/mcp-server/tools/bankAccountsGetVerification.ts +1 -1
  82. package/src/mcp-server/tools/bankAccountsInitiateVerification.ts +2 -2
  83. package/src/models/components/accountfees.ts +94 -0
  84. package/src/models/components/bankaccountexception.ts +28 -0
  85. package/src/models/components/bankaccountstatusreason.ts +1 -0
  86. package/src/models/components/billingcountandamount.ts +0 -3
  87. package/src/models/components/billingsummary.ts +355 -25
  88. package/src/models/components/billingsummarydetails.ts +87 -7
  89. package/src/models/components/cardbrandfees.ts +0 -3
  90. package/src/models/components/index.ts +5 -0
  91. package/src/models/components/partnerfees.ts +73 -0
  92. package/src/models/components/platformfees.ts +3 -1
  93. package/src/models/components/runtransfer.ts +23 -0
  94. package/src/models/components/scheduledtransferlineitem.ts +97 -0
  95. package/src/models/components/scheduledtransferlineitemoption.ts +86 -0
  96. package/src/models/components/scheduledtransferlineitems.ts +66 -0
  97. package/src/models/components/statement.ts +31 -3
  98. package/src/sdk/bankaccounts.ts +3 -3
package/README.md CHANGED
@@ -442,7 +442,7 @@ you'll need to specify the `/accounts/{accountID}/bank-accounts.write` scope.
442
442
 
443
443
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
444
444
  you'll need to specify the `/accounts/{accountID}/bank-accounts.write` scope.
445
- * [getVerification](docs/sdks/bankaccounts/README.md#getverification) - Retrieve the current status and details of an instant verification, including whether the verification method was instant or same-day
445
+ * [getVerification](docs/sdks/bankaccounts/README.md#getverification) - Retrieve the current status and details of an instant verification, including whether the verification method was instant (RTP or FedNow) or same-day
446
446
  ACH. This helps track the verification process in real-time and provides details in case of exceptions.
447
447
 
448
448
  The status will indicate the following:
@@ -457,14 +457,14 @@ To access this endpoint using an [access token](https://docs.moov.io/api/authent
457
457
  you'll need to specify the `/accounts/{accountID}/bank-accounts.read` scope.
458
458
  * [initiateVerification](docs/sdks/bankaccounts/README.md#initiateverification) - Instant micro-deposit verification offers a quick and efficient way to verify bank account ownership.
459
459
 
460
- Send a $0.01 credit with a unique verification code via RTP or same-day ACH, depending on the receiving bank's capabilities. This
460
+ Send a $0.01 credit with a unique verification code via RTP, FedNow, or same-day ACH, depending on the receiving bank's capabilities. This
461
461
  feature provides a faster alternative to traditional methods, allowing verification in a single session.
462
462
 
463
463
  It is recommended to use the `X-Wait-For: rail-response` header to synchronously receive the outcome of the instant credit in the
464
464
  response payload.
465
465
 
466
466
  Possible verification methods:
467
- - `instant`: Real-time verification credit sent via RTP
467
+ - `instant`: Real-time verification credit sent via RTP or FedNow
468
468
  - `ach`: Verification credit sent via same-day ACH
469
469
 
470
470
  Possible statuses:
@@ -1406,7 +1406,7 @@ Read our [bank accounts guide](https://docs.moov.io/guides/sources/bank-accounts
1406
1406
 
1407
1407
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1408
1408
  you'll need to specify the `/accounts/{accountID}/bank-accounts.read` scope.
1409
- - [`bankAccountsGetVerification`](docs/sdks/bankaccounts/README.md#getverification) - Retrieve the current status and details of an instant verification, including whether the verification method was instant or same-day
1409
+ - [`bankAccountsGetVerification`](docs/sdks/bankaccounts/README.md#getverification) - Retrieve the current status and details of an instant verification, including whether the verification method was instant (RTP or FedNow) or same-day
1410
1410
  ACH. This helps track the verification process in real-time and provides details in case of exceptions.
1411
1411
 
1412
1412
  The status will indicate the following:
@@ -1436,14 +1436,14 @@ To access this endpoint using an [access token](https://docs.moov.io/api/authent
1436
1436
  you'll need to specify the `/accounts/{accountID}/bank-accounts.write` scope.
1437
1437
  - [`bankAccountsInitiateVerification`](docs/sdks/bankaccounts/README.md#initiateverification) - Instant micro-deposit verification offers a quick and efficient way to verify bank account ownership.
1438
1438
 
1439
- Send a $0.01 credit with a unique verification code via RTP or same-day ACH, depending on the receiving bank's capabilities. This
1439
+ Send a $0.01 credit with a unique verification code via RTP, FedNow, or same-day ACH, depending on the receiving bank's capabilities. This
1440
1440
  feature provides a faster alternative to traditional methods, allowing verification in a single session.
1441
1441
 
1442
1442
  It is recommended to use the `X-Wait-For: rail-response` header to synchronously receive the outcome of the instant credit in the
1443
1443
  response payload.
1444
1444
 
1445
1445
  Possible verification methods:
1446
- - `instant`: Real-time verification credit sent via RTP
1446
+ - `instant`: Real-time verification credit sent via RTP or FedNow
1447
1447
  - `ach`: Verification credit sent via same-day ACH
1448
1448
 
1449
1449
  Possible statuses:
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.2",
34034
- genVersion: "2.778.0",
34035
- userAgent: "speakeasy-sdk/typescript 0.22.2 2.778.0 latest @moovio/sdk"
34033
+ sdkVersion: "0.22.4",
34034
+ genVersion: "2.781.2",
34035
+ userAgent: "speakeasy-sdk/typescript 0.22.4 2.781.2 latest @moovio/sdk"
34036
34036
  };
34037
34037
  });
34038
34038
 
@@ -36371,6 +36371,43 @@ var init_accountcountries = __esm(() => {
36371
36371
  });
36372
36372
  });
36373
36373
 
36374
+ // src/models/components/amountdecimal.ts
36375
+ var AmountDecimal$inboundSchema, AmountDecimal$outboundSchema;
36376
+ var init_amountdecimal = __esm(() => {
36377
+ init_esm();
36378
+ AmountDecimal$inboundSchema = objectType({
36379
+ currency: stringType(),
36380
+ valueDecimal: stringType()
36381
+ });
36382
+ AmountDecimal$outboundSchema = objectType({
36383
+ currency: stringType(),
36384
+ valueDecimal: stringType()
36385
+ });
36386
+ });
36387
+
36388
+ // src/models/components/accountfees.ts
36389
+ var AccountFees$inboundSchema, AccountFees$outboundSchema;
36390
+ var init_accountfees = __esm(() => {
36391
+ init_esm();
36392
+ init_amountdecimal();
36393
+ AccountFees$inboundSchema = objectType({
36394
+ walletFee: AmountDecimal$inboundSchema,
36395
+ merchantPCIFee: AmountDecimal$inboundSchema,
36396
+ kybFee: AmountDecimal$inboundSchema.optional(),
36397
+ kycFee: AmountDecimal$inboundSchema.optional(),
36398
+ transactionMonitoringFee: AmountDecimal$inboundSchema.optional(),
36399
+ total: AmountDecimal$inboundSchema
36400
+ });
36401
+ AccountFees$outboundSchema = objectType({
36402
+ walletFee: AmountDecimal$outboundSchema,
36403
+ merchantPCIFee: AmountDecimal$outboundSchema,
36404
+ kybFee: AmountDecimal$outboundSchema.optional(),
36405
+ kycFee: AmountDecimal$outboundSchema.optional(),
36406
+ transactionMonitoringFee: AmountDecimal$outboundSchema.optional(),
36407
+ total: AmountDecimal$outboundSchema
36408
+ });
36409
+ });
36410
+
36374
36411
  // src/models/components/cardverificationresult.ts
36375
36412
  var CardVerificationResult, CardVerificationResult$inboundSchema, CardVerificationResult$outboundSchema;
36376
36413
  var init_cardverificationresult = __esm(() => {
@@ -36578,20 +36615,6 @@ var init_achexception = __esm(() => {
36578
36615
  });
36579
36616
  });
36580
36617
 
36581
- // src/models/components/amountdecimal.ts
36582
- var AmountDecimal$inboundSchema, AmountDecimal$outboundSchema;
36583
- var init_amountdecimal = __esm(() => {
36584
- init_esm();
36585
- AmountDecimal$inboundSchema = objectType({
36586
- currency: stringType(),
36587
- valueDecimal: stringType()
36588
- });
36589
- AmountDecimal$outboundSchema = objectType({
36590
- currency: stringType(),
36591
- valueDecimal: stringType()
36592
- });
36593
- });
36594
-
36595
36618
  // src/models/components/billingcountandamount.ts
36596
36619
  var BillingCountAndAmount$inboundSchema, BillingCountAndAmount$outboundSchema;
36597
36620
  var init_billingcountandamount = __esm(() => {
@@ -37446,11 +37469,13 @@ var init_bankaccountexception = __esm(() => {
37446
37469
  BankAccountException$inboundSchema = objectType({
37447
37470
  achReturnCode: ACHReturnCode$inboundSchema.optional(),
37448
37471
  rtpRejectionCode: RTPRejectionCode$inboundSchema.optional(),
37472
+ fednowRejectionCode: stringType().optional(),
37449
37473
  description: stringType()
37450
37474
  });
37451
37475
  BankAccountException$outboundSchema = objectType({
37452
37476
  achReturnCode: ACHReturnCode$outboundSchema.optional(),
37453
37477
  rtpRejectionCode: RTPRejectionCode$outboundSchema.optional(),
37478
+ fednowRejectionCode: stringType().optional(),
37454
37479
  description: stringType()
37455
37480
  });
37456
37481
  });
@@ -37471,6 +37496,7 @@ var init_bankaccountstatusreason = __esm(() => {
37471
37496
  AchDebitReturn: "ach-debit-return",
37472
37497
  AchCreditReturn: "ach-credit-return",
37473
37498
  RtpCreditFailure: "rtp-credit-failure",
37499
+ FednowCreditFailure: "fednow-credit-failure",
37474
37500
  MicroDepositReturn: "micro-deposit-return",
37475
37501
  AdminAction: "admin-action",
37476
37502
  Other: "other"
@@ -40100,19 +40126,33 @@ var init_billinginterchangeprogramfee = __esm(() => {
40100
40126
  });
40101
40127
 
40102
40128
  // src/models/components/billingsummarydetails.ts
40103
- var BillingSummaryDetails$inboundSchema, BillingSummaryDetails$outboundSchema;
40129
+ var VolumeAmount$inboundSchema, VolumeAmount$outboundSchema, BillingSummaryDetails$inboundSchema, BillingSummaryDetails$outboundSchema;
40104
40130
  var init_billingsummarydetails = __esm(() => {
40105
40131
  init_esm();
40106
40132
  init_amountdecimal();
40133
+ VolumeAmount$inboundSchema = objectType({
40134
+ currency: stringType(),
40135
+ valueDecimal: stringType()
40136
+ });
40137
+ VolumeAmount$outboundSchema = objectType({
40138
+ currency: stringType(),
40139
+ valueDecimal: stringType()
40140
+ });
40107
40141
  BillingSummaryDetails$inboundSchema = objectType({
40108
- volumeAmount: AmountDecimal$inboundSchema.optional(),
40142
+ volumeAmount: lazyType(() => VolumeAmount$inboundSchema).optional(),
40109
40143
  volumeCount: numberType().int().optional(),
40110
- feeAmount: AmountDecimal$inboundSchema.optional()
40144
+ feeAmount: AmountDecimal$inboundSchema.optional(),
40145
+ merchantFeesCollected: AmountDecimal$inboundSchema.optional(),
40146
+ partnerFeesAssessed: AmountDecimal$inboundSchema.optional(),
40147
+ netIncome: AmountDecimal$inboundSchema.optional()
40111
40148
  });
40112
40149
  BillingSummaryDetails$outboundSchema = objectType({
40113
- volumeAmount: AmountDecimal$outboundSchema.optional(),
40150
+ volumeAmount: lazyType(() => VolumeAmount$outboundSchema).optional(),
40114
40151
  volumeCount: numberType().int().optional(),
40115
- feeAmount: AmountDecimal$outboundSchema.optional()
40152
+ feeAmount: AmountDecimal$outboundSchema.optional(),
40153
+ merchantFeesCollected: AmountDecimal$outboundSchema.optional(),
40154
+ partnerFeesAssessed: AmountDecimal$outboundSchema.optional(),
40155
+ netIncome: AmountDecimal$outboundSchema.optional()
40116
40156
  });
40117
40157
  });
40118
40158
 
@@ -40135,42 +40175,112 @@ var init_billingsummaryinterchange = __esm(() => {
40135
40175
  });
40136
40176
  });
40137
40177
 
40178
+ // src/models/components/partnerfees.ts
40179
+ var PartnerFees$inboundSchema, PartnerFees$outboundSchema;
40180
+ var init_partnerfees = __esm(() => {
40181
+ init_esm();
40182
+ init_billingcountandamount();
40183
+ PartnerFees$inboundSchema = objectType({
40184
+ minimumCommitment: BillingCountAndAmount$inboundSchema.optional(),
40185
+ monthlyPlatform: BillingCountAndAmount$inboundSchema.optional(),
40186
+ total: BillingCountAndAmount$inboundSchema
40187
+ });
40188
+ PartnerFees$outboundSchema = objectType({
40189
+ minimumCommitment: BillingCountAndAmount$outboundSchema.optional(),
40190
+ monthlyPlatform: BillingCountAndAmount$outboundSchema.optional(),
40191
+ total: BillingCountAndAmount$outboundSchema
40192
+ });
40193
+ });
40194
+
40138
40195
  // src/models/components/billingsummary.ts
40139
- var CardAcquiring$inboundSchema, CardAcquiring$outboundSchema, BillingSummary$inboundSchema, BillingSummary$outboundSchema;
40196
+ var BillingSummaryVolumeAmount$inboundSchema, BillingSummaryVolumeAmount$outboundSchema, CardAcquiring$inboundSchema, CardAcquiring$outboundSchema, BillingSummaryPlatformFees$inboundSchema, BillingSummaryPlatformFees$outboundSchema, AdjustmentFees$inboundSchema, AdjustmentFees$outboundSchema, OtherFees$inboundSchema, OtherFees$outboundSchema, BillingSummary$inboundSchema, BillingSummary$outboundSchema;
40140
40197
  var init_billingsummary = __esm(() => {
40141
40198
  init_esm();
40142
40199
  init_amountdecimal();
40143
40200
  init_billingsummarydetails();
40144
40201
  init_billingsummaryinterchange();
40202
+ init_partnerfees();
40203
+ BillingSummaryVolumeAmount$inboundSchema = objectType({
40204
+ currency: stringType(),
40205
+ valueDecimal: stringType()
40206
+ });
40207
+ BillingSummaryVolumeAmount$outboundSchema = objectType({
40208
+ currency: stringType(),
40209
+ valueDecimal: stringType()
40210
+ });
40145
40211
  CardAcquiring$inboundSchema = objectType({
40146
- volumeAmount: AmountDecimal$inboundSchema.optional(),
40212
+ volumeAmount: lazyType(() => BillingSummaryVolumeAmount$inboundSchema).optional(),
40147
40213
  volumeCount: numberType().int().optional(),
40148
40214
  feeAmount: AmountDecimal$inboundSchema.optional(),
40215
+ merchantFeesCollected: AmountDecimal$inboundSchema.optional(),
40216
+ partnerFeesAssessed: AmountDecimal$inboundSchema.optional(),
40217
+ netIncome: AmountDecimal$inboundSchema.optional(),
40149
40218
  interchangeFees: BillingSummaryInterchange$inboundSchema.optional()
40150
40219
  });
40151
40220
  CardAcquiring$outboundSchema = objectType({
40152
- volumeAmount: AmountDecimal$outboundSchema.optional(),
40221
+ volumeAmount: lazyType(() => BillingSummaryVolumeAmount$outboundSchema).optional(),
40153
40222
  volumeCount: numberType().int().optional(),
40154
40223
  feeAmount: AmountDecimal$outboundSchema.optional(),
40224
+ merchantFeesCollected: AmountDecimal$outboundSchema.optional(),
40225
+ partnerFeesAssessed: AmountDecimal$outboundSchema.optional(),
40226
+ netIncome: AmountDecimal$outboundSchema.optional(),
40155
40227
  interchangeFees: BillingSummaryInterchange$outboundSchema.optional()
40156
40228
  });
40229
+ BillingSummaryPlatformFees$inboundSchema = objectType({
40230
+ currency: stringType(),
40231
+ valueDecimal: stringType()
40232
+ });
40233
+ BillingSummaryPlatformFees$outboundSchema = objectType({
40234
+ currency: stringType(),
40235
+ valueDecimal: stringType()
40236
+ });
40237
+ AdjustmentFees$inboundSchema = objectType({
40238
+ currency: stringType(),
40239
+ valueDecimal: stringType()
40240
+ });
40241
+ AdjustmentFees$outboundSchema = objectType({
40242
+ currency: stringType(),
40243
+ valueDecimal: stringType()
40244
+ });
40245
+ OtherFees$inboundSchema = objectType({
40246
+ currency: stringType(),
40247
+ valueDecimal: stringType()
40248
+ });
40249
+ OtherFees$outboundSchema = objectType({
40250
+ currency: stringType(),
40251
+ valueDecimal: stringType()
40252
+ });
40157
40253
  BillingSummary$inboundSchema = objectType({
40158
40254
  cardAcquiring: lazyType(() => CardAcquiring$inboundSchema).optional(),
40159
40255
  ach: BillingSummaryDetails$inboundSchema.optional(),
40160
40256
  instantPayments: BillingSummaryDetails$inboundSchema.optional(),
40161
- platformFees: AmountDecimal$inboundSchema.optional(),
40162
- adjustmentFees: AmountDecimal$inboundSchema.optional(),
40163
- otherFees: AmountDecimal$inboundSchema.optional(),
40164
- total: AmountDecimal$inboundSchema.optional()
40257
+ platformFees: lazyType(() => BillingSummaryPlatformFees$inboundSchema).optional(),
40258
+ accountFees: BillingSummaryDetails$inboundSchema.optional(),
40259
+ adjustmentFees: lazyType(() => AdjustmentFees$inboundSchema).optional(),
40260
+ otherFees: lazyType(() => OtherFees$inboundSchema).optional(),
40261
+ otherCardFees: BillingSummaryDetails$inboundSchema.optional(),
40262
+ total: AmountDecimal$inboundSchema.optional(),
40263
+ netIncomeSubtotal: BillingSummaryDetails$inboundSchema.optional(),
40264
+ revenueShare: stringType().optional(),
40265
+ residualSubtotal: AmountDecimal$inboundSchema.optional(),
40266
+ monthlyPartnerCosts: PartnerFees$inboundSchema.optional(),
40267
+ netPartnerPayment: AmountDecimal$inboundSchema.optional()
40165
40268
  });
40166
40269
  BillingSummary$outboundSchema = objectType({
40167
40270
  cardAcquiring: lazyType(() => CardAcquiring$outboundSchema).optional(),
40168
40271
  ach: BillingSummaryDetails$outboundSchema.optional(),
40169
40272
  instantPayments: BillingSummaryDetails$outboundSchema.optional(),
40170
- platformFees: AmountDecimal$outboundSchema.optional(),
40171
- adjustmentFees: AmountDecimal$outboundSchema.optional(),
40172
- otherFees: AmountDecimal$outboundSchema.optional(),
40173
- total: AmountDecimal$outboundSchema.optional()
40273
+ platformFees: lazyType(() => BillingSummaryPlatformFees$outboundSchema).optional(),
40274
+ accountFees: BillingSummaryDetails$outboundSchema.optional(),
40275
+ adjustmentFees: lazyType(() => AdjustmentFees$outboundSchema).optional(),
40276
+ otherFees: lazyType(() => OtherFees$outboundSchema).optional(),
40277
+ otherCardFees: BillingSummaryDetails$outboundSchema.optional(),
40278
+ total: AmountDecimal$outboundSchema.optional(),
40279
+ netIncomeSubtotal: BillingSummaryDetails$outboundSchema.optional(),
40280
+ revenueShare: stringType().optional(),
40281
+ residualSubtotal: AmountDecimal$outboundSchema.optional(),
40282
+ monthlyPartnerCosts: PartnerFees$outboundSchema.optional(),
40283
+ netPartnerPayment: AmountDecimal$outboundSchema.optional()
40174
40284
  });
40175
40285
  });
40176
40286
 
@@ -45343,6 +45453,60 @@ var init_moovwalletpaymentmethod = __esm(() => {
45343
45453
  });
45344
45454
  });
45345
45455
 
45456
+ // src/models/components/scheduledtransferlineitemoption.ts
45457
+ var ScheduledTransferLineItemOption$inboundSchema, ScheduledTransferLineItemOption$outboundSchema;
45458
+ var init_scheduledtransferlineitemoption = __esm(() => {
45459
+ init_esm();
45460
+ init_amountdecimal();
45461
+ ScheduledTransferLineItemOption$inboundSchema = objectType({
45462
+ name: stringType(),
45463
+ quantity: numberType().int(),
45464
+ priceModifier: AmountDecimal$inboundSchema.optional(),
45465
+ group: stringType().optional()
45466
+ });
45467
+ ScheduledTransferLineItemOption$outboundSchema = objectType({
45468
+ name: stringType(),
45469
+ quantity: numberType().int(),
45470
+ priceModifier: AmountDecimal$outboundSchema.optional(),
45471
+ group: stringType().optional()
45472
+ });
45473
+ });
45474
+
45475
+ // src/models/components/scheduledtransferlineitem.ts
45476
+ var ScheduledTransferLineItem$inboundSchema, ScheduledTransferLineItem$outboundSchema;
45477
+ var init_scheduledtransferlineitem = __esm(() => {
45478
+ init_esm();
45479
+ init_amountdecimal();
45480
+ init_scheduledtransferlineitemoption();
45481
+ ScheduledTransferLineItem$inboundSchema = objectType({
45482
+ name: stringType(),
45483
+ basePrice: AmountDecimal$inboundSchema,
45484
+ quantity: numberType().int(),
45485
+ options: arrayType(ScheduledTransferLineItemOption$inboundSchema).optional(),
45486
+ productID: stringType().optional()
45487
+ });
45488
+ ScheduledTransferLineItem$outboundSchema = objectType({
45489
+ name: stringType(),
45490
+ basePrice: AmountDecimal$outboundSchema,
45491
+ quantity: numberType().int(),
45492
+ options: arrayType(ScheduledTransferLineItemOption$outboundSchema).optional(),
45493
+ productID: stringType().optional()
45494
+ });
45495
+ });
45496
+
45497
+ // src/models/components/scheduledtransferlineitems.ts
45498
+ var ScheduledTransferLineItems$inboundSchema, ScheduledTransferLineItems$outboundSchema;
45499
+ var init_scheduledtransferlineitems = __esm(() => {
45500
+ init_esm();
45501
+ init_scheduledtransferlineitem();
45502
+ ScheduledTransferLineItems$inboundSchema = objectType({
45503
+ items: arrayType(ScheduledTransferLineItem$inboundSchema)
45504
+ });
45505
+ ScheduledTransferLineItems$outboundSchema = objectType({
45506
+ items: arrayType(ScheduledTransferLineItem$outboundSchema)
45507
+ });
45508
+ });
45509
+
45346
45510
  // src/models/components/schedulepaymentmethod.ts
45347
45511
  var AchDetails$inboundSchema, AchDetails$outboundSchema, CardDetails$inboundSchema, CardDetails$outboundSchema, SchedulePaymentMethod$inboundSchema, SchedulePaymentMethod$outboundSchema;
45348
45512
  var init_schedulepaymentmethod = __esm(() => {
@@ -45378,20 +45542,25 @@ var RunTransfer$inboundSchema, RunTransfer$outboundSchema;
45378
45542
  var init_runtransfer = __esm(() => {
45379
45543
  init_esm();
45380
45544
  init_amount();
45545
+ init_scheduledtransferlineitems();
45381
45546
  init_schedulepaymentmethod();
45382
45547
  RunTransfer$inboundSchema = objectType({
45383
45548
  amount: Amount$inboundSchema,
45549
+ salesTaxAmount: Amount$inboundSchema.optional(),
45384
45550
  destination: SchedulePaymentMethod$inboundSchema,
45385
45551
  partnerAccountID: stringType(),
45386
45552
  source: SchedulePaymentMethod$inboundSchema,
45387
- description: stringType()
45553
+ description: stringType(),
45554
+ lineItems: ScheduledTransferLineItems$inboundSchema.optional()
45388
45555
  });
45389
45556
  RunTransfer$outboundSchema = objectType({
45390
45557
  amount: Amount$outboundSchema,
45558
+ salesTaxAmount: Amount$outboundSchema.optional(),
45391
45559
  destination: SchedulePaymentMethod$outboundSchema,
45392
45560
  partnerAccountID: stringType(),
45393
45561
  source: SchedulePaymentMethod$outboundSchema,
45394
- description: stringType()
45562
+ description: stringType(),
45563
+ lineItems: ScheduledTransferLineItems$outboundSchema.optional()
45395
45564
  });
45396
45565
  });
45397
45566
 
@@ -46987,11 +47156,13 @@ var init_sendfundserror = __esm(() => {
46987
47156
  var Statement$inboundSchema, Statement$outboundSchema;
46988
47157
  var init_statement = __esm(() => {
46989
47158
  init_esm();
47159
+ init_accountfees();
46990
47160
  init_achfees();
46991
47161
  init_billingsummary();
46992
47162
  init_cardacquiringfees();
46993
47163
  init_instantpaymentfees();
46994
47164
  init_othercardfees();
47165
+ init_partnerfees();
46995
47166
  init_platformfees();
46996
47167
  Statement$inboundSchema = objectType({
46997
47168
  statementID: stringType(),
@@ -47006,7 +47177,9 @@ var init_statement = __esm(() => {
47006
47177
  achFees: ACHFees$inboundSchema.optional(),
47007
47178
  instantPaymentFees: InstantPaymentFees$inboundSchema.optional(),
47008
47179
  platformFees: PlatformFees$inboundSchema.optional(),
47180
+ accountFees: AccountFees$inboundSchema.optional(),
47009
47181
  otherCardFees: OtherCardFees$inboundSchema.optional(),
47182
+ partnerFees: PartnerFees$inboundSchema.optional(),
47010
47183
  createdOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)),
47011
47184
  updatedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2))
47012
47185
  });
@@ -47023,7 +47196,9 @@ var init_statement = __esm(() => {
47023
47196
  achFees: ACHFees$outboundSchema.optional(),
47024
47197
  instantPaymentFees: InstantPaymentFees$outboundSchema.optional(),
47025
47198
  platformFees: PlatformFees$outboundSchema.optional(),
47199
+ accountFees: AccountFees$outboundSchema.optional(),
47026
47200
  otherCardFees: OtherCardFees$outboundSchema.optional(),
47201
+ partnerFees: PartnerFees$outboundSchema.optional(),
47027
47202
  createdOn: dateType().transform((v2) => v2.toISOString()),
47028
47203
  updatedOn: dateType().transform((v2) => v2.toISOString())
47029
47204
  });
@@ -49008,6 +49183,7 @@ var init_components = __esm(() => {
49008
49183
  init_account();
49009
49184
  init_accountcapability();
49010
49185
  init_accountcountries();
49186
+ init_accountfees();
49011
49187
  init_accountnameverification();
49012
49188
  init_accountterminalapplication();
49013
49189
  init_accounttype();
@@ -49317,6 +49493,7 @@ var init_components = __esm(() => {
49317
49493
  init_onboardingpartneraccount();
49318
49494
  init_othercardfees();
49319
49495
  init_partialscheduleaccount();
49496
+ init_partnerfees();
49320
49497
  init_partnerpricing();
49321
49498
  init_partnerpricingagreement();
49322
49499
  init_patchaccount();
@@ -49399,6 +49576,9 @@ var init_components = __esm(() => {
49399
49576
  init_rtptransactiondetails();
49400
49577
  init_rtptransactionstatus();
49401
49578
  init_runtransfer();
49579
+ init_scheduledtransferlineitem();
49580
+ init_scheduledtransferlineitemoption();
49581
+ init_scheduledtransferlineitems();
49402
49582
  init_schedulelistresponse();
49403
49583
  init_schedulepaymentmethod();
49404
49584
  init_scheduleresponse();
@@ -64330,7 +64510,7 @@ var init_bankAccountsGetVerification2 = __esm(() => {
64330
64510
  };
64331
64511
  tool$bankAccountsGetVerification = {
64332
64512
  name: "bank-accounts-get-verification",
64333
- description: `Retrieve the current status and details of an instant verification, including whether the verification method was instant or same-day
64513
+ description: `Retrieve the current status and details of an instant verification, including whether the verification method was instant (RTP or FedNow) or same-day
64334
64514
  ACH. This helps track the verification process in real-time and provides details in case of exceptions.
64335
64515
 
64336
64516
  The status will indicate the following:
@@ -64603,14 +64783,14 @@ var init_bankAccountsInitiateVerification2 = __esm(() => {
64603
64783
  name: "bank-accounts-initiate-verification",
64604
64784
  description: `Instant micro-deposit verification offers a quick and efficient way to verify bank account ownership.
64605
64785
 
64606
- Send a $0.01 credit with a unique verification code via RTP or same-day ACH, depending on the receiving bank's capabilities. This
64786
+ Send a $0.01 credit with a unique verification code via RTP, FedNow, or same-day ACH, depending on the receiving bank's capabilities. This
64607
64787
  feature provides a faster alternative to traditional methods, allowing verification in a single session.
64608
64788
 
64609
64789
  It is recommended to use the \`X-Wait-For: rail-response\` header to synchronously receive the outcome of the instant credit in the
64610
64790
  response payload.
64611
64791
 
64612
64792
  Possible verification methods:
64613
- - \`instant\`: Real-time verification credit sent via RTP
64793
+ - \`instant\`: Real-time verification credit sent via RTP or FedNow
64614
64794
  - \`ach\`: Verification credit sent via same-day ACH
64615
64795
 
64616
64796
  Possible statuses:
@@ -81246,7 +81426,7 @@ you'll need to specify the \`/accounts/{accountID}/wallets.read\` scope.`,
81246
81426
  function createMCPServer(deps) {
81247
81427
  const server = new McpServer({
81248
81428
  name: "Moov",
81249
- version: "0.22.2"
81429
+ version: "0.22.4"
81250
81430
  });
81251
81431
  const client = new MoovCore({
81252
81432
  security: deps.security,
@@ -82804,7 +82984,7 @@ var routes = rn({
82804
82984
  var app = Ve(routes, {
82805
82985
  name: "mcp",
82806
82986
  versionInfo: {
82807
- currentVersion: "0.22.2"
82987
+ currentVersion: "0.22.4"
82808
82988
  }
82809
82989
  });
82810
82990
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -82812,5 +82992,5 @@ export {
82812
82992
  app
82813
82993
  };
82814
82994
 
82815
- //# debugId=2174C98B4B1BDD6E64756E2164756E21
82995
+ //# debugId=6D101F325D13813464756E2164756E21
82816
82996
  //# sourceMappingURL=mcp-server.js.map