@quatrain/core 1.1.23 → 1.1.24

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.
@@ -7,6 +7,7 @@ export declare const DISABLED = "disabled";
7
7
  export declare const DONE = "done";
8
8
  export declare const DOWNLOADING = "downloading";
9
9
  export declare const DOWNLOADED = "downloaded";
10
+ export declare const DOWNLOAD_KO = "download_ko";
10
11
  export declare const ERROR = "error";
11
12
  export declare const KO = "ko";
12
13
  export declare const PENDING = "pending";
@@ -14,3 +15,6 @@ export declare const PREPARING = "preparing";
14
15
  export declare const PROCESSING = "processing";
15
16
  export declare const QUEUED = "queued";
16
17
  export declare const UNKNOWN = "unknown";
18
+ export declare const UPLOADING = "uploading";
19
+ export declare const UPLOADED = "uploaded";
20
+ export declare const UPLOAD_KO = "upload_ko";
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UNKNOWN = exports.QUEUED = exports.PROCESSING = exports.PREPARING = exports.PENDING = exports.KO = exports.ERROR = exports.DOWNLOADED = exports.DOWNLOADING = exports.DONE = exports.DISABLED = exports.DELETED = exports.DELETABLE = exports.CREATED = exports.COMPLETED = exports.ACTIVE = void 0;
3
+ exports.UPLOAD_KO = exports.UPLOADED = exports.UPLOADING = exports.UNKNOWN = exports.QUEUED = exports.PROCESSING = exports.PREPARING = exports.PENDING = exports.KO = exports.ERROR = exports.DOWNLOAD_KO = exports.DOWNLOADED = exports.DOWNLOADING = exports.DONE = exports.DISABLED = exports.DELETED = exports.DELETABLE = exports.CREATED = exports.COMPLETED = exports.ACTIVE = void 0;
4
4
  exports.ACTIVE = 'active';
5
5
  exports.COMPLETED = 'completed';
6
6
  exports.CREATED = 'created';
@@ -10,6 +10,7 @@ exports.DISABLED = 'disabled';
10
10
  exports.DONE = 'done';
11
11
  exports.DOWNLOADING = 'downloading';
12
12
  exports.DOWNLOADED = 'downloaded';
13
+ exports.DOWNLOAD_KO = 'download_ko';
13
14
  exports.ERROR = 'error';
14
15
  exports.KO = 'ko';
15
16
  exports.PENDING = 'pending';
@@ -17,3 +18,6 @@ exports.PREPARING = 'preparing';
17
18
  exports.PROCESSING = 'processing';
18
19
  exports.QUEUED = 'queued';
19
20
  exports.UNKNOWN = 'unknown';
21
+ exports.UPLOADING = 'uploading';
22
+ exports.UPLOADED = 'uploaded';
23
+ exports.UPLOAD_KO = 'upload_ko';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quatrain/core",
3
- "version": "1.1.23",
3
+ "version": "1.1.24",
4
4
  "description": "Core objects for business apps",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -13,10 +13,11 @@
13
13
  "devDependencies": {
14
14
  "@tsconfig/recommended": "^1.0.1",
15
15
  "@types/jest": "^30.0.0",
16
+ "@types/module-alias": "^2",
16
17
  "@types/node": "^22.10.1",
17
18
  "@types/node-persist": "^3.1.8",
18
19
  "@types/which": "^3.0.4",
19
- "jest": "^30.1.1",
20
+ "jest": "^30.2.0",
20
21
  "trace-unhandled": "^2.0.1",
21
22
  "ts-jest": "^29.4.1",
22
23
  "ts-node": "^10.4.0",
@@ -25,6 +26,7 @@
25
26
  "dependencies": {
26
27
  "@faker-js/faker": "^7.6.0",
27
28
  "@quatrain/log": "^1.0.2",
29
+ "module-alias": "^2.2.3",
28
30
  "node-persist": "^4.0.4",
29
31
  "which": "^5.0.0"
30
32
  },
@@ -38,5 +40,8 @@
38
40
  "hash:compare": "yarn hash > .hash_newest.txt && cmp -s .hash_latest.txt .hash_newest.txt",
39
41
  "publish": "yarn hash:compare || yarn publish:process",
40
42
  "publish:process": "yarn version patch && yarn build && yarn npm publish --access public && yarn hash:persist"
43
+ },
44
+ "_moduleAliases": {
45
+ "@core": "."
41
46
  }
42
47
  }