@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/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: string[], opts?: {
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.0",
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": "fe6e04cd92a531e0a9b2c4c3b1915c84c5a74ac3"
30
+ "gitHead": "2d3a130fceeb689d3013606dde57bab8db41c586"
31
31
  }