gemcap-be-common 1.5.36 → 1.5.37
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.
|
@@ -18,7 +18,7 @@ type QueueMessageForExchange<TExchange extends keyof ExchangeEventMap> = {
|
|
|
18
18
|
source: string;
|
|
19
19
|
payload: unknown;
|
|
20
20
|
};
|
|
21
|
-
export type
|
|
21
|
+
export type TQueueParams = ValueOf<{
|
|
22
22
|
[TExchange in keyof ExchangeEventMap]: QueueMessageForExchange<TExchange>;
|
|
23
23
|
}>;
|
|
24
24
|
export type TExchange = (typeof MESSAGE_CHANNELS)[keyof typeof MESSAGE_CHANNELS];
|
|
@@ -22,7 +22,7 @@ type QueueMessageForExchange<TExchange extends keyof ExchangeEventMap> = {
|
|
|
22
22
|
payload: unknown;
|
|
23
23
|
};
|
|
24
24
|
|
|
25
|
-
export type
|
|
25
|
+
export type TQueueParams = ValueOf<{
|
|
26
26
|
[TExchange in keyof ExchangeEventMap]: QueueMessageForExchange<TExchange>;
|
|
27
27
|
}>;
|
|
28
28
|
|