@brimble/models 1.3.9 → 1.3.10

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.
@@ -1,2 +1,2 @@
1
- @brimble/models:build: cache hit, replaying output f0464166bdbc8efa
1
+ @brimble/models:build: cache hit, replaying output 29b510b8b7235235
2
2
  @brimble/models:build: $ tsc -p .
@@ -18,6 +18,7 @@ export interface IProject extends Document {
18
18
  full_name: string;
19
19
  id: number;
20
20
  branch: string;
21
+ deployment_id: number;
21
22
  };
22
23
  rootDir?: string;
23
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "1.3.9",
3
+ "version": "1.3.10",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/types/project.ts CHANGED
@@ -19,6 +19,7 @@ export interface IProject extends Document {
19
19
  full_name: string;
20
20
  id: number;
21
21
  branch: string;
22
+ deployment_id: number;
22
23
  };
23
24
  rootDir?: string;
24
25
  }