@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.
Files changed (3) hide show
  1. package/model.js +2 -1
  2. package/model.ts +3 -1
  3. 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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.0.18",
4
+ "version": "5.0.20",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",