@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.
- package/model.js +1 -0
- package/model.ts +2 -0
- package/package.json +1 -1
package/model.js
CHANGED
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
|
|