@moovio/sdk 0.22.3 → 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 +219 -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 +9 -0
  54. package/models/components/runtransfer.d.ts.map +1 -1
  55. package/models/components/runtransfer.js +3 -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 +16 -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
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "..": {
20
20
  "name": "@moovio/sdk",
21
- "version": "0.22.3",
21
+ "version": "0.22.4",
22
22
  "dependencies": {
23
23
  "@modelcontextprotocol/sdk": ">=1.5.0 <1.10.0",
24
24
  "decimal.js": "^10.4.3",
@@ -8,7 +8,7 @@ import * as operations from "../models/operations/index.js";
8
8
  import { APIPromise } from "../types/async.js";
9
9
  import { Result } from "../types/fp.js";
10
10
  /**
11
- * Retrieve the current status and details of an instant verification, including whether the verification method was instant or same-day
11
+ * Retrieve the current status and details of an instant verification, including whether the verification method was instant (RTP or FedNow) or same-day
12
12
  * ACH. This helps track the verification process in real-time and provides details in case of exceptions.
13
13
  *
14
14
  * The status will indicate the following:
@@ -46,7 +46,7 @@ const url_js_1 = require("../lib/url.js");
46
46
  const operations = __importStar(require("../models/operations/index.js"));
47
47
  const async_js_1 = require("../types/async.js");
48
48
  /**
49
- * Retrieve the current status and details of an instant verification, including whether the verification method was instant or same-day
49
+ * Retrieve the current status and details of an instant verification, including whether the verification method was instant (RTP or FedNow) or same-day
50
50
  * ACH. This helps track the verification process in real-time and provides details in case of exceptions.
51
51
  *
52
52
  * The status will indicate the following:
@@ -11,14 +11,14 @@ import { Result } from "../types/fp.js";
11
11
  /**
12
12
  * Instant micro-deposit verification offers a quick and efficient way to verify bank account ownership.
13
13
  *
14
- * Send a $0.01 credit with a unique verification code via RTP or same-day ACH, depending on the receiving bank's capabilities. This
14
+ * 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
15
15
  * feature provides a faster alternative to traditional methods, allowing verification in a single session.
16
16
  *
17
17
  * It is recommended to use the `X-Wait-For: rail-response` header to synchronously receive the outcome of the instant credit in the
18
18
  * response payload.
19
19
  *
20
20
  * Possible verification methods:
21
- * - `instant`: Real-time verification credit sent via RTP
21
+ * - `instant`: Real-time verification credit sent via RTP or FedNow
22
22
  * - `ach`: Verification credit sent via same-day ACH
23
23
  *
24
24
  * Possible statuses:
@@ -49,14 +49,14 @@ const async_js_1 = require("../types/async.js");
49
49
  /**
50
50
  * Instant micro-deposit verification offers a quick and efficient way to verify bank account ownership.
51
51
  *
52
- * Send a $0.01 credit with a unique verification code via RTP or same-day ACH, depending on the receiving bank's capabilities. This
52
+ * 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
53
53
  * feature provides a faster alternative to traditional methods, allowing verification in a single session.
54
54
  *
55
55
  * It is recommended to use the `X-Wait-For: rail-response` header to synchronously receive the outcome of the instant credit in the
56
56
  * response payload.
57
57
  *
58
58
  * Possible verification methods:
59
- * - `instant`: Real-time verification credit sent via RTP
59
+ * - `instant`: Real-time verification credit sent via RTP or FedNow
60
60
  * - `ach`: Verification credit sent via same-day ACH
61
61
  *
62
62
  * Possible statuses:
package/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "@moovio/sdk",
5
- "version": "0.22.3",
5
+ "version": "0.22.4",
6
6
  "exports": {
7
7
  ".": "./src/index.ts",
8
8
  "./models/errors": "./src/models/errors/index.ts",
package/lib/config.d.ts CHANGED
@@ -39,8 +39,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
39
39
  export declare const SDK_METADATA: {
40
40
  readonly language: "typescript";
41
41
  readonly openapiDocVersion: "latest";
42
- readonly sdkVersion: "0.22.3";
43
- readonly genVersion: "2.779.2";
44
- readonly userAgent: "speakeasy-sdk/typescript 0.22.3 2.779.2 latest @moovio/sdk";
42
+ readonly sdkVersion: "0.22.4";
43
+ readonly genVersion: "2.781.2";
44
+ readonly userAgent: "speakeasy-sdk/typescript 0.22.4 2.781.2 latest @moovio/sdk";
45
45
  };
46
46
  //# sourceMappingURL=config.d.ts.map
package/lib/config.js CHANGED
@@ -31,8 +31,8 @@ function serverURLFromOptions(options) {
31
31
  exports.SDK_METADATA = {
32
32
  language: "typescript",
33
33
  openapiDocVersion: "latest",
34
- sdkVersion: "0.22.3",
35
- genVersion: "2.779.2",
36
- userAgent: "speakeasy-sdk/typescript 0.22.3 2.779.2 latest @moovio/sdk",
34
+ sdkVersion: "0.22.4",
35
+ genVersion: "2.781.2",
36
+ userAgent: "speakeasy-sdk/typescript 0.22.4 2.781.2 latest @moovio/sdk",
37
37
  };
38
38
  //# sourceMappingURL=config.js.map
@@ -22,7 +22,7 @@ const routes = (0, core_1.buildRouteMap)({
22
22
  exports.app = (0, core_1.buildApplication)(routes, {
23
23
  name: "mcp",
24
24
  versionInfo: {
25
- currentVersion: "0.22.3",
25
+ currentVersion: "0.22.4",
26
26
  },
27
27
  });
28
28
  (0, core_1.run)(exports.app, node_process_1.default.argv.slice(2), (0, cli_js_1.buildContext)(node_process_1.default));
@@ -179,7 +179,7 @@ const walletTransactionsList_js_1 = require("./tools/walletTransactionsList.js")
179
179
  function createMCPServer(deps) {
180
180
  const server = new mcp_js_1.McpServer({
181
181
  name: "Moov",
182
- version: "0.22.3",
182
+ version: "0.22.4",
183
183
  });
184
184
  const client = new core_js_1.MoovCore({
185
185
  security: deps.security,
@@ -45,7 +45,7 @@ const args = {
45
45
  };
46
46
  exports.tool$bankAccountsGetVerification = {
47
47
  name: "bank-accounts-get-verification",
48
- description: `Retrieve the current status and details of an instant verification, including whether the verification method was instant or same-day
48
+ description: `Retrieve the current status and details of an instant verification, including whether the verification method was instant (RTP or FedNow) or same-day
49
49
  ACH. This helps track the verification process in real-time and provides details in case of exceptions.
50
50
 
51
51
  The status will indicate the following:
@@ -47,14 +47,14 @@ exports.tool$bankAccountsInitiateVerification = {
47
47
  name: "bank-accounts-initiate-verification",
48
48
  description: `Instant micro-deposit verification offers a quick and efficient way to verify bank account ownership.
49
49
 
50
- Send a $0.01 credit with a unique verification code via RTP or same-day ACH, depending on the receiving bank's capabilities. This
50
+ 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
51
51
  feature provides a faster alternative to traditional methods, allowing verification in a single session.
52
52
 
53
53
  It is recommended to use the \`X-Wait-For: rail-response\` header to synchronously receive the outcome of the instant credit in the
54
54
  response payload.
55
55
 
56
56
  Possible verification methods:
57
- - \`instant\`: Real-time verification credit sent via RTP
57
+ - \`instant\`: Real-time verification credit sent via RTP or FedNow
58
58
  - \`ach\`: Verification credit sent via same-day ACH
59
59
 
60
60
  Possible statuses:
@@ -0,0 +1,49 @@
1
+ import * as z from "zod/v3";
2
+ import { Result as SafeParseResult } from "../../types/fp.js";
3
+ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
4
+ import { AmountDecimal, AmountDecimal$Outbound } from "./amountdecimal.js";
5
+ /**
6
+ * A detailed breakdown of account fees.
7
+ */
8
+ export type AccountFees = {
9
+ /**
10
+ * Fees associated with wallet services.
11
+ */
12
+ walletFee: AmountDecimal;
13
+ /**
14
+ * Fees for PCI compliance.
15
+ */
16
+ merchantPCIFee: AmountDecimal;
17
+ /**
18
+ * Fees for business verification.
19
+ */
20
+ kybFee?: AmountDecimal | undefined;
21
+ /**
22
+ * Fees for customer verification.
23
+ */
24
+ kycFee?: AmountDecimal | undefined;
25
+ /**
26
+ * Fees for transaction risk monitoring.
27
+ */
28
+ transactionMonitoringFee?: AmountDecimal | undefined;
29
+ /**
30
+ * Total platform fees.
31
+ */
32
+ total: AmountDecimal;
33
+ };
34
+ /** @internal */
35
+ export declare const AccountFees$inboundSchema: z.ZodType<AccountFees, z.ZodTypeDef, unknown>;
36
+ /** @internal */
37
+ export type AccountFees$Outbound = {
38
+ walletFee: AmountDecimal$Outbound;
39
+ merchantPCIFee: AmountDecimal$Outbound;
40
+ kybFee?: AmountDecimal$Outbound | undefined;
41
+ kycFee?: AmountDecimal$Outbound | undefined;
42
+ transactionMonitoringFee?: AmountDecimal$Outbound | undefined;
43
+ total: AmountDecimal$Outbound;
44
+ };
45
+ /** @internal */
46
+ export declare const AccountFees$outboundSchema: z.ZodType<AccountFees$Outbound, z.ZodTypeDef, AccountFees>;
47
+ export declare function accountFeesToJSON(accountFees: AccountFees): string;
48
+ export declare function accountFeesFromJSON(jsonString: string): SafeParseResult<AccountFees, SDKValidationError>;
49
+ //# sourceMappingURL=accountfees.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accountfees.d.ts","sourceRoot":"","sources":["../../src/models/components/accountfees.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,aAAa,EAEb,sBAAsB,EAEvB,MAAM,oBAAoB,CAAC;AAE5B;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG;IACxB;;OAEG;IACH,SAAS,EAAE,aAAa,CAAC;IACzB;;OAEG;IACH,cAAc,EAAE,aAAa,CAAC;IAC9B;;OAEG;IACH,MAAM,CAAC,EAAE,aAAa,GAAG,SAAS,CAAC;IACnC;;OAEG;IACH,MAAM,CAAC,EAAE,aAAa,GAAG,SAAS,CAAC;IACnC;;OAEG;IACH,wBAAwB,CAAC,EAAE,aAAa,GAAG,SAAS,CAAC;IACrD;;OAEG;IACH,KAAK,EAAE,aAAa,CAAC;CACtB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,OAAO,CAC/C,WAAW,EACX,CAAC,CAAC,UAAU,EACZ,OAAO,CAQP,CAAC;AACH,gBAAgB;AAChB,MAAM,MAAM,oBAAoB,GAAG;IACjC,SAAS,EAAE,sBAAsB,CAAC;IAClC,cAAc,EAAE,sBAAsB,CAAC;IACvC,MAAM,CAAC,EAAE,sBAAsB,GAAG,SAAS,CAAC;IAC5C,MAAM,CAAC,EAAE,sBAAsB,GAAG,SAAS,CAAC;IAC5C,wBAAwB,CAAC,EAAE,sBAAsB,GAAG,SAAS,CAAC;IAC9D,KAAK,EAAE,sBAAsB,CAAC;CAC/B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAChD,oBAAoB,EACpB,CAAC,CAAC,UAAU,EACZ,WAAW,CAQX,CAAC;AAEH,wBAAgB,iBAAiB,CAAC,WAAW,EAAE,WAAW,GAAG,MAAM,CAElE;AACD,wBAAgB,mBAAmB,CACjC,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,WAAW,EAAE,kBAAkB,CAAC,CAMlD"}
@@ -0,0 +1,69 @@
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.AccountFees$outboundSchema = exports.AccountFees$inboundSchema = void 0;
40
+ exports.accountFeesToJSON = accountFeesToJSON;
41
+ exports.accountFeesFromJSON = accountFeesFromJSON;
42
+ const z = __importStar(require("zod/v3"));
43
+ const schemas_js_1 = require("../../lib/schemas.js");
44
+ const amountdecimal_js_1 = require("./amountdecimal.js");
45
+ /** @internal */
46
+ exports.AccountFees$inboundSchema = z.object({
47
+ walletFee: amountdecimal_js_1.AmountDecimal$inboundSchema,
48
+ merchantPCIFee: amountdecimal_js_1.AmountDecimal$inboundSchema,
49
+ kybFee: amountdecimal_js_1.AmountDecimal$inboundSchema.optional(),
50
+ kycFee: amountdecimal_js_1.AmountDecimal$inboundSchema.optional(),
51
+ transactionMonitoringFee: amountdecimal_js_1.AmountDecimal$inboundSchema.optional(),
52
+ total: amountdecimal_js_1.AmountDecimal$inboundSchema,
53
+ });
54
+ /** @internal */
55
+ exports.AccountFees$outboundSchema = z.object({
56
+ walletFee: amountdecimal_js_1.AmountDecimal$outboundSchema,
57
+ merchantPCIFee: amountdecimal_js_1.AmountDecimal$outboundSchema,
58
+ kybFee: amountdecimal_js_1.AmountDecimal$outboundSchema.optional(),
59
+ kycFee: amountdecimal_js_1.AmountDecimal$outboundSchema.optional(),
60
+ transactionMonitoringFee: amountdecimal_js_1.AmountDecimal$outboundSchema.optional(),
61
+ total: amountdecimal_js_1.AmountDecimal$outboundSchema,
62
+ });
63
+ function accountFeesToJSON(accountFees) {
64
+ return JSON.stringify(exports.AccountFees$outboundSchema.parse(accountFees));
65
+ }
66
+ function accountFeesFromJSON(jsonString) {
67
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.AccountFees$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AccountFees' from JSON`);
68
+ }
69
+ //# sourceMappingURL=accountfees.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accountfees.js","sourceRoot":"","sources":["../../src/models/components/accountfees.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgFH,8CAEC;AACD,kDAQC;AAzFD,0CAA4B;AAC5B,qDAAiD;AAGjD,yDAK4B;AAgC5B,gBAAgB;AACH,QAAA,yBAAyB,GAIlC,CAAC,CAAC,MAAM,CAAC;IACX,SAAS,EAAE,8CAA2B;IACtC,cAAc,EAAE,8CAA2B;IAC3C,MAAM,EAAE,8CAA2B,CAAC,QAAQ,EAAE;IAC9C,MAAM,EAAE,8CAA2B,CAAC,QAAQ,EAAE;IAC9C,wBAAwB,EAAE,8CAA2B,CAAC,QAAQ,EAAE;IAChE,KAAK,EAAE,8CAA2B;CACnC,CAAC,CAAC;AAWH,gBAAgB;AACH,QAAA,0BAA0B,GAInC,CAAC,CAAC,MAAM,CAAC;IACX,SAAS,EAAE,+CAA4B;IACvC,cAAc,EAAE,+CAA4B;IAC5C,MAAM,EAAE,+CAA4B,CAAC,QAAQ,EAAE;IAC/C,MAAM,EAAE,+CAA4B,CAAC,QAAQ,EAAE;IAC/C,wBAAwB,EAAE,+CAA4B,CAAC,QAAQ,EAAE;IACjE,KAAK,EAAE,+CAA4B;CACpC,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"}
@@ -48,6 +48,31 @@ export type BankAccountException = {
48
48
  * - MD07: Customer Deceased
49
49
  */
50
50
  rtpRejectionCode?: RTPRejectionCode | undefined;
51
+ /**
52
+ * The rejection code of a FedNow transaction that caused the bank account status to change.
53
+ *
54
+ * @remarks
55
+ *
56
+ * - AC02: Debtor account is invalid
57
+ * - AC03: Creditor account is invalid
58
+ * - AC04: Account closed
59
+ * - AC06: Account is blocked
60
+ * - AC07: Creditor account closed
61
+ * - AC10: Debtor account currency is invalid or missing
62
+ * - AC11: Creditor account currency is invalid or missing
63
+ * - AC13: Debtor account type missing or invalid
64
+ * - AC14: Creditor account type missing or invalid
65
+ * - AG01: Transaction is forbidden on this type of account
66
+ * - AG03: Transaction type is not supported/authorized on this account
67
+ * - BE06: End customer specified is not known at associated Sort/National Bank Code or no longer exists in the books
68
+ * - DUPL: Payment is a duplicate of another payment
69
+ * - MD07: End customer is deceased
70
+ * - NOAT: Receiving customer account does not support/accept this message type
71
+ * - RC02: Bank identifier is invalid or missing
72
+ * - RC03: Debtor FI identifier is invalid or missing
73
+ * - RC04: Creditor FI identifier is invalid or missing
74
+ */
75
+ fednowRejectionCode?: string | undefined;
51
76
  /**
52
77
  * Details related to an `errored` or `verificationFailed` bank account status.
53
78
  */
@@ -59,6 +84,7 @@ export declare const BankAccountException$inboundSchema: z.ZodType<BankAccountEx
59
84
  export type BankAccountException$Outbound = {
60
85
  achReturnCode?: string | undefined;
61
86
  rtpRejectionCode?: string | undefined;
87
+ fednowRejectionCode?: string | undefined;
62
88
  description: string;
63
89
  };
64
90
  /** @internal */
@@ -1 +1 @@
1
- {"version":3,"file":"bankaccountexception.d.ts","sourceRoot":"","sources":["../../src/models/components/bankaccountexception.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,aAAa,EAGd,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,gBAAgB,EAGjB,MAAM,uBAAuB,CAAC;AAE/B;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAAG;IACjC;;;;;;;;;;;;;;;;;;;;;;;;;OAyBG;IACH,aAAa,CAAC,EAAE,aAAa,GAAG,SAAS,CAAC;IAC1C;;;;;;;;;;;;OAYG;IACH,gBAAgB,CAAC,EAAE,gBAAgB,GAAG,SAAS,CAAC;IAChD;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,kCAAkC,EAAE,CAAC,CAAC,OAAO,CACxD,oBAAoB,EACpB,CAAC,CAAC,UAAU,EACZ,OAAO,CAKP,CAAC;AACH,gBAAgB;AAChB,MAAM,MAAM,6BAA6B,GAAG;IAC1C,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACnC,gBAAgB,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACtC,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CACzD,6BAA6B,EAC7B,CAAC,CAAC,UAAU,EACZ,oBAAoB,CAKpB,CAAC;AAEH,wBAAgB,0BAA0B,CACxC,oBAAoB,EAAE,oBAAoB,GACzC,MAAM,CAIR;AACD,wBAAgB,4BAA4B,CAC1C,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,oBAAoB,EAAE,kBAAkB,CAAC,CAM3D"}
1
+ {"version":3,"file":"bankaccountexception.d.ts","sourceRoot":"","sources":["../../src/models/components/bankaccountexception.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,aAAa,EAGd,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,gBAAgB,EAGjB,MAAM,uBAAuB,CAAC;AAE/B;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAAG;IACjC;;;;;;;;;;;;;;;;;;;;;;;;;OAyBG;IACH,aAAa,CAAC,EAAE,aAAa,GAAG,SAAS,CAAC;IAC1C;;;;;;;;;;;;OAYG;IACH,gBAAgB,CAAC,EAAE,gBAAgB,GAAG,SAAS,CAAC;IAChD;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACzC;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,kCAAkC,EAAE,CAAC,CAAC,OAAO,CACxD,oBAAoB,EACpB,CAAC,CAAC,UAAU,EACZ,OAAO,CAMP,CAAC;AACH,gBAAgB;AAChB,MAAM,MAAM,6BAA6B,GAAG;IAC1C,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACnC,gBAAgB,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACtC,mBAAmB,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACzC,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CACzD,6BAA6B,EAC7B,CAAC,CAAC,UAAU,EACZ,oBAAoB,CAMpB,CAAC;AAEH,wBAAgB,0BAA0B,CACxC,oBAAoB,EAAE,oBAAoB,GACzC,MAAM,CAIR;AACD,wBAAgB,4BAA4B,CAC1C,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,oBAAoB,EAAE,kBAAkB,CAAC,CAM3D"}
@@ -47,12 +47,14 @@ const rtprejectioncode_js_1 = require("./rtprejectioncode.js");
47
47
  exports.BankAccountException$inboundSchema = z.object({
48
48
  achReturnCode: achreturncode_js_1.ACHReturnCode$inboundSchema.optional(),
49
49
  rtpRejectionCode: rtprejectioncode_js_1.RTPRejectionCode$inboundSchema.optional(),
50
+ fednowRejectionCode: z.string().optional(),
50
51
  description: z.string(),
51
52
  });
52
53
  /** @internal */
53
54
  exports.BankAccountException$outboundSchema = z.object({
54
55
  achReturnCode: achreturncode_js_1.ACHReturnCode$outboundSchema.optional(),
55
56
  rtpRejectionCode: rtprejectioncode_js_1.RTPRejectionCode$outboundSchema.optional(),
57
+ fednowRejectionCode: z.string().optional(),
56
58
  description: z.string(),
57
59
  });
58
60
  function bankAccountExceptionToJSON(bankAccountException) {
@@ -1 +1 @@
1
- {"version":3,"file":"bankaccountexception.js","sourceRoot":"","sources":["../../src/models/components/bankaccountexception.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgGH,gEAMC;AACD,oEAQC;AA7GD,0CAA4B;AAC5B,qDAAiD;AAGjD,yDAI4B;AAC5B,+DAI+B;AAqD/B,gBAAgB;AACH,QAAA,kCAAkC,GAI3C,CAAC,CAAC,MAAM,CAAC;IACX,aAAa,EAAE,8CAA2B,CAAC,QAAQ,EAAE;IACrD,gBAAgB,EAAE,oDAA8B,CAAC,QAAQ,EAAE;IAC3D,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;CACxB,CAAC,CAAC;AAQH,gBAAgB;AACH,QAAA,mCAAmC,GAI5C,CAAC,CAAC,MAAM,CAAC;IACX,aAAa,EAAE,+CAA4B,CAAC,QAAQ,EAAE;IACtD,gBAAgB,EAAE,qDAA+B,CAAC,QAAQ,EAAE;IAC5D,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;CACxB,CAAC,CAAC;AAEH,SAAgB,0BAA0B,CACxC,oBAA0C;IAE1C,OAAO,IAAI,CAAC,SAAS,CACnB,2CAAmC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAChE,CAAC;AACJ,CAAC;AACD,SAAgB,4BAA4B,CAC1C,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,0CAAkC,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAC9D,kDAAkD,CACnD,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"bankaccountexception.js","sourceRoot":"","sources":["../../src/models/components/bankaccountexception.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA4HH,gEAMC;AACD,oEAQC;AAzID,0CAA4B;AAC5B,qDAAiD;AAGjD,yDAI4B;AAC5B,+DAI+B;AA8E/B,gBAAgB;AACH,QAAA,kCAAkC,GAI3C,CAAC,CAAC,MAAM,CAAC;IACX,aAAa,EAAE,8CAA2B,CAAC,QAAQ,EAAE;IACrD,gBAAgB,EAAE,oDAA8B,CAAC,QAAQ,EAAE;IAC3D,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1C,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;CACxB,CAAC,CAAC;AASH,gBAAgB;AACH,QAAA,mCAAmC,GAI5C,CAAC,CAAC,MAAM,CAAC;IACX,aAAa,EAAE,+CAA4B,CAAC,QAAQ,EAAE;IACtD,gBAAgB,EAAE,qDAA+B,CAAC,QAAQ,EAAE;IAC5D,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1C,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;CACxB,CAAC,CAAC;AAEH,SAAgB,0BAA0B,CACxC,oBAA0C;IAE1C,OAAO,IAAI,CAAC,SAAS,CACnB,2CAAmC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAChE,CAAC;AACJ,CAAC;AACD,SAAgB,4BAA4B,CAC1C,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,0CAAkC,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAC9D,kDAAkD,CACnD,CAAC;AACJ,CAAC"}
@@ -15,6 +15,7 @@ export declare const BankAccountStatusReason: {
15
15
  readonly AchDebitReturn: "ach-debit-return";
16
16
  readonly AchCreditReturn: "ach-credit-return";
17
17
  readonly RtpCreditFailure: "rtp-credit-failure";
18
+ readonly FednowCreditFailure: "fednow-credit-failure";
18
19
  readonly MicroDepositReturn: "micro-deposit-return";
19
20
  readonly AdminAction: "admin-action";
20
21
  readonly Other: "other";
@@ -1 +1 @@
1
- {"version":3,"file":"bankaccountstatusreason.d.ts","sourceRoot":"","sources":["../../src/models/components/bankaccountstatusreason.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;CAe1B,CAAC;AACX;;GAEG;AACH,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAC9C,OAAO,uBAAuB,CAC/B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,qCAAqC,EAAE,CAAC,CAAC,aAAa,CACjE,OAAO,uBAAuB,CACS,CAAC;AAC1C,gBAAgB;AAChB,eAAO,MAAM,sCAAsC,EAAE,CAAC,CAAC,aAAa,CAClE,OAAO,uBAAuB,CACS,CAAC"}
1
+ {"version":3,"file":"bankaccountstatusreason.d.ts","sourceRoot":"","sources":["../../src/models/components/bankaccountstatusreason.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;CAgB1B,CAAC;AACX;;GAEG;AACH,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAC9C,OAAO,uBAAuB,CAC/B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,qCAAqC,EAAE,CAAC,CAAC,aAAa,CACjE,OAAO,uBAAuB,CACS,CAAC;AAC1C,gBAAgB;AAChB,eAAO,MAAM,sCAAsC,EAAE,CAAC,CAAC,aAAa,CAClE,OAAO,uBAAuB,CACS,CAAC"}
@@ -53,6 +53,7 @@ exports.BankAccountStatusReason = {
53
53
  AchDebitReturn: "ach-debit-return",
54
54
  AchCreditReturn: "ach-credit-return",
55
55
  RtpCreditFailure: "rtp-credit-failure",
56
+ FednowCreditFailure: "fednow-credit-failure",
56
57
  MicroDepositReturn: "micro-deposit-return",
57
58
  AdminAction: "admin-action",
58
59
  Other: "other",
@@ -1 +1 @@
1
- {"version":3,"file":"bankaccountstatusreason.js","sourceRoot":"","sources":["../../src/models/components/bankaccountstatusreason.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,0CAA4B;AAG5B;;GAEG;AACU,QAAA,uBAAuB,GAAG;IACrC,kBAAkB,EAAE,sBAAsB;IAC1C,qBAAqB,EAAE,wBAAwB;IAC/C,4BAA4B,EAAE,iCAAiC;IAC/D,mBAAmB,EAAE,uBAAuB;IAC5C,uBAAuB,EAAE,2BAA2B;IACpD,4BAA4B,EAAE,gCAAgC;IAC9D,mBAAmB,EAAE,sBAAsB;IAC3C,sBAAsB,EAAE,yBAAyB;IACjD,cAAc,EAAE,kBAAkB;IAClC,eAAe,EAAE,mBAAmB;IACpC,gBAAgB,EAAE,oBAAoB;IACtC,kBAAkB,EAAE,sBAAsB;IAC1C,WAAW,EAAE,cAAc;IAC3B,KAAK,EAAE,OAAO;CACN,CAAC;AAQX,gBAAgB;AACH,QAAA,qCAAqC,GAE9C,CAAC,CAAC,UAAU,CAAC,+BAAuB,CAAC,CAAC;AAC1C,gBAAgB;AACH,QAAA,sCAAsC,GAE/C,6CAAqC,CAAC"}
1
+ {"version":3,"file":"bankaccountstatusreason.js","sourceRoot":"","sources":["../../src/models/components/bankaccountstatusreason.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,0CAA4B;AAG5B;;GAEG;AACU,QAAA,uBAAuB,GAAG;IACrC,kBAAkB,EAAE,sBAAsB;IAC1C,qBAAqB,EAAE,wBAAwB;IAC/C,4BAA4B,EAAE,iCAAiC;IAC/D,mBAAmB,EAAE,uBAAuB;IAC5C,uBAAuB,EAAE,2BAA2B;IACpD,4BAA4B,EAAE,gCAAgC;IAC9D,mBAAmB,EAAE,sBAAsB;IAC3C,sBAAsB,EAAE,yBAAyB;IACjD,cAAc,EAAE,kBAAkB;IAClC,eAAe,EAAE,mBAAmB;IACpC,gBAAgB,EAAE,oBAAoB;IACtC,mBAAmB,EAAE,uBAAuB;IAC5C,kBAAkB,EAAE,sBAAsB;IAC1C,WAAW,EAAE,cAAc;IAC3B,KAAK,EAAE,OAAO;CACN,CAAC;AAQX,gBAAgB;AACH,QAAA,qCAAqC,GAE9C,CAAC,CAAC,UAAU,CAAC,+BAAuB,CAAC,CAAC;AAC1C,gBAAgB;AACH,QAAA,sCAAsC,GAE/C,6CAAqC,CAAC"}
@@ -2,9 +2,6 @@ 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
4
  import { AmountDecimal, AmountDecimal$Outbound } from "./amountdecimal.js";
5
- /**
6
- * Represents a count of items and their total amount.
7
- */
8
5
  export type BillingCountAndAmount = {
9
6
  /**
10
7
  * The number of items.
@@ -1 +1 @@
1
- {"version":3,"file":"billingcountandamount.d.ts","sourceRoot":"","sources":["../../src/models/components/billingcountandamount.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,aAAa,EAEb,sBAAsB,EAEvB,MAAM,oBAAoB,CAAC;AAE5B;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG;IAClC;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,MAAM,EAAE,aAAa,CAAC;CACvB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CACzD,qBAAqB,EACrB,CAAC,CAAC,UAAU,EACZ,OAAO,CAIP,CAAC;AACH,gBAAgB;AAChB,MAAM,MAAM,8BAA8B,GAAG;IAC3C,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,sBAAsB,CAAC;CAChC,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,oCAAoC,EAAE,CAAC,CAAC,OAAO,CAC1D,8BAA8B,EAC9B,CAAC,CAAC,UAAU,EACZ,qBAAqB,CAIrB,CAAC;AAEH,wBAAgB,2BAA2B,CACzC,qBAAqB,EAAE,qBAAqB,GAC3C,MAAM,CAIR;AACD,wBAAgB,6BAA6B,CAC3C,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,qBAAqB,EAAE,kBAAkB,CAAC,CAM5D"}
1
+ {"version":3,"file":"billingcountandamount.d.ts","sourceRoot":"","sources":["../../src/models/components/billingcountandamount.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,aAAa,EAEb,sBAAsB,EAEvB,MAAM,oBAAoB,CAAC;AAE5B,MAAM,MAAM,qBAAqB,GAAG;IAClC;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,MAAM,EAAE,aAAa,CAAC;CACvB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CACzD,qBAAqB,EACrB,CAAC,CAAC,UAAU,EACZ,OAAO,CAIP,CAAC;AACH,gBAAgB;AAChB,MAAM,MAAM,8BAA8B,GAAG;IAC3C,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,sBAAsB,CAAC;CAChC,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,oCAAoC,EAAE,CAAC,CAAC,OAAO,CAC1D,8BAA8B,EAC9B,CAAC,CAAC,UAAU,EACZ,qBAAqB,CAIrB,CAAC;AAEH,wBAAgB,2BAA2B,CACzC,qBAAqB,EAAE,qBAAqB,GAC3C,MAAM,CAIR;AACD,wBAAgB,6BAA6B,CAC3C,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,qBAAqB,EAAE,kBAAkB,CAAC,CAM5D"}
@@ -1 +1 @@
1
- {"version":3,"file":"billingcountandamount.js","sourceRoot":"","sources":["../../src/models/components/billingcountandamount.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoDH,kEAMC;AACD,sEAQC;AAjED,0CAA4B;AAC5B,qDAAiD;AAGjD,yDAK4B;AAgB5B,gBAAgB;AACH,QAAA,mCAAmC,GAI5C,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,MAAM,EAAE,8CAA2B;CACpC,CAAC,CAAC;AAOH,gBAAgB;AACH,QAAA,oCAAoC,GAI7C,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,MAAM,EAAE,+CAA4B;CACrC,CAAC,CAAC;AAEH,SAAgB,2BAA2B,CACzC,qBAA4C;IAE5C,OAAO,IAAI,CAAC,SAAS,CACnB,4CAAoC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAClE,CAAC;AACJ,CAAC;AACD,SAAgB,6BAA6B,CAC3C,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,2CAAmC,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAC/D,mDAAmD,CACpD,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"billingcountandamount.js","sourceRoot":"","sources":["../../src/models/components/billingcountandamount.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiDH,kEAMC;AACD,sEAQC;AA9DD,0CAA4B;AAC5B,qDAAiD;AAGjD,yDAK4B;AAa5B,gBAAgB;AACH,QAAA,mCAAmC,GAI5C,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,MAAM,EAAE,8CAA2B;CACpC,CAAC,CAAC;AAOH,gBAAgB;AACH,QAAA,oCAAoC,GAI7C,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,MAAM,EAAE,+CAA4B;CACrC,CAAC,CAAC;AAEH,SAAgB,2BAA2B,CACzC,qBAA4C;IAE5C,OAAO,IAAI,CAAC,SAAS,CACnB,4CAAoC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAClE,CAAC;AACJ,CAAC;AACD,SAAgB,6BAA6B,CAC3C,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,2CAAmC,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAC/D,mDAAmD,CACpD,CAAC;AACJ,CAAC"}