@onereach/types-hitl-api 0.0.67-rc.0 → 0.0.67
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,6 +18,12 @@ export interface ISessionEvent {
|
|
|
18
18
|
}
|
|
19
19
|
export type IGetSessionEventsQuery = ITargetAccountId & ISessionId;
|
|
20
20
|
export type IGetSessionEventsResponse = ICommonArrayResponse<ISessionEvent>;
|
|
21
|
+
export type IGetBulkSessionEventsQuery = ITargetAccountId & {
|
|
22
|
+
readonly sessionIds: string[];
|
|
23
|
+
};
|
|
24
|
+
export interface IGetBulkSessionEventsResponse {
|
|
25
|
+
readonly data: Record<string, ISessionEvent[]>;
|
|
26
|
+
}
|
|
21
27
|
export type IAddEventsBySessionIdQuery = ITargetAccountId & ISessionId;
|
|
22
28
|
export interface IAddEventsBySessionIdBody {
|
|
23
29
|
readonly events: Partial<ISessionEvent>[];
|