@bigfootai/bigfoot-types 5.1.35 → 5.1.36
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.
@@ -9,6 +9,7 @@ exports.AccountOverview = {
|
|
9
9
|
label: 'Account Overview',
|
10
10
|
description: 'This template should be used to provide account overviews or account summaries.',
|
11
11
|
metadataType: 'account_overview',
|
12
|
+
notificationMetadataTypes: [],
|
12
13
|
blockDescriptions: [
|
13
14
|
{
|
14
15
|
name: 'summary',
|
@@ -9,6 +9,7 @@ exports.AccountOverview = {
|
|
9
9
|
label: 'Record Update',
|
10
10
|
description: 'This template is a notification dashboard to be used when notifying users about record updates.',
|
11
11
|
metadataType: 'record_update',
|
12
|
+
notificationMetadataTypes: ['opportunity', 'case', 'issue'],
|
12
13
|
blockDescriptions: [
|
13
14
|
{
|
14
15
|
title: 'What changed?',
|
package/model.js
CHANGED
@@ -1185,7 +1185,7 @@ exports.DocumentMetadata = DocumentMetadata;
|
|
1185
1185
|
exports.DashboardMetadataQL = `
|
1186
1186
|
type DashboardMetadata {${exports.MetadataFields}
|
1187
1187
|
blockDescriptions: [BlockDescription]!
|
1188
|
-
|
1188
|
+
notificationMetadataTypes: [String]!
|
1189
1189
|
}`;
|
1190
1190
|
class DashboardMetadata extends Metadata {
|
1191
1191
|
constructor(label, description, metadataType, classifiers, threshold, blockDescriptions) {
|
package/model.ts
CHANGED