@bigfootai/bigfoot-types 2.6.2 → 2.6.3
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.ts +9 -0
- package/package.json +1 -1
package/model.ts
CHANGED
|
@@ -233,6 +233,14 @@ export class BusinessObject extends Primitive {
|
|
|
233
233
|
document: Document; // The business object formatted as a document for ML to ingest
|
|
234
234
|
}
|
|
235
235
|
|
|
236
|
+
export class ConnectedProviderRegistration {
|
|
237
|
+
email: string;
|
|
238
|
+
profile: any;
|
|
239
|
+
accessToken: string;
|
|
240
|
+
refreshToken?: string;
|
|
241
|
+
instanceUrl?: string;
|
|
242
|
+
}
|
|
243
|
+
|
|
236
244
|
export class ConnectedProvider {
|
|
237
245
|
providerId: string;
|
|
238
246
|
application: string;
|
|
@@ -241,6 +249,7 @@ export class ConnectedProvider {
|
|
|
241
249
|
instanceUrl?: string;
|
|
242
250
|
profile?: any;
|
|
243
251
|
accessToken?: string;
|
|
252
|
+
refreshToken?: string;
|
|
244
253
|
dateCreated: number;
|
|
245
254
|
dateUpdated: number;
|
|
246
255
|
}
|