@bigfootai/bigfoot-types 5.1.36 → 5.1.38
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.
@@ -1,8 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
3
|
+
exports.RecordUpdate = void 0;
|
4
4
|
const model_1 = require("../../model");
|
5
|
-
exports.
|
5
|
+
exports.RecordUpdate = {
|
6
6
|
_id: '',
|
7
7
|
dateCreated: 0,
|
8
8
|
dateUpdated: 0,
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Noded = void 0;
|
4
4
|
const model_1 = require("../../model");
|
5
5
|
const account_overview_1 = require("../dashboards/account_overview");
|
6
|
+
const record_update_1 = require("../dashboards/record_update");
|
6
7
|
const healthcheck_1 = require("../documents/healthcheck");
|
7
8
|
const case_1 = require("../tables/case");
|
8
9
|
const opportunity_1 = require("../tables/opportunity");
|
@@ -44,12 +45,15 @@ exports.Noded = {
|
|
44
45
|
dashboardSubscriptions: [account_overview_1.AccountOverview.metadataType],
|
45
46
|
},
|
46
47
|
],
|
47
|
-
dashboardTypeSubscriptions: [
|
48
|
+
dashboardTypeSubscriptions: [
|
49
|
+
account_overview_1.AccountOverview.metadataType,
|
50
|
+
record_update_1.RecordUpdate.metadataType,
|
51
|
+
],
|
48
52
|
},
|
49
53
|
],
|
50
54
|
tableMetadata: [opportunity_1.Opportunity, case_1.Case, organization_1.Organization],
|
51
55
|
documentMetadata: [healthcheck_1.HealthCheck],
|
52
|
-
dashboardMetadata: [account_overview_1.AccountOverview],
|
56
|
+
dashboardMetadata: [account_overview_1.AccountOverview, record_update_1.RecordUpdate],
|
53
57
|
label: 'Noded',
|
54
58
|
iconUrl: 'https://cdn.prod.website-files.com/66ad021a8eb02a1342972537/66ad1a7d8c5987f668d3b5aa_noded-logo.svg',
|
55
59
|
};
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import { Provider, TagType } from '../../model';
|
2
2
|
import { AccountOverview } from '../dashboards/account_overview';
|
3
|
+
import { RecordUpdate } from '../dashboards/record_update';
|
3
4
|
import { HealthCheck } from '../documents/healthcheck';
|
4
5
|
import { Case } from '../tables/case';
|
5
6
|
import { Opportunity } from '../tables/opportunity';
|
@@ -44,12 +45,15 @@ export const Noded: Provider = {
|
|
44
45
|
dashboardSubscriptions: [AccountOverview.metadataType],
|
45
46
|
},
|
46
47
|
],
|
47
|
-
dashboardTypeSubscriptions: [
|
48
|
+
dashboardTypeSubscriptions: [
|
49
|
+
AccountOverview.metadataType,
|
50
|
+
RecordUpdate.metadataType,
|
51
|
+
],
|
48
52
|
},
|
49
53
|
],
|
50
54
|
tableMetadata: [Opportunity, Case, Organization],
|
51
55
|
documentMetadata: [HealthCheck],
|
52
|
-
dashboardMetadata: [AccountOverview],
|
56
|
+
dashboardMetadata: [AccountOverview, RecordUpdate],
|
53
57
|
label: 'Noded',
|
54
58
|
iconUrl:
|
55
59
|
'https://cdn.prod.website-files.com/66ad021a8eb02a1342972537/66ad1a7d8c5987f668d3b5aa_noded-logo.svg',
|