@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.
- package/model.js +1 -0
- package/model.ts +2 -0
- package/package.json +1 -1
package/model.js
CHANGED
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
|
}
|