@bigfootai/bigfoot-types 5.1.34 → 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',
@@ -8,6 +8,7 @@ export const AccountOverview: DashboardMetadata = {
8
8
  description:
9
9
  'This template should be used to provide account overviews or account summaries.',
10
10
  metadataType: 'account_overview',
11
+ notificationMetadataTypes: [],
11
12
  blockDescriptions: [
12
13
  {
13
14
  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?',
@@ -8,6 +8,7 @@ export const AccountOverview: DashboardMetadata = {
8
8
  description:
9
9
  'This template is a notification dashboard to be used when notifying users about record updates.',
10
10
  metadataType: 'record_update',
11
+ notificationMetadataTypes: ['opportunity', 'case', 'issue'],
11
12
  blockDescriptions: [
12
13
  {
13
14
  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
- exportTypes: [String]
1188
+ notificationMetadataTypes: [String]!
1189
1189
  }`;
1190
1190
  class DashboardMetadata extends Metadata {
1191
1191
  constructor(label, description, metadataType, classifiers, threshold, blockDescriptions) {
package/model.ts CHANGED
@@ -721,6 +721,7 @@ export class Metadata extends Primitive {
721
721
 
722
722
  export interface ProcessBlockChangeHistoryRequest {
723
723
  historyId: string;
724
+ connectedProvider: ConnectedProvider;
724
725
  }
725
726
 
726
727
  export class History extends Primitive {
@@ -2080,10 +2081,11 @@ export class DocumentMetadata extends Metadata {
2080
2081
  export const DashboardMetadataQL = `
2081
2082
  type DashboardMetadata {${MetadataFields}
2082
2083
  blockDescriptions: [BlockDescription]!
2083
- exportTypes: [String]
2084
+ notificationMetadataTypes: [String]!
2084
2085
  }`;
2085
2086
  export class DashboardMetadata extends Metadata {
2086
2087
  blockDescriptions: BlockDescription[];
2088
+ notificationMetadataTypes: string[];
2087
2089
 
2088
2090
  constructor(
2089
2091
  label: string,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.1.34",
4
+ "version": "5.1.36",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",