@bigfootai/bigfoot-types 4.9.26 → 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.
- package/model.js +3 -0
- package/model.ts +4 -0
- package/package.json +1 -1
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]
|