@bigfootai/bigfoot-types 5.1.32 → 5.1.34
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.
@@ -23,6 +23,7 @@ exports.Salesforce = {
|
|
23
23
|
linkSubscriptions: ['*.lightning.force.com'],
|
24
24
|
linkToExternalIdRegex: '([a-zA-Z0-9]{15,18})(?=[^a-zA-Z0-9]|$)',
|
25
25
|
recordTypeSubscriptions: ['noded.opportunity', 'noded.case'],
|
26
|
+
dashboardTypeSubscriptions: ['noded.record_update'],
|
26
27
|
description: "Add Case and Opportunity previews and monitor changes over time so you're always up-to-date.",
|
27
28
|
iconUrl: 'https://images.squarespace-cdn.com/content/v1/5e6cfa89c315535aba12ee9d/1620071046709-UG6FBU7AKYVDYWNFQAFT/Logo+-+Sales+Cloud+%281%29.png',
|
28
29
|
label: 'Salesforce CRM',
|
@@ -22,6 +22,7 @@ export const Salesforce: Provider = {
|
|
22
22
|
linkSubscriptions: ['*.lightning.force.com'],
|
23
23
|
linkToExternalIdRegex: '([a-zA-Z0-9]{15,18})(?=[^a-zA-Z0-9]|$)',
|
24
24
|
recordTypeSubscriptions: ['noded.opportunity', 'noded.case'],
|
25
|
+
dashboardTypeSubscriptions: ['noded.record_update'],
|
25
26
|
description:
|
26
27
|
"Add Case and Opportunity previews and monitor changes over time so you're always up-to-date.",
|
27
28
|
iconUrl:
|
package/model.ts
CHANGED
@@ -1666,6 +1666,32 @@ export interface Attachment {
|
|
1666
1666
|
title?: string | null;
|
1667
1667
|
}
|
1668
1668
|
|
1669
|
+
export interface NormalizedImportantField {
|
1670
|
+
name: string;
|
1671
|
+
value?: string;
|
1672
|
+
tagType?: TagType;
|
1673
|
+
}
|
1674
|
+
|
1675
|
+
export interface NormalizedBusinessObject {
|
1676
|
+
businessObject: BusinessObject;
|
1677
|
+
dateDue?: number;
|
1678
|
+
priority?: TaskPriority;
|
1679
|
+
status?: TaskStatus;
|
1680
|
+
important?: NormalizedImportantField[];
|
1681
|
+
tagIds?: string[];
|
1682
|
+
}
|
1683
|
+
|
1684
|
+
export interface AveragePriorityChange {
|
1685
|
+
before: TaskPriority;
|
1686
|
+
after: TaskPriority;
|
1687
|
+
}
|
1688
|
+
|
1689
|
+
export interface AnalysisResult {
|
1690
|
+
dateDueImpacted?: NormalizedBusinessObject[];
|
1691
|
+
movingPriority?: AveragePriorityChange;
|
1692
|
+
taskCompleted?: boolean;
|
1693
|
+
}
|
1694
|
+
|
1669
1695
|
export interface CalendarFilter {
|
1670
1696
|
dateStart: number;
|
1671
1697
|
dateEnd: number;
|