@devtable/dashboard 13.2.0 → 13.2.1

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.
package/dist/i18n/en.d.ts CHANGED
@@ -477,6 +477,7 @@ export declare const en: {
477
477
  };
478
478
  transform: {
479
479
  label: string;
480
+ full_label: string;
480
481
  data_source: string;
481
482
  guide: {
482
483
  pick_queries: string;
package/dist/i18n/zh.d.ts CHANGED
@@ -477,6 +477,7 @@ export declare const zh: {
477
477
  };
478
478
  transform: {
479
479
  label: string;
480
+ full_label: string;
480
481
  data_source: string;
481
482
  guide: {
482
483
  pick_queries: string;
@@ -84,6 +84,7 @@ export type QueryRenderModelInstance = Instance<typeof QueryRenderModel>;
84
84
  export type QueryRenderModelSnapshotIn = SnapshotIn<QueryRenderModelInstance>;
85
85
  export type QueryUsageType = {
86
86
  type: 'filter';
87
+ type_label: 'filter.label';
87
88
  queryID: string;
88
89
  id: string;
89
90
  label: string;
@@ -93,6 +94,7 @@ export type QueryUsageType = {
93
94
  }[];
94
95
  } | {
95
96
  type: 'panel';
97
+ type_label: 'panel.label';
96
98
  queryID: string;
97
99
  id: string;
98
100
  label: string;
@@ -100,4 +102,11 @@ export type QueryUsageType = {
100
102
  id: string;
101
103
  label: string;
102
104
  }[];
105
+ } | {
106
+ type: 'transform-query';
107
+ type_label: 'query.transform.full_label';
108
+ queryID: string;
109
+ id: string;
110
+ label: string;
111
+ views: [];
103
112
  };