@budibase/types 3.5.0 → 3.5.2
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/api/web/app/rows/search.d.ts +2 -8
- package/dist/index.js +3 -3
- package/dist/index.js.map +3 -3
- package/dist/sdk/db.d.ts +1 -1
- package/dist/sdk/row.d.ts +1 -1
- package/package.json +2 -2
package/dist/sdk/db.d.ts
CHANGED
|
@@ -105,7 +105,7 @@ export interface Database {
|
|
|
105
105
|
*/
|
|
106
106
|
get<T extends Document>(id?: string): Promise<T>;
|
|
107
107
|
tryGet<T extends Document>(id?: string): Promise<T | undefined>;
|
|
108
|
-
getMultiple<T extends Document>(ids
|
|
108
|
+
getMultiple<T extends Document>(ids?: string[], opts?: {
|
|
109
109
|
allowMissing?: boolean;
|
|
110
110
|
excludeDocs?: boolean;
|
|
111
111
|
}): Promise<T[]>;
|
package/dist/sdk/row.d.ts
CHANGED
|
@@ -34,7 +34,7 @@ export interface SearchParams {
|
|
|
34
34
|
rows?: Row[];
|
|
35
35
|
countRows?: boolean;
|
|
36
36
|
}
|
|
37
|
-
export interface RowSearchParams extends WithRequired<SearchParams, "tableId" | "query"> {
|
|
37
|
+
export interface RowSearchParams extends WithRequired<Omit<SearchParams, "sortType">, "tableId" | "query"> {
|
|
38
38
|
}
|
|
39
39
|
export interface SearchResponse<T> {
|
|
40
40
|
rows: T[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/types",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.2",
|
|
4
4
|
"description": "Budibase types",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"scim-patch": "^0.8.1"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "2d3a130fceeb689d3013606dde57bab8db41c586"
|
|
31
31
|
}
|