drapcode-constant 1.3.9 → 1.4.1
Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,15 @@
|
|
1
|
+
export declare const CREATED = "CREATED";
|
2
|
+
export declare const EXPORTED = "EXPORTED";
|
3
|
+
export declare const DOWNLOADED = "DOWNLOADED";
|
4
|
+
export declare const FAIL_PROJECT_SETTING = "FAILED_PROJECT_SETTING";
|
5
|
+
export declare const FAIL_CREATE_HTML = "FAILED_CREATE_HTML";
|
6
|
+
export declare const FAIL_ENGINE_CODE = "FAIL_ENGINE_CODE";
|
7
|
+
export declare const FAIL_ENGINE_ENV = "FAIL_ENGINE_ENV";
|
8
|
+
export declare const FAIL_ENGINE_DEPLOYMENT = "FAIL_ENGINE_DEPLOYMENT";
|
9
|
+
export declare const FAIL_SURFACE_CODE = "FAIL_SURFACE_CODE";
|
10
|
+
export declare const FAIL_SURFACE_ENV = "FAIL_SURFACE_ENV";
|
11
|
+
export declare const FAIL_SURFACE_DEPLOYMENT = "FAIL_SURFACE_DEPLOYMENT";
|
12
|
+
export declare const FAIL_TAKE_CONFIG_DUMP = "FAIL_TAKE_CONFIG_DUMP";
|
13
|
+
export declare const FAIL_TAKE_DETAIL_DUMP = "FAIL_TAKE_DETAIL_DUMP";
|
14
|
+
export declare const FAIL_ZIP = "FAIL_ZIP";
|
15
|
+
export declare const exportStatus: string[];
|
@@ -0,0 +1,33 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.exportStatus = exports.FAIL_ZIP = exports.FAIL_TAKE_DETAIL_DUMP = exports.FAIL_TAKE_CONFIG_DUMP = exports.FAIL_SURFACE_DEPLOYMENT = exports.FAIL_SURFACE_ENV = exports.FAIL_SURFACE_CODE = exports.FAIL_ENGINE_DEPLOYMENT = exports.FAIL_ENGINE_ENV = exports.FAIL_ENGINE_CODE = exports.FAIL_CREATE_HTML = exports.FAIL_PROJECT_SETTING = exports.DOWNLOADED = exports.EXPORTED = exports.CREATED = void 0;
|
4
|
+
exports.CREATED = "CREATED";
|
5
|
+
exports.EXPORTED = "EXPORTED";
|
6
|
+
exports.DOWNLOADED = "DOWNLOADED";
|
7
|
+
exports.FAIL_PROJECT_SETTING = "FAILED_PROJECT_SETTING";
|
8
|
+
exports.FAIL_CREATE_HTML = "FAILED_CREATE_HTML";
|
9
|
+
exports.FAIL_ENGINE_CODE = "FAIL_ENGINE_CODE";
|
10
|
+
exports.FAIL_ENGINE_ENV = "FAIL_ENGINE_ENV";
|
11
|
+
exports.FAIL_ENGINE_DEPLOYMENT = "FAIL_ENGINE_DEPLOYMENT";
|
12
|
+
exports.FAIL_SURFACE_CODE = "FAIL_SURFACE_CODE";
|
13
|
+
exports.FAIL_SURFACE_ENV = "FAIL_SURFACE_ENV";
|
14
|
+
exports.FAIL_SURFACE_DEPLOYMENT = "FAIL_SURFACE_DEPLOYMENT";
|
15
|
+
exports.FAIL_TAKE_CONFIG_DUMP = "FAIL_TAKE_CONFIG_DUMP";
|
16
|
+
exports.FAIL_TAKE_DETAIL_DUMP = "FAIL_TAKE_DETAIL_DUMP";
|
17
|
+
exports.FAIL_ZIP = "FAIL_ZIP";
|
18
|
+
exports.exportStatus = [
|
19
|
+
exports.CREATED,
|
20
|
+
exports.EXPORTED,
|
21
|
+
exports.DOWNLOADED,
|
22
|
+
exports.FAIL_PROJECT_SETTING,
|
23
|
+
exports.FAIL_CREATE_HTML,
|
24
|
+
exports.FAIL_ENGINE_CODE,
|
25
|
+
exports.FAIL_ENGINE_ENV,
|
26
|
+
exports.FAIL_ENGINE_DEPLOYMENT,
|
27
|
+
exports.FAIL_SURFACE_CODE,
|
28
|
+
exports.FAIL_SURFACE_ENV,
|
29
|
+
exports.FAIL_SURFACE_DEPLOYMENT,
|
30
|
+
exports.FAIL_TAKE_CONFIG_DUMP,
|
31
|
+
exports.FAIL_TAKE_DETAIL_DUMP,
|
32
|
+
exports.FAIL_ZIP,
|
33
|
+
];
|
@@ -12,6 +12,7 @@ export declare const BETWEEN = "BETWEEN";
|
|
12
12
|
export declare const NOT_EQUAL = "NOT_EQUAL";
|
13
13
|
export declare const CURRENT_USER = "CURRENT_USER";
|
14
14
|
export declare const CURRENT_TENANT = "CURRENT_TENANT";
|
15
|
+
export declare const CURRENT_SETTINGS = "CURRENT_SETTINGS";
|
15
16
|
export declare const CURRENT_TIME = "CURRENT_TIME";
|
16
17
|
export declare const CURRENT_DATE = "CURRENT_DATE";
|
17
18
|
export declare const CURRENT_DATE_TIME = "CURRENT_DATE_TIME";
|
package/build/constants/query.js
CHANGED
@@ -9,7 +9,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
9
9
|
return to.concat(ar || Array.prototype.slice.call(from));
|
10
10
|
};
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
12
|
-
exports.DateConstant = exports.DateTimeUnit = exports.YEAR = exports.MONTH = exports.WEEK = exports.DAY = exports.HOUR = exports.CURRENT_DATE_TIME = exports.CURRENT_DATE = exports.CURRENT_TIME = exports.CURRENT_TENANT = exports.CURRENT_USER = exports.NOT_EQUAL = exports.BETWEEN = exports.GREATER_THAN_EQUALS_TO = exports.LESS_THAN_EQUALS_TO = exports.GREATER_THAN = exports.LESS_THAN = exports.NOT_IN_LIST = exports.IN_LIST = exports.LIKE = exports.IS_NULL = exports.IS_NOT_NULL = exports.EQUALS = void 0;
|
12
|
+
exports.DateConstant = exports.DateTimeUnit = exports.YEAR = exports.MONTH = exports.WEEK = exports.DAY = exports.HOUR = exports.CURRENT_DATE_TIME = exports.CURRENT_DATE = exports.CURRENT_TIME = exports.CURRENT_SETTINGS = exports.CURRENT_TENANT = exports.CURRENT_USER = exports.NOT_EQUAL = exports.BETWEEN = exports.GREATER_THAN_EQUALS_TO = exports.LESS_THAN_EQUALS_TO = exports.GREATER_THAN = exports.LESS_THAN = exports.NOT_IN_LIST = exports.IN_LIST = exports.LIKE = exports.IS_NULL = exports.IS_NOT_NULL = exports.EQUALS = void 0;
|
13
13
|
exports.EQUALS = "EQUALS";
|
14
14
|
exports.IS_NOT_NULL = "IS_NOT_NULL";
|
15
15
|
exports.IS_NULL = "IS_NULL";
|
@@ -24,6 +24,7 @@ exports.BETWEEN = "BETWEEN";
|
|
24
24
|
exports.NOT_EQUAL = "NOT_EQUAL";
|
25
25
|
exports.CURRENT_USER = "CURRENT_USER";
|
26
26
|
exports.CURRENT_TENANT = "CURRENT_TENANT";
|
27
|
+
exports.CURRENT_SETTINGS = "CURRENT_SETTINGS";
|
27
28
|
exports.CURRENT_TIME = "CURRENT_TIME";
|
28
29
|
exports.CURRENT_DATE = "CURRENT_DATE";
|
29
30
|
exports.CURRENT_DATE_TIME = "CURRENT_DATE_TIME";
|
package/build/index.d.ts
CHANGED
package/build/index.js
CHANGED
@@ -23,3 +23,4 @@ __exportStar(require("./constants/FieldTypes"), exports);
|
|
23
23
|
__exportStar(require("./constants/collection"), exports);
|
24
24
|
__exportStar(require("./constants/messages"), exports);
|
25
25
|
__exportStar(require("./constants/loan"), exports);
|
26
|
+
__exportStar(require("./constants/exportCode"), exports);
|