@datapos/datapos-shared 0.3.481 → 0.3.483

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.
@@ -64,6 +64,7 @@ interface ConnectionDescriptionConfig {
64
64
  * Object column configuration.
65
65
  */
66
66
  interface ObjectColumnConfig {
67
+ inferenceDataTypeCounts: Record<string, number>;
67
68
  invalidValueCount?: number;
68
69
  invalidValues?: string[];
69
70
  isIgnored?: boolean;
@@ -94,7 +94,7 @@ type InferenceResult = BooleanInferenceResult | NumericInferenceResult | StringI
94
94
  */
95
95
  interface BooleanInferenceResult {
96
96
  dataTypeId: 'boolean';
97
- dataSubtypeId: 'plain';
97
+ dataSubtypeId: undefined;
98
98
  inputValue: boolean | string | undefined;
99
99
  inferredValue: boolean;
100
100
  }
@@ -140,7 +140,7 @@ interface TemporalInferenceResult {
140
140
  }
141
141
  interface UnknownInferenceResult {
142
142
  dataTypeId: 'unknown';
143
- dataSubtypeId: 'unknown';
143
+ dataSubtypeId: undefined;
144
144
  inputValue: string | null | undefined;
145
145
  inferredValue: null;
146
146
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-shared",
3
- "version": "0.3.481",
3
+ "version": "0.3.483",
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>",