@bigfootai/bigfoot-types 4.9.30 → 4.9.31

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.
Files changed (3) hide show
  1. package/model.js +1 -0
  2. package/model.ts +2 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1308,6 +1308,7 @@ input FindRecordInput {
1308
1308
  }`;
1309
1309
  exports.FindRecordsInputQL = `
1310
1310
  input FindRecordsInput {
1311
+ _ids: [String]
1311
1312
  dashboardIds: [String]
1312
1313
  archived: Boolean
1313
1314
  }`;
package/model.ts CHANGED
@@ -2333,10 +2333,12 @@ export interface FindRecordInput {
2333
2333
 
2334
2334
  export const FindRecordsInputQL = `
2335
2335
  input FindRecordsInput {
2336
+ _ids: [String]
2336
2337
  dashboardIds: [String]
2337
2338
  archived: Boolean
2338
2339
  }`;
2339
2340
  export interface FindRecordsInput {
2341
+ _ids?: string[];
2340
2342
  dashboardIds?: string[];
2341
2343
  archived: boolean;
2342
2344
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.9.30",
4
+ "version": "4.9.31",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",