@vuu-ui/vuu-protocol-types 0.7.2 → 0.7.3-debug

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 +3 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -54,12 +54,14 @@ export declare type AggTypeAverage = 2;
54
54
  export declare type AggTypeCount = 3;
55
55
  export declare type AggTypeHigh = 4;
56
56
  export declare type AggTypeLow = 5;
57
+ export declare type AggTypeDistinct = 6;
57
58
  export declare type VuuAggType =
58
59
  | AggTypeSum
59
60
  | AggTypeAverage
60
61
  | AggTypeCount
61
62
  | AggTypeHigh
62
- | AggTypeLow;
63
+ | AggTypeLow
64
+ | AggTypeDistinct;
63
65
  export declare type VuuAggregation = {
64
66
  column: string;
65
67
  aggType: VuuAggType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vuu-ui/vuu-protocol-types",
3
- "version": "0.7.2",
3
+ "version": "0.7.3-debug",
4
4
  "author": "heswell",
5
5
  "license": "Apache-2.0",
6
6
  "dependencies": {},