@bigfootai/bigfoot-types 5.0.18 → 5.0.20
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 +2 -1
- package/model.ts +3 -1
- package/package.json +1 -1
package/model.js
CHANGED
@@ -395,6 +395,7 @@ type Credential {
|
|
395
395
|
accessToken: String!
|
396
396
|
refreshToken: String
|
397
397
|
instanceUrl: String
|
398
|
+
instanceId: String
|
398
399
|
dateExpiry: Float
|
399
400
|
}`;
|
400
401
|
exports.ConnectedProviderQL = `
|
@@ -589,7 +590,7 @@ type ProviderApplication {
|
|
589
590
|
dashboardTypeSubscriptions: [String]
|
590
591
|
dashboardTagSubscriptions: [DashboardTagSubscription]
|
591
592
|
authentication: Boolean!
|
592
|
-
installed: Boolean
|
593
|
+
installed: Boolean
|
593
594
|
}`;
|
594
595
|
exports.ProviderQL = `
|
595
596
|
type Provider {${exports.PrimitiveFields}
|
package/model.ts
CHANGED
@@ -542,6 +542,7 @@ type Credential {
|
|
542
542
|
accessToken: String!
|
543
543
|
refreshToken: String
|
544
544
|
instanceUrl: String
|
545
|
+
instanceId: String
|
545
546
|
dateExpiry: Float
|
546
547
|
}`;
|
547
548
|
export interface Credential {
|
@@ -550,6 +551,7 @@ export interface Credential {
|
|
550
551
|
accessToken: string;
|
551
552
|
refreshToken?: string;
|
552
553
|
instanceUrl?: string;
|
554
|
+
instanceId?: string;
|
553
555
|
dateExpiry?: number;
|
554
556
|
}
|
555
557
|
|
@@ -851,7 +853,7 @@ type ProviderApplication {
|
|
851
853
|
dashboardTypeSubscriptions: [String]
|
852
854
|
dashboardTagSubscriptions: [DashboardTagSubscription]
|
853
855
|
authentication: Boolean!
|
854
|
-
installed: Boolean
|
856
|
+
installed: Boolean
|
855
857
|
}`;
|
856
858
|
export interface ProviderApplication {
|
857
859
|
name: string;
|