@bigfootai/bigfoot-types 4.9.24 → 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.
- package/metadata/providers/google.js +1 -0
- package/metadata/providers/google.ts +1 -0
- package/metadata/providers/noded.js +1 -1
- package/metadata/providers/noded.ts +2 -1
- package/metadata/providers/salesforce.js +1 -0
- package/metadata/providers/salesforce.ts +1 -0
- package/model.ts +1 -0
- package/package.json +1 -1
@@ -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:
|
@@ -33,7 +33,7 @@ exports.Noded = {
|
|
33
33
|
organization_1.Organization.metadataType,
|
34
34
|
],
|
35
35
|
description: 'Noded customized to make it more productive for customer success use-cases.',
|
36
|
-
iconUrl: '',
|
36
|
+
iconUrl: 'https://cdn.prod.website-files.com/66ad021a8eb02a1342972537/66ad1a7d8c5987f668d3b5aa_noded-logo.svg',
|
37
37
|
label: 'Noded for Customer Success',
|
38
38
|
linkSubscriptions: [],
|
39
39
|
authentication: false,
|
@@ -32,7 +32,8 @@ export const Noded: Provider = {
|
|
32
32
|
],
|
33
33
|
description:
|
34
34
|
'Noded customized to make it more productive for customer success use-cases.',
|
35
|
-
iconUrl:
|
35
|
+
iconUrl:
|
36
|
+
'https://cdn.prod.website-files.com/66ad021a8eb02a1342972537/66ad1a7d8c5987f668d3b5aa_noded-logo.svg',
|
36
37
|
label: 'Noded for Customer Success',
|
37
38
|
linkSubscriptions: [],
|
38
39
|
authentication: false,
|
@@ -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[];
|