@datapos/datapos-shared 0.3.459 → 0.3.461
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.
|
@@ -63,6 +63,10 @@ interface DataViewRelationshipsAuditConfig {
|
|
|
63
63
|
type ObjectRecord = (ObjectStringRecord | ObjectPropertyRecord)[];
|
|
64
64
|
type ObjectStringRecord = string[];
|
|
65
65
|
type ObjectPropertyRecord = Record<string, unknown>;
|
|
66
|
+
type ObjectParsedRecord = {
|
|
67
|
+
value: string | null;
|
|
68
|
+
valueWasQuoted: boolean;
|
|
69
|
+
}[];
|
|
66
70
|
type RecordValueDataTypeId = 'boolean' | 'numeric' | 'string' | 'temporal' | 'unknown';
|
|
67
71
|
type NumericValueSignId = 'negative' | 'zero' | 'positive' | 'unknown';
|
|
68
72
|
type NumericValueSubtypeId = 'bigint' | 'integer' | 'decimal' | 'unknown';
|
|
@@ -77,4 +81,4 @@ type RecordValueDelimiterId = '' | ':' | ',' | '!' | '0x1E' | ';' | ' ' | '\t' |
|
|
|
77
81
|
*/
|
|
78
82
|
declare const ORDERED_VALUE_DELIMITER_IDS: RecordValueDelimiterId[];
|
|
79
83
|
export { ORDERED_VALUE_DELIMITER_IDS };
|
|
80
|
-
export type { DataViewConfig, DataViewContentAuditConfig, DataViewInterface, DataViewLocalisedConfig, DataViewPreviewConfig, ObjectDataFormatId, ObjectPropertyRecord, ObjectRecord, ObjectRecordDelimiterId, ObjectStringRecord, RecordValueDelimiterId, RecordValueDataTypeId, NumericValueSignId, NumericValueSubtypeId, NumericValueUnitsId, StringValueSubtypeId, TemporalValueSubtypeId };
|
|
84
|
+
export type { DataViewConfig, DataViewContentAuditConfig, DataViewInterface, DataViewLocalisedConfig, DataViewPreviewConfig, ObjectDataFormatId, ObjectParsedRecord, ObjectPropertyRecord, ObjectRecord, ObjectRecordDelimiterId, ObjectStringRecord, RecordValueDelimiterId, RecordValueDataTypeId, NumericValueSignId, NumericValueSubtypeId, NumericValueUnitsId, StringValueSubtypeId, TemporalValueSubtypeId };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datapos/datapos-shared",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.461",
|
|
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>",
|