@vuu-ui/vuu-data-types 0.13.114 → 0.13.115-alpha.2

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.
Files changed (2) hide show
  1. package/index.d.ts +4 -4
  2. package/package.json +3 -3
package/index.d.ts CHANGED
@@ -134,7 +134,7 @@ export declare type DataValueType =
134
134
 
135
135
  export declare type TimeDataValueTypeSimple = "time";
136
136
  export declare type DateTimeDataValueTypeSimple = "date/time";
137
- export declare type DecimalValueTypeSimple = "decimal";
137
+ export declare type DecimalValueTypeSimple = "decimal" | "scaleddecimal";
138
138
 
139
139
  export declare type DateTimeDataValueType =
140
140
  | DateTimeColumnTypeSimple
@@ -396,9 +396,9 @@ export declare type TableSchemaTable = VuuTable & {
396
396
  };
397
397
 
398
398
  export declare type TableSchema = {
399
- columns: SchemaColumn[];
400
- key: string;
401
- table: TableSchemaTable;
399
+ columns: readonly SchemaColumn[];
400
+ key: readonly string;
401
+ table: readonly TableSchemaTable;
402
402
  };
403
403
 
404
404
  /**
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@vuu-ui/vuu-data-types",
3
- "version": "0.13.114",
3
+ "version": "0.13.115-alpha.2",
4
4
  "author": "heswell",
5
5
  "license": "Apache-2.0",
6
6
  "devDependencies": {
7
- "@vuu-ui/vuu-filter-types": "0.13.114",
8
- "@vuu-ui/vuu-protocol-types": "0.13.114"
7
+ "@vuu-ui/vuu-filter-types": "0.13.115-alpha.2",
8
+ "@vuu-ui/vuu-protocol-types": "0.13.115-alpha.2"
9
9
  },
10
10
  "dependencies": {},
11
11
  "peerDependencies": {},