gemcap-be-common 1.3.175 → 1.3.176
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.
- package/microservice/event-map.d.ts +6 -1
- package/microservice/event-map.js +3 -0
- package/microservice/event-map.ts +4 -2
- package/microservice/queue-map.d.ts +2 -1
- package/microservice/queue-map.js +1 -0
- package/microservice/queue-map.ts +1 -1
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -46,6 +46,11 @@ export declare const EventMap: {
|
|
|
46
46
|
readonly TOGGLE_CONFIDENTIAL: "prospectFiles#TOGGLE_CONFIDENTIAL";
|
|
47
47
|
readonly DELETE_CONFIDENTIAL: "prospectFiles#DELETE_CONFIDENTIAL";
|
|
48
48
|
};
|
|
49
|
+
readonly auth: {
|
|
50
|
+
readonly PASSWORD_RESET: "auth#PASSWORD_RESET";
|
|
51
|
+
};
|
|
49
52
|
};
|
|
50
53
|
export type EventMapType = typeof EventMap;
|
|
51
|
-
export type EventName =
|
|
54
|
+
export type EventName = {
|
|
55
|
+
[K in keyof EventMapType]: EventMapType[K][keyof EventMapType[K]];
|
|
56
|
+
}[keyof EventMapType];
|
|
@@ -48,8 +48,10 @@ export const EventMap = {
|
|
|
48
48
|
},
|
|
49
49
|
auth: {
|
|
50
50
|
PASSWORD_RESET: 'auth#PASSWORD_RESET',
|
|
51
|
-
}
|
|
51
|
+
},
|
|
52
52
|
} as const;
|
|
53
53
|
|
|
54
54
|
export type EventMapType = typeof EventMap;
|
|
55
|
-
export type EventName =
|
|
55
|
+
export type EventName = {
|
|
56
|
+
[K in keyof EventMapType]: EventMapType[K][keyof EventMapType[K]];
|
|
57
|
+
}[keyof EventMapType];
|
|
@@ -2,6 +2,7 @@ export declare const QueueMap: {
|
|
|
2
2
|
readonly main: "goat_ms_queue";
|
|
3
3
|
readonly main_delay: "goat_ms_queue_delay";
|
|
4
4
|
readonly legacy: "goat_ms_legacy_queue";
|
|
5
|
+
readonly auth: "goat_ms_auth";
|
|
5
6
|
};
|
|
6
7
|
export type QueueMapType = typeof QueueMap;
|
|
7
|
-
export type QueueName = QueueMapType[keyof QueueMapType]
|
|
8
|
+
export type QueueName = QueueMapType[keyof QueueMapType];
|