@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.
Files changed (63) hide show
  1. package/.turbo/turbo-build.log +2 -2
  2. package/dist/enum/index.d.ts +0 -0
  3. package/dist/enum/index.js +0 -0
  4. package/dist/env.d.ts +0 -0
  5. package/dist/env.js +0 -0
  6. package/dist/follower.d.ts +0 -0
  7. package/dist/follower.js +0 -0
  8. package/dist/following.d.ts +0 -0
  9. package/dist/following.js +0 -0
  10. package/dist/index.d.ts +0 -0
  11. package/dist/index.js +0 -0
  12. package/dist/integration.d.ts +0 -0
  13. package/dist/integration.js +0 -0
  14. package/dist/logs.d.ts +0 -0
  15. package/dist/logs.js +0 -0
  16. package/dist/member.d.ts +0 -0
  17. package/dist/member.js +0 -0
  18. package/dist/team.d.ts +0 -0
  19. package/dist/team.js +0 -0
  20. package/dist/token.d.ts +0 -0
  21. package/dist/token.js +0 -0
  22. package/dist/types/env.d.ts +0 -0
  23. package/dist/types/env.js +0 -0
  24. package/dist/types/following.d.ts +0 -0
  25. package/dist/types/following.js +0 -0
  26. package/dist/types/git.d.ts +0 -0
  27. package/dist/types/git.js +0 -0
  28. package/dist/types/index.d.ts +0 -0
  29. package/dist/types/index.js +0 -0
  30. package/dist/types/installed_integration.d.ts +0 -0
  31. package/dist/types/installed_integration.js +0 -0
  32. package/dist/types/integration.d.ts +0 -0
  33. package/dist/types/integration.js +0 -0
  34. package/dist/types/logs.d.ts +0 -0
  35. package/dist/types/logs.js +0 -0
  36. package/dist/types/member.d.ts +0 -0
  37. package/dist/types/member.js +0 -0
  38. package/dist/types/team.d.ts +0 -0
  39. package/dist/types/team.js +0 -0
  40. package/dist/types/token.d.ts +0 -0
  41. package/dist/types/token.js +0 -0
  42. package/dist/types/user.d.ts +0 -0
  43. package/dist/types/user.js +0 -0
  44. package/dist/user.d.ts +0 -0
  45. package/dist/user.js +0 -0
  46. package/package.json +3 -3
  47. package/types/domain/index.ts +0 -12
  48. package/LICENSE +0 -201
  49. package/dist/domain.d.ts +0 -4
  50. package/dist/domain.js +0 -52
  51. package/dist/installed_integration.d.ts +0 -4
  52. package/dist/installed_integration.js +0 -27
  53. package/dist/project.d.ts +0 -4
  54. package/dist/project.js +0 -87
  55. package/dist/subscription_plan.d.ts +0 -4
  56. package/dist/subscription_plan.js +0 -40
  57. package/dist/types/domain.d.ts +0 -15
  58. package/dist/types/domain.js +0 -2
  59. package/dist/types/project.d.ts +0 -46
  60. package/dist/types/project.js +0 -2
  61. package/dist/types/subscription_plan.d.ts +0 -15
  62. package/dist/types/subscription_plan.js +0 -2
  63. package/yarn-error.log +0 -10230
@@ -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
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });