@budibase/shared-core 3.4.13 → 3.4.14

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.
@@ -1,11 +1,8 @@
1
1
  import { AutomationStepDefinition } from "@budibase/types";
2
- export declare const FilterConditions: {
2
+ export declare const PrettyFilterConditions: {
3
3
  EQUAL: string;
4
4
  NOT_EQUAL: string;
5
5
  GREATER_THAN: string;
6
6
  LESS_THAN: string;
7
7
  };
8
- export declare const PrettyFilterConditions: {
9
- [x: string]: string;
10
- };
11
8
  export declare const definition: AutomationStepDefinition;
@@ -28,4 +28,4 @@ export declare const getUserColor: (user: User) => string;
28
28
  */
29
29
  export declare const getUserLabel: (user: User) => string;
30
30
  export declare function cancelableTimeout(timeout: number): [Promise<unknown>, () => void];
31
- export declare function withTimeout<T>(timeout: number, promise: Promise<T>): Promise<T>;
31
+ export declare function withTimeout<T>(timeout: number, promise: () => Promise<T>): Promise<T>;