@bigfootai/bigfoot-types 4.9.25 → 4.9.26
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.
@@ -57,6 +57,7 @@ exports.Google = {
|
|
57
57
|
table: false,
|
58
58
|
},
|
59
59
|
linkSubscriptions: ['docs.google.com'],
|
60
|
+
linkToExternalIdRegex: '/d/([a-zA-Z0-9_-]{33,})',
|
60
61
|
description: "Add document previews and ingest your documents so they're easily searchable.",
|
61
62
|
iconUrl: 'https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/Google_Docs_icon_%282020%29.svg/174px-Google_Docs_icon_%282020%29.svg.png',
|
62
63
|
label: 'Google Docs',
|
@@ -60,6 +60,7 @@ export const Google: Provider = {
|
|
60
60
|
table: false,
|
61
61
|
},
|
62
62
|
linkSubscriptions: ['docs.google.com'],
|
63
|
+
linkToExternalIdRegex: '/d/([a-zA-Z0-9_-]{33,})',
|
63
64
|
description:
|
64
65
|
"Add document previews and ingest your documents so they're easily searchable.",
|
65
66
|
iconUrl:
|
@@ -21,6 +21,7 @@ exports.Salesforce = {
|
|
21
21
|
table: true,
|
22
22
|
},
|
23
23
|
linkSubscriptions: ['*.lightning.force.com'],
|
24
|
+
linkToExternalIdRegex: '([a-zA-Z0-9]{15,18})(?=[^a-zA-Z0-9]|$)',
|
24
25
|
recordTypeSubscriptions: ['noded.opportunity', 'noded.case'],
|
25
26
|
description: "Add Case and Opportunity previews and monitor changes over time so you're always up-to-date.",
|
26
27
|
iconUrl: 'https://images.squarespace-cdn.com/content/v1/5e6cfa89c315535aba12ee9d/1620071046709-UG6FBU7AKYVDYWNFQAFT/Logo+-+Sales+Cloud+%281%29.png',
|
@@ -20,6 +20,7 @@ export const Salesforce: Provider = {
|
|
20
20
|
table: true,
|
21
21
|
},
|
22
22
|
linkSubscriptions: ['*.lightning.force.com'],
|
23
|
+
linkToExternalIdRegex: '([a-zA-Z0-9]{15,18})(?=[^a-zA-Z0-9]|$)',
|
23
24
|
recordTypeSubscriptions: ['noded.opportunity', 'noded.case'],
|
24
25
|
description:
|
25
26
|
"Add Case and Opportunity previews and monitor changes over time so you're always up-to-date.",
|
package/model.ts
CHANGED
@@ -871,6 +871,7 @@ export interface ProviderApplication {
|
|
871
871
|
iconUrl?: string;
|
872
872
|
sobjects: StandardObjects;
|
873
873
|
linkSubscriptions?: string[];
|
874
|
+
linkToExternalIdRegex?: string;
|
874
875
|
recordTypeSubscriptions?: string[];
|
875
876
|
documentTypeSubscriptions?: string[];
|
876
877
|
dashboardTypeSubscriptions?: string[];
|