@bigfootai/bigfoot-types 5.0.20 → 5.0.22
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 -2
- package/model.ts +4 -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 {
|
@@ -1077,8 +1076,9 @@ type Dashboard {${exports.BusinessObjectFields}
|
|
1077
1076
|
blockData: [BlockData]
|
1078
1077
|
}`;
|
1079
1078
|
class Dashboard extends BusinessObject {
|
1080
|
-
constructor(tenantIdCreated, editors, sharingTags, provider, application, uri, externalId, dashboardMetadata) {
|
1079
|
+
constructor(tenantIdCreated, editors, sharingTags, provider, application, uri, externalId, dashboardMetadata, tagId) {
|
1081
1080
|
super(tenantIdCreated, editors, sharingTags, BlockType.Dashboard, provider, application, uri, externalId);
|
1081
|
+
this.tagId = tagId;
|
1082
1082
|
this.blockData = [];
|
1083
1083
|
// Go through the block descriptions and create the block data entries
|
1084
1084
|
for (const blockDescription of dashboardMetadata.blockDescriptions) {
|
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 = `
|
@@ -1841,6 +1839,7 @@ type Dashboard {${BusinessObjectFields}
|
|
1841
1839
|
}`;
|
1842
1840
|
export class Dashboard extends BusinessObject {
|
1843
1841
|
blockData: BlockData[];
|
1842
|
+
tagId: string;
|
1844
1843
|
|
1845
1844
|
constructor(
|
1846
1845
|
tenantIdCreated: string,
|
@@ -1850,7 +1849,8 @@ export class Dashboard extends BusinessObject {
|
|
1850
1849
|
application: string,
|
1851
1850
|
uri: string,
|
1852
1851
|
externalId: string,
|
1853
|
-
dashboardMetadata: DashboardMetadata
|
1852
|
+
dashboardMetadata: DashboardMetadata,
|
1853
|
+
tagId: string
|
1854
1854
|
) {
|
1855
1855
|
super(
|
1856
1856
|
tenantIdCreated,
|
@@ -1863,6 +1863,7 @@ export class Dashboard extends BusinessObject {
|
|
1863
1863
|
externalId
|
1864
1864
|
);
|
1865
1865
|
|
1866
|
+
this.tagId = tagId;
|
1866
1867
|
this.blockData = [];
|
1867
1868
|
// Go through the block descriptions and create the block data entries
|
1868
1869
|
for (const blockDescription of dashboardMetadata.blockDescriptions) {
|