@bigfootai/bigfoot-types 5.0.20 → 5.0.21
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 +0 -2
- package/package.json +1 -1
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -332,14 +332,12 @@ type TenantSetting {
|
|
332
332
|
favorite: Boolean
|
333
333
|
hasAutoShareNotesOn: Boolean
|
334
334
|
hasAutoShareTasksOn: Boolean
|
335
|
-
businessObjects: [BusinessObjectLink]
|
336
335
|
}`;
|
337
336
|
export interface TenantSetting {
|
338
337
|
tenantId: string;
|
339
338
|
favorite: boolean;
|
340
339
|
hasAutoShareNotesOn: boolean;
|
341
340
|
hasAutoShareTasksOn: boolean;
|
342
|
-
businessObjects: BusinessObjectLink[];
|
343
341
|
}
|
344
342
|
|
345
343
|
export const SharingTenantQL = `
|