@bigfootai/bigfoot-types 4.9.10 → 4.9.11

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 +2 -2
  2. package/model.ts +2 -4
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1117,8 +1117,8 @@ type Dashboard {${exports.BusinessObjectFields}
1117
1117
  blockData: [BlockData]
1118
1118
  }`;
1119
1119
  class Dashboard extends BusinessObject {
1120
- constructor(tenantIdCreated, editors, sharingTags, version, provider, application, uri, externalId, dashboardMetadata) {
1121
- super(tenantIdCreated, editors, sharingTags, version, BlockType.Dashboard, provider, application, uri, externalId);
1120
+ constructor(tenantIdCreated, editors, sharingTags, version, uri, externalId, dashboardMetadata) {
1121
+ super(tenantIdCreated, editors, sharingTags, version, BlockType.Dashboard, dashboardMetadata.provider, dashboardMetadata.application, uri, externalId);
1122
1122
  this.blockData = [];
1123
1123
  // Go through the block descriptions and create the block data entries
1124
1124
  for (const blockDescription of dashboardMetadata.blockDescriptions) {
package/model.ts CHANGED
@@ -1950,8 +1950,6 @@ export class Dashboard extends BusinessObject {
1950
1950
  editors: Editor[],
1951
1951
  sharingTags: SharingTag[],
1952
1952
  version: number,
1953
- provider: string,
1954
- application: string,
1955
1953
  uri: string,
1956
1954
  externalId: string,
1957
1955
  dashboardMetadata: DashboardMetadata
@@ -1962,8 +1960,8 @@ export class Dashboard extends BusinessObject {
1962
1960
  sharingTags,
1963
1961
  version,
1964
1962
  BlockType.Dashboard,
1965
- provider,
1966
- application,
1963
+ dashboardMetadata.provider,
1964
+ dashboardMetadata.application,
1967
1965
  uri,
1968
1966
  externalId
1969
1967
  );
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.9.10",
4
+ "version": "4.9.11",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",