@bigfootai/bigfoot-types 2.11.0 → 2.11.1
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 +1 -8
- package/package.json +1 -1
package/model.ts
CHANGED
|
@@ -289,14 +289,6 @@ export interface ProviderResponse {
|
|
|
289
289
|
providerUrl: string;
|
|
290
290
|
}
|
|
291
291
|
|
|
292
|
-
export interface BusinessObjectRequest {
|
|
293
|
-
businessObjectId: string;
|
|
294
|
-
linkUrl: string;
|
|
295
|
-
credential?: Credential;
|
|
296
|
-
application?: string;
|
|
297
|
-
provider?: Provider;
|
|
298
|
-
}
|
|
299
|
-
|
|
300
292
|
export interface StandardObjects {
|
|
301
293
|
task: boolean;
|
|
302
294
|
calendar: boolean;
|
|
@@ -536,6 +528,7 @@ export class BusinessObject extends Block {
|
|
|
536
528
|
document?: any | null; // The business object formatted as a document for ML to ingest
|
|
537
529
|
parentId?: string | null; // The business object that is the parent of this business object
|
|
538
530
|
linkUrls?: string[]; // Any links in the business object which can be used to understand relationships between objects
|
|
531
|
+
credential?: Credential; // Only sent for processing requests
|
|
539
532
|
|
|
540
533
|
constructor(
|
|
541
534
|
tenantIdCreated: string,
|