nucleus-core-ts 0.9.820 → 0.9.821
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.
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
/** A per-field transform applied to a source value before it lands in a column. */
|
|
10
10
|
export type MappingTransform = 'none' | 'trim' | 'upper' | 'lower' | 'toString' | 'toNumber' | 'toBoolean' | 'dateOnly'
|
|
11
11
|
/** Folds accents, lowercases, and removes what an address cannot contain. */
|
|
12
|
-
| 'emailSafe'
|
|
12
|
+
| 'emailSafe'
|
|
13
|
+
/** The last part of a path-like value: `A/B/C` → `C`. */
|
|
14
|
+
| 'pathLeaf';
|
|
13
15
|
/** One field of a mapping: external `source` path → internal `target` column. */
|
|
14
16
|
export type FieldMapping = {
|
|
15
17
|
/** Dot-path into the external record, e.g. `employeeNo` or `department.code`. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nucleus-core-ts",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.821",
|
|
4
4
|
"description": "Production-ready, enterprise-grade TypeScript framework for building multi-tenant APIs",
|
|
5
5
|
"author": "Hidayet Can Özcan <hidayetcan@gmail.com>",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|