@vizzly/services 0.14.4-dev-199ca819f5733e1ddf4e69d0710df5d32e8bb76d → 0.14.4-dev-65d2eb4581441d98368f4752bdacb30db18a20a1

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.
@@ -4,7 +4,6 @@ import { QueryAttributes } from '../QueryAttributes/types';
4
4
  import { Report } from '../Report/types';
5
5
  import { Result } from '../Result/types';
6
6
  import { AdditionalFilter } from '../AdditionalFilter/types';
7
- import { UpdatedMetrics } from '../Parameters';
8
7
  import { TableFieldsV2 } from '../DataTable/types';
9
8
  import { Dictionary } from 'lodash';
10
9
  import { MovingAverage, TrendType } from '../Trends/types';
@@ -443,7 +442,6 @@ export declare type MaybeOldComponent<Attrs = Component.Attributes> = Omit<Compo
443
442
  export declare type Component<Attrs = Component.Attributes> = {
444
443
  attributes: Attrs;
445
444
  localFilters: Array<AdditionalFilter>;
446
- updatesFromParameters: UpdatedMetrics;
447
445
  results: (Result | null)[];
448
446
  colSpan: number;
449
447
  /** @deprecated Moved to dashboard level. */
package/package.json CHANGED
@@ -26,7 +26,7 @@
26
26
  "fix-type-alias": "tsc-alias -p tsconfig.json",
27
27
  "prepare": "yarn build"
28
28
  },
29
- "version": "0.14.4-dev-199ca819f5733e1ddf4e69d0710df5d32e8bb76d",
29
+ "version": "0.14.4-dev-65d2eb4581441d98368f4752bdacb30db18a20a1",
30
30
  "dependencies": {
31
31
  "@vizzly/api-client": "0.0.43",
32
32
  "@vizzly/joi": "^17.11.0",
@@ -1,6 +0,0 @@
1
- import { QueryAttributes } from '../QueryAttributes/types';
2
- export declare type UpdatedMetrics = {
3
- updatedMeasures?: QueryAttributes.Measure[];
4
- updatedDimension?: QueryAttributes.Dimension[];
5
- updatedTimeDimension?: QueryAttributes.TimeDimension;
6
- };