@bigfootai/bigfoot-types 5.2.16 → 5.2.17
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 +0 -1
- package/model.ts +1 -2
- package/package.json +1 -1
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -2055,6 +2055,7 @@ type BlockData {
|
|
2055
2055
|
}`;
|
2056
2056
|
export class BlockData extends Primitive {
|
2057
2057
|
name: string;
|
2058
|
+
blockId?: string;
|
2058
2059
|
blockType?: BlockType;
|
2059
2060
|
title?: string;
|
2060
2061
|
document?: string;
|
@@ -2472,12 +2473,10 @@ export interface FindRecordInput {
|
|
2472
2473
|
export const FindRecordsInputQL = `
|
2473
2474
|
input FindRecordsInput {
|
2474
2475
|
_ids: [String]
|
2475
|
-
dashboardIds: [String]
|
2476
2476
|
archived: Boolean
|
2477
2477
|
}`;
|
2478
2478
|
export interface FindRecordsInput {
|
2479
2479
|
_ids?: string[];
|
2480
|
-
dashboardIds?: string[];
|
2481
2480
|
archived: boolean;
|
2482
2481
|
}
|
2483
2482
|
|