ch-chat-api-typescript-axios 5.86.0 → 5.87.3
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.
- package/dist/api/dashboard-api.d.ts +174 -63
- package/dist/api/dashboard-api.js +175 -62
- package/dist/api/dashboard-api.js.map +1 -1
- package/dist/api/sessions-api.d.ts +55 -0
- package/dist/api/sessions-api.js +74 -0
- package/dist/api/sessions-api.js.map +1 -1
- package/dist/models/{api-v1-chat-dashboard-sessions-activated-count-get401-response-errors.d.ts → api-v1-chat-dashboard-sessions-counts-get401-response-errors.d.ts} +3 -3
- package/dist/models/{api-v1-chat-dashboard-sessions-activated-count-get401-response.js → api-v1-chat-dashboard-sessions-counts-get401-response-errors.js} +1 -1
- package/dist/models/api-v1-chat-dashboard-sessions-counts-get401-response-errors.js.map +1 -0
- package/dist/models/api-v1-chat-dashboard-sessions-counts-get401-response.d.ts +49 -0
- package/dist/models/api-v1-chat-dashboard-sessions-counts-get401-response.js +16 -0
- package/dist/models/api-v1-chat-dashboard-sessions-counts-get401-response.js.map +1 -0
- package/dist/models/chat-consult-close-result-model.d.ts +30 -0
- package/dist/models/{activated-session-details-model.js → chat-consult-close-result-model.js} +1 -1
- package/dist/models/chat-consult-close-result-model.js.map +1 -0
- package/dist/models/chat-session-model.d.ts +25 -0
- package/dist/models/consult-status.d.ts +21 -0
- package/dist/models/{api-v1-chat-dashboard-sessions-activated-count-get401-response-errors.js → consult-status.js} +11 -1
- package/dist/models/consult-status.js.map +1 -0
- package/dist/models/{activated-session-details-model.d.ts → dashboard-recent-sessions-model.d.ts} +7 -7
- package/dist/models/{dashboard-activated-sessions-model.js → dashboard-recent-sessions-model.js} +1 -1
- package/dist/models/dashboard-recent-sessions-model.js.map +1 -0
- package/dist/models/dashboard-session-countries-statistics-model.d.ts +6 -0
- package/dist/models/dashboard-session-hospitals-detail-statistics-model.d.ts +36 -0
- package/dist/models/dashboard-session-hospitals-detail-statistics-model.js +16 -0
- package/dist/models/dashboard-session-hospitals-detail-statistics-model.js.map +1 -0
- package/dist/models/dashboard-session-hospitals-statistics-model.d.ts +32 -0
- package/dist/models/dashboard-session-hospitals-statistics-model.js +16 -0
- package/dist/models/dashboard-session-hospitals-statistics-model.js.map +1 -0
- package/dist/models/dashboard-session-trends-duration-statistics-model.d.ts +0 -6
- package/dist/models/dashboard-session-trends-statistics-model.d.ts +16 -4
- package/dist/models/index.d.ts +9 -6
- package/dist/models/index.js +9 -6
- package/dist/models/index.js.map +1 -1
- package/dist/models/notification-code.d.ts +2 -0
- package/dist/models/notification-code.js +2 -0
- package/dist/models/notification-code.js.map +1 -1
- package/dist/models/{activated-session-detail-model.d.ts → recent-session-detail-model.d.ts} +18 -12
- package/dist/models/{activated-session-detail-model.js → recent-session-detail-model.js} +1 -1
- package/dist/models/recent-session-detail-model.js.map +1 -0
- package/dist/models/{duration.d.ts → timeframe-duration.d.ts} +5 -4
- package/dist/models/{duration.js → timeframe-duration.js} +6 -5
- package/dist/models/timeframe-duration.js.map +1 -0
- package/package.json +1 -1
- package/dist/models/activated-session-detail-model.js.map +0 -1
- package/dist/models/activated-session-details-model.js.map +0 -1
- package/dist/models/api-v1-chat-dashboard-sessions-activated-count-get401-response-errors.js.map +0 -1
- package/dist/models/api-v1-chat-dashboard-sessions-activated-count-get401-response.d.ts +0 -49
- package/dist/models/api-v1-chat-dashboard-sessions-activated-count-get401-response.js.map +0 -1
- package/dist/models/dashboard-activated-sessions-model.d.ts +0 -31
- package/dist/models/dashboard-activated-sessions-model.js.map +0 -1
- package/dist/models/duration.js.map +0 -1
|
@@ -12,12 +12,13 @@
|
|
|
12
12
|
import type { Configuration } from '../configuration';
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
|
-
import type {
|
|
15
|
+
import type { DashboardRecentSessionsModel } from '../models';
|
|
16
16
|
import type { DashboardSessionCountriesStatisticsModel } from '../models';
|
|
17
|
+
import type { DashboardSessionHospitalsStatisticsModel } from '../models';
|
|
17
18
|
import type { DashboardSessionTrendsStatisticsModel } from '../models';
|
|
18
|
-
import type { Duration } from '../models';
|
|
19
19
|
import type { PlatformTypes } from '../models';
|
|
20
20
|
import type { SortBy } from '../models';
|
|
21
|
+
import type { TimeframeDuration } from '../models';
|
|
21
22
|
/**
|
|
22
23
|
* DashboardApi - axios parameter creator
|
|
23
24
|
* @export
|
|
@@ -25,35 +26,51 @@ import type { SortBy } from '../models';
|
|
|
25
26
|
export declare const DashboardApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
26
27
|
/**
|
|
27
28
|
*
|
|
28
|
-
* @summary
|
|
29
|
+
* @summary Shows the count of created chat sessions aggregated by the country code of the phone number.
|
|
29
30
|
* @param {string} [tenantId]
|
|
30
|
-
* @param {
|
|
31
|
-
* @param {
|
|
31
|
+
* @param {SortBy} [sortBy] Sort by value cost
|
|
32
|
+
* @param {number} [page]
|
|
33
|
+
* @param {number} [limit]
|
|
34
|
+
* @param {Date} [lastRetrieved]
|
|
32
35
|
* @param {*} [options] Override http request option.
|
|
33
36
|
* @throws {RequiredError}
|
|
34
37
|
*/
|
|
35
|
-
|
|
38
|
+
apiV1ChatDashboardSessionsCountriesGet: (tenantId?: string, sortBy?: SortBy, page?: number, limit?: number, lastRetrieved?: Date, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
36
39
|
/**
|
|
37
40
|
*
|
|
38
|
-
* @summary
|
|
41
|
+
* @summary Retrieves the number of chat sessions created during a specified period
|
|
42
|
+
* @param {TimeframeDuration} duration
|
|
39
43
|
* @param {string} [tenantId]
|
|
40
|
-
* @param {
|
|
44
|
+
* @param {*} [options] Override http request option.
|
|
45
|
+
* @throws {RequiredError}
|
|
46
|
+
*/
|
|
47
|
+
apiV1ChatDashboardSessionsCountsGet: (duration: TimeframeDuration, tenantId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @summary Gets the number of chat sessions created per hospital.
|
|
51
|
+
* @param {string} [tenantId]
|
|
52
|
+
* @param {string} [hospitalName]
|
|
53
|
+
* @param {SortBy} [sortBy]
|
|
41
54
|
* @param {number} [page]
|
|
42
55
|
* @param {number} [limit]
|
|
43
56
|
* @param {Date} [lastRetrieved]
|
|
44
57
|
* @param {*} [options] Override http request option.
|
|
45
58
|
* @throws {RequiredError}
|
|
46
59
|
*/
|
|
47
|
-
|
|
60
|
+
apiV1ChatDashboardSessionsHospitalsAggregateGet: (tenantId?: string, hospitalName?: string, sortBy?: SortBy, page?: number, limit?: number, lastRetrieved?: Date, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
48
61
|
/**
|
|
49
62
|
*
|
|
50
|
-
* @summary Get
|
|
51
|
-
* @param {Duration} duration
|
|
63
|
+
* @summary Get recent chat session data from the past 48 hours.
|
|
52
64
|
* @param {string} [tenantId]
|
|
65
|
+
* @param {string} [assigneeId]
|
|
66
|
+
* @param {PlatformTypes} [platformType]
|
|
67
|
+
* @param {number} [page]
|
|
68
|
+
* @param {number} [limit]
|
|
69
|
+
* @param {Date} [lastRetrieved]
|
|
53
70
|
* @param {*} [options] Override http request option.
|
|
54
71
|
* @throws {RequiredError}
|
|
55
72
|
*/
|
|
56
|
-
|
|
73
|
+
apiV1ChatDashboardSessionsRecentGet: (tenantId?: string, assigneeId?: string, platformType?: PlatformTypes, page?: number, limit?: number, lastRetrieved?: Date, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57
74
|
};
|
|
58
75
|
/**
|
|
59
76
|
* DashboardApi - functional programming interface
|
|
@@ -62,35 +79,51 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
62
79
|
export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
63
80
|
/**
|
|
64
81
|
*
|
|
65
|
-
* @summary
|
|
82
|
+
* @summary Shows the count of created chat sessions aggregated by the country code of the phone number.
|
|
66
83
|
* @param {string} [tenantId]
|
|
67
|
-
* @param {
|
|
68
|
-
* @param {
|
|
84
|
+
* @param {SortBy} [sortBy] Sort by value cost
|
|
85
|
+
* @param {number} [page]
|
|
86
|
+
* @param {number} [limit]
|
|
87
|
+
* @param {Date} [lastRetrieved]
|
|
69
88
|
* @param {*} [options] Override http request option.
|
|
70
89
|
* @throws {RequiredError}
|
|
71
90
|
*/
|
|
72
|
-
|
|
91
|
+
apiV1ChatDashboardSessionsCountriesGet(tenantId?: string, sortBy?: SortBy, page?: number, limit?: number, lastRetrieved?: Date, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DashboardSessionCountriesStatisticsModel>>;
|
|
73
92
|
/**
|
|
74
93
|
*
|
|
75
|
-
* @summary
|
|
94
|
+
* @summary Retrieves the number of chat sessions created during a specified period
|
|
95
|
+
* @param {TimeframeDuration} duration
|
|
76
96
|
* @param {string} [tenantId]
|
|
77
|
-
* @param {
|
|
97
|
+
* @param {*} [options] Override http request option.
|
|
98
|
+
* @throws {RequiredError}
|
|
99
|
+
*/
|
|
100
|
+
apiV1ChatDashboardSessionsCountsGet(duration: TimeframeDuration, tenantId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DashboardSessionTrendsStatisticsModel>>;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @summary Gets the number of chat sessions created per hospital.
|
|
104
|
+
* @param {string} [tenantId]
|
|
105
|
+
* @param {string} [hospitalName]
|
|
106
|
+
* @param {SortBy} [sortBy]
|
|
78
107
|
* @param {number} [page]
|
|
79
108
|
* @param {number} [limit]
|
|
80
109
|
* @param {Date} [lastRetrieved]
|
|
81
110
|
* @param {*} [options] Override http request option.
|
|
82
111
|
* @throws {RequiredError}
|
|
83
112
|
*/
|
|
84
|
-
|
|
113
|
+
apiV1ChatDashboardSessionsHospitalsAggregateGet(tenantId?: string, hospitalName?: string, sortBy?: SortBy, page?: number, limit?: number, lastRetrieved?: Date, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DashboardSessionHospitalsStatisticsModel>>;
|
|
85
114
|
/**
|
|
86
115
|
*
|
|
87
|
-
* @summary Get
|
|
88
|
-
* @param {Duration} duration
|
|
116
|
+
* @summary Get recent chat session data from the past 48 hours.
|
|
89
117
|
* @param {string} [tenantId]
|
|
118
|
+
* @param {string} [assigneeId]
|
|
119
|
+
* @param {PlatformTypes} [platformType]
|
|
120
|
+
* @param {number} [page]
|
|
121
|
+
* @param {number} [limit]
|
|
122
|
+
* @param {Date} [lastRetrieved]
|
|
90
123
|
* @param {*} [options] Override http request option.
|
|
91
124
|
* @throws {RequiredError}
|
|
92
125
|
*/
|
|
93
|
-
|
|
126
|
+
apiV1ChatDashboardSessionsRecentGet(tenantId?: string, assigneeId?: string, platformType?: PlatformTypes, page?: number, limit?: number, lastRetrieved?: Date, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DashboardRecentSessionsModel>>;
|
|
94
127
|
};
|
|
95
128
|
/**
|
|
96
129
|
* DashboardApi - factory interface
|
|
@@ -99,15 +132,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
99
132
|
export declare const DashboardApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
100
133
|
/**
|
|
101
134
|
*
|
|
102
|
-
* @summary
|
|
103
|
-
* @param {DashboardApiApiV1ChatDashboardSessionsActivatedCountGetRequest} requestParameters Request parameters.
|
|
104
|
-
* @param {*} [options] Override http request option.
|
|
105
|
-
* @throws {RequiredError}
|
|
106
|
-
*/
|
|
107
|
-
apiV1ChatDashboardSessionsActivatedCountGet(requestParameters?: DashboardApiApiV1ChatDashboardSessionsActivatedCountGetRequest, options?: RawAxiosRequestConfig): AxiosPromise<DashboardActivatedSessionsModel>;
|
|
108
|
-
/**
|
|
109
|
-
*
|
|
110
|
-
* @summary Get current all chat session status.
|
|
135
|
+
* @summary Shows the count of created chat sessions aggregated by the country code of the phone number.
|
|
111
136
|
* @param {DashboardApiApiV1ChatDashboardSessionsCountriesGetRequest} requestParameters Request parameters.
|
|
112
137
|
* @param {*} [options] Override http request option.
|
|
113
138
|
* @throws {RequiredError}
|
|
@@ -115,38 +140,29 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
115
140
|
apiV1ChatDashboardSessionsCountriesGet(requestParameters?: DashboardApiApiV1ChatDashboardSessionsCountriesGetRequest, options?: RawAxiosRequestConfig): AxiosPromise<DashboardSessionCountriesStatisticsModel>;
|
|
116
141
|
/**
|
|
117
142
|
*
|
|
118
|
-
* @summary
|
|
143
|
+
* @summary Retrieves the number of chat sessions created during a specified period
|
|
119
144
|
* @param {DashboardApiApiV1ChatDashboardSessionsCountsGetRequest} requestParameters Request parameters.
|
|
120
145
|
* @param {*} [options] Override http request option.
|
|
121
146
|
* @throws {RequiredError}
|
|
122
147
|
*/
|
|
123
148
|
apiV1ChatDashboardSessionsCountsGet(requestParameters: DashboardApiApiV1ChatDashboardSessionsCountsGetRequest, options?: RawAxiosRequestConfig): AxiosPromise<DashboardSessionTrendsStatisticsModel>;
|
|
124
|
-
};
|
|
125
|
-
/**
|
|
126
|
-
* Request parameters for apiV1ChatDashboardSessionsActivatedCountGet operation in DashboardApi.
|
|
127
|
-
* @export
|
|
128
|
-
* @interface DashboardApiApiV1ChatDashboardSessionsActivatedCountGetRequest
|
|
129
|
-
*/
|
|
130
|
-
export interface DashboardApiApiV1ChatDashboardSessionsActivatedCountGetRequest {
|
|
131
149
|
/**
|
|
132
150
|
*
|
|
133
|
-
* @
|
|
134
|
-
* @
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
/**
|
|
138
|
-
*
|
|
139
|
-
* @type {string}
|
|
140
|
-
* @memberof DashboardApiApiV1ChatDashboardSessionsActivatedCountGet
|
|
151
|
+
* @summary Gets the number of chat sessions created per hospital.
|
|
152
|
+
* @param {DashboardApiApiV1ChatDashboardSessionsHospitalsAggregateGetRequest} requestParameters Request parameters.
|
|
153
|
+
* @param {*} [options] Override http request option.
|
|
154
|
+
* @throws {RequiredError}
|
|
141
155
|
*/
|
|
142
|
-
|
|
156
|
+
apiV1ChatDashboardSessionsHospitalsAggregateGet(requestParameters?: DashboardApiApiV1ChatDashboardSessionsHospitalsAggregateGetRequest, options?: RawAxiosRequestConfig): AxiosPromise<DashboardSessionHospitalsStatisticsModel>;
|
|
143
157
|
/**
|
|
144
158
|
*
|
|
145
|
-
* @
|
|
146
|
-
* @
|
|
159
|
+
* @summary Get recent chat session data from the past 48 hours.
|
|
160
|
+
* @param {DashboardApiApiV1ChatDashboardSessionsRecentGetRequest} requestParameters Request parameters.
|
|
161
|
+
* @param {*} [options] Override http request option.
|
|
162
|
+
* @throws {RequiredError}
|
|
147
163
|
*/
|
|
148
|
-
|
|
149
|
-
}
|
|
164
|
+
apiV1ChatDashboardSessionsRecentGet(requestParameters?: DashboardApiApiV1ChatDashboardSessionsRecentGetRequest, options?: RawAxiosRequestConfig): AxiosPromise<DashboardRecentSessionsModel>;
|
|
165
|
+
};
|
|
150
166
|
/**
|
|
151
167
|
* Request parameters for apiV1ChatDashboardSessionsCountriesGet operation in DashboardApi.
|
|
152
168
|
* @export
|
|
@@ -192,10 +208,10 @@ export interface DashboardApiApiV1ChatDashboardSessionsCountriesGetRequest {
|
|
|
192
208
|
export interface DashboardApiApiV1ChatDashboardSessionsCountsGetRequest {
|
|
193
209
|
/**
|
|
194
210
|
*
|
|
195
|
-
* @type {
|
|
211
|
+
* @type {TimeframeDuration}
|
|
196
212
|
* @memberof DashboardApiApiV1ChatDashboardSessionsCountsGet
|
|
197
213
|
*/
|
|
198
|
-
readonly duration:
|
|
214
|
+
readonly duration: TimeframeDuration;
|
|
199
215
|
/**
|
|
200
216
|
*
|
|
201
217
|
* @type {string}
|
|
@@ -203,6 +219,92 @@ export interface DashboardApiApiV1ChatDashboardSessionsCountsGetRequest {
|
|
|
203
219
|
*/
|
|
204
220
|
readonly tenantId?: string;
|
|
205
221
|
}
|
|
222
|
+
/**
|
|
223
|
+
* Request parameters for apiV1ChatDashboardSessionsHospitalsAggregateGet operation in DashboardApi.
|
|
224
|
+
* @export
|
|
225
|
+
* @interface DashboardApiApiV1ChatDashboardSessionsHospitalsAggregateGetRequest
|
|
226
|
+
*/
|
|
227
|
+
export interface DashboardApiApiV1ChatDashboardSessionsHospitalsAggregateGetRequest {
|
|
228
|
+
/**
|
|
229
|
+
*
|
|
230
|
+
* @type {string}
|
|
231
|
+
* @memberof DashboardApiApiV1ChatDashboardSessionsHospitalsAggregateGet
|
|
232
|
+
*/
|
|
233
|
+
readonly tenantId?: string;
|
|
234
|
+
/**
|
|
235
|
+
*
|
|
236
|
+
* @type {string}
|
|
237
|
+
* @memberof DashboardApiApiV1ChatDashboardSessionsHospitalsAggregateGet
|
|
238
|
+
*/
|
|
239
|
+
readonly hospitalName?: string;
|
|
240
|
+
/**
|
|
241
|
+
*
|
|
242
|
+
* @type {SortBy}
|
|
243
|
+
* @memberof DashboardApiApiV1ChatDashboardSessionsHospitalsAggregateGet
|
|
244
|
+
*/
|
|
245
|
+
readonly sortBy?: SortBy;
|
|
246
|
+
/**
|
|
247
|
+
*
|
|
248
|
+
* @type {number}
|
|
249
|
+
* @memberof DashboardApiApiV1ChatDashboardSessionsHospitalsAggregateGet
|
|
250
|
+
*/
|
|
251
|
+
readonly page?: number;
|
|
252
|
+
/**
|
|
253
|
+
*
|
|
254
|
+
* @type {number}
|
|
255
|
+
* @memberof DashboardApiApiV1ChatDashboardSessionsHospitalsAggregateGet
|
|
256
|
+
*/
|
|
257
|
+
readonly limit?: number;
|
|
258
|
+
/**
|
|
259
|
+
*
|
|
260
|
+
* @type {Date}
|
|
261
|
+
* @memberof DashboardApiApiV1ChatDashboardSessionsHospitalsAggregateGet
|
|
262
|
+
*/
|
|
263
|
+
readonly lastRetrieved?: Date;
|
|
264
|
+
}
|
|
265
|
+
/**
|
|
266
|
+
* Request parameters for apiV1ChatDashboardSessionsRecentGet operation in DashboardApi.
|
|
267
|
+
* @export
|
|
268
|
+
* @interface DashboardApiApiV1ChatDashboardSessionsRecentGetRequest
|
|
269
|
+
*/
|
|
270
|
+
export interface DashboardApiApiV1ChatDashboardSessionsRecentGetRequest {
|
|
271
|
+
/**
|
|
272
|
+
*
|
|
273
|
+
* @type {string}
|
|
274
|
+
* @memberof DashboardApiApiV1ChatDashboardSessionsRecentGet
|
|
275
|
+
*/
|
|
276
|
+
readonly tenantId?: string;
|
|
277
|
+
/**
|
|
278
|
+
*
|
|
279
|
+
* @type {string}
|
|
280
|
+
* @memberof DashboardApiApiV1ChatDashboardSessionsRecentGet
|
|
281
|
+
*/
|
|
282
|
+
readonly assigneeId?: string;
|
|
283
|
+
/**
|
|
284
|
+
*
|
|
285
|
+
* @type {PlatformTypes}
|
|
286
|
+
* @memberof DashboardApiApiV1ChatDashboardSessionsRecentGet
|
|
287
|
+
*/
|
|
288
|
+
readonly platformType?: PlatformTypes;
|
|
289
|
+
/**
|
|
290
|
+
*
|
|
291
|
+
* @type {number}
|
|
292
|
+
* @memberof DashboardApiApiV1ChatDashboardSessionsRecentGet
|
|
293
|
+
*/
|
|
294
|
+
readonly page?: number;
|
|
295
|
+
/**
|
|
296
|
+
*
|
|
297
|
+
* @type {number}
|
|
298
|
+
* @memberof DashboardApiApiV1ChatDashboardSessionsRecentGet
|
|
299
|
+
*/
|
|
300
|
+
readonly limit?: number;
|
|
301
|
+
/**
|
|
302
|
+
*
|
|
303
|
+
* @type {Date}
|
|
304
|
+
* @memberof DashboardApiApiV1ChatDashboardSessionsRecentGet
|
|
305
|
+
*/
|
|
306
|
+
readonly lastRetrieved?: Date;
|
|
307
|
+
}
|
|
206
308
|
/**
|
|
207
309
|
* DashboardApi - object-oriented interface
|
|
208
310
|
* @export
|
|
@@ -212,29 +314,38 @@ export interface DashboardApiApiV1ChatDashboardSessionsCountsGetRequest {
|
|
|
212
314
|
export declare class DashboardApi extends BaseAPI {
|
|
213
315
|
/**
|
|
214
316
|
*
|
|
215
|
-
* @summary
|
|
216
|
-
* @param {
|
|
317
|
+
* @summary Shows the count of created chat sessions aggregated by the country code of the phone number.
|
|
318
|
+
* @param {DashboardApiApiV1ChatDashboardSessionsCountriesGetRequest} requestParameters Request parameters.
|
|
217
319
|
* @param {*} [options] Override http request option.
|
|
218
320
|
* @throws {RequiredError}
|
|
219
321
|
* @memberof DashboardApi
|
|
220
322
|
*/
|
|
221
|
-
|
|
323
|
+
apiV1ChatDashboardSessionsCountriesGet(requestParameters?: DashboardApiApiV1ChatDashboardSessionsCountriesGetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DashboardSessionCountriesStatisticsModel, any>>;
|
|
222
324
|
/**
|
|
223
325
|
*
|
|
224
|
-
* @summary
|
|
225
|
-
* @param {
|
|
326
|
+
* @summary Retrieves the number of chat sessions created during a specified period
|
|
327
|
+
* @param {DashboardApiApiV1ChatDashboardSessionsCountsGetRequest} requestParameters Request parameters.
|
|
226
328
|
* @param {*} [options] Override http request option.
|
|
227
329
|
* @throws {RequiredError}
|
|
228
330
|
* @memberof DashboardApi
|
|
229
331
|
*/
|
|
230
|
-
|
|
332
|
+
apiV1ChatDashboardSessionsCountsGet(requestParameters: DashboardApiApiV1ChatDashboardSessionsCountsGetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DashboardSessionTrendsStatisticsModel, any>>;
|
|
231
333
|
/**
|
|
232
334
|
*
|
|
233
|
-
* @summary
|
|
234
|
-
* @param {
|
|
335
|
+
* @summary Gets the number of chat sessions created per hospital.
|
|
336
|
+
* @param {DashboardApiApiV1ChatDashboardSessionsHospitalsAggregateGetRequest} requestParameters Request parameters.
|
|
235
337
|
* @param {*} [options] Override http request option.
|
|
236
338
|
* @throws {RequiredError}
|
|
237
339
|
* @memberof DashboardApi
|
|
238
340
|
*/
|
|
239
|
-
|
|
341
|
+
apiV1ChatDashboardSessionsHospitalsAggregateGet(requestParameters?: DashboardApiApiV1ChatDashboardSessionsHospitalsAggregateGetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DashboardSessionHospitalsStatisticsModel, any>>;
|
|
342
|
+
/**
|
|
343
|
+
*
|
|
344
|
+
* @summary Get recent chat session data from the past 48 hours.
|
|
345
|
+
* @param {DashboardApiApiV1ChatDashboardSessionsRecentGetRequest} requestParameters Request parameters.
|
|
346
|
+
* @param {*} [options] Override http request option.
|
|
347
|
+
* @throws {RequiredError}
|
|
348
|
+
* @memberof DashboardApi
|
|
349
|
+
*/
|
|
350
|
+
apiV1ChatDashboardSessionsRecentGet(requestParameters?: DashboardApiApiV1ChatDashboardSessionsRecentGetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DashboardRecentSessionsModel, any>>;
|
|
240
351
|
}
|