@bigfootai/bigfoot-types 5.0.19 → 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 +1 -2
- package/model.ts +1 -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 {
|
@@ -590,7 +589,7 @@ type ProviderApplication {
|
|
590
589
|
dashboardTypeSubscriptions: [String]
|
591
590
|
dashboardTagSubscriptions: [DashboardTagSubscription]
|
592
591
|
authentication: Boolean!
|
593
|
-
installed: Boolean
|
592
|
+
installed: Boolean
|
594
593
|
}`;
|
595
594
|
exports.ProviderQL = `
|
596
595
|
type Provider {${exports.PrimitiveFields}
|
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 = `
|
@@ -853,7 +851,7 @@ type ProviderApplication {
|
|
853
851
|
dashboardTypeSubscriptions: [String]
|
854
852
|
dashboardTagSubscriptions: [DashboardTagSubscription]
|
855
853
|
authentication: Boolean!
|
856
|
-
installed: Boolean
|
854
|
+
installed: Boolean
|
857
855
|
}`;
|
858
856
|
export interface ProviderApplication {
|
859
857
|
name: string;
|