@bigfootai/bigfoot-types 5.0.18 → 5.0.19

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 +1 -0
  2. package/model.ts +2 -0
  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 = `
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
 
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.19",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",