@bigfootai/bigfoot-types 4.9.27 → 4.9.29
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 +3 -0
- package/metadata/providers/google.ts +3 -0
- package/metadata/providers/noded.js +1 -0
- package/metadata/providers/noded.ts +1 -0
- package/metadata/providers/salesforce.js +1 -0
- package/metadata/providers/salesforce.ts +1 -0
- package/model.js +2 -3
- package/model.ts +5 -6
- package/package.json +1 -1
@@ -26,6 +26,7 @@ exports.Google = {
|
|
26
26
|
label: 'Google Calendar',
|
27
27
|
recordTypeSubscriptions: [],
|
28
28
|
authentication: true,
|
29
|
+
externalStorage: true,
|
29
30
|
},
|
30
31
|
{
|
31
32
|
name: 'tasks',
|
@@ -44,6 +45,7 @@ exports.Google = {
|
|
44
45
|
label: 'Google Tasks',
|
45
46
|
recordTypeSubscriptions: [],
|
46
47
|
authentication: true,
|
48
|
+
externalStorage: true,
|
47
49
|
},
|
48
50
|
{
|
49
51
|
name: 'docs',
|
@@ -63,6 +65,7 @@ exports.Google = {
|
|
63
65
|
label: 'Google Docs',
|
64
66
|
recordTypeSubscriptions: [],
|
65
67
|
authentication: true,
|
68
|
+
externalStorage: true,
|
66
69
|
},
|
67
70
|
],
|
68
71
|
label: 'Google Connect',
|
@@ -27,6 +27,7 @@ export const Google: Provider = {
|
|
27
27
|
label: 'Google Calendar',
|
28
28
|
recordTypeSubscriptions: [],
|
29
29
|
authentication: true,
|
30
|
+
externalStorage: true,
|
30
31
|
},
|
31
32
|
{
|
32
33
|
name: 'tasks',
|
@@ -47,6 +48,7 @@ export const Google: Provider = {
|
|
47
48
|
label: 'Google Tasks',
|
48
49
|
recordTypeSubscriptions: [],
|
49
50
|
authentication: true,
|
51
|
+
externalStorage: true,
|
50
52
|
},
|
51
53
|
{
|
52
54
|
name: 'docs',
|
@@ -68,6 +70,7 @@ export const Google: Provider = {
|
|
68
70
|
label: 'Google Docs',
|
69
71
|
recordTypeSubscriptions: [],
|
70
72
|
authentication: true,
|
73
|
+
externalStorage: true,
|
71
74
|
},
|
72
75
|
],
|
73
76
|
label: 'Google Connect',
|
@@ -27,6 +27,7 @@ exports.Salesforce = {
|
|
27
27
|
iconUrl: 'https://images.squarespace-cdn.com/content/v1/5e6cfa89c315535aba12ee9d/1620071046709-UG6FBU7AKYVDYWNFQAFT/Logo+-+Sales+Cloud+%281%29.png',
|
28
28
|
label: 'Salesforce CRM',
|
29
29
|
authentication: true,
|
30
|
+
externalStorage: true,
|
30
31
|
},
|
31
32
|
],
|
32
33
|
label: 'Salesforce Connect',
|
@@ -28,6 +28,7 @@ export const Salesforce: Provider = {
|
|
28
28
|
'https://images.squarespace-cdn.com/content/v1/5e6cfa89c315535aba12ee9d/1620071046709-UG6FBU7AKYVDYWNFQAFT/Logo+-+Sales+Cloud+%281%29.png',
|
29
29
|
label: 'Salesforce CRM',
|
30
30
|
authentication: true,
|
31
|
+
externalStorage: true,
|
31
32
|
},
|
32
33
|
],
|
33
34
|
label: 'Salesforce Connect',
|
package/model.js
CHANGED
@@ -313,12 +313,11 @@ input BusinessObjectLinkInput {
|
|
313
313
|
}`;
|
314
314
|
exports.BusinessObjectLinkQL = `
|
315
315
|
type BusinessObjectLink {
|
316
|
-
id: String
|
317
316
|
url: String
|
318
|
-
|
317
|
+
id: String
|
318
|
+
blockType: String
|
319
319
|
provider: String
|
320
320
|
metadataType: String
|
321
|
-
blockType: String
|
322
321
|
_compound: String
|
323
322
|
}`;
|
324
323
|
exports.ReactionSkinToneQL = `
|
package/model.ts
CHANGED
@@ -364,21 +364,19 @@ input BusinessObjectLinkInput {
|
|
364
364
|
}`;
|
365
365
|
export const BusinessObjectLinkQL = `
|
366
366
|
type BusinessObjectLink {
|
367
|
-
id: String
|
368
367
|
url: String
|
369
|
-
|
368
|
+
id: String
|
369
|
+
blockType: String
|
370
370
|
provider: String
|
371
371
|
metadataType: String
|
372
|
-
blockType: String
|
373
372
|
_compound: String
|
374
373
|
}`;
|
375
374
|
export interface BusinessObjectLink {
|
376
375
|
url?: string;
|
377
|
-
externalId?: string;
|
378
|
-
provider?: string;
|
379
|
-
metadataType?: string;
|
380
376
|
id?: string;
|
381
377
|
blockType?: BlockType;
|
378
|
+
provider?: string;
|
379
|
+
metadataType?: string;
|
382
380
|
_compound?: string;
|
383
381
|
}
|
384
382
|
|
@@ -880,6 +878,7 @@ export interface ProviderApplication {
|
|
880
878
|
documentTypeSubscriptions?: string[];
|
881
879
|
dashboardTypeSubscriptions?: string[];
|
882
880
|
dashboardTagSubscriptions?: DashboardTagSubscription[];
|
881
|
+
externalStorage: boolean;
|
883
882
|
authentication: boolean;
|
884
883
|
installed?: boolean;
|
885
884
|
}
|