@bigfootai/bigfoot-types 4.9.23 → 4.9.25
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/noded.js +1 -1
- package/metadata/providers/noded.ts +2 -1
- package/model.js +1 -0
- package/model.ts +2 -0
- package/package.json +1 -1
@@ -33,7 +33,7 @@ exports.Noded = {
|
|
33
33
|
organization_1.Organization.metadataType,
|
34
34
|
],
|
35
35
|
description: 'Noded customized to make it more productive for customer success use-cases.',
|
36
|
-
iconUrl: '',
|
36
|
+
iconUrl: 'https://cdn.prod.website-files.com/66ad021a8eb02a1342972537/66ad1a7d8c5987f668d3b5aa_noded-logo.svg',
|
37
37
|
label: 'Noded for Customer Success',
|
38
38
|
linkSubscriptions: [],
|
39
39
|
authentication: false,
|
@@ -32,7 +32,8 @@ export const Noded: Provider = {
|
|
32
32
|
],
|
33
33
|
description:
|
34
34
|
'Noded customized to make it more productive for customer success use-cases.',
|
35
|
-
iconUrl:
|
35
|
+
iconUrl:
|
36
|
+
'https://cdn.prod.website-files.com/66ad021a8eb02a1342972537/66ad1a7d8c5987f668d3b5aa_noded-logo.svg',
|
36
37
|
label: 'Noded for Customer Success',
|
37
38
|
linkSubscriptions: [],
|
38
39
|
authentication: false,
|
package/model.js
CHANGED
@@ -592,6 +592,7 @@ type ProviderApplication {
|
|
592
592
|
dashboardTypeSubscriptions: [String]
|
593
593
|
dashboardTagSubscriptions: [DashboardTagSubscription]
|
594
594
|
authentication: Boolean!
|
595
|
+
installed: Boolean!
|
595
596
|
}`;
|
596
597
|
exports.ProviderQL = `
|
597
598
|
type Provider {${exports.PrimitiveFields}
|
package/model.ts
CHANGED
@@ -862,6 +862,7 @@ type ProviderApplication {
|
|
862
862
|
dashboardTypeSubscriptions: [String]
|
863
863
|
dashboardTagSubscriptions: [DashboardTagSubscription]
|
864
864
|
authentication: Boolean!
|
865
|
+
installed: Boolean!
|
865
866
|
}`;
|
866
867
|
export interface ProviderApplication {
|
867
868
|
name: string;
|
@@ -875,6 +876,7 @@ export interface ProviderApplication {
|
|
875
876
|
dashboardTypeSubscriptions?: string[];
|
876
877
|
dashboardTagSubscriptions?: DashboardTagSubscription[];
|
877
878
|
authentication: boolean;
|
879
|
+
installed?: boolean;
|
878
880
|
}
|
879
881
|
|
880
882
|
export const ProviderQL = `
|