@bigfootai/bigfoot-types 4.9.21 → 4.9.23
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.
@@ -24,7 +24,7 @@ exports.Google = {
|
|
24
24
|
description: 'Bring your calendar into Noded to get up-to-the-minute insights on your day.',
|
25
25
|
iconUrl: 'https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Google_Calendar_icon_%282020%29.svg/240px-Google_Calendar_icon_%282020%29.svg.png',
|
26
26
|
label: 'Google Calendar',
|
27
|
-
recordTypeSubscriptions: [
|
27
|
+
recordTypeSubscriptions: [],
|
28
28
|
authentication: true,
|
29
29
|
},
|
30
30
|
{
|
@@ -42,7 +42,7 @@ exports.Google = {
|
|
42
42
|
description: 'Manage your tasks and task lists directly from Noded.',
|
43
43
|
iconUrl: 'https://upload.wikimedia.org/wikipedia/commons/thumb/5/5b/Google_Tasks_2021.svg/253px-Google_Tasks_2021.svg.png',
|
44
44
|
label: 'Google Tasks',
|
45
|
-
recordTypeSubscriptions: [
|
45
|
+
recordTypeSubscriptions: [],
|
46
46
|
authentication: true,
|
47
47
|
},
|
48
48
|
{
|
@@ -60,7 +60,7 @@ exports.Google = {
|
|
60
60
|
description: "Add document previews and ingest your documents so they're easily searchable.",
|
61
61
|
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
62
|
label: 'Google Docs',
|
63
|
-
recordTypeSubscriptions: [
|
63
|
+
recordTypeSubscriptions: [],
|
64
64
|
authentication: true,
|
65
65
|
},
|
66
66
|
],
|
@@ -25,7 +25,7 @@ export const Google: Provider = {
|
|
25
25
|
iconUrl:
|
26
26
|
'https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Google_Calendar_icon_%282020%29.svg/240px-Google_Calendar_icon_%282020%29.svg.png',
|
27
27
|
label: 'Google Calendar',
|
28
|
-
recordTypeSubscriptions: [
|
28
|
+
recordTypeSubscriptions: [],
|
29
29
|
authentication: true,
|
30
30
|
},
|
31
31
|
{
|
@@ -45,7 +45,7 @@ export const Google: Provider = {
|
|
45
45
|
iconUrl:
|
46
46
|
'https://upload.wikimedia.org/wikipedia/commons/thumb/5/5b/Google_Tasks_2021.svg/253px-Google_Tasks_2021.svg.png',
|
47
47
|
label: 'Google Tasks',
|
48
|
-
recordTypeSubscriptions: [
|
48
|
+
recordTypeSubscriptions: [],
|
49
49
|
authentication: true,
|
50
50
|
},
|
51
51
|
{
|
@@ -65,7 +65,7 @@ export const Google: Provider = {
|
|
65
65
|
iconUrl:
|
66
66
|
'https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/Google_Docs_icon_%282020%29.svg/174px-Google_Docs_icon_%282020%29.svg.png',
|
67
67
|
label: 'Google Docs',
|
68
|
-
recordTypeSubscriptions: [
|
68
|
+
recordTypeSubscriptions: [],
|
69
69
|
authentication: true,
|
70
70
|
},
|
71
71
|
],
|
@@ -35,7 +35,7 @@ exports.Noded = {
|
|
35
35
|
description: 'Noded customized to make it more productive for customer success use-cases.',
|
36
36
|
iconUrl: '',
|
37
37
|
label: 'Noded for Customer Success',
|
38
|
-
linkSubscriptions: [
|
38
|
+
linkSubscriptions: [],
|
39
39
|
authentication: false,
|
40
40
|
dashboardTagSubscriptions: [
|
41
41
|
{
|
@@ -34,7 +34,7 @@ export const Noded: Provider = {
|
|
34
34
|
'Noded customized to make it more productive for customer success use-cases.',
|
35
35
|
iconUrl: '',
|
36
36
|
label: 'Noded for Customer Success',
|
37
|
-
linkSubscriptions: [
|
37
|
+
linkSubscriptions: [],
|
38
38
|
authentication: false,
|
39
39
|
dashboardTagSubscriptions: [
|
40
40
|
{
|
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -2311,12 +2311,10 @@ export interface FindRecordInput {
|
|
2311
2311
|
|
2312
2312
|
export const FindRecordsInputQL = `
|
2313
2313
|
input FindRecordsInput {
|
2314
|
-
_id: String
|
2315
2314
|
dashboardIds: [String]
|
2316
2315
|
archived: Boolean
|
2317
2316
|
}`;
|
2318
2317
|
export interface FindRecordsInput {
|
2319
|
-
_id: string;
|
2320
2318
|
dashboardIds?: string[];
|
2321
2319
|
archived: boolean;
|
2322
2320
|
}
|