@konplit-services/common 1.0.116 → 1.0.117
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.
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Usage } from "../../../helper";
|
|
1
2
|
import { StreamEvent, StreamName, Subjects } from "../../subjects";
|
|
2
3
|
export interface KeyUpdateTimerCompleteEvent {
|
|
3
4
|
subject: Subjects.KeysUpdatedComplete;
|
|
@@ -6,5 +7,6 @@ export interface KeyUpdateTimerCompleteEvent {
|
|
|
6
7
|
data: {
|
|
7
8
|
merchantId: string;
|
|
8
9
|
accountId: string;
|
|
10
|
+
usage?: Usage;
|
|
9
11
|
};
|
|
10
12
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Usage } from "../../../helper";
|
|
1
2
|
import { StreamEvent, StreamName, Subjects } from "../../subjects";
|
|
2
3
|
export declare type DurationTypes = "2hours" | "1day" | "now" | "2days" | "custom";
|
|
3
4
|
export interface KeyUpdateTimerEvent {
|
|
@@ -7,6 +8,7 @@ export interface KeyUpdateTimerEvent {
|
|
|
7
8
|
data: {
|
|
8
9
|
merchantId: string;
|
|
9
10
|
accountId: string;
|
|
11
|
+
usage?: Usage;
|
|
10
12
|
durationType: DurationTypes;
|
|
11
13
|
duration?: number;
|
|
12
14
|
};
|