@moovio/sdk 26.2.4 → 26.2.7

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 (61) hide show
  1. package/bin/mcp-server.js +44 -33
  2. package/bin/mcp-server.js.map +23 -22
  3. package/jsr.json +1 -1
  4. package/lib/config.d.ts +3 -3
  5. package/lib/config.js +3 -3
  6. package/lib/config.js.map +1 -1
  7. package/mcp-server/mcp-server.js +1 -1
  8. package/mcp-server/server.js +1 -1
  9. package/models/components/createdtransfer.d.ts +1 -1
  10. package/models/components/createpaymentlink.d.ts +1 -1
  11. package/models/components/createpaymentlinklineitems.d.ts +1 -1
  12. package/models/components/createpaymentlinklineitemsupdate.d.ts +1 -1
  13. package/models/components/createtransfer.d.ts +1 -1
  14. package/models/components/createtransferlineitems.d.ts +1 -1
  15. package/models/components/index.d.ts +1 -0
  16. package/models/components/index.d.ts.map +1 -1
  17. package/models/components/index.js +1 -0
  18. package/models/components/index.js.map +1 -1
  19. package/models/components/paymentlink.d.ts +1 -1
  20. package/models/components/paymentlinklineitems.d.ts +1 -1
  21. package/models/components/rtptransactiondetails.d.ts +45 -0
  22. package/models/components/rtptransactiondetails.d.ts.map +1 -0
  23. package/models/components/rtptransactiondetails.js +75 -0
  24. package/models/components/rtptransactiondetails.js.map +1 -0
  25. package/models/components/transfer.d.ts +1 -1
  26. package/models/components/transferdestination.d.ts +5 -43
  27. package/models/components/transferdestination.d.ts.map +1 -1
  28. package/models/components/transferdestination.js +4 -36
  29. package/models/components/transferdestination.js.map +1 -1
  30. package/models/components/transferlineitems.d.ts +1 -1
  31. package/models/components/updatepaymentlink.d.ts +1 -1
  32. package/models/components/webhookdata.d.ts +2 -2
  33. package/models/components/webhookdata.d.ts.map +1 -1
  34. package/models/components/webhookdata.js +2 -2
  35. package/models/components/webhookdata.js.map +1 -1
  36. package/models/components/webhookdatabankaccountdeleted.d.ts +3 -0
  37. package/models/components/webhookdatabankaccountdeleted.d.ts.map +1 -1
  38. package/models/components/webhookdatabankaccountdeleted.js +3 -0
  39. package/models/components/webhookdatabankaccountdeleted.js.map +1 -1
  40. package/models/errors/transfer.d.ts +2 -2
  41. package/package.json +1 -1
  42. package/src/lib/config.ts +3 -3
  43. package/src/mcp-server/mcp-server.ts +1 -1
  44. package/src/mcp-server/server.ts +1 -1
  45. package/src/models/components/createdtransfer.ts +1 -1
  46. package/src/models/components/createpaymentlink.ts +1 -1
  47. package/src/models/components/createpaymentlinklineitems.ts +1 -1
  48. package/src/models/components/createpaymentlinklineitemsupdate.ts +1 -1
  49. package/src/models/components/createtransfer.ts +1 -1
  50. package/src/models/components/createtransferlineitems.ts +1 -1
  51. package/src/models/components/index.ts +1 -0
  52. package/src/models/components/paymentlink.ts +1 -1
  53. package/src/models/components/paymentlinklineitems.ts +1 -1
  54. package/src/models/components/rtptransactiondetails.ts +104 -0
  55. package/src/models/components/transfer.ts +1 -1
  56. package/src/models/components/transferdestination.ts +11 -95
  57. package/src/models/components/transferlineitems.ts +1 -1
  58. package/src/models/components/updatepaymentlink.ts +1 -1
  59. package/src/models/components/webhookdata.ts +4 -4
  60. package/src/models/components/webhookdatabankaccountdeleted.ts +9 -0
  61. package/src/models/errors/transfer.ts +2 -2
@@ -41,11 +41,11 @@ import { WebhookDataWalletUpdated, WebhookDataWalletUpdated$Outbound } from "./w
41
41
  /**
42
42
  * The data for the webhook event. The contents are based on the event type.
43
43
  */
44
- export type WebhookData = WebhookDataDisputeCreated | WebhookDataDisputeUpdated | WebhookDataTransferUpdated | WebhookDataBankAccountUpdated | WebhookDataRefundUpdated | WebhookDataWalletTransactionUpdated | WebhookDataBankAccountCreated | WebhookDataCancellationCreated | WebhookDataCancellationUpdated | WebhookDataCardAutoUpdated | WebhookDataCapabilityUpdated | WebhookDataInvoiceUpdated | WebhookDataPaymentMethodEnabled | WebhookDataPaymentMethodDisabled | WebhookDataRefundCreated | WebhookDataSweepUpdated | WebhookDataTicketUpdated | WebhookDataTransferCreated | WebhookDataWalletUpdated | WebhookDataBalanceUpdated | WebhookDataBankAccountDeleted | WebhookDataCapabilityRequested | WebhookDataInvoiceCreated | WebhookDataRepresentativeCreated | WebhookDataRepresentativeUpdated | WebhookDataRepresentativeDisabled | WebhookDataSweepCreated | WebhookDataTerminalApplicationCreated | WebhookDataTerminalApplicationUpdated | WebhookDataTicketCreated | WebhookDataTicketMessageAdded | WebhookDataWalletCreated | WebhookBillingStatementCreated | WebhookDataAccountCreated | WebhookDataAccountUpdated | WebhookDataAccountDisconnected | WebhookDataNetworkIDUpdated;
44
+ export type WebhookData = WebhookDataDisputeCreated | WebhookDataDisputeUpdated | WebhookDataTransferUpdated | WebhookDataBankAccountUpdated | WebhookDataRefundUpdated | WebhookDataWalletTransactionUpdated | WebhookDataBankAccountCreated | WebhookDataBankAccountDeleted | WebhookDataCancellationCreated | WebhookDataCancellationUpdated | WebhookDataCardAutoUpdated | WebhookDataCapabilityUpdated | WebhookDataInvoiceUpdated | WebhookDataPaymentMethodEnabled | WebhookDataPaymentMethodDisabled | WebhookDataRefundCreated | WebhookDataSweepUpdated | WebhookDataTicketUpdated | WebhookDataTransferCreated | WebhookDataWalletUpdated | WebhookDataBalanceUpdated | WebhookDataCapabilityRequested | WebhookDataInvoiceCreated | WebhookDataRepresentativeCreated | WebhookDataRepresentativeUpdated | WebhookDataRepresentativeDisabled | WebhookDataSweepCreated | WebhookDataTerminalApplicationCreated | WebhookDataTerminalApplicationUpdated | WebhookDataTicketCreated | WebhookDataTicketMessageAdded | WebhookDataWalletCreated | WebhookBillingStatementCreated | WebhookDataAccountCreated | WebhookDataAccountUpdated | WebhookDataAccountDisconnected | WebhookDataNetworkIDUpdated;
45
45
  /** @internal */
46
46
  export declare const WebhookData$inboundSchema: z.ZodType<WebhookData, z.ZodTypeDef, unknown>;
47
47
  /** @internal */
48
- export type WebhookData$Outbound = WebhookDataDisputeCreated$Outbound | WebhookDataDisputeUpdated$Outbound | WebhookDataTransferUpdated$Outbound | WebhookDataBankAccountUpdated$Outbound | WebhookDataRefundUpdated$Outbound | WebhookDataWalletTransactionUpdated$Outbound | WebhookDataBankAccountCreated$Outbound | WebhookDataCancellationCreated$Outbound | WebhookDataCancellationUpdated$Outbound | WebhookDataCardAutoUpdated$Outbound | WebhookDataCapabilityUpdated$Outbound | WebhookDataInvoiceUpdated$Outbound | WebhookDataPaymentMethodEnabled$Outbound | WebhookDataPaymentMethodDisabled$Outbound | WebhookDataRefundCreated$Outbound | WebhookDataSweepUpdated$Outbound | WebhookDataTicketUpdated$Outbound | WebhookDataTransferCreated$Outbound | WebhookDataWalletUpdated$Outbound | WebhookDataBalanceUpdated$Outbound | WebhookDataBankAccountDeleted$Outbound | WebhookDataCapabilityRequested$Outbound | WebhookDataInvoiceCreated$Outbound | WebhookDataRepresentativeCreated$Outbound | WebhookDataRepresentativeUpdated$Outbound | WebhookDataRepresentativeDisabled$Outbound | WebhookDataSweepCreated$Outbound | WebhookDataTerminalApplicationCreated$Outbound | WebhookDataTerminalApplicationUpdated$Outbound | WebhookDataTicketCreated$Outbound | WebhookDataTicketMessageAdded$Outbound | WebhookDataWalletCreated$Outbound | WebhookBillingStatementCreated$Outbound | WebhookDataAccountCreated$Outbound | WebhookDataAccountUpdated$Outbound | WebhookDataAccountDisconnected$Outbound | WebhookDataNetworkIDUpdated$Outbound;
48
+ export type WebhookData$Outbound = WebhookDataDisputeCreated$Outbound | WebhookDataDisputeUpdated$Outbound | WebhookDataTransferUpdated$Outbound | WebhookDataBankAccountUpdated$Outbound | WebhookDataRefundUpdated$Outbound | WebhookDataWalletTransactionUpdated$Outbound | WebhookDataBankAccountCreated$Outbound | WebhookDataBankAccountDeleted$Outbound | WebhookDataCancellationCreated$Outbound | WebhookDataCancellationUpdated$Outbound | WebhookDataCardAutoUpdated$Outbound | WebhookDataCapabilityUpdated$Outbound | WebhookDataInvoiceUpdated$Outbound | WebhookDataPaymentMethodEnabled$Outbound | WebhookDataPaymentMethodDisabled$Outbound | WebhookDataRefundCreated$Outbound | WebhookDataSweepUpdated$Outbound | WebhookDataTicketUpdated$Outbound | WebhookDataTransferCreated$Outbound | WebhookDataWalletUpdated$Outbound | WebhookDataBalanceUpdated$Outbound | WebhookDataCapabilityRequested$Outbound | WebhookDataInvoiceCreated$Outbound | WebhookDataRepresentativeCreated$Outbound | WebhookDataRepresentativeUpdated$Outbound | WebhookDataRepresentativeDisabled$Outbound | WebhookDataSweepCreated$Outbound | WebhookDataTerminalApplicationCreated$Outbound | WebhookDataTerminalApplicationUpdated$Outbound | WebhookDataTicketCreated$Outbound | WebhookDataTicketMessageAdded$Outbound | WebhookDataWalletCreated$Outbound | WebhookBillingStatementCreated$Outbound | WebhookDataAccountCreated$Outbound | WebhookDataAccountUpdated$Outbound | WebhookDataAccountDisconnected$Outbound | WebhookDataNetworkIDUpdated$Outbound;
49
49
  /** @internal */
50
50
  export declare const WebhookData$outboundSchema: z.ZodType<WebhookData$Outbound, z.ZodTypeDef, WebhookData>;
51
51
  export declare function webhookDataToJSON(webhookData: WebhookData): string;
@@ -1 +1 @@
1
- {"version":3,"file":"webhookdata.d.ts","sourceRoot":"","sources":["../../src/models/components/webhookdata.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"webhookdata.d.ts","sourceRoot":"","sources":["../../src/models/components/webhookdata.ts"],"names":[],"mappings":"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"}
@@ -87,6 +87,7 @@ exports.WebhookData$inboundSchema = z.union([
87
87
  webhookdatarefundupdated_js_1.WebhookDataRefundUpdated$inboundSchema,
88
88
  webhookdatawallettransactionupdated_js_1.WebhookDataWalletTransactionUpdated$inboundSchema,
89
89
  webhookdatabankaccountcreated_js_1.WebhookDataBankAccountCreated$inboundSchema,
90
+ webhookdatabankaccountdeleted_js_1.WebhookDataBankAccountDeleted$inboundSchema,
90
91
  webhookdatacancellationcreated_js_1.WebhookDataCancellationCreated$inboundSchema,
91
92
  webhookdatacancellationupdated_js_1.WebhookDataCancellationUpdated$inboundSchema,
92
93
  webhookdatacardautoupdated_js_1.WebhookDataCardAutoUpdated$inboundSchema,
@@ -100,7 +101,6 @@ exports.WebhookData$inboundSchema = z.union([
100
101
  webhookdatatransfercreated_js_1.WebhookDataTransferCreated$inboundSchema,
101
102
  webhookdatawalletupdated_js_1.WebhookDataWalletUpdated$inboundSchema,
102
103
  webhookdatabalanceupdated_js_1.WebhookDataBalanceUpdated$inboundSchema,
103
- webhookdatabankaccountdeleted_js_1.WebhookDataBankAccountDeleted$inboundSchema,
104
104
  webhookdatacapabilityrequested_js_1.WebhookDataCapabilityRequested$inboundSchema,
105
105
  webhookdatainvoicecreated_js_1.WebhookDataInvoiceCreated$inboundSchema,
106
106
  webhookdatarepresentativecreated_js_1.WebhookDataRepresentativeCreated$inboundSchema,
@@ -127,6 +127,7 @@ exports.WebhookData$outboundSchema = z.union([
127
127
  webhookdatarefundupdated_js_1.WebhookDataRefundUpdated$outboundSchema,
128
128
  webhookdatawallettransactionupdated_js_1.WebhookDataWalletTransactionUpdated$outboundSchema,
129
129
  webhookdatabankaccountcreated_js_1.WebhookDataBankAccountCreated$outboundSchema,
130
+ webhookdatabankaccountdeleted_js_1.WebhookDataBankAccountDeleted$outboundSchema,
130
131
  webhookdatacancellationcreated_js_1.WebhookDataCancellationCreated$outboundSchema,
131
132
  webhookdatacancellationupdated_js_1.WebhookDataCancellationUpdated$outboundSchema,
132
133
  webhookdatacardautoupdated_js_1.WebhookDataCardAutoUpdated$outboundSchema,
@@ -140,7 +141,6 @@ exports.WebhookData$outboundSchema = z.union([
140
141
  webhookdatatransfercreated_js_1.WebhookDataTransferCreated$outboundSchema,
141
142
  webhookdatawalletupdated_js_1.WebhookDataWalletUpdated$outboundSchema,
142
143
  webhookdatabalanceupdated_js_1.WebhookDataBalanceUpdated$outboundSchema,
143
- webhookdatabankaccountdeleted_js_1.WebhookDataBankAccountDeleted$outboundSchema,
144
144
  webhookdatacapabilityrequested_js_1.WebhookDataCapabilityRequested$outboundSchema,
145
145
  webhookdatainvoicecreated_js_1.WebhookDataInvoiceCreated$outboundSchema,
146
146
  webhookdatarepresentativecreated_js_1.WebhookDataRepresentativeCreated$outboundSchema,
@@ -1 +1 @@
1
- {"version":3,"file":"webhookdata.js","sourceRoot":"","sources":["../../src/models/components/webhookdata.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgZH,8CAEC;AACD,kDAQC;AAzZD,0CAA4B;AAC5B,qDAAiD;AAGjD,2FAK6C;AAC7C,iFAKwC;AACxC,2FAK6C;AAC7C,iFAKwC;AACxC,iFAKwC;AACxC,yFAK4C;AAC5C,yFAK4C;AAC5C,yFAK4C;AAC5C,2FAK6C;AAC7C,2FAK6C;AAC7C,2FAK6C;AAC7C,uFAK2C;AAC3C,mFAKyC;AACzC,iFAKwC;AACxC,iFAKwC;AACxC,iFAKwC;AACxC,iFAKwC;AACxC,qFAK0C;AAC1C,+FAK+C;AAC/C,6FAK8C;AAC9C,+EAKuC;AACvC,+EAKuC;AACvC,+FAK+C;AAC/C,iGAKgD;AAChD,+FAK+C;AAC/C,6EAKsC;AACtC,6EAKsC;AACtC,yGAKoD;AACpD,yGAKoD;AACpD,+EAKuC;AACvC,yFAK4C;AAC5C,+EAKuC;AACvC,mFAKyC;AACzC,mFAKyC;AACzC,+EAKuC;AACvC,qGAKkD;AAClD,+EAKuC;AA4CvC,gBAAgB;AACH,QAAA,yBAAyB,GAIlC,CAAC,CAAC,KAAK,CAAC;IACV,sEAAuC;IACvC,sEAAuC;IACvC,wEAAwC;IACxC,8EAA2C;IAC3C,oEAAsC;IACtC,0FAAiD;IACjD,8EAA2C;IAC3C,gFAA4C;IAC5C,gFAA4C;IAC5C,wEAAwC;IACxC,4EAA0C;IAC1C,sEAAuC;IACvC,kFAA6C;IAC7C,oFAA8C;IAC9C,oEAAsC;IACtC,kEAAqC;IACrC,oEAAsC;IACtC,wEAAwC;IACxC,oEAAsC;IACtC,sEAAuC;IACvC,8EAA2C;IAC3C,gFAA4C;IAC5C,sEAAuC;IACvC,oFAA8C;IAC9C,oFAA8C;IAC9C,sFAA+C;IAC/C,kEAAqC;IACrC,8FAAmD;IACnD,8FAAmD;IACnD,oEAAsC;IACtC,8EAA2C;IAC3C,oEAAsC;IACtC,gFAA4C;IAC5C,sEAAuC;IACvC,sEAAuC;IACvC,gFAA4C;IAC5C,0EAAyC;CAC1C,CAAC,CAAC;AAyCH,gBAAgB;AACH,QAAA,0BAA0B,GAInC,CAAC,CAAC,KAAK,CAAC;IACV,uEAAwC;IACxC,uEAAwC;IACxC,yEAAyC;IACzC,+EAA4C;IAC5C,qEAAuC;IACvC,2FAAkD;IAClD,+EAA4C;IAC5C,iFAA6C;IAC7C,iFAA6C;IAC7C,yEAAyC;IACzC,6EAA2C;IAC3C,uEAAwC;IACxC,mFAA8C;IAC9C,qFAA+C;IAC/C,qEAAuC;IACvC,mEAAsC;IACtC,qEAAuC;IACvC,yEAAyC;IACzC,qEAAuC;IACvC,uEAAwC;IACxC,+EAA4C;IAC5C,iFAA6C;IAC7C,uEAAwC;IACxC,qFAA+C;IAC/C,qFAA+C;IAC/C,uFAAgD;IAChD,mEAAsC;IACtC,+FAAoD;IACpD,+FAAoD;IACpD,qEAAuC;IACvC,+EAA4C;IAC5C,qEAAuC;IACvC,iFAA6C;IAC7C,uEAAwC;IACxC,uEAAwC;IACxC,iFAA6C;IAC7C,2EAA0C;CAC3C,CAAC,CAAC;AAEH,SAAgB,iBAAiB,CAAC,WAAwB;IACxD,OAAO,IAAI,CAAC,SAAS,CAAC,kCAA0B,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC;AACvE,CAAC;AACD,SAAgB,mBAAmB,CACjC,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,iCAAyB,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACrD,yCAAyC,CAC1C,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"webhookdata.js","sourceRoot":"","sources":["../../src/models/components/webhookdata.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgZH,8CAEC;AACD,kDAQC;AAzZD,0CAA4B;AAC5B,qDAAiD;AAGjD,2FAK6C;AAC7C,iFAKwC;AACxC,2FAK6C;AAC7C,iFAKwC;AACxC,iFAKwC;AACxC,yFAK4C;AAC5C,yFAK4C;AAC5C,yFAK4C;AAC5C,2FAK6C;AAC7C,2FAK6C;AAC7C,2FAK6C;AAC7C,uFAK2C;AAC3C,mFAKyC;AACzC,iFAKwC;AACxC,iFAKwC;AACxC,iFAKwC;AACxC,iFAKwC;AACxC,qFAK0C;AAC1C,+FAK+C;AAC/C,6FAK8C;AAC9C,+EAKuC;AACvC,+EAKuC;AACvC,+FAK+C;AAC/C,iGAKgD;AAChD,+FAK+C;AAC/C,6EAKsC;AACtC,6EAKsC;AACtC,yGAKoD;AACpD,yGAKoD;AACpD,+EAKuC;AACvC,yFAK4C;AAC5C,+EAKuC;AACvC,mFAKyC;AACzC,mFAKyC;AACzC,+EAKuC;AACvC,qGAKkD;AAClD,+EAKuC;AA4CvC,gBAAgB;AACH,QAAA,yBAAyB,GAIlC,CAAC,CAAC,KAAK,CAAC;IACV,sEAAuC;IACvC,sEAAuC;IACvC,wEAAwC;IACxC,8EAA2C;IAC3C,oEAAsC;IACtC,0FAAiD;IACjD,8EAA2C;IAC3C,8EAA2C;IAC3C,gFAA4C;IAC5C,gFAA4C;IAC5C,wEAAwC;IACxC,4EAA0C;IAC1C,sEAAuC;IACvC,kFAA6C;IAC7C,oFAA8C;IAC9C,oEAAsC;IACtC,kEAAqC;IACrC,oEAAsC;IACtC,wEAAwC;IACxC,oEAAsC;IACtC,sEAAuC;IACvC,gFAA4C;IAC5C,sEAAuC;IACvC,oFAA8C;IAC9C,oFAA8C;IAC9C,sFAA+C;IAC/C,kEAAqC;IACrC,8FAAmD;IACnD,8FAAmD;IACnD,oEAAsC;IACtC,8EAA2C;IAC3C,oEAAsC;IACtC,gFAA4C;IAC5C,sEAAuC;IACvC,sEAAuC;IACvC,gFAA4C;IAC5C,0EAAyC;CAC1C,CAAC,CAAC;AAyCH,gBAAgB;AACH,QAAA,0BAA0B,GAInC,CAAC,CAAC,KAAK,CAAC;IACV,uEAAwC;IACxC,uEAAwC;IACxC,yEAAyC;IACzC,+EAA4C;IAC5C,qEAAuC;IACvC,2FAAkD;IAClD,+EAA4C;IAC5C,+EAA4C;IAC5C,iFAA6C;IAC7C,iFAA6C;IAC7C,yEAAyC;IACzC,6EAA2C;IAC3C,uEAAwC;IACxC,mFAA8C;IAC9C,qFAA+C;IAC/C,qEAAuC;IACvC,mEAAsC;IACtC,qEAAuC;IACvC,yEAAyC;IACzC,qEAAuC;IACvC,uEAAwC;IACxC,iFAA6C;IAC7C,uEAAwC;IACxC,qFAA+C;IAC/C,qFAA+C;IAC/C,uFAAgD;IAChD,mEAAsC;IACtC,+FAAoD;IACpD,+FAAoD;IACpD,qEAAuC;IACvC,+EAA4C;IAC5C,qEAAuC;IACvC,iFAA6C;IAC7C,uEAAwC;IACxC,uEAAwC;IACxC,iFAA6C;IAC7C,2EAA0C;CAC3C,CAAC,CAAC;AAEH,SAAgB,iBAAiB,CAAC,WAAwB;IACxD,OAAO,IAAI,CAAC,SAAS,CAAC,kCAA0B,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC;AACvE,CAAC;AACD,SAAgB,mBAAmB,CACjC,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,iCAAyB,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACrD,yCAAyC,CAC1C,CAAC;AACJ,CAAC"}
@@ -1,9 +1,11 @@
1
1
  import * as z from "zod/v3";
2
2
  import { Result as SafeParseResult } from "../../types/fp.js";
3
3
  import { SDKValidationError } from "../errors/sdkvalidationerror.js";
4
+ import { BankAccountStatus } from "./bankaccountstatus.js";
4
5
  export type WebhookDataBankAccountDeleted = {
5
6
  bankAccountID: string;
6
7
  accountID: string;
8
+ status: BankAccountStatus;
7
9
  };
8
10
  /** @internal */
9
11
  export declare const WebhookDataBankAccountDeleted$inboundSchema: z.ZodType<WebhookDataBankAccountDeleted, z.ZodTypeDef, unknown>;
@@ -11,6 +13,7 @@ export declare const WebhookDataBankAccountDeleted$inboundSchema: z.ZodType<Webh
11
13
  export type WebhookDataBankAccountDeleted$Outbound = {
12
14
  bankAccountID: string;
13
15
  accountID: string;
16
+ status: string;
14
17
  };
15
18
  /** @internal */
16
19
  export declare const WebhookDataBankAccountDeleted$outboundSchema: z.ZodType<WebhookDataBankAccountDeleted$Outbound, z.ZodTypeDef, WebhookDataBankAccountDeleted>;
@@ -1 +1 @@
1
- {"version":3,"file":"webhookdatabankaccountdeleted.d.ts","sourceRoot":"","sources":["../../src/models/components/webhookdatabankaccountdeleted.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAE5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAErE,MAAM,MAAM,6BAA6B,GAAG;IAC1C,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,2CAA2C,EAAE,CAAC,CAAC,OAAO,CACjE,6BAA6B,EAC7B,CAAC,CAAC,UAAU,EACZ,OAAO,CAIP,CAAC;AACH,gBAAgB;AAChB,MAAM,MAAM,sCAAsC,GAAG;IACnD,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,4CAA4C,EAAE,CAAC,CAAC,OAAO,CAClE,sCAAsC,EACtC,CAAC,CAAC,UAAU,EACZ,6BAA6B,CAI7B,CAAC;AAEH,wBAAgB,mCAAmC,CACjD,6BAA6B,EAAE,6BAA6B,GAC3D,MAAM,CAMR;AACD,wBAAgB,qCAAqC,CACnD,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,6BAA6B,EAAE,kBAAkB,CAAC,CAMpE"}
1
+ {"version":3,"file":"webhookdatabankaccountdeleted.d.ts","sourceRoot":"","sources":["../../src/models/components/webhookdatabankaccountdeleted.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAE5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EACL,iBAAiB,EAGlB,MAAM,wBAAwB,CAAC;AAEhC,MAAM,MAAM,6BAA6B,GAAG;IAC1C,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,iBAAiB,CAAC;CAC3B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,2CAA2C,EAAE,CAAC,CAAC,OAAO,CACjE,6BAA6B,EAC7B,CAAC,CAAC,UAAU,EACZ,OAAO,CAKP,CAAC;AACH,gBAAgB;AAChB,MAAM,MAAM,sCAAsC,GAAG;IACnD,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,4CAA4C,EAAE,CAAC,CAAC,OAAO,CAClE,sCAAsC,EACtC,CAAC,CAAC,UAAU,EACZ,6BAA6B,CAK7B,CAAC;AAEH,wBAAgB,mCAAmC,CACjD,6BAA6B,EAAE,6BAA6B,GAC3D,MAAM,CAMR;AACD,wBAAgB,qCAAqC,CACnD,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,6BAA6B,EAAE,kBAAkB,CAAC,CAMpE"}
@@ -41,15 +41,18 @@ exports.webhookDataBankAccountDeletedToJSON = webhookDataBankAccountDeletedToJSO
41
41
  exports.webhookDataBankAccountDeletedFromJSON = webhookDataBankAccountDeletedFromJSON;
42
42
  const z = __importStar(require("zod/v3"));
43
43
  const schemas_js_1 = require("../../lib/schemas.js");
44
+ const bankaccountstatus_js_1 = require("./bankaccountstatus.js");
44
45
  /** @internal */
45
46
  exports.WebhookDataBankAccountDeleted$inboundSchema = z.object({
46
47
  bankAccountID: z.string(),
47
48
  accountID: z.string(),
49
+ status: bankaccountstatus_js_1.BankAccountStatus$inboundSchema,
48
50
  });
49
51
  /** @internal */
50
52
  exports.WebhookDataBankAccountDeleted$outboundSchema = z.object({
51
53
  bankAccountID: z.string(),
52
54
  accountID: z.string(),
55
+ status: bankaccountstatus_js_1.BankAccountStatus$outboundSchema,
53
56
  });
54
57
  function webhookDataBankAccountDeletedToJSON(webhookDataBankAccountDeleted) {
55
58
  return JSON.stringify(exports.WebhookDataBankAccountDeleted$outboundSchema.parse(webhookDataBankAccountDeleted));
@@ -1 +1 @@
1
- {"version":3,"file":"webhookdatabankaccountdeleted.js","sourceRoot":"","sources":["../../src/models/components/webhookdatabankaccountdeleted.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqCH,kFAQC;AACD,sFAQC;AApDD,0CAA4B;AAC5B,qDAAiD;AASjD,gBAAgB;AACH,QAAA,2CAA2C,GAIpD,CAAC,CAAC,MAAM,CAAC;IACX,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;CACtB,CAAC,CAAC;AAOH,gBAAgB;AACH,QAAA,4CAA4C,GAIrD,CAAC,CAAC,MAAM,CAAC;IACX,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;CACtB,CAAC,CAAC;AAEH,SAAgB,mCAAmC,CACjD,6BAA4D;IAE5D,OAAO,IAAI,CAAC,SAAS,CACnB,oDAA4C,CAAC,KAAK,CAChD,6BAA6B,CAC9B,CACF,CAAC;AACJ,CAAC;AACD,SAAgB,qCAAqC,CACnD,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,mDAA2C,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACvE,2DAA2D,CAC5D,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"webhookdatabankaccountdeleted.js","sourceRoot":"","sources":["../../src/models/components/webhookdatabankaccountdeleted.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8CH,kFAQC;AACD,sFAQC;AA7DD,0CAA4B;AAC5B,qDAAiD;AAGjD,iEAIgC;AAQhC,gBAAgB;AACH,QAAA,2CAA2C,GAIpD,CAAC,CAAC,MAAM,CAAC;IACX,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,MAAM,EAAE,sDAA+B;CACxC,CAAC,CAAC;AAQH,gBAAgB;AACH,QAAA,4CAA4C,GAIrD,CAAC,CAAC,MAAM,CAAC;IACX,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,MAAM,EAAE,uDAAgC;CACzC,CAAC,CAAC;AAEH,SAAgB,mCAAmC,CACjD,6BAA4D;IAE5D,OAAO,IAAI,CAAC,SAAS,CACnB,oDAA4C,CAAC,KAAK,CAChD,6BAA6B,CAC9B,CACF,CAAC;AACJ,CAAC;AACD,SAAgB,qCAAqC,CACnD,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,mDAA2C,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACvE,2DAA2D,CAC5D,CAAC;AACJ,CAAC"}
@@ -71,7 +71,7 @@ export type TransferData = {
71
71
  * An optional collection of line items for a transfer.
72
72
  *
73
73
  * @remarks
74
- * When line items are provided, their total plus sales tax must equal the transfer amount.
74
+ * When line items are provided, their total plus tax must equal the transfer amount.
75
75
  */
76
76
  lineItems?: components.TransferLineItems | undefined;
77
77
  };
@@ -145,7 +145,7 @@ export declare class Transfer extends MoovError {
145
145
  * An optional collection of line items for a transfer.
146
146
  *
147
147
  * @remarks
148
- * When line items are provided, their total plus sales tax must equal the transfer amount.
148
+ * When line items are provided, their total plus tax must equal the transfer amount.
149
149
  */
150
150
  lineItems?: components.TransferLineItems | undefined;
151
151
  /** The original data that was passed to this error instance. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moovio/sdk",
3
- "version": "26.2.4",
3
+ "version": "26.2.7",
4
4
  "author": "Moov",
5
5
  "bin": {
6
6
  "mcp": "bin/mcp-server.js"
package/src/lib/config.ts CHANGED
@@ -68,7 +68,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
68
68
  export const SDK_METADATA = {
69
69
  language: "typescript",
70
70
  openapiDocVersion: "v2026.01.00",
71
- sdkVersion: "26.2.4",
72
- genVersion: "2.881.17",
73
- userAgent: "speakeasy-sdk/typescript 26.2.4 2.881.17 v2026.01.00 @moovio/sdk",
71
+ sdkVersion: "26.2.7",
72
+ genVersion: "2.884.0",
73
+ userAgent: "speakeasy-sdk/typescript 26.2.7 2.884.0 v2026.01.00 @moovio/sdk",
74
74
  } as const;
@@ -19,7 +19,7 @@ const routes = buildRouteMap({
19
19
  export const app = buildApplication(routes, {
20
20
  name: "mcp",
21
21
  versionInfo: {
22
- currentVersion: "26.2.4",
22
+ currentVersion: "26.2.7",
23
23
  },
24
24
  });
25
25
 
@@ -196,7 +196,7 @@ export function createMCPServer(deps: {
196
196
  }) {
197
197
  const server = new McpServer({
198
198
  name: "Moov",
199
- version: "26.2.4",
199
+ version: "26.2.7",
200
200
  });
201
201
 
202
202
  const client = new MoovCore({
@@ -132,7 +132,7 @@ export type CreatedTransfer = {
132
132
  * An optional collection of line items for a transfer.
133
133
  *
134
134
  * @remarks
135
- * When line items are provided, their total plus sales tax must equal the transfer amount.
135
+ * When line items are provided, their total plus tax must equal the transfer amount.
136
136
  */
137
137
  lineItems?: TransferLineItems | undefined;
138
138
  };
@@ -102,7 +102,7 @@ export type CreatePaymentLink = {
102
102
  * An optional collection of line items for a payment link.
103
103
  *
104
104
  * @remarks
105
- * When line items are provided, their total plus sales tax must equal the payment link amount.
105
+ * When line items are provided, their total plus tax must equal the payment link amount.
106
106
  */
107
107
  lineItems?: CreatePaymentLinkLineItems | undefined;
108
108
  };
@@ -17,7 +17,7 @@ import {
17
17
  * An optional collection of line items for a payment link.
18
18
  *
19
19
  * @remarks
20
- * When line items are provided, their total plus sales tax must equal the payment link amount.
20
+ * When line items are provided, their total plus tax must equal the payment link amount.
21
21
  */
22
22
  export type CreatePaymentLinkLineItems = {
23
23
  /**
@@ -17,7 +17,7 @@ import {
17
17
  * An optional collection of line items for a payment link.
18
18
  *
19
19
  * @remarks
20
- * When line items are provided, their total plus sales tax must equal the payment link amount.
20
+ * When line items are provided, their total plus tax must equal the payment link amount.
21
21
  */
22
22
  export type CreatePaymentLinkLineItemsUpdate = {
23
23
  /**
@@ -68,7 +68,7 @@ export type CreateTransfer = {
68
68
  * An optional collection of line items for a transfer.
69
69
  *
70
70
  * @remarks
71
- * When line items are provided, their total plus sales tax must equal the transfer amount.
71
+ * When line items are provided, their total plus tax must equal the transfer amount.
72
72
  */
73
73
  lineItems?: CreateTransferLineItems | undefined;
74
74
  };
@@ -17,7 +17,7 @@ import {
17
17
  * An optional collection of line items for a transfer.
18
18
  *
19
19
  * @remarks
20
- * When line items are provided, their total plus sales tax must equal the transfer amount.
20
+ * When line items are provided, their total plus tax must equal the transfer amount.
21
21
  */
22
22
  export type CreateTransferLineItems = {
23
23
  /**
@@ -406,6 +406,7 @@ export * from "./rtpfailurecode.js";
406
406
  export * from "./rtpinstitution.js";
407
407
  export * from "./rtprejectioncode.js";
408
408
  export * from "./rtpservices.js";
409
+ export * from "./rtptransactiondetails.js";
409
410
  export * from "./rtptransactionstatus.js";
410
411
  export * from "./runtransfer.js";
411
412
  export * from "./scheduledtransferimagemetadata.js";
@@ -134,7 +134,7 @@ export type PaymentLink = {
134
134
  * An optional collection of line items for a payment link.
135
135
  *
136
136
  * @remarks
137
- * When line items are provided, their total plus sales tax must equal the payment link amount.
137
+ * When line items are provided, their total plus tax must equal the payment link amount.
138
138
  */
139
139
  lineItems?: PaymentLinkLineItems | undefined;
140
140
  createdOn: Date;
@@ -17,7 +17,7 @@ import {
17
17
  * An optional collection of line items for a payment link.
18
18
  *
19
19
  * @remarks
20
- * When line items are provided, their total plus sales tax must equal the payment link amount.
20
+ * When line items are provided, their total plus tax must equal the payment link amount.
21
21
  */
22
22
  export type PaymentLinkLineItems = {
23
23
  /**
@@ -0,0 +1,104 @@
1
+ /*
2
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
+ */
4
+
5
+ import * as z from "zod/v3";
6
+ import { safeParse } from "../../lib/schemas.js";
7
+ import { Result as SafeParseResult } from "../../types/fp.js";
8
+ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
9
+ import {
10
+ RTPFailureCode,
11
+ RTPFailureCode$inboundSchema,
12
+ RTPFailureCode$outboundSchema,
13
+ } from "./rtpfailurecode.js";
14
+ import {
15
+ RTPTransactionStatus,
16
+ RTPTransactionStatus$inboundSchema,
17
+ RTPTransactionStatus$outboundSchema,
18
+ } from "./rtptransactionstatus.js";
19
+
20
+ /**
21
+ * DEPRECATED: use `InstantBankTransactionDetails` instead (v2026.04.00 or later). RTP specific details about the transaction.
22
+ *
23
+ * @deprecated class: This will be removed in a future release, please migrate away from it as soon as possible.
24
+ */
25
+ export type RTPTransactionDetails = {
26
+ /**
27
+ * Status of a transaction within the RTP lifecycle.
28
+ */
29
+ status?: RTPTransactionStatus | undefined;
30
+ /**
31
+ * Response code returned by network on failure.
32
+ */
33
+ networkResponseCode?: string | undefined;
34
+ /**
35
+ * Status codes for RTP failures.
36
+ */
37
+ failureCode?: RTPFailureCode | undefined;
38
+ initiatedOn?: Date | undefined;
39
+ completedOn?: Date | undefined;
40
+ failedOn?: Date | undefined;
41
+ acceptedWithoutPostingOn?: Date | undefined;
42
+ };
43
+
44
+ /** @internal */
45
+ export const RTPTransactionDetails$inboundSchema: z.ZodType<
46
+ RTPTransactionDetails,
47
+ z.ZodTypeDef,
48
+ unknown
49
+ > = z.object({
50
+ status: RTPTransactionStatus$inboundSchema.optional(),
51
+ networkResponseCode: z.string().optional(),
52
+ failureCode: RTPFailureCode$inboundSchema.optional(),
53
+ initiatedOn: z.string().datetime({ offset: true }).transform(v => new Date(v))
54
+ .optional(),
55
+ completedOn: z.string().datetime({ offset: true }).transform(v => new Date(v))
56
+ .optional(),
57
+ failedOn: z.string().datetime({ offset: true }).transform(v => new Date(v))
58
+ .optional(),
59
+ acceptedWithoutPostingOn: z.string().datetime({ offset: true }).transform(v =>
60
+ new Date(v)
61
+ ).optional(),
62
+ });
63
+ /** @internal */
64
+ export type RTPTransactionDetails$Outbound = {
65
+ status?: string | undefined;
66
+ networkResponseCode?: string | undefined;
67
+ failureCode?: string | undefined;
68
+ initiatedOn?: string | undefined;
69
+ completedOn?: string | undefined;
70
+ failedOn?: string | undefined;
71
+ acceptedWithoutPostingOn?: string | undefined;
72
+ };
73
+
74
+ /** @internal */
75
+ export const RTPTransactionDetails$outboundSchema: z.ZodType<
76
+ RTPTransactionDetails$Outbound,
77
+ z.ZodTypeDef,
78
+ RTPTransactionDetails
79
+ > = z.object({
80
+ status: RTPTransactionStatus$outboundSchema.optional(),
81
+ networkResponseCode: z.string().optional(),
82
+ failureCode: RTPFailureCode$outboundSchema.optional(),
83
+ initiatedOn: z.date().transform(v => v.toISOString()).optional(),
84
+ completedOn: z.date().transform(v => v.toISOString()).optional(),
85
+ failedOn: z.date().transform(v => v.toISOString()).optional(),
86
+ acceptedWithoutPostingOn: z.date().transform(v => v.toISOString()).optional(),
87
+ });
88
+
89
+ export function rtpTransactionDetailsToJSON(
90
+ rtpTransactionDetails: RTPTransactionDetails,
91
+ ): string {
92
+ return JSON.stringify(
93
+ RTPTransactionDetails$outboundSchema.parse(rtpTransactionDetails),
94
+ );
95
+ }
96
+ export function rtpTransactionDetailsFromJSON(
97
+ jsonString: string,
98
+ ): SafeParseResult<RTPTransactionDetails, SDKValidationError> {
99
+ return safeParse(
100
+ jsonString,
101
+ (x) => RTPTransactionDetails$inboundSchema.parse(JSON.parse(x)),
102
+ `Failed to parse 'RTPTransactionDetails' from JSON`,
103
+ );
104
+ }
@@ -145,7 +145,7 @@ export type Transfer = {
145
145
  * An optional collection of line items for a transfer.
146
146
  *
147
147
  * @remarks
148
- * When line items are provided, their total plus sales tax must equal the transfer amount.
148
+ * When line items are provided, their total plus tax must equal the transfer amount.
149
149
  */
150
150
  lineItems?: TransferLineItems | undefined;
151
151
  };
@@ -31,15 +31,11 @@ import {
31
31
  InstantBankTransactionDetails$outboundSchema,
32
32
  } from "./instantbanktransactiondetails.js";
33
33
  import {
34
- RTPFailureCode,
35
- RTPFailureCode$inboundSchema,
36
- RTPFailureCode$outboundSchema,
37
- } from "./rtpfailurecode.js";
38
- import {
39
- RTPTransactionStatus,
40
- RTPTransactionStatus$inboundSchema,
41
- RTPTransactionStatus$outboundSchema,
42
- } from "./rtptransactionstatus.js";
34
+ RTPTransactionDetails,
35
+ RTPTransactionDetails$inboundSchema,
36
+ RTPTransactionDetails$Outbound,
37
+ RTPTransactionDetails$outboundSchema,
38
+ } from "./rtptransactiondetails.js";
43
39
  import {
44
40
  TransferAccount,
45
41
  TransferAccount$inboundSchema,
@@ -70,30 +66,6 @@ import {
70
66
  TransferPaymentMethodType$outboundSchema,
71
67
  } from "./transferpaymentmethodtype.js";
72
68
 
73
- /**
74
- * DEPRECATED: use `InstantBankTransactionDetails` instead (v2026.04.00 or later). RTP specific details about the transaction.
75
- *
76
- * @deprecated class: This will be removed in a future release, please migrate away from it as soon as possible.
77
- */
78
- export type RtpDetails = {
79
- /**
80
- * Status of a transaction within the RTP lifecycle.
81
- */
82
- status?: RTPTransactionStatus | undefined;
83
- /**
84
- * Response code returned by network on failure.
85
- */
86
- networkResponseCode?: string | undefined;
87
- /**
88
- * Status codes for RTP failures.
89
- */
90
- failureCode?: RTPFailureCode | undefined;
91
- initiatedOn?: Date | undefined;
92
- completedOn?: Date | undefined;
93
- failedOn?: Date | undefined;
94
- acceptedWithoutPostingOn?: Date | undefined;
95
- };
96
-
97
69
  export type TransferDestination = {
98
70
  paymentMethodID: string;
99
71
  /**
@@ -123,73 +95,17 @@ export type TransferDestination = {
123
95
  */
124
96
  cardDetails?: CardTransactionDetails | undefined;
125
97
  /**
98
+ * DEPRECATED: use `InstantBankTransactionDetails` instead (v2026.04.00 or later). RTP specific details about the transaction.
99
+ *
126
100
  * @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible.
127
101
  */
128
- rtpDetails?: RtpDetails | undefined;
102
+ rtpDetails?: RTPTransactionDetails | undefined;
129
103
  /**
130
104
  * Instant-bank specific details about the transaction.
131
105
  */
132
106
  instantBankDetails?: InstantBankTransactionDetails | undefined;
133
107
  };
134
108
 
135
- /** @internal */
136
- export const RtpDetails$inboundSchema: z.ZodType<
137
- RtpDetails,
138
- z.ZodTypeDef,
139
- unknown
140
- > = z.object({
141
- status: RTPTransactionStatus$inboundSchema.optional(),
142
- networkResponseCode: z.string().optional(),
143
- failureCode: RTPFailureCode$inboundSchema.optional(),
144
- initiatedOn: z.string().datetime({ offset: true }).transform(v => new Date(v))
145
- .optional(),
146
- completedOn: z.string().datetime({ offset: true }).transform(v => new Date(v))
147
- .optional(),
148
- failedOn: z.string().datetime({ offset: true }).transform(v => new Date(v))
149
- .optional(),
150
- acceptedWithoutPostingOn: z.string().datetime({ offset: true }).transform(v =>
151
- new Date(v)
152
- ).optional(),
153
- });
154
- /** @internal */
155
- export type RtpDetails$Outbound = {
156
- status?: string | undefined;
157
- networkResponseCode?: string | undefined;
158
- failureCode?: string | undefined;
159
- initiatedOn?: string | undefined;
160
- completedOn?: string | undefined;
161
- failedOn?: string | undefined;
162
- acceptedWithoutPostingOn?: string | undefined;
163
- };
164
-
165
- /** @internal */
166
- export const RtpDetails$outboundSchema: z.ZodType<
167
- RtpDetails$Outbound,
168
- z.ZodTypeDef,
169
- RtpDetails
170
- > = z.object({
171
- status: RTPTransactionStatus$outboundSchema.optional(),
172
- networkResponseCode: z.string().optional(),
173
- failureCode: RTPFailureCode$outboundSchema.optional(),
174
- initiatedOn: z.date().transform(v => v.toISOString()).optional(),
175
- completedOn: z.date().transform(v => v.toISOString()).optional(),
176
- failedOn: z.date().transform(v => v.toISOString()).optional(),
177
- acceptedWithoutPostingOn: z.date().transform(v => v.toISOString()).optional(),
178
- });
179
-
180
- export function rtpDetailsToJSON(rtpDetails: RtpDetails): string {
181
- return JSON.stringify(RtpDetails$outboundSchema.parse(rtpDetails));
182
- }
183
- export function rtpDetailsFromJSON(
184
- jsonString: string,
185
- ): SafeParseResult<RtpDetails, SDKValidationError> {
186
- return safeParse(
187
- jsonString,
188
- (x) => RtpDetails$inboundSchema.parse(JSON.parse(x)),
189
- `Failed to parse 'RtpDetails' from JSON`,
190
- );
191
- }
192
-
193
109
  /** @internal */
194
110
  export const TransferDestination$inboundSchema: z.ZodType<
195
111
  TransferDestination,
@@ -205,7 +121,7 @@ export const TransferDestination$inboundSchema: z.ZodType<
205
121
  achDetails: ACHTransactionDetails$inboundSchema.optional(),
206
122
  applePay: ApplePayResponse$inboundSchema.optional(),
207
123
  cardDetails: CardTransactionDetails$inboundSchema.optional(),
208
- rtpDetails: z.lazy(() => RtpDetails$inboundSchema).optional(),
124
+ rtpDetails: RTPTransactionDetails$inboundSchema.optional(),
209
125
  instantBankDetails: InstantBankTransactionDetails$inboundSchema.optional(),
210
126
  });
211
127
  /** @internal */
@@ -219,7 +135,7 @@ export type TransferDestination$Outbound = {
219
135
  achDetails?: ACHTransactionDetails$Outbound | undefined;
220
136
  applePay?: ApplePayResponse$Outbound | undefined;
221
137
  cardDetails?: CardTransactionDetails$Outbound | undefined;
222
- rtpDetails?: RtpDetails$Outbound | undefined;
138
+ rtpDetails?: RTPTransactionDetails$Outbound | undefined;
223
139
  instantBankDetails?: InstantBankTransactionDetails$Outbound | undefined;
224
140
  };
225
141
 
@@ -238,7 +154,7 @@ export const TransferDestination$outboundSchema: z.ZodType<
238
154
  achDetails: ACHTransactionDetails$outboundSchema.optional(),
239
155
  applePay: ApplePayResponse$outboundSchema.optional(),
240
156
  cardDetails: CardTransactionDetails$outboundSchema.optional(),
241
- rtpDetails: z.lazy(() => RtpDetails$outboundSchema).optional(),
157
+ rtpDetails: RTPTransactionDetails$outboundSchema.optional(),
242
158
  instantBankDetails: InstantBankTransactionDetails$outboundSchema.optional(),
243
159
  });
244
160
 
@@ -17,7 +17,7 @@ import {
17
17
  * An optional collection of line items for a transfer.
18
18
  *
19
19
  * @remarks
20
- * When line items are provided, their total plus sales tax must equal the transfer amount.
20
+ * When line items are provided, their total plus tax must equal the transfer amount.
21
21
  */
22
22
  export type TransferLineItems = {
23
23
  /**
@@ -61,7 +61,7 @@ export type UpdatePaymentLink = {
61
61
  * An optional collection of line items for a payment link.
62
62
  *
63
63
  * @remarks
64
- * When line items are provided, their total plus sales tax must equal the payment link amount.
64
+ * When line items are provided, their total plus tax must equal the payment link amount.
65
65
  */
66
66
  lineItems?: CreatePaymentLinkLineItemsUpdate | undefined;
67
67
  };