@brimble/models 1.4.99 → 1.5.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.
- package/dist/types/domain.js +1 -0
- package/dist/types/env.d.ts +1 -1
- package/dist/types/env.js +1 -0
- package/dist/types/logs.js +1 -0
- package/dist/types/team.js +1 -0
- package/dist/types/user.d.ts +5 -1
- package/dist/types/user.js +1 -0
- package/package.json +1 -1
- package/types/domain.ts +2 -0
- package/types/env.ts +2 -1
- package/types/logs.ts +2 -0
- package/types/team.ts +1 -0
- package/types/user.ts +6 -1
package/dist/types/domain.js
CHANGED
package/dist/types/env.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Document } from "mongoose";
|
|
2
2
|
import { ENVIRONMENT } from "../enum";
|
|
3
|
-
import { IProject } from "./project";
|
|
4
3
|
import { IUser } from "./user";
|
|
4
|
+
import { IProject } from "./project";
|
|
5
5
|
export interface IEnv extends Document {
|
|
6
6
|
name: string;
|
|
7
7
|
value: string;
|
package/dist/types/env.js
CHANGED
package/dist/types/logs.js
CHANGED
package/dist/types/team.js
CHANGED
package/dist/types/user.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { Document } from "mongoose";
|
|
2
|
-
import {
|
|
2
|
+
import { IGit } from "./git";
|
|
3
|
+
import { IFollowing } from "./following";
|
|
4
|
+
import { ITeam } from "./team";
|
|
5
|
+
import { ITenancy } from "./tenancy";
|
|
6
|
+
import { IProject } from "./project";
|
|
3
7
|
export interface IUser extends Document {
|
|
4
8
|
first_name: string;
|
|
5
9
|
last_name: string;
|
package/dist/types/user.js
CHANGED
package/package.json
CHANGED
package/types/domain.ts
CHANGED
package/types/env.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Document } from "mongoose";
|
|
2
2
|
import { ENVIRONMENT } from "../enum";
|
|
3
|
-
import { IProject } from "./project";
|
|
4
3
|
import { IUser } from "./user";
|
|
4
|
+
import { IProject } from "./project";
|
|
5
5
|
|
|
6
6
|
export interface IEnv extends Document {
|
|
7
7
|
name: string;
|
|
@@ -10,3 +10,4 @@ export interface IEnv extends Document {
|
|
|
10
10
|
user: IUser;
|
|
11
11
|
environment: ENVIRONMENT;
|
|
12
12
|
}
|
|
13
|
+
// interface IProject {}
|
package/types/logs.ts
CHANGED
package/types/team.ts
CHANGED
package/types/user.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { Document } from "mongoose";
|
|
2
|
-
import {
|
|
2
|
+
import { IGit } from "./git";
|
|
3
|
+
import { IFollowing } from "./following";
|
|
4
|
+
import { ITeam } from "./team";
|
|
5
|
+
import { ITenancy } from "./tenancy";
|
|
6
|
+
import { IProject } from "./project";
|
|
3
7
|
|
|
4
8
|
export interface IUser extends Document {
|
|
5
9
|
first_name: string;
|
|
@@ -25,3 +29,4 @@ export interface IUser extends Document {
|
|
|
25
29
|
tenant: ITenancy;
|
|
26
30
|
is_waitlist: boolean;
|
|
27
31
|
}
|
|
32
|
+
// interface IProject {}
|