@onereach/types-hitl-api 0.0.40-rc.0 → 0.0.40
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.
|
@@ -9,6 +9,8 @@ export interface IAgent {
|
|
|
9
9
|
readonly ruleGroupIds: string[];
|
|
10
10
|
readonly statusData: Omit<IAgentStatus, 'agentId'>;
|
|
11
11
|
readonly meta: object;
|
|
12
|
+
/** Data is available when merged with response from Users SDK */
|
|
13
|
+
readonly data?: object;
|
|
12
14
|
}
|
|
13
15
|
export interface IGetAgentsOptions extends ITargetAccountId {
|
|
14
16
|
readonly accountId?: string;
|
|
@@ -23,6 +25,12 @@ export declare type IGetAgentsQuery = Partial<IGetAgentsOptions>;
|
|
|
23
25
|
export interface IGetAgentsResponse {
|
|
24
26
|
readonly data: Partial<IAgent>[];
|
|
25
27
|
}
|
|
28
|
+
export interface IGetCompleteAgentByIdParams {
|
|
29
|
+
readonly agentId: string;
|
|
30
|
+
}
|
|
31
|
+
export interface IGetCompleteAgentByIdQuery extends ITargetAccountId {
|
|
32
|
+
readonly multiUserId?: string;
|
|
33
|
+
}
|
|
26
34
|
export interface ISearchAgentsQuery extends ITargetAccountId {
|
|
27
35
|
readonly ruleGroupIds?: string[];
|
|
28
36
|
readonly ruleTags?: string[];
|