@bigfootai/bigfoot-types 5.2.24 → 5.2.26
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 +2 -1
- package/model.ts +3 -3
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1413,7 +1413,7 @@ input FindTenantInput {
|
|
1413
1413
|
}`;
|
1414
1414
|
exports.FindTenantsInputQL = `
|
1415
1415
|
input FindTenantsInput {
|
1416
|
-
|
1416
|
+
domainId: String
|
1417
1417
|
}`;
|
1418
1418
|
exports.FindDomainInputQL = `
|
1419
1419
|
input FindDomainInput {
|
@@ -1993,6 +1993,7 @@ ${exports.FindRecordInputQL}
|
|
1993
1993
|
${exports.FindRecordsInputQL}
|
1994
1994
|
${exports.UpsertRecordsInputQL}
|
1995
1995
|
${exports.FindTenantInputQL}
|
1996
|
+
${exports.FindTenantsInputQL}
|
1996
1997
|
${exports.FindDomainInputQL}
|
1997
1998
|
${exports.FindCalendarInputQL}
|
1998
1999
|
${exports.FindEventInputQL}
|
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 = `
|
@@ -3457,6 +3456,7 @@ ${FindRecordInputQL}
|
|
3457
3456
|
${FindRecordsInputQL}
|
3458
3457
|
${UpsertRecordsInputQL}
|
3459
3458
|
${FindTenantInputQL}
|
3459
|
+
${FindTenantsInputQL}
|
3460
3460
|
${FindDomainInputQL}
|
3461
3461
|
${FindCalendarInputQL}
|
3462
3462
|
${FindEventInputQL}
|