@brimble/models 1.3.34 → 1.3.35

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/dist/index.d.ts CHANGED
@@ -8,6 +8,6 @@ export { default as Token } from "./token";
8
8
  export { default as Team } from "./team";
9
9
  export { default as Member } from "./member";
10
10
  export { IUser, IGit, IProject, IFollowing, IIntegration, IEnv, IDomain, IToken, IMember, ITeam, } from "./types";
11
- export { GIT_TYPE, INTEGRATION_TYPE, OAUTH_PERMISSIONS, ENVIRONMENT, ROLES, } from "./enum";
11
+ export { GIT_TYPE, INTEGRATION_TYPE, OAUTH_PERMISSIONS, ENVIRONMENT, ROLES, PROJECT_STATUS, } from "./enum";
12
12
  export declare const connectToMongo: (mongoUrl: string) => Promise<void>;
13
13
  export declare const closeMongo: () => void;
package/dist/index.js CHANGED
@@ -37,6 +37,7 @@ Object.defineProperty(exports, "INTEGRATION_TYPE", { enumerable: true, get: func
37
37
  Object.defineProperty(exports, "OAUTH_PERMISSIONS", { enumerable: true, get: function () { return enum_1.OAUTH_PERMISSIONS; } });
38
38
  Object.defineProperty(exports, "ENVIRONMENT", { enumerable: true, get: function () { return enum_1.ENVIRONMENT; } });
39
39
  Object.defineProperty(exports, "ROLES", { enumerable: true, get: function () { return enum_1.ROLES; } });
40
+ Object.defineProperty(exports, "PROJECT_STATUS", { enumerable: true, get: function () { return enum_1.PROJECT_STATUS; } });
40
41
  const mongoose_1 = __importDefault(require("mongoose"));
41
42
  const utils_1 = require("@brimble/utils");
42
43
  // Connection to Mongo
package/index.ts CHANGED
@@ -25,6 +25,7 @@ export {
25
25
  OAUTH_PERMISSIONS,
26
26
  ENVIRONMENT,
27
27
  ROLES,
28
+ PROJECT_STATUS,
28
29
  } from "./enum";
29
30
 
30
31
  import mongoose from "mongoose";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "1.3.34",
3
+ "version": "1.3.35",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",