@onereach/types-hitl-api 0.0.42 → 0.0.43-rc.1
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.
|
@@ -22,3 +22,6 @@ export declare type ICreateDefaultRecordsQuery = ITargetAccountId;
|
|
|
22
22
|
export interface ICreateDefaultRecordsResponse {
|
|
23
23
|
readonly tables: string[];
|
|
24
24
|
}
|
|
25
|
+
export interface IGetMigrationsInfoResponse {
|
|
26
|
+
readonly migrationsByAppVersion: Record<string, string>;
|
|
27
|
+
}
|
|
@@ -48,6 +48,7 @@ export interface IGetSessionByIdOptions {
|
|
|
48
48
|
readonly sessionId: string;
|
|
49
49
|
readonly agentId: string;
|
|
50
50
|
readonly projection?: string[];
|
|
51
|
+
readonly ignoreRuleTags: boolean;
|
|
51
52
|
}
|
|
52
53
|
export interface IGetSessionsOptions {
|
|
53
54
|
readonly accountId: string;
|
|
@@ -59,6 +60,7 @@ export interface IGetSessionsOptions {
|
|
|
59
60
|
readonly order?: string;
|
|
60
61
|
readonly orderBy?: string;
|
|
61
62
|
readonly page?: IPageOptions;
|
|
63
|
+
readonly ignoreRuleTags: boolean;
|
|
62
64
|
}
|
|
63
65
|
export declare type IGetSessionsQuery = Partial<IGetSessionsOptions>;
|
|
64
66
|
export declare type IGetSessionByIdQuery = Partial<Omit<IGetSessionByIdOptions, 'sessionId'>>;
|
|
@@ -101,9 +103,10 @@ export interface ISearchSessionsOptions {
|
|
|
101
103
|
readonly type?: string;
|
|
102
104
|
readonly meta?: Record<string, string>;
|
|
103
105
|
readonly sessionsSearchOptions?: ISessionSearchOptions;
|
|
106
|
+
readonly ignoreRuleTags: boolean;
|
|
104
107
|
}
|
|
105
108
|
export declare type ISearchSessionsQuery = ITargetAccountId & ITargetUserId;
|
|
106
|
-
export declare type ISearchSessionsBody = Omit<ISearchSessionsOptions, 'accountId' | 'agentId'>;
|
|
109
|
+
export declare type ISearchSessionsBody = Omit<ISearchSessionsOptions, 'accountId' | 'agentId' | 'ignoreRuleTags'>;
|
|
107
110
|
export interface ISearchSessionsWithContactsResponse {
|
|
108
111
|
readonly data: ISession[];
|
|
109
112
|
readonly page?: {
|
|
@@ -131,6 +134,7 @@ export interface ISearchSessionsWithContactsOptions {
|
|
|
131
134
|
readonly tags?: string[];
|
|
132
135
|
readonly sessionsSearchOptions?: ISessionSearchOptions;
|
|
133
136
|
readonly contactsSearchOptions?: IContactSearchOptions;
|
|
137
|
+
readonly ignoreRuleTags: boolean;
|
|
134
138
|
}
|
|
135
139
|
export declare type ISearchSessionsWithContactsQuery = ITargetAccountId & ITargetUserId;
|
|
136
140
|
export declare type ISearchSessionsWithContactsBody = Omit<ISearchSessionsWithContactsOptions, 'accountId' | 'agentId' | 'token'>;
|
|
@@ -138,6 +142,7 @@ export interface IGetQueueSessionOptions {
|
|
|
138
142
|
readonly accountId: string;
|
|
139
143
|
readonly agentId: string;
|
|
140
144
|
readonly ruleTags?: string[];
|
|
145
|
+
readonly ignoreRuleTags: boolean;
|
|
141
146
|
}
|
|
142
147
|
export declare type IGetQueueSessionQuery = Partial<IGetQueueSessionOptions> & ITargetAccountId;
|
|
143
148
|
export interface IGetQueueSessionResponse {
|