@datapos/datapos-shared 0.3.479 → 0.3.482
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.
|
@@ -94,6 +94,7 @@ type InferenceResult = BooleanInferenceResult | NumericInferenceResult | StringI
|
|
|
94
94
|
*/
|
|
95
95
|
interface BooleanInferenceResult {
|
|
96
96
|
dataTypeId: 'boolean';
|
|
97
|
+
dataSubtypeId: undefined;
|
|
97
98
|
inputValue: boolean | string | undefined;
|
|
98
99
|
inferredValue: boolean;
|
|
99
100
|
}
|
|
@@ -139,6 +140,7 @@ interface TemporalInferenceResult {
|
|
|
139
140
|
}
|
|
140
141
|
interface UnknownInferenceResult {
|
|
141
142
|
dataTypeId: 'unknown';
|
|
143
|
+
dataSubtypeId: undefined;
|
|
142
144
|
inputValue: string | null | undefined;
|
|
143
145
|
inferredValue: null;
|
|
144
146
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datapos/datapos-shared",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.482",
|
|
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>",
|