@budibase/shared-core 3.5.3 → 3.7.0
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/filters.d.ts +1 -1
- package/dist/helpers/helpers.d.ts +1 -3
- package/dist/index.js +13 -13
- package/dist/index.js.map +3 -3
- package/package.json +2 -2
package/dist/filters.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Datasource,
|
|
1
|
+
import { BBReferenceFieldSubType, Datasource, EmptyFilterOption, FieldConstraints, FieldType, FormulaType, LegacyFilter, RowSearchParams, SearchFilter, SearchFilters, SearchQueryFields, SearchResponse, SortOrder, SortType, Table, UISearchFilter } from "@budibase/types";
|
|
2
2
|
/**
|
|
3
3
|
* Returns the valid operator options for a certain data type
|
|
4
4
|
*/
|
|
@@ -9,9 +9,7 @@ import { User } from "@budibase/types";
|
|
|
9
9
|
* @param key the key
|
|
10
10
|
* @return the value or null if a value was not found for this key
|
|
11
11
|
*/
|
|
12
|
-
export declare const deepGet: (obj:
|
|
13
|
-
[x: string]: any;
|
|
14
|
-
}, key: string) => any;
|
|
12
|
+
export declare const deepGet: (obj: Record<string, any> | undefined, key: string) => any;
|
|
15
13
|
/**
|
|
16
14
|
* Gets the initials to show in a user avatar.
|
|
17
15
|
* @param user the user
|