@bigfootai/bigfoot-types 4.9.27 → 4.9.28
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.ts +1 -0
- 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.ts
CHANGED
@@ -880,6 +880,7 @@ export interface ProviderApplication {
|
|
880
880
|
documentTypeSubscriptions?: string[];
|
881
881
|
dashboardTypeSubscriptions?: string[];
|
882
882
|
dashboardTagSubscriptions?: DashboardTagSubscription[];
|
883
|
+
externalStorage: boolean;
|
883
884
|
authentication: boolean;
|
884
885
|
installed?: boolean;
|
885
886
|
}
|