@moovio/sdk 0.15.0 → 0.15.2

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 (92) hide show
  1. package/README.md +8 -4
  2. package/bin/mcp-server.js +362 -50
  3. package/bin/mcp-server.js.map +20 -16
  4. package/docs/sdks/transfers/README.md +8 -6
  5. package/docs/sdks/wallets/README.md +14 -13
  6. package/docs/sdks/wallettransactions/README.md +4 -3
  7. package/examples/package-lock.json +1 -1
  8. package/funcs/transfersList.d.ts +2 -1
  9. package/funcs/transfersList.d.ts.map +1 -1
  10. package/funcs/transfersList.js +4 -1
  11. package/funcs/transfersList.js.map +1 -1
  12. package/funcs/transfersUpdate.d.ts +2 -1
  13. package/funcs/transfersUpdate.d.ts.map +1 -1
  14. package/funcs/transfersUpdate.js +4 -1
  15. package/funcs/transfersUpdate.js.map +1 -1
  16. package/funcs/walletTransactionsList.d.ts +2 -1
  17. package/funcs/walletTransactionsList.d.ts.map +1 -1
  18. package/funcs/walletTransactionsList.js +4 -1
  19. package/funcs/walletTransactionsList.js.map +1 -1
  20. package/funcs/walletsCreate.d.ts +1 -1
  21. package/funcs/walletsCreate.d.ts.map +1 -1
  22. package/funcs/walletsCreate.js +3 -1
  23. package/funcs/walletsCreate.js.map +1 -1
  24. package/funcs/walletsList.d.ts +2 -1
  25. package/funcs/walletsList.d.ts.map +1 -1
  26. package/funcs/walletsList.js +4 -1
  27. package/funcs/walletsList.js.map +1 -1
  28. package/funcs/walletsUpdate.d.ts +1 -1
  29. package/funcs/walletsUpdate.d.ts.map +1 -1
  30. package/funcs/walletsUpdate.js +3 -1
  31. package/funcs/walletsUpdate.js.map +1 -1
  32. package/jsr.json +1 -1
  33. package/lib/config.d.ts +3 -3
  34. package/lib/config.js +3 -3
  35. package/mcp-server/mcp-server.js +1 -1
  36. package/mcp-server/server.js +1 -1
  37. package/models/errors/createwalletvalidationerror.d.ts +41 -0
  38. package/models/errors/createwalletvalidationerror.d.ts.map +1 -0
  39. package/models/errors/{createwalleterror.js → createwalletvalidationerror.js} +15 -15
  40. package/models/errors/createwalletvalidationerror.js.map +1 -0
  41. package/models/errors/index.d.ts +7 -2
  42. package/models/errors/index.d.ts.map +1 -1
  43. package/models/errors/index.js +7 -2
  44. package/models/errors/index.js.map +1 -1
  45. package/models/errors/listtransfersvalidationerror.d.ts +69 -0
  46. package/models/errors/listtransfersvalidationerror.d.ts.map +1 -0
  47. package/models/errors/listtransfersvalidationerror.js +130 -0
  48. package/models/errors/listtransfersvalidationerror.js.map +1 -0
  49. package/models/errors/listwalletsvalidationerror.d.ts +45 -0
  50. package/models/errors/listwalletsvalidationerror.d.ts.map +1 -0
  51. package/models/errors/listwalletsvalidationerror.js +98 -0
  52. package/models/errors/listwalletsvalidationerror.js.map +1 -0
  53. package/models/errors/listwallettransactionsvalidationerror.d.ts +72 -0
  54. package/models/errors/listwallettransactionsvalidationerror.d.ts.map +1 -0
  55. package/models/errors/listwallettransactionsvalidationerror.js +140 -0
  56. package/models/errors/listwallettransactionsvalidationerror.js.map +1 -0
  57. package/models/errors/patchtransfervalidationerror.d.ts +39 -0
  58. package/models/errors/patchtransfervalidationerror.d.ts.map +1 -0
  59. package/models/errors/patchtransfervalidationerror.js +90 -0
  60. package/models/errors/patchtransfervalidationerror.js.map +1 -0
  61. package/models/errors/patchwalletvalidationerror.d.ts +44 -0
  62. package/models/errors/patchwalletvalidationerror.d.ts.map +1 -0
  63. package/models/errors/{patchwalleterror.js → patchwalletvalidationerror.js} +15 -15
  64. package/models/errors/patchwalletvalidationerror.js.map +1 -0
  65. package/models/errors/transfervalidationerror.d.ts +6 -12
  66. package/models/errors/transfervalidationerror.d.ts.map +1 -1
  67. package/models/errors/transfervalidationerror.js +8 -10
  68. package/models/errors/transfervalidationerror.js.map +1 -1
  69. package/package.json +1 -1
  70. package/src/funcs/transfersList.ts +8 -1
  71. package/src/funcs/transfersUpdate.ts +8 -1
  72. package/src/funcs/walletTransactionsList.ts +8 -1
  73. package/src/funcs/walletsCreate.ts +6 -4
  74. package/src/funcs/walletsList.ts +8 -1
  75. package/src/funcs/walletsUpdate.ts +6 -4
  76. package/src/lib/config.ts +3 -3
  77. package/src/mcp-server/mcp-server.ts +1 -1
  78. package/src/mcp-server/server.ts +1 -1
  79. package/src/models/errors/{createwalleterror.ts → createwalletvalidationerror.ts} +20 -20
  80. package/src/models/errors/index.ts +7 -2
  81. package/src/models/errors/listtransfersvalidationerror.ts +145 -0
  82. package/src/models/errors/listwalletsvalidationerror.ts +97 -0
  83. package/src/models/errors/listwallettransactionsvalidationerror.ts +165 -0
  84. package/src/models/errors/patchtransfervalidationerror.ts +85 -0
  85. package/src/models/errors/{patchwalleterror.ts → patchwalletvalidationerror.ts} +20 -20
  86. package/src/models/errors/transfervalidationerror.ts +12 -20
  87. package/models/errors/createwalleterror.d.ts +0 -41
  88. package/models/errors/createwalleterror.d.ts.map +0 -1
  89. package/models/errors/createwalleterror.js.map +0 -1
  90. package/models/errors/patchwalleterror.d.ts +0 -44
  91. package/models/errors/patchwalleterror.d.ts.map +0 -1
  92. package/models/errors/patchwalleterror.js.map +0 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createwalletvalidationerror.d.ts","sourceRoot":"","sources":["../../src/models/errors/createwalletvalidationerror.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAE3C,MAAM,MAAM,+BAA+B,GAAG;IAC5C,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC/B,CAAC;AAEF,qBAAa,2BAA4B,SAAQ,SAAS;IACxD,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE9B,gEAAgE;IAChE,KAAK,EAAE,+BAA+B,CAAC;gBAGrC,GAAG,EAAE,+BAA+B,EACpC,QAAQ,EAAE;QAAE,QAAQ,EAAE,QAAQ,CAAC;QAAC,OAAO,EAAE,OAAO,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE;CAYnE;AAED,gBAAgB;AAChB,eAAO,MAAM,yCAAyC,EAAE,CAAC,CAAC,OAAO,CAC/D,2BAA2B,EAC3B,CAAC,CAAC,UAAU,EACZ,OAAO,CAeL,CAAC;AAEL,gBAAgB;AAChB,MAAM,MAAM,oCAAoC,GAAG;IACjD,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC/B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,0CAA0C,EAAE,CAAC,CAAC,OAAO,CAChE,oCAAoC,EACpC,CAAC,CAAC,UAAU,EACZ,2BAA2B,CAOxB,CAAC;AAEN;;;GAGG;AACH,yBAAiB,4BAA4B,CAAC;IAC5C,2EAA2E;IACpE,MAAM,aAAa,+DAA4C,CAAC;IACvE,4EAA4E;IACrE,MAAM,cAAc,4FAA6C,CAAC;IACzE,sEAAsE;IACtE,KAAY,QAAQ,GAAG,oCAAoC,CAAC;CAC7D"}
@@ -36,10 +36,10 @@ var __importStar = (this && this.__importStar) || (function () {
36
36
  };
37
37
  })();
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.CreateWalletError$ = exports.CreateWalletError$outboundSchema = exports.CreateWalletError$inboundSchema = exports.CreateWalletError = void 0;
39
+ exports.CreateWalletValidationError$ = exports.CreateWalletValidationError$outboundSchema = exports.CreateWalletValidationError$inboundSchema = exports.CreateWalletValidationError = void 0;
40
40
  const z = __importStar(require("zod"));
41
41
  const mooverror_js_1 = require("./mooverror.js");
42
- class CreateWalletError extends mooverror_js_1.MoovError {
42
+ class CreateWalletValidationError extends mooverror_js_1.MoovError {
43
43
  constructor(err, httpMeta) {
44
44
  const message = "message" in err && typeof err.message === "string"
45
45
  ? err.message
@@ -50,12 +50,12 @@ class CreateWalletError extends mooverror_js_1.MoovError {
50
50
  this.description = err.description;
51
51
  if (err.metadata != null)
52
52
  this.metadata = err.metadata;
53
- this.name = "CreateWalletError";
53
+ this.name = "CreateWalletValidationError";
54
54
  }
55
55
  }
56
- exports.CreateWalletError = CreateWalletError;
56
+ exports.CreateWalletValidationError = CreateWalletValidationError;
57
57
  /** @internal */
58
- exports.CreateWalletError$inboundSchema = z.object({
58
+ exports.CreateWalletValidationError$inboundSchema = z.object({
59
59
  name: z.string().optional(),
60
60
  description: z.string().optional(),
61
61
  metadata: z.string().optional(),
@@ -64,14 +64,14 @@ exports.CreateWalletError$inboundSchema = z.object({
64
64
  body$: z.string(),
65
65
  })
66
66
  .transform((v) => {
67
- return new CreateWalletError(v, {
67
+ return new CreateWalletValidationError(v, {
68
68
  request: v.request$,
69
69
  response: v.response$,
70
70
  body: v.body$,
71
71
  });
72
72
  });
73
73
  /** @internal */
74
- exports.CreateWalletError$outboundSchema = z.instanceof(CreateWalletError)
74
+ exports.CreateWalletValidationError$outboundSchema = z.instanceof(CreateWalletValidationError)
75
75
  .transform(v => v.data$)
76
76
  .pipe(z.object({
77
77
  name: z.string().optional(),
@@ -82,11 +82,11 @@ exports.CreateWalletError$outboundSchema = z.instanceof(CreateWalletError)
82
82
  * @internal
83
83
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
84
84
  */
85
- var CreateWalletError$;
86
- (function (CreateWalletError$) {
87
- /** @deprecated use `CreateWalletError$inboundSchema` instead. */
88
- CreateWalletError$.inboundSchema = exports.CreateWalletError$inboundSchema;
89
- /** @deprecated use `CreateWalletError$outboundSchema` instead. */
90
- CreateWalletError$.outboundSchema = exports.CreateWalletError$outboundSchema;
91
- })(CreateWalletError$ || (exports.CreateWalletError$ = CreateWalletError$ = {}));
92
- //# sourceMappingURL=createwalleterror.js.map
85
+ var CreateWalletValidationError$;
86
+ (function (CreateWalletValidationError$) {
87
+ /** @deprecated use `CreateWalletValidationError$inboundSchema` instead. */
88
+ CreateWalletValidationError$.inboundSchema = exports.CreateWalletValidationError$inboundSchema;
89
+ /** @deprecated use `CreateWalletValidationError$outboundSchema` instead. */
90
+ CreateWalletValidationError$.outboundSchema = exports.CreateWalletValidationError$outboundSchema;
91
+ })(CreateWalletValidationError$ || (exports.CreateWalletValidationError$ = CreateWalletValidationError$ = {}));
92
+ //# sourceMappingURL=createwalletvalidationerror.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createwalletvalidationerror.js","sourceRoot":"","sources":["../../src/models/errors/createwalletvalidationerror.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AACzB,iDAA2C;AAQ3C,MAAa,2BAA4B,SAAQ,wBAAS;IAOxD,YACE,GAAoC,EACpC,QAAgE;QAEhE,MAAM,OAAO,GAAG,SAAS,IAAI,GAAG,IAAI,OAAO,GAAG,CAAC,OAAO,KAAK,QAAQ;YACjE,CAAC,CAAC,GAAG,CAAC,OAAO;YACb,CAAC,CAAC,uBAAuB,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC;QACjD,KAAK,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;QACzB,IAAI,CAAC,KAAK,GAAG,GAAG,CAAC;QACjB,IAAI,GAAG,CAAC,WAAW,IAAI,IAAI;YAAE,IAAI,CAAC,WAAW,GAAG,GAAG,CAAC,WAAW,CAAC;QAChE,IAAI,GAAG,CAAC,QAAQ,IAAI,IAAI;YAAE,IAAI,CAAC,QAAQ,GAAG,GAAG,CAAC,QAAQ,CAAC;QAEvD,IAAI,CAAC,IAAI,GAAG,6BAA6B,CAAC;IAC5C,CAAC;CACF;AArBD,kEAqBC;AAED,gBAAgB;AACH,QAAA,yCAAyC,GAIlD,CAAC,CAAC,MAAM,CAAC;IACX,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,QAAQ,EAAE,CAAC,CAAC,UAAU,CAAC,OAAO,CAAC;IAC/B,SAAS,EAAE,CAAC,CAAC,UAAU,CAAC,QAAQ,CAAC;IACjC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;CAClB,CAAC;KACC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACf,OAAO,IAAI,2BAA2B,CAAC,CAAC,EAAE;QACxC,OAAO,EAAE,CAAC,CAAC,QAAQ;QACnB,QAAQ,EAAE,CAAC,CAAC,SAAS;QACrB,IAAI,EAAE,CAAC,CAAC,KAAK;KACd,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AASL,gBAAgB;AACH,QAAA,0CAA0C,GAInD,CAAC,CAAC,UAAU,CAAC,2BAA2B,CAAC;KAC1C,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC;KACvB,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC;IACb,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAChC,CAAC,CAAC,CAAC;AAEN;;;GAGG;AACH,IAAiB,4BAA4B,CAO5C;AAPD,WAAiB,4BAA4B;IAC3C,2EAA2E;IAC9D,0CAAa,GAAG,iDAAyC,CAAC;IACvE,4EAA4E;IAC/D,2CAAc,GAAG,kDAA0C,CAAC;AAG3E,CAAC,EAPgB,4BAA4B,4CAA5B,4BAA4B,QAO5C"}
@@ -10,7 +10,7 @@ export * from "./createaccounterror.js";
10
10
  export * from "./createpaymentlinkerror.js";
11
11
  export * from "./createsweepconfigerror.js";
12
12
  export * from "./createticketerror.js";
13
- export * from "./createwalleterror.js";
13
+ export * from "./createwalletvalidationerror.js";
14
14
  export * from "./feeplanagreementerror.js";
15
15
  export * from "./fileuploadvalidationerror.js";
16
16
  export * from "./filevalidationerror.js";
@@ -18,11 +18,16 @@ export * from "./genericerror.js";
18
18
  export * from "./httpclienterrors.js";
19
19
  export * from "./linkapplepayerror.js";
20
20
  export * from "./linkcarderror.js";
21
+ export * from "./listtransfersvalidationerror.js";
22
+ export * from "./listwalletsvalidationerror.js";
23
+ export * from "./listwallettransactionsvalidationerror.js";
21
24
  export * from "./microdepositvalidationerror.js";
25
+ export * from "./mooverror.js";
22
26
  export * from "./onboardinginviteerror.js";
23
27
  export * from "./patchaccounterror.js";
24
28
  export * from "./patchsweepconfigerror.js";
25
- export * from "./patchwalleterror.js";
29
+ export * from "./patchtransfervalidationerror.js";
30
+ export * from "./patchwalletvalidationerror.js";
26
31
  export * from "./refundvalidationerror.js";
27
32
  export * from "./representativevalidationerror.js";
28
33
  export * from "./requestcarderror.js";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/errors/index.ts"],"names":[],"mappings":"AAIA,cAAc,sCAAsC,CAAC;AACrD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,eAAe,CAAC;AAC9B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iCAAiC,CAAC;AAChD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,0BAA0B,CAAC;AACzC,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kCAAkC,CAAC;AACjD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,uBAAuB,CAAC;AACtC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,oCAAoC,CAAC;AACnD,cAAc,uBAAuB,CAAC;AACtC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,yBAAyB,CAAC;AACxC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,eAAe,CAAC;AAC9B,cAAc,qCAAqC,CAAC;AACpD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,sBAAsB,CAAC;AACrC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,wBAAwB,CAAC;AACvC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/errors/index.ts"],"names":[],"mappings":"AAIA,cAAc,sCAAsC,CAAC;AACrD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,eAAe,CAAC;AAC9B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iCAAiC,CAAC;AAChD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,wBAAwB,CAAC;AACvC,cAAc,kCAAkC,CAAC;AACjD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,0BAA0B,CAAC;AACzC,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mCAAmC,CAAC;AAClD,cAAc,iCAAiC,CAAC;AAChD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,kCAAkC,CAAC;AACjD,cAAc,gBAAgB,CAAC;AAC/B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,mCAAmC,CAAC;AAClD,cAAc,iCAAiC,CAAC;AAChD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,oCAAoC,CAAC;AACnD,cAAc,uBAAuB,CAAC;AACtC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,yBAAyB,CAAC;AACxC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,eAAe,CAAC;AAC9B,cAAc,qCAAqC,CAAC;AACpD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,sBAAsB,CAAC;AACrC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,wBAAwB,CAAC;AACvC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC"}
@@ -29,7 +29,7 @@ __exportStar(require("./createaccounterror.js"), exports);
29
29
  __exportStar(require("./createpaymentlinkerror.js"), exports);
30
30
  __exportStar(require("./createsweepconfigerror.js"), exports);
31
31
  __exportStar(require("./createticketerror.js"), exports);
32
- __exportStar(require("./createwalleterror.js"), exports);
32
+ __exportStar(require("./createwalletvalidationerror.js"), exports);
33
33
  __exportStar(require("./feeplanagreementerror.js"), exports);
34
34
  __exportStar(require("./fileuploadvalidationerror.js"), exports);
35
35
  __exportStar(require("./filevalidationerror.js"), exports);
@@ -37,11 +37,16 @@ __exportStar(require("./genericerror.js"), exports);
37
37
  __exportStar(require("./httpclienterrors.js"), exports);
38
38
  __exportStar(require("./linkapplepayerror.js"), exports);
39
39
  __exportStar(require("./linkcarderror.js"), exports);
40
+ __exportStar(require("./listtransfersvalidationerror.js"), exports);
41
+ __exportStar(require("./listwalletsvalidationerror.js"), exports);
42
+ __exportStar(require("./listwallettransactionsvalidationerror.js"), exports);
40
43
  __exportStar(require("./microdepositvalidationerror.js"), exports);
44
+ __exportStar(require("./mooverror.js"), exports);
41
45
  __exportStar(require("./onboardinginviteerror.js"), exports);
42
46
  __exportStar(require("./patchaccounterror.js"), exports);
43
47
  __exportStar(require("./patchsweepconfigerror.js"), exports);
44
- __exportStar(require("./patchwalleterror.js"), exports);
48
+ __exportStar(require("./patchtransfervalidationerror.js"), exports);
49
+ __exportStar(require("./patchwalletvalidationerror.js"), exports);
45
50
  __exportStar(require("./refundvalidationerror.js"), exports);
46
51
  __exportStar(require("./representativevalidationerror.js"), exports);
47
52
  __exportStar(require("./requestcarderror.js"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/errors/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;AAEH,uEAAqD;AACrD,4DAA0C;AAC1C,gDAA8B;AAC9B,4DAA0C;AAC1C,6DAA2C;AAC3C,kEAAgD;AAChD,4DAA0C;AAC1C,2DAAyC;AACzC,0DAAwC;AACxC,8DAA4C;AAC5C,8DAA4C;AAC5C,yDAAuC;AACvC,yDAAuC;AACvC,6DAA2C;AAC3C,iEAA+C;AAC/C,2DAAyC;AACzC,oDAAkC;AAClC,wDAAsC;AACtC,yDAAuC;AACvC,qDAAmC;AACnC,mEAAiD;AACjD,6DAA2C;AAC3C,yDAAuC;AACvC,6DAA2C;AAC3C,wDAAsC;AACtC,6DAA2C;AAC3C,qEAAmD;AACnD,wDAAsC;AACtC,+DAA6C;AAC7C,+DAA6C;AAC7C,+DAA6C;AAC7C,+DAA6C;AAC7C,0DAAwC;AACxC,gEAA8C;AAC9C,gDAA8B;AAC9B,sEAAoD;AACpD,+DAA6C;AAC7C,uDAAqC;AACrC,6DAA2C;AAC3C,8DAA4C;AAC5C,yDAAuC;AACvC,+DAA6C;AAC7C,+DAA6C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/errors/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;AAEH,uEAAqD;AACrD,4DAA0C;AAC1C,gDAA8B;AAC9B,4DAA0C;AAC1C,6DAA2C;AAC3C,kEAAgD;AAChD,4DAA0C;AAC1C,2DAAyC;AACzC,0DAAwC;AACxC,8DAA4C;AAC5C,8DAA4C;AAC5C,yDAAuC;AACvC,mEAAiD;AACjD,6DAA2C;AAC3C,iEAA+C;AAC/C,2DAAyC;AACzC,oDAAkC;AAClC,wDAAsC;AACtC,yDAAuC;AACvC,qDAAmC;AACnC,oEAAkD;AAClD,kEAAgD;AAChD,6EAA2D;AAC3D,mEAAiD;AACjD,iDAA+B;AAC/B,6DAA2C;AAC3C,yDAAuC;AACvC,6DAA2C;AAC3C,oEAAkD;AAClD,kEAAgD;AAChD,6DAA2C;AAC3C,qEAAmD;AACnD,wDAAsC;AACtC,+DAA6C;AAC7C,+DAA6C;AAC7C,+DAA6C;AAC7C,+DAA6C;AAC7C,0DAAwC;AACxC,gEAA8C;AAC9C,gDAA8B;AAC9B,sEAAoD;AACpD,+DAA6C;AAC7C,uDAAqC;AACrC,6DAA2C;AAC3C,8DAA4C;AAC5C,yDAAuC;AACvC,+DAA6C;AAC7C,+DAA6C"}
@@ -0,0 +1,69 @@
1
+ import * as z from "zod";
2
+ import { MoovError } from "./mooverror.js";
3
+ export type ListTransfersValidationErrorData = {
4
+ accountIDs?: string | undefined;
5
+ status?: string | undefined;
6
+ startDateTime?: string | undefined;
7
+ endDateTime?: string | undefined;
8
+ skip?: string | undefined;
9
+ count?: string | undefined;
10
+ groupID?: string | undefined;
11
+ foreignID?: string | undefined;
12
+ scheduleID?: string | undefined;
13
+ paymentLinkCode?: string | undefined;
14
+ refunded?: string | undefined;
15
+ disputed?: string | undefined;
16
+ };
17
+ export declare class ListTransfersValidationError extends MoovError {
18
+ accountIDs?: string | undefined;
19
+ status?: string | undefined;
20
+ startDateTime?: string | undefined;
21
+ endDateTime?: string | undefined;
22
+ skip?: string | undefined;
23
+ count?: string | undefined;
24
+ groupID?: string | undefined;
25
+ foreignID?: string | undefined;
26
+ scheduleID?: string | undefined;
27
+ paymentLinkCode?: string | undefined;
28
+ refunded?: string | undefined;
29
+ disputed?: string | undefined;
30
+ /** The original data that was passed to this error instance. */
31
+ data$: ListTransfersValidationErrorData;
32
+ constructor(err: ListTransfersValidationErrorData, httpMeta: {
33
+ response: Response;
34
+ request: Request;
35
+ body: string;
36
+ });
37
+ }
38
+ /** @internal */
39
+ export declare const ListTransfersValidationError$inboundSchema: z.ZodType<ListTransfersValidationError, z.ZodTypeDef, unknown>;
40
+ /** @internal */
41
+ export type ListTransfersValidationError$Outbound = {
42
+ accountIDs?: string | undefined;
43
+ status?: string | undefined;
44
+ startDateTime?: string | undefined;
45
+ endDateTime?: string | undefined;
46
+ skip?: string | undefined;
47
+ count?: string | undefined;
48
+ groupID?: string | undefined;
49
+ foreignID?: string | undefined;
50
+ scheduleID?: string | undefined;
51
+ paymentLinkCode?: string | undefined;
52
+ refunded?: string | undefined;
53
+ disputed?: string | undefined;
54
+ };
55
+ /** @internal */
56
+ export declare const ListTransfersValidationError$outboundSchema: z.ZodType<ListTransfersValidationError$Outbound, z.ZodTypeDef, ListTransfersValidationError>;
57
+ /**
58
+ * @internal
59
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
60
+ */
61
+ export declare namespace ListTransfersValidationError$ {
62
+ /** @deprecated use `ListTransfersValidationError$inboundSchema` instead. */
63
+ const inboundSchema: z.ZodType<ListTransfersValidationError, z.ZodTypeDef, unknown>;
64
+ /** @deprecated use `ListTransfersValidationError$outboundSchema` instead. */
65
+ const outboundSchema: z.ZodType<ListTransfersValidationError$Outbound, z.ZodTypeDef, ListTransfersValidationError>;
66
+ /** @deprecated use `ListTransfersValidationError$Outbound` instead. */
67
+ type Outbound = ListTransfersValidationError$Outbound;
68
+ }
69
+ //# sourceMappingURL=listtransfersvalidationerror.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"listtransfersvalidationerror.d.ts","sourceRoot":"","sources":["../../src/models/errors/listtransfersvalidationerror.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,130 @@
1
+ "use strict";
2
+ /*
3
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.ListTransfersValidationError$ = exports.ListTransfersValidationError$outboundSchema = exports.ListTransfersValidationError$inboundSchema = exports.ListTransfersValidationError = void 0;
40
+ const z = __importStar(require("zod"));
41
+ const mooverror_js_1 = require("./mooverror.js");
42
+ class ListTransfersValidationError extends mooverror_js_1.MoovError {
43
+ constructor(err, httpMeta) {
44
+ const message = "message" in err && typeof err.message === "string"
45
+ ? err.message
46
+ : `API error occurred: ${JSON.stringify(err)}`;
47
+ super(message, httpMeta);
48
+ this.data$ = err;
49
+ if (err.accountIDs != null)
50
+ this.accountIDs = err.accountIDs;
51
+ if (err.status != null)
52
+ this.status = err.status;
53
+ if (err.startDateTime != null)
54
+ this.startDateTime = err.startDateTime;
55
+ if (err.endDateTime != null)
56
+ this.endDateTime = err.endDateTime;
57
+ if (err.skip != null)
58
+ this.skip = err.skip;
59
+ if (err.count != null)
60
+ this.count = err.count;
61
+ if (err.groupID != null)
62
+ this.groupID = err.groupID;
63
+ if (err.foreignID != null)
64
+ this.foreignID = err.foreignID;
65
+ if (err.scheduleID != null)
66
+ this.scheduleID = err.scheduleID;
67
+ if (err.paymentLinkCode != null)
68
+ this.paymentLinkCode = err.paymentLinkCode;
69
+ if (err.refunded != null)
70
+ this.refunded = err.refunded;
71
+ if (err.disputed != null)
72
+ this.disputed = err.disputed;
73
+ this.name = "ListTransfersValidationError";
74
+ }
75
+ }
76
+ exports.ListTransfersValidationError = ListTransfersValidationError;
77
+ /** @internal */
78
+ exports.ListTransfersValidationError$inboundSchema = z.object({
79
+ accountIDs: z.string().optional(),
80
+ status: z.string().optional(),
81
+ startDateTime: z.string().optional(),
82
+ endDateTime: z.string().optional(),
83
+ skip: z.string().optional(),
84
+ count: z.string().optional(),
85
+ groupID: z.string().optional(),
86
+ foreignID: z.string().optional(),
87
+ scheduleID: z.string().optional(),
88
+ paymentLinkCode: z.string().optional(),
89
+ refunded: z.string().optional(),
90
+ disputed: z.string().optional(),
91
+ request$: z.instanceof(Request),
92
+ response$: z.instanceof(Response),
93
+ body$: z.string(),
94
+ })
95
+ .transform((v) => {
96
+ return new ListTransfersValidationError(v, {
97
+ request: v.request$,
98
+ response: v.response$,
99
+ body: v.body$,
100
+ });
101
+ });
102
+ /** @internal */
103
+ exports.ListTransfersValidationError$outboundSchema = z.instanceof(ListTransfersValidationError)
104
+ .transform(v => v.data$)
105
+ .pipe(z.object({
106
+ accountIDs: z.string().optional(),
107
+ status: z.string().optional(),
108
+ startDateTime: z.string().optional(),
109
+ endDateTime: z.string().optional(),
110
+ skip: z.string().optional(),
111
+ count: z.string().optional(),
112
+ groupID: z.string().optional(),
113
+ foreignID: z.string().optional(),
114
+ scheduleID: z.string().optional(),
115
+ paymentLinkCode: z.string().optional(),
116
+ refunded: z.string().optional(),
117
+ disputed: z.string().optional(),
118
+ }));
119
+ /**
120
+ * @internal
121
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
122
+ */
123
+ var ListTransfersValidationError$;
124
+ (function (ListTransfersValidationError$) {
125
+ /** @deprecated use `ListTransfersValidationError$inboundSchema` instead. */
126
+ ListTransfersValidationError$.inboundSchema = exports.ListTransfersValidationError$inboundSchema;
127
+ /** @deprecated use `ListTransfersValidationError$outboundSchema` instead. */
128
+ ListTransfersValidationError$.outboundSchema = exports.ListTransfersValidationError$outboundSchema;
129
+ })(ListTransfersValidationError$ || (exports.ListTransfersValidationError$ = ListTransfersValidationError$ = {}));
130
+ //# sourceMappingURL=listtransfersvalidationerror.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"listtransfersvalidationerror.js","sourceRoot":"","sources":["../../src/models/errors/listtransfersvalidationerror.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,45 @@
1
+ import * as z from "zod";
2
+ import { MoovError } from "./mooverror.js";
3
+ export type ListWalletsValidationErrorData = {
4
+ status?: string | undefined;
5
+ walletType?: string | undefined;
6
+ skip?: string | undefined;
7
+ count?: string | undefined;
8
+ };
9
+ export declare class ListWalletsValidationError extends MoovError {
10
+ status?: string | undefined;
11
+ walletType?: string | undefined;
12
+ skip?: string | undefined;
13
+ count?: string | undefined;
14
+ /** The original data that was passed to this error instance. */
15
+ data$: ListWalletsValidationErrorData;
16
+ constructor(err: ListWalletsValidationErrorData, httpMeta: {
17
+ response: Response;
18
+ request: Request;
19
+ body: string;
20
+ });
21
+ }
22
+ /** @internal */
23
+ export declare const ListWalletsValidationError$inboundSchema: z.ZodType<ListWalletsValidationError, z.ZodTypeDef, unknown>;
24
+ /** @internal */
25
+ export type ListWalletsValidationError$Outbound = {
26
+ status?: string | undefined;
27
+ walletType?: string | undefined;
28
+ skip?: string | undefined;
29
+ count?: string | undefined;
30
+ };
31
+ /** @internal */
32
+ export declare const ListWalletsValidationError$outboundSchema: z.ZodType<ListWalletsValidationError$Outbound, z.ZodTypeDef, ListWalletsValidationError>;
33
+ /**
34
+ * @internal
35
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
36
+ */
37
+ export declare namespace ListWalletsValidationError$ {
38
+ /** @deprecated use `ListWalletsValidationError$inboundSchema` instead. */
39
+ const inboundSchema: z.ZodType<ListWalletsValidationError, z.ZodTypeDef, unknown>;
40
+ /** @deprecated use `ListWalletsValidationError$outboundSchema` instead. */
41
+ const outboundSchema: z.ZodType<ListWalletsValidationError$Outbound, z.ZodTypeDef, ListWalletsValidationError>;
42
+ /** @deprecated use `ListWalletsValidationError$Outbound` instead. */
43
+ type Outbound = ListWalletsValidationError$Outbound;
44
+ }
45
+ //# sourceMappingURL=listwalletsvalidationerror.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"listwalletsvalidationerror.d.ts","sourceRoot":"","sources":["../../src/models/errors/listwalletsvalidationerror.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAE3C,MAAM,MAAM,8BAA8B,GAAG;IAC3C,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC5B,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAChC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC5B,CAAC;AAEF,qBAAa,0BAA2B,SAAQ,SAAS;IACvD,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC5B,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAChC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE3B,gEAAgE;IAChE,KAAK,EAAE,8BAA8B,CAAC;gBAGpC,GAAG,EAAE,8BAA8B,EACnC,QAAQ,EAAE;QAAE,QAAQ,EAAE,QAAQ,CAAC;QAAC,OAAO,EAAE,OAAO,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE;CAcnE;AAED,gBAAgB;AAChB,eAAO,MAAM,wCAAwC,EAAE,CAAC,CAAC,OAAO,CAC9D,0BAA0B,EAC1B,CAAC,CAAC,UAAU,EACZ,OAAO,CAgBL,CAAC;AAEL,gBAAgB;AAChB,MAAM,MAAM,mCAAmC,GAAG;IAChD,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC5B,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAChC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC5B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,yCAAyC,EAAE,CAAC,CAAC,OAAO,CAC/D,mCAAmC,EACnC,CAAC,CAAC,UAAU,EACZ,0BAA0B,CAQvB,CAAC;AAEN;;;GAGG;AACH,yBAAiB,2BAA2B,CAAC;IAC3C,0EAA0E;IACnE,MAAM,aAAa,8DAA2C,CAAC;IACtE,2EAA2E;IACpE,MAAM,cAAc,0FAA4C,CAAC;IACxE,qEAAqE;IACrE,KAAY,QAAQ,GAAG,mCAAmC,CAAC;CAC5D"}
@@ -0,0 +1,98 @@
1
+ "use strict";
2
+ /*
3
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.ListWalletsValidationError$ = exports.ListWalletsValidationError$outboundSchema = exports.ListWalletsValidationError$inboundSchema = exports.ListWalletsValidationError = void 0;
40
+ const z = __importStar(require("zod"));
41
+ const mooverror_js_1 = require("./mooverror.js");
42
+ class ListWalletsValidationError extends mooverror_js_1.MoovError {
43
+ constructor(err, httpMeta) {
44
+ const message = "message" in err && typeof err.message === "string"
45
+ ? err.message
46
+ : `API error occurred: ${JSON.stringify(err)}`;
47
+ super(message, httpMeta);
48
+ this.data$ = err;
49
+ if (err.status != null)
50
+ this.status = err.status;
51
+ if (err.walletType != null)
52
+ this.walletType = err.walletType;
53
+ if (err.skip != null)
54
+ this.skip = err.skip;
55
+ if (err.count != null)
56
+ this.count = err.count;
57
+ this.name = "ListWalletsValidationError";
58
+ }
59
+ }
60
+ exports.ListWalletsValidationError = ListWalletsValidationError;
61
+ /** @internal */
62
+ exports.ListWalletsValidationError$inboundSchema = z.object({
63
+ status: z.string().optional(),
64
+ walletType: z.string().optional(),
65
+ skip: z.string().optional(),
66
+ count: z.string().optional(),
67
+ request$: z.instanceof(Request),
68
+ response$: z.instanceof(Response),
69
+ body$: z.string(),
70
+ })
71
+ .transform((v) => {
72
+ return new ListWalletsValidationError(v, {
73
+ request: v.request$,
74
+ response: v.response$,
75
+ body: v.body$,
76
+ });
77
+ });
78
+ /** @internal */
79
+ exports.ListWalletsValidationError$outboundSchema = z.instanceof(ListWalletsValidationError)
80
+ .transform(v => v.data$)
81
+ .pipe(z.object({
82
+ status: z.string().optional(),
83
+ walletType: z.string().optional(),
84
+ skip: z.string().optional(),
85
+ count: z.string().optional(),
86
+ }));
87
+ /**
88
+ * @internal
89
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
90
+ */
91
+ var ListWalletsValidationError$;
92
+ (function (ListWalletsValidationError$) {
93
+ /** @deprecated use `ListWalletsValidationError$inboundSchema` instead. */
94
+ ListWalletsValidationError$.inboundSchema = exports.ListWalletsValidationError$inboundSchema;
95
+ /** @deprecated use `ListWalletsValidationError$outboundSchema` instead. */
96
+ ListWalletsValidationError$.outboundSchema = exports.ListWalletsValidationError$outboundSchema;
97
+ })(ListWalletsValidationError$ || (exports.ListWalletsValidationError$ = ListWalletsValidationError$ = {}));
98
+ //# sourceMappingURL=listwalletsvalidationerror.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"listwalletsvalidationerror.js","sourceRoot":"","sources":["../../src/models/errors/listwalletsvalidationerror.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AACzB,iDAA2C;AAS3C,MAAa,0BAA2B,SAAQ,wBAAS;IASvD,YACE,GAAmC,EACnC,QAAgE;QAEhE,MAAM,OAAO,GAAG,SAAS,IAAI,GAAG,IAAI,OAAO,GAAG,CAAC,OAAO,KAAK,QAAQ;YACjE,CAAC,CAAC,GAAG,CAAC,OAAO;YACb,CAAC,CAAC,uBAAuB,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC;QACjD,KAAK,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;QACzB,IAAI,CAAC,KAAK,GAAG,GAAG,CAAC;QACjB,IAAI,GAAG,CAAC,MAAM,IAAI,IAAI;YAAE,IAAI,CAAC,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;QACjD,IAAI,GAAG,CAAC,UAAU,IAAI,IAAI;YAAE,IAAI,CAAC,UAAU,GAAG,GAAG,CAAC,UAAU,CAAC;QAC7D,IAAI,GAAG,CAAC,IAAI,IAAI,IAAI;YAAE,IAAI,CAAC,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;QAC3C,IAAI,GAAG,CAAC,KAAK,IAAI,IAAI;YAAE,IAAI,CAAC,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC;QAE9C,IAAI,CAAC,IAAI,GAAG,4BAA4B,CAAC;IAC3C,CAAC;CACF;AAzBD,gEAyBC;AAED,gBAAgB;AACH,QAAA,wCAAwC,GAIjD,CAAC,CAAC,MAAM,CAAC;IACX,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,QAAQ,EAAE,CAAC,CAAC,UAAU,CAAC,OAAO,CAAC;IAC/B,SAAS,EAAE,CAAC,CAAC,UAAU,CAAC,QAAQ,CAAC;IACjC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;CAClB,CAAC;KACC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACf,OAAO,IAAI,0BAA0B,CAAC,CAAC,EAAE;QACvC,OAAO,EAAE,CAAC,CAAC,QAAQ;QACnB,QAAQ,EAAE,CAAC,CAAC,SAAS;QACrB,IAAI,EAAE,CAAC,CAAC,KAAK;KACd,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAUL,gBAAgB;AACH,QAAA,yCAAyC,GAIlD,CAAC,CAAC,UAAU,CAAC,0BAA0B,CAAC;KACzC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC;KACvB,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC;IACb,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC7B,CAAC,CAAC,CAAC;AAEN;;;GAGG;AACH,IAAiB,2BAA2B,CAO3C;AAPD,WAAiB,2BAA2B;IAC1C,0EAA0E;IAC7D,yCAAa,GAAG,gDAAwC,CAAC;IACtE,2EAA2E;IAC9D,0CAAc,GAAG,iDAAyC,CAAC;AAG1E,CAAC,EAPgB,2BAA2B,2CAA3B,2BAA2B,QAO3C"}
@@ -0,0 +1,72 @@
1
+ import * as z from "zod";
2
+ import { MoovError } from "./mooverror.js";
3
+ export type ListWalletTransactionsValidationErrorData = {
4
+ transactionType?: string | undefined;
5
+ transactionTypes?: string | undefined;
6
+ sourceType?: string | undefined;
7
+ sourceID?: string | undefined;
8
+ status?: string | undefined;
9
+ sweepID?: string | undefined;
10
+ createdStartDateTime?: string | undefined;
11
+ createdEndDateTime?: string | undefined;
12
+ completedStartDateTime?: string | undefined;
13
+ completedEndDateTime?: string | undefined;
14
+ statementDescriptor?: string | undefined;
15
+ skip?: string | undefined;
16
+ count?: string | undefined;
17
+ };
18
+ export declare class ListWalletTransactionsValidationError extends MoovError {
19
+ transactionType?: string | undefined;
20
+ transactionTypes?: string | undefined;
21
+ sourceType?: string | undefined;
22
+ sourceID?: string | undefined;
23
+ status?: string | undefined;
24
+ sweepID?: string | undefined;
25
+ createdStartDateTime?: string | undefined;
26
+ createdEndDateTime?: string | undefined;
27
+ completedStartDateTime?: string | undefined;
28
+ completedEndDateTime?: string | undefined;
29
+ statementDescriptor?: string | undefined;
30
+ skip?: string | undefined;
31
+ count?: string | undefined;
32
+ /** The original data that was passed to this error instance. */
33
+ data$: ListWalletTransactionsValidationErrorData;
34
+ constructor(err: ListWalletTransactionsValidationErrorData, httpMeta: {
35
+ response: Response;
36
+ request: Request;
37
+ body: string;
38
+ });
39
+ }
40
+ /** @internal */
41
+ export declare const ListWalletTransactionsValidationError$inboundSchema: z.ZodType<ListWalletTransactionsValidationError, z.ZodTypeDef, unknown>;
42
+ /** @internal */
43
+ export type ListWalletTransactionsValidationError$Outbound = {
44
+ transactionType?: string | undefined;
45
+ transactionTypes?: string | undefined;
46
+ sourceType?: string | undefined;
47
+ sourceID?: string | undefined;
48
+ status?: string | undefined;
49
+ sweepID?: string | undefined;
50
+ createdStartDateTime?: string | undefined;
51
+ createdEndDateTime?: string | undefined;
52
+ completedStartDateTime?: string | undefined;
53
+ completedEndDateTime?: string | undefined;
54
+ statementDescriptor?: string | undefined;
55
+ skip?: string | undefined;
56
+ count?: string | undefined;
57
+ };
58
+ /** @internal */
59
+ export declare const ListWalletTransactionsValidationError$outboundSchema: z.ZodType<ListWalletTransactionsValidationError$Outbound, z.ZodTypeDef, ListWalletTransactionsValidationError>;
60
+ /**
61
+ * @internal
62
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
63
+ */
64
+ export declare namespace ListWalletTransactionsValidationError$ {
65
+ /** @deprecated use `ListWalletTransactionsValidationError$inboundSchema` instead. */
66
+ const inboundSchema: z.ZodType<ListWalletTransactionsValidationError, z.ZodTypeDef, unknown>;
67
+ /** @deprecated use `ListWalletTransactionsValidationError$outboundSchema` instead. */
68
+ const outboundSchema: z.ZodType<ListWalletTransactionsValidationError$Outbound, z.ZodTypeDef, ListWalletTransactionsValidationError>;
69
+ /** @deprecated use `ListWalletTransactionsValidationError$Outbound` instead. */
70
+ type Outbound = ListWalletTransactionsValidationError$Outbound;
71
+ }
72
+ //# sourceMappingURL=listwallettransactionsvalidationerror.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"listwallettransactionsvalidationerror.d.ts","sourceRoot":"","sources":["../../src/models/errors/listwallettransactionsvalidationerror.ts"],"names":[],"mappings":"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"}