gemcap-be-common 1.3.153 → 1.3.155

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.
@@ -0,0 +1,6 @@
1
+ export declare const TaskStatus: {
2
+ readonly SUCCESS: "SUCCESS";
3
+ readonly FAILED: "FAILED";
4
+ readonly ERROR: "ERROR";
5
+ };
6
+ export type TTaskStatus = typeof TaskStatus[keyof typeof TaskStatus];
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TaskStatus = void 0;
4
+ exports.TaskStatus = {
5
+ SUCCESS: 'SUCCESS',
6
+ FAILED: 'FAILED',
7
+ ERROR: 'ERROR',
8
+ };
@@ -0,0 +1,7 @@
1
+ export const TaskStatus = {
2
+ SUCCESS: 'SUCCESS',
3
+ FAILED: 'FAILED',
4
+ ERROR: 'ERROR',
5
+ } as const;
6
+
7
+ export type TTaskStatus = typeof TaskStatus[keyof typeof TaskStatus];
@@ -43,6 +43,7 @@ export declare const EventMap: {
43
43
  readonly prospectFiles: {
44
44
  readonly COPY_CONFIDENTIAL: "prospectFiles#COPY_CONFIDENTIAL";
45
45
  readonly TOGGLE_CONFIDENTIAL: "prospectFiles#TOGGLE_CONFIDENTIAL";
46
+ readonly DELETE_CONFIDENTIAL: "prospectFiles#DELETE_CONFIDENTIAL";
46
47
  };
47
48
  };
48
49
  export type EventMapType = typeof EventMap;
@@ -46,5 +46,6 @@ exports.EventMap = {
46
46
  prospectFiles: {
47
47
  COPY_CONFIDENTIAL: 'prospectFiles#COPY_CONFIDENTIAL',
48
48
  TOGGLE_CONFIDENTIAL: 'prospectFiles#TOGGLE_CONFIDENTIAL',
49
+ DELETE_CONFIDENTIAL: 'prospectFiles#DELETE_CONFIDENTIAL',
49
50
  },
50
51
  };
@@ -43,6 +43,7 @@ export const EventMap = {
43
43
  prospectFiles: {
44
44
  COPY_CONFIDENTIAL: 'prospectFiles#COPY_CONFIDENTIAL',
45
45
  TOGGLE_CONFIDENTIAL: 'prospectFiles#TOGGLE_CONFIDENTIAL',
46
+ DELETE_CONFIDENTIAL: 'prospectFiles#DELETE_CONFIDENTIAL',
46
47
  },
47
48
  } as const;
48
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcap-be-common",
3
- "version": "1.3.153",
3
+ "version": "1.3.155",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {