@brimble/models 2.4.79 → 2.4.81

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.
@@ -1,7 +1,8 @@
1
1
  export declare enum GIT_TYPE {
2
2
  GITHUB = "GITHUB",
3
3
  GITLAB = "GITLAB",
4
- BITBUCKET = "BITBUCKET"
4
+ BITBUCKET = "BITBUCKET",
5
+ DOCKER = "DOCKER"
5
6
  }
6
7
  export declare enum REQUEST_TYPE {
7
8
  GET = "GET",
@@ -98,7 +99,8 @@ export declare enum REGION_CONTINENT {
98
99
  export declare enum ServiceType {
99
100
  Database = "database",
100
101
  WebService = "web-service",
101
- Liscense = "liscense"
102
+ Liscense = "liscense",
103
+ Worker = "worker"
102
104
  }
103
105
  export declare enum DatabaseEngine {
104
106
  MySQL = "mysql",
@@ -6,6 +6,7 @@ var GIT_TYPE;
6
6
  GIT_TYPE["GITHUB"] = "GITHUB";
7
7
  GIT_TYPE["GITLAB"] = "GITLAB";
8
8
  GIT_TYPE["BITBUCKET"] = "BITBUCKET";
9
+ GIT_TYPE["DOCKER"] = "DOCKER";
9
10
  })(GIT_TYPE = exports.GIT_TYPE || (exports.GIT_TYPE = {}));
10
11
  var REQUEST_TYPE;
11
12
  (function (REQUEST_TYPE) {
@@ -118,6 +119,7 @@ var ServiceType;
118
119
  ServiceType["Database"] = "database";
119
120
  ServiceType["WebService"] = "web-service";
120
121
  ServiceType["Liscense"] = "liscense";
122
+ ServiceType["Worker"] = "worker";
121
123
  })(ServiceType = exports.ServiceType || (exports.ServiceType = {}));
122
124
  var DatabaseEngine;
123
125
  (function (DatabaseEngine) {
package/enum/index.ts CHANGED
@@ -2,6 +2,7 @@ export enum GIT_TYPE {
2
2
  GITHUB = "GITHUB",
3
3
  GITLAB = "GITLAB",
4
4
  BITBUCKET = "BITBUCKET",
5
+ DOCKER = "DOCKER"
5
6
  }
6
7
 
7
8
  export enum REQUEST_TYPE {
@@ -114,6 +115,7 @@ export enum ServiceType {
114
115
  Database = "database",
115
116
  WebService = "web-service",
116
117
  Liscense = "liscense",
118
+ Worker = "worker"
117
119
  }
118
120
 
119
121
  export enum DatabaseEngine {
package/env.ts CHANGED
@@ -30,4 +30,4 @@ const envSchema = new Schema(
30
30
  { timestamps: true },
31
31
  );
32
32
 
33
- export default model<IEnv>("Env", envSchema);
33
+ export default model<IEnv>("Env", envSchema);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "2.4.79",
3
+ "version": "2.4.81",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",