@datapos/datapos-shared 0.3.456 → 0.3.457
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.
|
@@ -67,10 +67,6 @@ type RecordValueDelimiterId = '' | ':' | ',' | '!' | '0x1E' | ';' | ' ' | '\t' |
|
|
|
67
67
|
*
|
|
68
68
|
*/
|
|
69
69
|
declare const ORDERED_VALUE_DELIMITER_IDS: RecordValueDelimiterId[];
|
|
70
|
-
/**
|
|
71
|
-
* Parsed value.
|
|
72
|
-
*/
|
|
73
|
-
type ParsedValue = bigint | boolean | number | string | null;
|
|
74
70
|
/**
|
|
75
71
|
* Parse result.
|
|
76
72
|
*/
|
|
@@ -80,14 +76,15 @@ interface ParseResult {
|
|
|
80
76
|
parsedValue: ParsedValue;
|
|
81
77
|
valueDataTypeId: ValueDataTypeId;
|
|
82
78
|
}
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
type
|
|
87
|
-
type
|
|
79
|
+
/**
|
|
80
|
+
* Parsed value.
|
|
81
|
+
*/
|
|
82
|
+
type ParsedValue = bigint | boolean | number | string | null;
|
|
83
|
+
type ValueDataTypeId = 'boolean' | 'numeric' | 'string' | 'temporal' | 'unknown';
|
|
84
|
+
type ValueNumericSignId = 'negative' | 'zero' | 'positive' | 'unknown';
|
|
85
|
+
type ValueNumericTypeId = 'bigint' | 'integer' | 'decimal' | 'unknown';
|
|
86
|
+
type ValueNumericUnitsId = 'currency' | 'percentage' | 'plain' | 'unknown';
|
|
87
|
+
type ValueStringTypeId = 'email' | 'ipv4' | 'ipv6' | 'ulid' | 'uuid' | 'url' | 'plain' | 'unknown';
|
|
88
|
+
type ValueTemporalTypeId = 'date' | 'dateTime' | 'time' | 'unknown';
|
|
88
89
|
export { ORDERED_VALUE_DELIMITER_IDS };
|
|
89
|
-
export type {
|
|
90
|
-
export type { DataViewContentAuditConfig, DataViewPreviewConfig };
|
|
91
|
-
export type { ParseResult };
|
|
92
|
-
export type { ObjectDataFormatId, ObjectRecordDelimiterId, RecordValueDelimiterId };
|
|
93
|
-
export type { ValueDataTypeId, ValueNumericTypeId, ValueNumericUnitsId, ValueStringTypeId, ValueTemporalTypeId };
|
|
90
|
+
export type { DataViewConfig, DataViewContentAuditConfig, DataViewInterface, DataViewLocalisedConfig, DataViewPreviewConfig, ObjectDataFormatId, ObjectRecordDelimiterId, ParseResult, RecordValueDelimiterId, ValueDataTypeId, ValueNumericSignId, ValueNumericTypeId, ValueNumericUnitsId, ValueStringTypeId, ValueTemporalTypeId };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datapos/datapos-shared",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.457",
|
|
4
4
|
"description": "A library containing common constants, types and utilities used across all Data Positioning projects.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Jonathan Terrell <terrell.jm@gmail.com>",
|