@bigfootai/bigfoot-types 4.9.25 → 4.9.27

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.js CHANGED
@@ -305,6 +305,7 @@ exports.BusinessObjectLinkInputQL = `
305
305
  input BusinessObjectLinkInput {
306
306
  id: String
307
307
  url: String
308
+ externalId: String
308
309
  provider: String
309
310
  metadataType: String
310
311
  blockType: String
@@ -314,6 +315,7 @@ exports.BusinessObjectLinkQL = `
314
315
  type BusinessObjectLink {
315
316
  id: String
316
317
  url: String
318
+ externalId: String
317
319
  provider: String
318
320
  metadataType: String
319
321
  blockType: String
@@ -587,6 +589,7 @@ type ProviderApplication {
587
589
  iconUrl: String
588
590
  sobjects: StandardObjects!
589
591
  linkSubscriptions: [String]
592
+ linkToExternalIdRegex: String
590
593
  recordTypeSubscriptions: [String]
591
594
  documentTypeSubscriptions: [String]
592
595
  dashboardTypeSubscriptions: [String]
package/model.ts CHANGED
@@ -356,6 +356,7 @@ export const BusinessObjectLinkInputQL = `
356
356
  input BusinessObjectLinkInput {
357
357
  id: String
358
358
  url: String
359
+ externalId: String
359
360
  provider: String
360
361
  metadataType: String
361
362
  blockType: String
@@ -365,6 +366,7 @@ export const BusinessObjectLinkQL = `
365
366
  type BusinessObjectLink {
366
367
  id: String
367
368
  url: String
369
+ externalId: String
368
370
  provider: String
369
371
  metadataType: String
370
372
  blockType: String
@@ -372,6 +374,7 @@ type BusinessObjectLink {
372
374
  }`;
373
375
  export interface BusinessObjectLink {
374
376
  url?: string;
377
+ externalId?: string;
375
378
  provider?: string;
376
379
  metadataType?: string;
377
380
  id?: string;
@@ -857,6 +860,7 @@ type ProviderApplication {
857
860
  iconUrl: String
858
861
  sobjects: StandardObjects!
859
862
  linkSubscriptions: [String]
863
+ linkToExternalIdRegex: String
860
864
  recordTypeSubscriptions: [String]
861
865
  documentTypeSubscriptions: [String]
862
866
  dashboardTypeSubscriptions: [String]
@@ -871,6 +875,7 @@ export interface ProviderApplication {
871
875
  iconUrl?: string;
872
876
  sobjects: StandardObjects;
873
877
  linkSubscriptions?: string[];
878
+ linkToExternalIdRegex?: string;
874
879
  recordTypeSubscriptions?: string[];
875
880
  documentTypeSubscriptions?: string[];
876
881
  dashboardTypeSubscriptions?: string[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.9.25",
4
+ "version": "4.9.27",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",