@brimble/models 1.5.17 → 1.5.18
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/.turbo/turbo-build.log +2 -2
- package/dist/enum/index.d.ts +0 -0
- package/dist/enum/index.js +0 -0
- package/dist/env.d.ts +0 -0
- package/dist/env.js +0 -0
- package/dist/follower.d.ts +0 -0
- package/dist/follower.js +0 -0
- package/dist/following.d.ts +0 -0
- package/dist/following.js +0 -0
- package/dist/index.d.ts +0 -0
- package/dist/index.js +0 -0
- package/dist/integration.d.ts +0 -0
- package/dist/integration.js +0 -0
- package/dist/logs.d.ts +0 -0
- package/dist/logs.js +0 -0
- package/dist/member.d.ts +0 -0
- package/dist/member.js +0 -0
- package/dist/team.d.ts +0 -0
- package/dist/team.js +0 -0
- package/dist/token.d.ts +0 -0
- package/dist/token.js +0 -0
- package/dist/types/env.d.ts +0 -0
- package/dist/types/env.js +0 -0
- package/dist/types/following.d.ts +0 -0
- package/dist/types/following.js +0 -0
- package/dist/types/git.d.ts +0 -0
- package/dist/types/git.js +0 -0
- package/dist/types/index.d.ts +0 -0
- package/dist/types/index.js +0 -0
- package/dist/types/installed_integration.d.ts +0 -0
- package/dist/types/installed_integration.js +0 -0
- package/dist/types/integration.d.ts +0 -0
- package/dist/types/integration.js +0 -0
- package/dist/types/logs.d.ts +0 -0
- package/dist/types/logs.js +0 -0
- package/dist/types/member.d.ts +0 -0
- package/dist/types/member.js +0 -0
- package/dist/types/team.d.ts +0 -0
- package/dist/types/team.js +0 -0
- package/dist/types/token.d.ts +0 -0
- package/dist/types/token.js +0 -0
- package/dist/types/user.d.ts +0 -0
- package/dist/types/user.js +0 -0
- package/dist/user.d.ts +0 -0
- package/dist/user.js +0 -0
- package/package.json +3 -3
- package/types/domain/index.ts +0 -12
- package/LICENSE +0 -201
- package/dist/domain.d.ts +0 -4
- package/dist/domain.js +0 -52
- package/dist/installed_integration.d.ts +0 -4
- package/dist/installed_integration.js +0 -27
- package/dist/project.d.ts +0 -4
- package/dist/project.js +0 -87
- package/dist/subscription_plan.d.ts +0 -4
- package/dist/subscription_plan.js +0 -40
- package/dist/types/domain.d.ts +0 -15
- package/dist/types/domain.js +0 -2
- package/dist/types/project.d.ts +0 -46
- package/dist/types/project.js +0 -2
- package/dist/types/subscription_plan.d.ts +0 -15
- package/dist/types/subscription_plan.js +0 -2
- package/yarn-error.log +0 -10230
package/dist/types/project.d.ts
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import { Document } from "mongoose";
|
|
2
|
-
import { GIT_TYPE, PROJECT_STATUS } from "../enum";
|
|
3
|
-
import { IDomain } from "./domain";
|
|
4
|
-
import { IEnv } from "./env";
|
|
5
|
-
import { ILog } from "./logs";
|
|
6
|
-
import { ITeam } from "./team";
|
|
7
|
-
import { IUser } from "./user";
|
|
8
|
-
import { IServer } from "./server";
|
|
9
|
-
export interface IProject extends Document {
|
|
10
|
-
name: string;
|
|
11
|
-
domains: Array<IDomain>;
|
|
12
|
-
environments: Array<IEnv>;
|
|
13
|
-
uuid: number;
|
|
14
|
-
pid: number;
|
|
15
|
-
port: number;
|
|
16
|
-
ip: string;
|
|
17
|
-
dir: string;
|
|
18
|
-
buildCommand: string;
|
|
19
|
-
outputDirectory: string;
|
|
20
|
-
user_id: IUser;
|
|
21
|
-
repo: {
|
|
22
|
-
name: string;
|
|
23
|
-
full_name: string;
|
|
24
|
-
id: number;
|
|
25
|
-
branch: string;
|
|
26
|
-
installationId: number;
|
|
27
|
-
git: GIT_TYPE;
|
|
28
|
-
};
|
|
29
|
-
rootDir?: string;
|
|
30
|
-
team: ITeam;
|
|
31
|
-
server: IServer;
|
|
32
|
-
isPrivate: boolean;
|
|
33
|
-
status: PROJECT_STATUS;
|
|
34
|
-
framework: string;
|
|
35
|
-
description: string;
|
|
36
|
-
logs: Array<ILog>;
|
|
37
|
-
log: ILog;
|
|
38
|
-
maintenance: boolean;
|
|
39
|
-
passwordEnabled: boolean;
|
|
40
|
-
password: string | null;
|
|
41
|
-
screenshot: string;
|
|
42
|
-
createdAt: Date;
|
|
43
|
-
updatedAt: Date;
|
|
44
|
-
lastProcessed: number;
|
|
45
|
-
tracking_token: string;
|
|
46
|
-
}
|
package/dist/types/project.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { Document } from "mongoose";
|
|
2
|
-
import { SUBSCRIPTION_STATUS } from "../enum";
|
|
3
|
-
export interface ISubscriptionPlan extends Document {
|
|
4
|
-
team_id: string;
|
|
5
|
-
admin_id: string;
|
|
6
|
-
plan_code: string;
|
|
7
|
-
status: SUBSCRIPTION_STATUS;
|
|
8
|
-
amount: number;
|
|
9
|
-
debit_date: string;
|
|
10
|
-
start_date: string;
|
|
11
|
-
reminder_date: string;
|
|
12
|
-
specifications: {
|
|
13
|
-
[key: string]: any;
|
|
14
|
-
};
|
|
15
|
-
}
|