@databrainhq/plugin 0.12.18 → 0.12.20

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.
@@ -312,6 +312,12 @@ export type DateOptionType = {
312
312
  minDate?: Date;
313
313
  maxDate?: Date;
314
314
  };
315
+ export type CustomOption = {
316
+ startDate?: Date;
317
+ endDate?: Date;
318
+ value: string | number;
319
+ label: string;
320
+ };
315
321
  export type RlsCondition = {
316
322
  name: string;
317
323
  columnName: string;
@@ -329,6 +335,10 @@ export type RlsCondition = {
329
335
  };
330
336
  isAppFilter?: boolean;
331
337
  position?: 'top-left' | 'top-right';
338
+ isVariableFilter?: boolean;
339
+ variableOptions?: CustomOption[];
340
+ variableStrings?: string[];
341
+ selectedVariableValue?: CustomOption;
332
342
  };
333
343
  export type MetricData = {
334
344
  id: string;