gemcap-be-common 1.3.149 → 1.3.151
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.
|
@@ -40,6 +40,10 @@ export declare const EventMap: {
|
|
|
40
40
|
readonly NOTIFY_ONE_PROSPECT: "auditors#NOTIFY_ONE_PROSPECT";
|
|
41
41
|
readonly NOTIFY_ALL_PROSPECTS: "auditors#NOTIFY_ALL_PROSPECTS";
|
|
42
42
|
};
|
|
43
|
+
readonly prospectFiles: {
|
|
44
|
+
readonly COPY_CONFIDENTIAL: "prospectFiles#COPY_CONFIDENTIAL";
|
|
45
|
+
readonly TOGGLE_CONFIDENTIAL: "prospectFiles#TOGGLE_CONFIDENTIAL";
|
|
46
|
+
};
|
|
43
47
|
};
|
|
44
48
|
export type EventMapType = typeof EventMap;
|
|
45
49
|
export type EventName = EventMapType[keyof EventMapType][keyof EventMapType[keyof EventMapType]];
|
|
@@ -42,5 +42,9 @@ exports.EventMap = {
|
|
|
42
42
|
auditors: {
|
|
43
43
|
NOTIFY_ONE_PROSPECT: 'auditors#NOTIFY_ONE_PROSPECT',
|
|
44
44
|
NOTIFY_ALL_PROSPECTS: 'auditors#NOTIFY_ALL_PROSPECTS',
|
|
45
|
-
}
|
|
45
|
+
},
|
|
46
|
+
prospectFiles: {
|
|
47
|
+
COPY_CONFIDENTIAL: 'prospectFiles#COPY_CONFIDENTIAL',
|
|
48
|
+
TOGGLE_CONFIDENTIAL: 'prospectFiles#TOGGLE_CONFIDENTIAL',
|
|
49
|
+
},
|
|
46
50
|
};
|
|
@@ -39,7 +39,11 @@ export const EventMap = {
|
|
|
39
39
|
auditors: {
|
|
40
40
|
NOTIFY_ONE_PROSPECT: 'auditors#NOTIFY_ONE_PROSPECT',
|
|
41
41
|
NOTIFY_ALL_PROSPECTS: 'auditors#NOTIFY_ALL_PROSPECTS',
|
|
42
|
-
}
|
|
42
|
+
},
|
|
43
|
+
prospectFiles: {
|
|
44
|
+
COPY_CONFIDENTIAL: 'prospectFiles#COPY_CONFIDENTIAL',
|
|
45
|
+
TOGGLE_CONFIDENTIAL: 'prospectFiles#TOGGLE_CONFIDENTIAL',
|
|
46
|
+
},
|
|
43
47
|
} as const;
|
|
44
48
|
|
|
45
49
|
export type EventMapType = typeof EventMap;
|