@cobre-npm/library-portal-core 0.29.0 → 0.30.0
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.
- package/README.md +19 -1
- package/dist/subclients/index.d.ts +4 -0
- package/dist/subclients/index.d.ts.map +1 -0
- package/dist/subclients/index.js +19 -0
- package/dist/subclients/index.js.map +1 -0
- package/dist/subclients/interfaces/response.interface.d.ts +41 -0
- package/dist/subclients/interfaces/response.interface.d.ts.map +1 -0
- package/dist/subclients/interfaces/response.interface.js +3 -0
- package/dist/subclients/interfaces/response.interface.js.map +1 -0
- package/dist/subclients/status/catalog.d.ts +17 -0
- package/dist/subclients/status/catalog.d.ts.map +1 -0
- package/dist/subclients/status/catalog.js +10 -0
- package/dist/subclients/status/catalog.js.map +1 -0
- package/dist/subclients/status/locales/en.json +8 -0
- package/dist/subclients/status/locales/es-mex.json +8 -0
- package/dist/subclients/status/utils/subclient-status.utils.d.ts +7 -0
- package/dist/subclients/status/utils/subclient-status.utils.d.ts.map +1 -0
- package/dist/subclients/status/utils/subclient-status.utils.js +20 -0
- package/dist/subclients/status/utils/subclient-status.utils.js.map +1 -0
- package/dist/transactions/types/catalog.d.ts +44 -0
- package/dist/transactions/types/catalog.d.ts.map +1 -1
- package/dist/transactions/types/catalog.js +176 -44
- package/dist/transactions/types/catalog.js.map +1 -1
- package/dist/transactions/types/locales/en.json +4 -4
- package/dist/transactions/types/locales/es-mex.json +3 -3
- package/dist/transactions/types/utils/transaction-type.utils.d.ts.map +1 -1
- package/dist/transactions/types/utils/transaction-type.utils.js +3 -1
- package/dist/transactions/types/utils/transaction-type.utils.js.map +1 -1
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -39,6 +39,7 @@ import { getCountries } from "@cobre-npm/library-portal-core/countries"
|
|
|
39
39
|
| `@cobre-npm/library-portal-core/counterparties` | Counterparty types + `Counterparty` interfaces |
|
|
40
40
|
| `@cobre-npm/library-portal-core/countries` | Countries (base) and ISO countries (dialing codes, etc.) |
|
|
41
41
|
| `@cobre-npm/library-portal-core/movements` | Movement types and statuses |
|
|
42
|
+
| `@cobre-npm/library-portal-core/subclients` | Subclient statuses + `Subclient`/`SubclientPerson` interfaces |
|
|
42
43
|
| `@cobre-npm/library-portal-core/documentTypes` | Document types (definition + per-country applicability) |
|
|
43
44
|
| `@cobre-npm/library-portal-core/currencies` | Currencies |
|
|
44
45
|
| `@cobre-npm/library-portal-core/transactions` | Transaction types + interfaces |
|
|
@@ -220,6 +221,21 @@ getMovementStatuses().completed // { code: "completed" } (no i18n)
|
|
|
220
221
|
- **types** (i18n): movement types (ACH, SPEI, R2P, …).
|
|
221
222
|
- **status** (no i18n): movement statuses (`initiated`, `processing`, `completed`, …).
|
|
222
223
|
|
|
224
|
+
### `subclients`
|
|
225
|
+
|
|
226
|
+
```ts
|
|
227
|
+
import {
|
|
228
|
+
getSubclientStatuses, type SubclientStatus, type SubclientStatusOption,
|
|
229
|
+
type Subclient, type SubclientPerson,
|
|
230
|
+
} from "@cobre-npm/library-portal-core/subclients"
|
|
231
|
+
|
|
232
|
+
getSubclientStatuses("en").approved // { code: "approved", label: "Enabled" }
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
- **status** (i18n): `getSubclientStatuses(lang)`; subclient statuses (`processing`, `approved`, `rejected`,
|
|
236
|
+
`failed`).
|
|
237
|
+
- **interfaces**: `Subclient`, `SubclientPerson` (shape shared by `ubos` and `legal_representatives`).
|
|
238
|
+
|
|
223
239
|
### `documentTypes` — two views
|
|
224
240
|
|
|
225
241
|
It's the only domain with a **many-to-many** relationship (one document type applies in several countries with
|
|
@@ -312,10 +328,12 @@ getTransactionTypes("en").spei_debit.label // "Debit via SPEI"
|
|
|
312
328
|
queryTransactionTypes({ lang: "en", code: "spei_debit" }) // [ { code: "spei_debit", label: "Debit via SPEI" } ]
|
|
313
329
|
```
|
|
314
330
|
|
|
315
|
-
- **types** (i18n): `getTransactionTypes(lang)`; each record carries `code
|
|
331
|
+
- **types** (i18n): `getTransactionTypes(lang)`; each record carries `code`, `creditDebitType`
|
|
332
|
+
(`"credit" | "debit"` — the same `CreditDebitType` used by the `Transaction` interface) and `label`.
|
|
316
333
|
- **types query** (i18n `queryX()`): `queryTransactionTypes({ lang, ...filters })` — `lang` is **required inside
|
|
317
334
|
the query object**, not a separate argument, so the result is already localized. There is no default field
|
|
318
335
|
(unlike `currencies`' `scope`): every transaction type comes back when only `lang` is given.
|
|
336
|
+
`queryTransactionTypes({ lang: "en", creditDebitType: "credit" })` narrows to only the credits.
|
|
319
337
|
- **interfaces**: `Transaction`, `EnrichedTransaction`, `TransactionMetadata`, `CreditDebitType`.
|
|
320
338
|
|
|
321
339
|
### `search` / `trustedSessions`
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/subclients/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAA;AAEvD,cAAc,uCAAuC,CAAA;AAErD,cAAc,iCAAiC,CAAA"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./status/utils/subclient-status.utils"), exports);
|
|
18
|
+
__exportStar(require("./interfaces/response.interface"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/subclients/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAEA,wEAAqD;AAErD,kEAA+C"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import type { SubclientStatus } from "../status/catalog";
|
|
2
|
+
import type { DocumentType } from "../../documentTypes/catalog";
|
|
3
|
+
import type { Country } from "../../countries/base/catalog";
|
|
4
|
+
export interface Subclient {
|
|
5
|
+
id: string;
|
|
6
|
+
object: "subclient";
|
|
7
|
+
status: {
|
|
8
|
+
state: SubclientStatus;
|
|
9
|
+
};
|
|
10
|
+
legal_name: string;
|
|
11
|
+
short_name: string;
|
|
12
|
+
id_type: DocumentType;
|
|
13
|
+
id_number: string;
|
|
14
|
+
email: string;
|
|
15
|
+
phone: string;
|
|
16
|
+
website: string;
|
|
17
|
+
industry: string;
|
|
18
|
+
date_of_incorporation: string;
|
|
19
|
+
country_of_incorporation: Country;
|
|
20
|
+
address: {
|
|
21
|
+
street: string;
|
|
22
|
+
city: string;
|
|
23
|
+
state: string;
|
|
24
|
+
postal_code: string;
|
|
25
|
+
country: Country;
|
|
26
|
+
};
|
|
27
|
+
ubos: SubclientPerson[];
|
|
28
|
+
legal_representatives: SubclientPerson[];
|
|
29
|
+
client_metadata: Record<string, unknown>;
|
|
30
|
+
created_at: string;
|
|
31
|
+
updated_at: string;
|
|
32
|
+
}
|
|
33
|
+
export interface SubclientPerson {
|
|
34
|
+
first_name: string;
|
|
35
|
+
last_name: string;
|
|
36
|
+
id_type: DocumentType;
|
|
37
|
+
id_number: string;
|
|
38
|
+
nationalities: Country[];
|
|
39
|
+
date_of_birth: string;
|
|
40
|
+
}
|
|
41
|
+
//# sourceMappingURL=response.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"response.interface.d.ts","sourceRoot":"","sources":["../../../src/subclients/interfaces/response.interface.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AACxD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAA;AAC/D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAA;AAE3D,MAAM,WAAW,SAAS;IACxB,EAAE,EAAE,MAAM,CAAA;IACV,MAAM,EAAE,WAAW,CAAA;IACnB,MAAM,EAAE;QACN,KAAK,EAAE,eAAe,CAAA;KACvB,CAAA;IACD,UAAU,EAAE,MAAM,CAAA;IAClB,UAAU,EAAE,MAAM,CAAA;IAClB,OAAO,EAAE,YAAY,CAAA;IACrB,SAAS,EAAE,MAAM,CAAA;IACjB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,MAAM,CAAA;IACf,QAAQ,EAAE,MAAM,CAAA;IAChB,qBAAqB,EAAE,MAAM,CAAA;IAC7B,wBAAwB,EAAE,OAAO,CAAA;IACjC,OAAO,EAAE;QACP,MAAM,EAAE,MAAM,CAAA;QACd,IAAI,EAAE,MAAM,CAAA;QACZ,KAAK,EAAE,MAAM,CAAA;QACb,WAAW,EAAE,MAAM,CAAA;QACnB,OAAO,EAAE,OAAO,CAAA;KACjB,CAAA;IACD,IAAI,EAAE,eAAe,EAAE,CAAA;IACvB,qBAAqB,EAAE,eAAe,EAAE,CAAA;IACxC,eAAe,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IACxC,UAAU,EAAE,MAAM,CAAA;IAClB,UAAU,EAAE,MAAM,CAAA;CACnB;AAED,MAAM,WAAW,eAAe;IAC9B,UAAU,EAAE,MAAM,CAAA;IAClB,SAAS,EAAE,MAAM,CAAA;IACjB,OAAO,EAAE,YAAY,CAAA;IACrB,SAAS,EAAE,MAAM,CAAA;IACjB,aAAa,EAAE,OAAO,EAAE,CAAA;IACxB,aAAa,EAAE,MAAM,CAAA;CACtB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"response.interface.js","sourceRoot":"","sources":["../../../src/subclients/interfaces/response.interface.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare const SUBCLIENT_STATUSES: {
|
|
2
|
+
readonly processing: {
|
|
3
|
+
readonly code: "processing";
|
|
4
|
+
};
|
|
5
|
+
readonly approved: {
|
|
6
|
+
readonly code: "approved";
|
|
7
|
+
};
|
|
8
|
+
readonly rejected: {
|
|
9
|
+
readonly code: "rejected";
|
|
10
|
+
};
|
|
11
|
+
readonly failed: {
|
|
12
|
+
readonly code: "failed";
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
export type SubclientStatus = keyof typeof SUBCLIENT_STATUSES;
|
|
16
|
+
export type SubclientStatusRecord = (typeof SUBCLIENT_STATUSES)[SubclientStatus];
|
|
17
|
+
//# sourceMappingURL=catalog.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.d.ts","sourceRoot":"","sources":["../../../src/subclients/status/catalog.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;CAKrB,CAAA;AAEV,MAAM,MAAM,eAAe,GAAG,MAAM,OAAO,kBAAkB,CAAA;AAC7D,MAAM,MAAM,qBAAqB,GAAG,CAAC,OAAO,kBAAkB,CAAC,CAAC,eAAe,CAAC,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SUBCLIENT_STATUSES = void 0;
|
|
4
|
+
exports.SUBCLIENT_STATUSES = {
|
|
5
|
+
processing: { code: "processing" },
|
|
6
|
+
approved: { code: "approved" },
|
|
7
|
+
rejected: { code: "rejected" },
|
|
8
|
+
failed: { code: "failed" }
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=catalog.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.js","sourceRoot":"","sources":["../../../src/subclients/status/catalog.ts"],"names":[],"mappings":";;;AAAa,QAAA,kBAAkB,GAAG;IAChC,UAAU,EAAE,EAAE,IAAI,EAAE,YAAY,EAAE;IAClC,QAAQ,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE;IAC9B,QAAQ,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE;IAC9B,MAAM,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;CAClB,CAAA"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SubclientStatus, SubclientStatusRecord } from "../catalog";
|
|
2
|
+
import type { Locale } from "../../../lang";
|
|
3
|
+
export type SubclientStatusOption = SubclientStatusRecord & {
|
|
4
|
+
label: string;
|
|
5
|
+
};
|
|
6
|
+
export declare const getSubclientStatuses: (lang: Locale) => Record<SubclientStatus, SubclientStatusOption>;
|
|
7
|
+
//# sourceMappingURL=subclient-status.utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"subclient-status.utils.d.ts","sourceRoot":"","sources":["../../../../src/subclients/status/utils/subclient-status.utils.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAA;AAGxE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,eAAe,CAAA;AAI3C,MAAM,MAAM,qBAAqB,GAAG,qBAAqB,GAAG;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,CAAA;AAE7E,eAAO,MAAM,oBAAoB,GAAI,MAAM,MAAM,KAAG,MAAM,CAAC,eAAe,EAAE,qBAAqB,CAShG,CAAA"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.getSubclientStatuses = void 0;
|
|
7
|
+
const catalog_1 = require("../catalog");
|
|
8
|
+
const en_json_1 = __importDefault(require("../locales/en.json"));
|
|
9
|
+
const es_mex_json_1 = __importDefault(require("../locales/es-mex.json"));
|
|
10
|
+
const locales = { en: en_json_1.default, "es-mex": es_mex_json_1.default };
|
|
11
|
+
const getSubclientStatuses = (lang) => {
|
|
12
|
+
const locale = locales[lang];
|
|
13
|
+
const result = {};
|
|
14
|
+
for (const record of Object.values(catalog_1.SUBCLIENT_STATUSES)) {
|
|
15
|
+
result[record.code] = { ...record, label: locale.subclientStatuses[record.code] };
|
|
16
|
+
}
|
|
17
|
+
return result;
|
|
18
|
+
};
|
|
19
|
+
exports.getSubclientStatuses = getSubclientStatuses;
|
|
20
|
+
//# sourceMappingURL=subclient-status.utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"subclient-status.utils.js","sourceRoot":"","sources":["../../../../src/subclients/status/utils/subclient-status.utils.ts"],"names":[],"mappings":";;;;;;AAAA,wCAA+C;AAE/C,iEAAyC;AACzC,yEAAgD;AAGhD,MAAM,OAAO,GAAuC,EAAE,EAAE,EAAE,iBAAQ,EAAE,QAAQ,EAAE,qBAAW,EAAE,CAAA;AAIpF,MAAM,oBAAoB,GAAG,CAAC,IAAY,EAAkD,EAAE;IACnG,MAAM,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;IAC5B,MAAM,MAAM,GAAG,EAAoD,CAAA;IAEnE,KAAK,MAAM,MAAM,IAAI,MAAM,CAAC,MAAM,CAAC,4BAAkB,CAAC,EAAE,CAAC;QACvD,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,MAAM,EAAE,KAAK,EAAE,MAAM,CAAC,iBAAiB,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAA;IACnF,CAAC;IAED,OAAO,MAAM,CAAA;AACf,CAAC,CAAA;AATY,QAAA,oBAAoB,wBAShC"}
|
|
@@ -1,134 +1,178 @@
|
|
|
1
1
|
export declare const TRANSACTION_TYPES: {
|
|
2
2
|
readonly spei_debit: {
|
|
3
|
+
readonly creditDebitType: "debit";
|
|
3
4
|
readonly code: "spei_debit";
|
|
4
5
|
};
|
|
5
6
|
readonly spei_credit: {
|
|
7
|
+
readonly creditDebitType: "credit";
|
|
6
8
|
readonly code: "spei_credit";
|
|
7
9
|
};
|
|
8
10
|
readonly spei_return: {
|
|
11
|
+
readonly creditDebitType: "credit";
|
|
9
12
|
readonly code: "spei_return";
|
|
10
13
|
};
|
|
11
14
|
readonly spei_rejected: {
|
|
15
|
+
readonly creditDebitType: "credit";
|
|
12
16
|
readonly code: "spei_rejected";
|
|
13
17
|
};
|
|
14
18
|
readonly internal_spei_debit: {
|
|
19
|
+
readonly creditDebitType: "debit";
|
|
15
20
|
readonly code: "internal_spei_debit";
|
|
16
21
|
};
|
|
17
22
|
readonly internal_spei_credit: {
|
|
23
|
+
readonly creditDebitType: "credit";
|
|
18
24
|
readonly code: "internal_spei_credit";
|
|
19
25
|
};
|
|
20
26
|
readonly adjustment_credit: {
|
|
27
|
+
readonly creditDebitType: "credit";
|
|
21
28
|
readonly code: "adjustment_credit";
|
|
22
29
|
};
|
|
23
30
|
readonly adjustment_debit: {
|
|
31
|
+
readonly creditDebitType: "debit";
|
|
24
32
|
readonly code: "adjustment_debit";
|
|
25
33
|
};
|
|
26
34
|
readonly mex_debit: {
|
|
35
|
+
readonly creditDebitType: "debit";
|
|
27
36
|
readonly code: "mex_debit";
|
|
28
37
|
};
|
|
29
38
|
readonly mex_credit: {
|
|
39
|
+
readonly creditDebitType: "credit";
|
|
30
40
|
readonly code: "mex_credit";
|
|
31
41
|
};
|
|
32
42
|
readonly col_debit: {
|
|
43
|
+
readonly creditDebitType: "debit";
|
|
33
44
|
readonly code: "col_debit";
|
|
34
45
|
};
|
|
35
46
|
readonly col_credit: {
|
|
47
|
+
readonly creditDebitType: "credit";
|
|
36
48
|
readonly code: "col_credit";
|
|
37
49
|
};
|
|
38
50
|
readonly misc_debit: {
|
|
51
|
+
readonly creditDebitType: "debit";
|
|
39
52
|
readonly code: "misc_debit";
|
|
40
53
|
};
|
|
41
54
|
readonly misc_credit: {
|
|
55
|
+
readonly creditDebitType: "credit";
|
|
42
56
|
readonly code: "misc_credit";
|
|
43
57
|
};
|
|
44
58
|
readonly internal_credit: {
|
|
59
|
+
readonly creditDebitType: "credit";
|
|
45
60
|
readonly code: "internal_credit";
|
|
46
61
|
};
|
|
47
62
|
readonly internal_debit: {
|
|
63
|
+
readonly creditDebitType: "debit";
|
|
48
64
|
readonly code: "internal_debit";
|
|
49
65
|
};
|
|
50
66
|
readonly r2p_credit: {
|
|
67
|
+
readonly creditDebitType: "credit";
|
|
51
68
|
readonly code: "r2p_credit";
|
|
52
69
|
};
|
|
53
70
|
readonly cbmm_debit: {
|
|
71
|
+
readonly creditDebitType: "debit";
|
|
54
72
|
readonly code: "cbmm_debit";
|
|
55
73
|
};
|
|
56
74
|
readonly cbmm_credit: {
|
|
75
|
+
readonly creditDebitType: "credit";
|
|
57
76
|
readonly code: "cbmm_credit";
|
|
58
77
|
};
|
|
59
78
|
readonly dd_credit: {
|
|
79
|
+
readonly creditDebitType: "credit";
|
|
60
80
|
readonly code: "dd_credit";
|
|
61
81
|
};
|
|
62
82
|
readonly col_cb_credit: {
|
|
83
|
+
readonly creditDebitType: "credit";
|
|
63
84
|
readonly code: "col_cb_credit";
|
|
64
85
|
};
|
|
65
86
|
readonly col_cb_debit: {
|
|
87
|
+
readonly creditDebitType: "debit";
|
|
66
88
|
readonly code: "col_cb_debit";
|
|
67
89
|
};
|
|
68
90
|
readonly breb_credit: {
|
|
91
|
+
readonly creditDebitType: "credit";
|
|
69
92
|
readonly code: "breb_credit";
|
|
70
93
|
};
|
|
71
94
|
readonly breb_debit: {
|
|
95
|
+
readonly creditDebitType: "debit";
|
|
72
96
|
readonly code: "breb_debit";
|
|
73
97
|
};
|
|
74
98
|
readonly r2p_breb_credit: {
|
|
99
|
+
readonly creditDebitType: "credit";
|
|
75
100
|
readonly code: "r2p_breb_credit";
|
|
76
101
|
};
|
|
77
102
|
readonly breb_rejected: {
|
|
103
|
+
readonly creditDebitType: "credit";
|
|
78
104
|
readonly code: "breb_rejected";
|
|
79
105
|
};
|
|
80
106
|
readonly col_top_up_credit: {
|
|
107
|
+
readonly creditDebitType: "credit";
|
|
81
108
|
readonly code: "col_top_up_credit";
|
|
82
109
|
};
|
|
83
110
|
readonly global_debit: {
|
|
111
|
+
readonly creditDebitType: "debit";
|
|
84
112
|
readonly code: "global_debit";
|
|
85
113
|
};
|
|
86
114
|
readonly global_credit: {
|
|
115
|
+
readonly creditDebitType: "credit";
|
|
87
116
|
readonly code: "global_credit";
|
|
88
117
|
};
|
|
89
118
|
readonly r2p_spei_credit: {
|
|
119
|
+
readonly creditDebitType: "credit";
|
|
90
120
|
readonly code: "r2p_spei_credit";
|
|
91
121
|
};
|
|
92
122
|
readonly transfer_credit: {
|
|
123
|
+
readonly creditDebitType: "credit";
|
|
93
124
|
readonly code: "transfer_credit";
|
|
94
125
|
};
|
|
95
126
|
readonly fedwire_debit: {
|
|
127
|
+
readonly creditDebitType: "debit";
|
|
96
128
|
readonly code: "fedwire_debit";
|
|
97
129
|
};
|
|
98
130
|
readonly fedwire_credit: {
|
|
131
|
+
readonly creditDebitType: "credit";
|
|
99
132
|
readonly code: "fedwire_credit";
|
|
100
133
|
};
|
|
101
134
|
readonly reward_credit: {
|
|
135
|
+
readonly creditDebitType: "credit";
|
|
102
136
|
readonly code: "reward_credit";
|
|
103
137
|
};
|
|
104
138
|
readonly global_pay_to_usa_debit: {
|
|
139
|
+
readonly creditDebitType: "debit";
|
|
105
140
|
readonly code: "global_pay_to_usa_debit";
|
|
106
141
|
};
|
|
107
142
|
readonly global_pay_to_usa_credit: {
|
|
143
|
+
readonly creditDebitType: "credit";
|
|
108
144
|
readonly code: "global_pay_to_usa_credit";
|
|
109
145
|
};
|
|
110
146
|
readonly usa_pay_to_global_debit: {
|
|
147
|
+
readonly creditDebitType: "debit";
|
|
111
148
|
readonly code: "usa_pay_to_global_debit";
|
|
112
149
|
};
|
|
113
150
|
readonly usa_pay_to_global_credit: {
|
|
151
|
+
readonly creditDebitType: "credit";
|
|
114
152
|
readonly code: "usa_pay_to_global_credit";
|
|
115
153
|
};
|
|
116
154
|
readonly onramp_credit: {
|
|
155
|
+
readonly creditDebitType: "credit";
|
|
117
156
|
readonly code: "onramp_credit";
|
|
118
157
|
};
|
|
119
158
|
readonly offramp_debit: {
|
|
159
|
+
readonly creditDebitType: "debit";
|
|
120
160
|
readonly code: "offramp_debit";
|
|
121
161
|
};
|
|
122
162
|
readonly stable_payout_debit: {
|
|
163
|
+
readonly creditDebitType: "debit";
|
|
123
164
|
readonly code: "stable_payout_debit";
|
|
124
165
|
};
|
|
125
166
|
readonly stable_payout_credit: {
|
|
167
|
+
readonly creditDebitType: "credit";
|
|
126
168
|
readonly code: "stable_payout_credit";
|
|
127
169
|
};
|
|
128
170
|
readonly global_pay_to_generic_debit: {
|
|
171
|
+
readonly creditDebitType: "debit";
|
|
129
172
|
readonly code: "global_pay_to_generic_debit";
|
|
130
173
|
};
|
|
131
174
|
readonly global_pay_to_generic_credit: {
|
|
175
|
+
readonly creditDebitType: "credit";
|
|
132
176
|
readonly code: "global_pay_to_generic_credit";
|
|
133
177
|
};
|
|
134
178
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.d.ts","sourceRoot":"","sources":["../../../src/transactions/types/catalog.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"catalog.d.ts","sourceRoot":"","sources":["../../../src/transactions/types/catalog.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiLyD,CAAA;AAEvF,MAAM,MAAM,eAAe,GAAG,MAAM,OAAO,iBAAiB,CAAA;AAC5D,MAAM,MAAM,qBAAqB,GAAG,CAAC,OAAO,iBAAiB,CAAC,CAAC,eAAe,CAAC,CAAA"}
|
|
@@ -2,49 +2,181 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.TRANSACTION_TYPES = void 0;
|
|
4
4
|
exports.TRANSACTION_TYPES = {
|
|
5
|
-
spei_debit: {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
5
|
+
spei_debit: {
|
|
6
|
+
creditDebitType: "debit",
|
|
7
|
+
code: "spei_debit",
|
|
8
|
+
},
|
|
9
|
+
spei_credit: {
|
|
10
|
+
creditDebitType: "credit",
|
|
11
|
+
code: "spei_credit",
|
|
12
|
+
},
|
|
13
|
+
spei_return: {
|
|
14
|
+
creditDebitType: "credit",
|
|
15
|
+
code: "spei_return",
|
|
16
|
+
},
|
|
17
|
+
spei_rejected: {
|
|
18
|
+
creditDebitType: "credit",
|
|
19
|
+
code: "spei_rejected",
|
|
20
|
+
},
|
|
21
|
+
internal_spei_debit: {
|
|
22
|
+
creditDebitType: "debit",
|
|
23
|
+
code: "internal_spei_debit",
|
|
24
|
+
},
|
|
25
|
+
internal_spei_credit: {
|
|
26
|
+
creditDebitType: "credit",
|
|
27
|
+
code: "internal_spei_credit",
|
|
28
|
+
},
|
|
29
|
+
adjustment_credit: {
|
|
30
|
+
creditDebitType: "credit",
|
|
31
|
+
code: "adjustment_credit",
|
|
32
|
+
},
|
|
33
|
+
adjustment_debit: {
|
|
34
|
+
creditDebitType: "debit",
|
|
35
|
+
code: "adjustment_debit",
|
|
36
|
+
},
|
|
37
|
+
mex_debit: {
|
|
38
|
+
creditDebitType: "debit",
|
|
39
|
+
code: "mex_debit",
|
|
40
|
+
},
|
|
41
|
+
mex_credit: {
|
|
42
|
+
creditDebitType: "credit",
|
|
43
|
+
code: "mex_credit",
|
|
44
|
+
},
|
|
45
|
+
col_debit: {
|
|
46
|
+
creditDebitType: "debit",
|
|
47
|
+
code: "col_debit",
|
|
48
|
+
},
|
|
49
|
+
col_credit: {
|
|
50
|
+
creditDebitType: "credit",
|
|
51
|
+
code: "col_credit",
|
|
52
|
+
},
|
|
53
|
+
misc_debit: {
|
|
54
|
+
creditDebitType: "debit",
|
|
55
|
+
code: "misc_debit",
|
|
56
|
+
},
|
|
57
|
+
misc_credit: {
|
|
58
|
+
creditDebitType: "credit",
|
|
59
|
+
code: "misc_credit",
|
|
60
|
+
},
|
|
61
|
+
internal_credit: {
|
|
62
|
+
creditDebitType: "credit",
|
|
63
|
+
code: "internal_credit",
|
|
64
|
+
},
|
|
65
|
+
internal_debit: {
|
|
66
|
+
creditDebitType: "debit",
|
|
67
|
+
code: "internal_debit",
|
|
68
|
+
},
|
|
69
|
+
r2p_credit: {
|
|
70
|
+
creditDebitType: "credit",
|
|
71
|
+
code: "r2p_credit",
|
|
72
|
+
},
|
|
73
|
+
cbmm_debit: {
|
|
74
|
+
creditDebitType: "debit",
|
|
75
|
+
code: "cbmm_debit",
|
|
76
|
+
},
|
|
77
|
+
cbmm_credit: {
|
|
78
|
+
creditDebitType: "credit",
|
|
79
|
+
code: "cbmm_credit",
|
|
80
|
+
},
|
|
81
|
+
dd_credit: {
|
|
82
|
+
creditDebitType: "credit",
|
|
83
|
+
code: "dd_credit",
|
|
84
|
+
},
|
|
85
|
+
col_cb_credit: {
|
|
86
|
+
creditDebitType: "credit",
|
|
87
|
+
code: "col_cb_credit",
|
|
88
|
+
},
|
|
89
|
+
col_cb_debit: {
|
|
90
|
+
creditDebitType: "debit",
|
|
91
|
+
code: "col_cb_debit",
|
|
92
|
+
},
|
|
93
|
+
breb_credit: {
|
|
94
|
+
creditDebitType: "credit",
|
|
95
|
+
code: "breb_credit",
|
|
96
|
+
},
|
|
97
|
+
breb_debit: {
|
|
98
|
+
creditDebitType: "debit",
|
|
99
|
+
code: "breb_debit",
|
|
100
|
+
},
|
|
101
|
+
r2p_breb_credit: {
|
|
102
|
+
creditDebitType: "credit",
|
|
103
|
+
code: "r2p_breb_credit",
|
|
104
|
+
},
|
|
105
|
+
breb_rejected: {
|
|
106
|
+
creditDebitType: "credit",
|
|
107
|
+
code: "breb_rejected",
|
|
108
|
+
},
|
|
109
|
+
col_top_up_credit: {
|
|
110
|
+
creditDebitType: "credit",
|
|
111
|
+
code: "col_top_up_credit",
|
|
112
|
+
},
|
|
113
|
+
global_debit: {
|
|
114
|
+
creditDebitType: "debit",
|
|
115
|
+
code: "global_debit",
|
|
116
|
+
},
|
|
117
|
+
global_credit: {
|
|
118
|
+
creditDebitType: "credit",
|
|
119
|
+
code: "global_credit",
|
|
120
|
+
},
|
|
121
|
+
r2p_spei_credit: {
|
|
122
|
+
creditDebitType: "credit",
|
|
123
|
+
code: "r2p_spei_credit",
|
|
124
|
+
},
|
|
125
|
+
transfer_credit: {
|
|
126
|
+
creditDebitType: "credit",
|
|
127
|
+
code: "transfer_credit",
|
|
128
|
+
},
|
|
129
|
+
fedwire_debit: {
|
|
130
|
+
creditDebitType: "debit",
|
|
131
|
+
code: "fedwire_debit",
|
|
132
|
+
},
|
|
133
|
+
fedwire_credit: {
|
|
134
|
+
creditDebitType: "credit",
|
|
135
|
+
code: "fedwire_credit",
|
|
136
|
+
},
|
|
137
|
+
reward_credit: {
|
|
138
|
+
creditDebitType: "credit",
|
|
139
|
+
code: "reward_credit",
|
|
140
|
+
},
|
|
141
|
+
global_pay_to_usa_debit: {
|
|
142
|
+
creditDebitType: "debit",
|
|
143
|
+
code: "global_pay_to_usa_debit",
|
|
144
|
+
},
|
|
145
|
+
global_pay_to_usa_credit: {
|
|
146
|
+
creditDebitType: "credit",
|
|
147
|
+
code: "global_pay_to_usa_credit",
|
|
148
|
+
},
|
|
149
|
+
usa_pay_to_global_debit: {
|
|
150
|
+
creditDebitType: "debit",
|
|
151
|
+
code: "usa_pay_to_global_debit",
|
|
152
|
+
},
|
|
153
|
+
usa_pay_to_global_credit: {
|
|
154
|
+
creditDebitType: "credit",
|
|
155
|
+
code: "usa_pay_to_global_credit",
|
|
156
|
+
},
|
|
157
|
+
onramp_credit: {
|
|
158
|
+
creditDebitType: "credit",
|
|
159
|
+
code: "onramp_credit",
|
|
160
|
+
},
|
|
161
|
+
offramp_debit: {
|
|
162
|
+
creditDebitType: "debit",
|
|
163
|
+
code: "offramp_debit",
|
|
164
|
+
},
|
|
165
|
+
stable_payout_debit: {
|
|
166
|
+
creditDebitType: "debit",
|
|
167
|
+
code: "stable_payout_debit",
|
|
168
|
+
},
|
|
169
|
+
stable_payout_credit: {
|
|
170
|
+
creditDebitType: "credit",
|
|
171
|
+
code: "stable_payout_credit",
|
|
172
|
+
},
|
|
173
|
+
global_pay_to_generic_debit: {
|
|
174
|
+
creditDebitType: "debit",
|
|
175
|
+
code: "global_pay_to_generic_debit",
|
|
176
|
+
},
|
|
177
|
+
global_pay_to_generic_credit: {
|
|
178
|
+
creditDebitType: "credit",
|
|
179
|
+
code: "global_pay_to_generic_credit",
|
|
180
|
+
},
|
|
49
181
|
};
|
|
50
182
|
//# sourceMappingURL=catalog.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.js","sourceRoot":"","sources":["../../../src/transactions/types/catalog.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"catalog.js","sourceRoot":"","sources":["../../../src/transactions/types/catalog.ts"],"names":[],"mappings":"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"}
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"breb_debit": "Debit by Bre-B",
|
|
27
27
|
"r2p_breb_credit": "R2P Credit by Bre-B",
|
|
28
28
|
"breb_rejected": "Bre-B Rejected",
|
|
29
|
-
"col_top_up_credit": "Cobre Balance
|
|
29
|
+
"col_top_up_credit": "Cobre Balance Top-up in Colombia",
|
|
30
30
|
"global_debit": "Global Debit",
|
|
31
31
|
"global_credit": "Global Credit",
|
|
32
32
|
"r2p_spei_credit": "R2P Credit SPEI",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"usa_pay_to_global_credit": "Global account credit",
|
|
41
41
|
"onramp_credit": "Onramp Credit",
|
|
42
42
|
"offramp_debit": "Offramp Debit",
|
|
43
|
-
"stable_payout_debit": "Stable Payout",
|
|
43
|
+
"stable_payout_debit": "Debit Stable Payout",
|
|
44
44
|
"stable_payout_credit": "Stable Payout Credit",
|
|
45
|
-
"global_pay_to_generic_debit": "
|
|
46
|
-
"global_pay_to_generic_credit": "
|
|
45
|
+
"global_pay_to_generic_debit": "Global Debit to International Counterparty",
|
|
46
|
+
"global_pay_to_generic_credit": "Global Credit to International Counterparty"
|
|
47
47
|
}
|
|
48
48
|
}
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"usa_pay_to_global_credit": "Crédito cuenta global",
|
|
41
41
|
"onramp_credit": "Crédito onramp",
|
|
42
42
|
"offramp_debit": "Débito offramp",
|
|
43
|
-
"stable_payout_debit": "Stable Payout",
|
|
43
|
+
"stable_payout_debit": "Débito Stable Payout",
|
|
44
44
|
"stable_payout_credit": "Crédito Stable Payout",
|
|
45
|
-
"global_pay_to_generic_debit": "Débito
|
|
46
|
-
"global_pay_to_generic_credit": "Retorno
|
|
45
|
+
"global_pay_to_generic_debit": "Débito Global a contraparte internacional",
|
|
46
|
+
"global_pay_to_generic_credit": "Retorno global de contraparte internacional"
|
|
47
47
|
}
|
|
48
48
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"transaction-type.utils.d.ts","sourceRoot":"","sources":["../../../../src/transactions/types/utils/transaction-type.utils.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAA;AAGxE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,eAAe,CAAA;AAE3C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAA;AAItE,MAAM,MAAM,qBAAqB,GAAG,qBAAqB,GAAG;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,CAAA;AAE7E;;;GAGG;AACH,eAAO,MAAM,mBAAmB,GAAI,MAAM,MAAM,KAAG,MAAM,CAAC,eAAe,EAAE,qBAAqB,CAS/F,CAAA;AAED,0GAA0G;AAC1G,MAAM,MAAM,oBAAoB,GAAG,YAAY,CAAC,qBAAqB,CAAC,GAAG;IAAE,IAAI,EAAE,MAAM,CAAA;CAAE,CAAA;AAEzF,yGAAyG;AACzG,eAAO,MAAM,qBAAqB,GAAI,OAAO,oBAAoB,KAAG,qBAAqB,
|
|
1
|
+
{"version":3,"file":"transaction-type.utils.d.ts","sourceRoot":"","sources":["../../../../src/transactions/types/utils/transaction-type.utils.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAA;AAGxE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,eAAe,CAAA;AAE3C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAA;AAItE,MAAM,MAAM,qBAAqB,GAAG,qBAAqB,GAAG;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,CAAA;AAE7E;;;GAGG;AACH,eAAO,MAAM,mBAAmB,GAAI,MAAM,MAAM,KAAG,MAAM,CAAC,eAAe,EAAE,qBAAqB,CAS/F,CAAA;AAED,0GAA0G;AAC1G,MAAM,MAAM,oBAAoB,GAAG,YAAY,CAAC,qBAAqB,CAAC,GAAG;IAAE,IAAI,EAAE,MAAM,CAAA;CAAE,CAAA;AAEzF,yGAAyG;AACzG,eAAO,MAAM,qBAAqB,GAAI,OAAO,oBAAoB,KAAG,qBAAqB,EAMxF,CAAA"}
|
|
@@ -25,7 +25,9 @@ exports.getTransactionTypes = getTransactionTypes;
|
|
|
25
25
|
/** The catalog as a list narrowed by the query, each record enriched with its label for `query.lang`. */
|
|
26
26
|
const queryTransactionTypes = (query) => {
|
|
27
27
|
const { lang, ...filters } = query;
|
|
28
|
-
return Object.values(
|
|
28
|
+
return Object.values(catalog_1.TRANSACTION_TYPES)
|
|
29
|
+
.filter(record => (0, catalog_query_utils_1.matchesQuery)(record, filters))
|
|
30
|
+
.map(record => ({ ...record, label: locales[lang].transactionTypes[record.code] }));
|
|
29
31
|
};
|
|
30
32
|
exports.queryTransactionTypes = queryTransactionTypes;
|
|
31
33
|
//# sourceMappingURL=transaction-type.utils.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"transaction-type.utils.js","sourceRoot":"","sources":["../../../../src/transactions/types/utils/transaction-type.utils.ts"],"names":[],"mappings":";;;;;;AAAA,wCAA8C;AAE9C,iEAAyC;AACzC,yEAAgD;AAEhD,4EAAiE;AAGjE,MAAM,OAAO,GAAuC,EAAE,EAAE,EAAE,iBAAQ,EAAE,QAAQ,EAAE,qBAAW,EAAE,CAAA;AAI3F;;;GAGG;AACI,MAAM,mBAAmB,GAAG,CAAC,IAAY,EAAkD,EAAE;IAClG,MAAM,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;IAC5B,MAAM,MAAM,GAAG,EAAoD,CAAA;IAEnE,KAAK,MAAM,MAAM,IAAI,MAAM,CAAC,MAAM,CAAC,2BAAiB,CAAC,EAAE,CAAC;QACtD,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,MAAM,EAAE,KAAK,EAAE,MAAM,CAAC,gBAAgB,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAA;IAClF,CAAC;IAED,OAAO,MAAM,CAAA;AACf,CAAC,CAAA;AATY,QAAA,mBAAmB,uBAS/B;AAKD,yGAAyG;AAClG,MAAM,qBAAqB,GAAG,CAAC,KAA2B,EAA2B,EAAE;IAC5F,MAAM,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,GAAG,KAAK,CAAA;IAElC,OAAO,MAAM,CAAC,MAAM,CAAC,IAAA,
|
|
1
|
+
{"version":3,"file":"transaction-type.utils.js","sourceRoot":"","sources":["../../../../src/transactions/types/utils/transaction-type.utils.ts"],"names":[],"mappings":";;;;;;AAAA,wCAA8C;AAE9C,iEAAyC;AACzC,yEAAgD;AAEhD,4EAAiE;AAGjE,MAAM,OAAO,GAAuC,EAAE,EAAE,EAAE,iBAAQ,EAAE,QAAQ,EAAE,qBAAW,EAAE,CAAA;AAI3F;;;GAGG;AACI,MAAM,mBAAmB,GAAG,CAAC,IAAY,EAAkD,EAAE;IAClG,MAAM,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;IAC5B,MAAM,MAAM,GAAG,EAAoD,CAAA;IAEnE,KAAK,MAAM,MAAM,IAAI,MAAM,CAAC,MAAM,CAAC,2BAAiB,CAAC,EAAE,CAAC;QACtD,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,MAAM,EAAE,KAAK,EAAE,MAAM,CAAC,gBAAgB,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAA;IAClF,CAAC;IAED,OAAO,MAAM,CAAA;AACf,CAAC,CAAA;AATY,QAAA,mBAAmB,uBAS/B;AAKD,yGAAyG;AAClG,MAAM,qBAAqB,GAAG,CAAC,KAA2B,EAA2B,EAAE;IAC5F,MAAM,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,GAAG,KAAK,CAAA;IAElC,OAAO,MAAM,CAAC,MAAM,CAAC,2BAAiB,CAAC;SACpC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,IAAA,kCAAY,EAAC,MAAM,EAAE,OAAO,CAAC,CAAC;SAC/C,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,MAAM,EAAE,KAAK,EAAE,OAAO,CAAC,IAAI,CAAC,CAAC,gBAAgB,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAA;AACvF,CAAC,CAAA;AANY,QAAA,qBAAqB,yBAMjC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cobre-npm/library-portal-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.30.0",
|
|
4
4
|
"description": "Shared configurations and resources for Portal MFEs",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -29,6 +29,10 @@
|
|
|
29
29
|
"types": "./dist/movements/index.d.ts",
|
|
30
30
|
"default": "./dist/movements/index.js"
|
|
31
31
|
},
|
|
32
|
+
"./subclients": {
|
|
33
|
+
"types": "./dist/subclients/index.d.ts",
|
|
34
|
+
"default": "./dist/subclients/index.js"
|
|
35
|
+
},
|
|
32
36
|
"./documentTypes": {
|
|
33
37
|
"types": "./dist/documentTypes/index.d.ts",
|
|
34
38
|
"default": "./dist/documentTypes/index.js"
|