@bigfootai/bigfoot-types 5.2.23 → 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 +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 {
|
@@ -2048,6 +2048,7 @@ ${exports.StringFilterQL}
|
|
2048
2048
|
${exports.StringFilterInputQL}
|
2049
2049
|
${exports.BusinessObjectFilterQL}
|
2050
2050
|
${exports.BusinessObjectFilterInputQL}
|
2051
|
+
${exports.SortOptionQL}
|
2051
2052
|
${exports.SortOptionInputQL}
|
2052
2053
|
${exports.GraphSearchQL}
|
2053
2054
|
${exports.GraphSearchInputQL}
|
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 = `
|
@@ -3512,6 +3511,7 @@ ${StringFilterQL}
|
|
3512
3511
|
${StringFilterInputQL}
|
3513
3512
|
${BusinessObjectFilterQL}
|
3514
3513
|
${BusinessObjectFilterInputQL}
|
3514
|
+
${SortOptionQL}
|
3515
3515
|
${SortOptionInputQL}
|
3516
3516
|
${GraphSearchQL}
|
3517
3517
|
${GraphSearchInputQL}
|