@bigfootai/bigfoot-types 2.10.4 → 2.10.6

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 +1 -0
  3. package/package.json +5 -2
package/model.js CHANGED
@@ -222,6 +222,7 @@ class BusinessObject extends Primitive {
222
222
  this.processingAttempts = 0;
223
223
  this.dateProcessed = 0;
224
224
  this.provider = provider;
225
+ this.application = application;
225
226
  this.uri = uri;
226
227
  }
227
228
  }
package/model.ts CHANGED
@@ -422,6 +422,7 @@ export class BusinessObject extends Primitive {
422
422
  this.dateProcessed = 0;
423
423
 
424
424
  this.provider = provider;
425
+ this.application = application;
425
426
  this.uri = uri;
426
427
  }
427
428
  }
package/package.json CHANGED
@@ -1,11 +1,14 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "2.10.4",
4
+ "version": "2.10.6",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",
8
- "repository": "Notify-AI/bigfoot-types",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Notify-AI/bigfoot-types.git"
11
+ },
9
12
  "scripts": {
10
13
  "build": "npx tsc",
11
14
  "dev": "node model.js"