@brimble/models 2.5.7 → 2.5.8

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.
@@ -170,6 +170,10 @@ const projectSchema = new mongoose_1.Schema({
170
170
  type: String,
171
171
  default: null,
172
172
  },
173
+ vaultToken: {
174
+ type: String,
175
+ default: null,
176
+ },
173
177
  }, { timestamps: true });
174
178
  exports.default = (0, mongoose_1.model)("Project", projectSchema);
175
179
  exports.DeletedProject = (0, mongoose_1.model)("DeletedProject", projectSchema);
@@ -63,6 +63,7 @@ export interface IProject extends Document {
63
63
  previews: IPreview[];
64
64
  replicas: number;
65
65
  vaultPath: string | null;
66
+ vaultToken: string | null;
66
67
  specs: {
67
68
  memory: number;
68
69
  cpu: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "2.5.7",
3
+ "version": "2.5.8",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/project/index.ts CHANGED
@@ -170,6 +170,10 @@ const projectSchema = new Schema(
170
170
  type: String,
171
171
  default: null,
172
172
  },
173
+ vaultToken: {
174
+ type: String,
175
+ default: null,
176
+ },
173
177
  },
174
178
  { timestamps: true },
175
179
  );
@@ -64,6 +64,7 @@ export interface IProject extends Document {
64
64
  previews: IPreview[];
65
65
  replicas: number;
66
66
  vaultPath: string | null;
67
+ vaultToken: string | null;
67
68
  specs: {
68
69
  memory: number;
69
70
  cpu: number;