@bigfootai/bigfoot-types 5.2.24 → 5.2.25
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 -1
- package/model.ts +2 -3
- package/package.json +1 -1
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -2055,7 +2055,6 @@ type BlockData {
|
|
2055
2055
|
}`;
|
2056
2056
|
export class BlockData extends Primitive {
|
2057
2057
|
name: string;
|
2058
|
-
blockId?: string;
|
2059
2058
|
blockType?: BlockType;
|
2060
2059
|
title?: string;
|
2061
2060
|
document?: string;
|
@@ -2504,10 +2503,10 @@ export interface FindTenantInput {
|
|
2504
2503
|
|
2505
2504
|
export const FindTenantsInputQL = `
|
2506
2505
|
input FindTenantsInput {
|
2507
|
-
|
2506
|
+
domainId: String
|
2508
2507
|
}`;
|
2509
2508
|
export interface FindTenantsInput {
|
2510
|
-
|
2509
|
+
domainId?: string;
|
2511
2510
|
}
|
2512
2511
|
|
2513
2512
|
export const FindDomainInputQL = `
|