@vizzly/services 0.15.0-dev-f34ae80b713a512136de190be112237976679278 → 0.15.0-dev-56764055fe8b11b214abf3594cb82318fe9a85dd

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.
@@ -394,7 +394,7 @@ export declare namespace Component {
394
394
  export type DataTableAttributes = BaseAttributes & Omit<BaseQueryAttributes, 'timeDimension'> & TableAttributes & {
395
395
  type: 'dataTable';
396
396
  summarizeKPIs?: boolean;
397
- visualFormatColumns?: string[];
397
+ visualFormatColumns?: QueryAttributes.Measure[];
398
398
  protectedFields?: ProtectedFields;
399
399
  /**
400
400
  * @deprecated
@@ -1,3 +1,3 @@
1
- import { DataSet } from './types';
2
1
  import { FieldFilterOptions } from './fieldFilterOptions';
2
+ import { DataSet } from './types';
3
3
  export declare function filterFields(originalFields: DataSet.Field[], options?: FieldFilterOptions): DataSet.Field[];
@@ -0,0 +1,2 @@
1
+ import { QueryAttributes } from '../../QueryAttributes/types';
2
+ export declare function filterOutOldVisualFormatContract(visualFormat: QueryAttributes.Measure[]): QueryAttributes.Measure[];
package/package.json CHANGED
@@ -30,7 +30,7 @@
30
30
  "fix-type-alias": "tsc-alias -p tsconfig.types.json",
31
31
  "prepare": "yarn build"
32
32
  },
33
- "version": "0.15.0-dev-f34ae80b713a512136de190be112237976679278",
33
+ "version": "0.15.0-dev-56764055fe8b11b214abf3594cb82318fe9a85dd",
34
34
  "dependencies": {
35
35
  "@vizzly/api-client": "0.0.57",
36
36
  "@vizzly/joi": "^17.11.0",
@@ -1,2 +0,0 @@
1
- import { Aggregate, IfLogic, NumberInput, Operator, Field as FieldMetric, Variable } from './CustomMetric/types';
2
- export declare function metricValuesHaveAggregates(values: (Operator | IfLogic | Aggregate | NumberInput | FieldMetric | Variable)[] | undefined): boolean;