@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.
Files changed (3) hide show
  1. package/model.js +0 -1
  2. package/model.ts +1 -2
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1398,7 +1398,6 @@ input FindRecordInput {
1398
1398
  exports.FindRecordsInputQL = `
1399
1399
  input FindRecordsInput {
1400
1400
  _ids: [String]
1401
- dashboardIds: [String]
1402
1401
  archived: Boolean
1403
1402
  }`;
1404
1403
  exports.UpsertRecordsInputQL = `
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
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.2.16",
4
+ "version": "5.2.17",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",