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