@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.
Files changed (3) hide show
  1. package/model.js +0 -1
  2. package/model.ts +0 -2
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -294,7 +294,6 @@ type TenantSetting {
294
294
  favorite: Boolean
295
295
  hasAutoShareNotesOn: Boolean
296
296
  hasAutoShareTasksOn: Boolean
297
- businessObjects: [BusinessObjectLink]
298
297
  }`;
299
298
  exports.SharingTenantQL = `
300
299
  type SharingTenant {
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 = `
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.0.20",
4
+ "version": "5.0.21",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",