ch-chat-api-typescript-axios 5.82.1 → 5.83.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.
- package/dist/api/notifications-api.d.ts +47 -0
- package/dist/api/notifications-api.js +68 -0
- package/dist/api/notifications-api.js.map +1 -1
- package/dist/models/assignee-model.d.ts +30 -0
- package/dist/models/assignee-model.js +16 -0
- package/dist/models/assignee-model.js.map +1 -0
- package/dist/models/chat-notification-paged-list-meta-data.d.ts +84 -0
- package/dist/models/chat-notification-paged-list-meta-data.js +16 -0
- package/dist/models/chat-notification-paged-list-meta-data.js.map +1 -0
- package/dist/models/chat-notification.d.ts +3 -2
- package/dist/models/chat-notifications.d.ts +3 -3
- package/dist/models/check-chat-notifications-command.d.ts +30 -0
- package/dist/models/check-chat-notifications-command.js +16 -0
- package/dist/models/check-chat-notifications-command.js.map +1 -0
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/models/index.js.map +1 -1
- package/dist/models/platform-types.d.ts +1 -1
- package/dist/models/platform-types.js +1 -1
- package/package.json +1 -1
|
@@ -13,11 +13,20 @@ import type { Configuration } from '../configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import type { ChatNotifications } from '../models';
|
|
16
|
+
import type { CheckChatNotificationsCommand } from '../models';
|
|
16
17
|
/**
|
|
17
18
|
* NotificationsApi - axios parameter creator
|
|
18
19
|
* @export
|
|
19
20
|
*/
|
|
20
21
|
export declare const NotificationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @summary Multiple mark all notifications as read for the current user.
|
|
25
|
+
* @param {CheckChatNotificationsCommand} [checkChatNotificationsCommand]
|
|
26
|
+
* @param {*} [options] Override http request option.
|
|
27
|
+
* @throws {RequiredError}
|
|
28
|
+
*/
|
|
29
|
+
apiV1ChatNotificationsCheckPost: (checkChatNotificationsCommand?: CheckChatNotificationsCommand, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
21
30
|
/**
|
|
22
31
|
*
|
|
23
32
|
* @summary Get the notifications for the current user.
|
|
@@ -43,6 +52,14 @@ export declare const NotificationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
43
52
|
* @export
|
|
44
53
|
*/
|
|
45
54
|
export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @summary Multiple mark all notifications as read for the current user.
|
|
58
|
+
* @param {CheckChatNotificationsCommand} [checkChatNotificationsCommand]
|
|
59
|
+
* @param {*} [options] Override http request option.
|
|
60
|
+
* @throws {RequiredError}
|
|
61
|
+
*/
|
|
62
|
+
apiV1ChatNotificationsCheckPost(checkChatNotificationsCommand?: CheckChatNotificationsCommand, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
46
63
|
/**
|
|
47
64
|
*
|
|
48
65
|
* @summary Get the notifications for the current user.
|
|
@@ -68,6 +85,14 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
|
68
85
|
* @export
|
|
69
86
|
*/
|
|
70
87
|
export declare const NotificationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
* @summary Multiple mark all notifications as read for the current user.
|
|
91
|
+
* @param {NotificationsApiApiV1ChatNotificationsCheckPostRequest} requestParameters Request parameters.
|
|
92
|
+
* @param {*} [options] Override http request option.
|
|
93
|
+
* @throws {RequiredError}
|
|
94
|
+
*/
|
|
95
|
+
apiV1ChatNotificationsCheckPost(requestParameters?: NotificationsApiApiV1ChatNotificationsCheckPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
71
96
|
/**
|
|
72
97
|
*
|
|
73
98
|
* @summary Get the notifications for the current user.
|
|
@@ -85,6 +110,19 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
|
|
|
85
110
|
*/
|
|
86
111
|
apiV1ChatNotificationsIdCheckPost(requestParameters: NotificationsApiApiV1ChatNotificationsIdCheckPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
87
112
|
};
|
|
113
|
+
/**
|
|
114
|
+
* Request parameters for apiV1ChatNotificationsCheckPost operation in NotificationsApi.
|
|
115
|
+
* @export
|
|
116
|
+
* @interface NotificationsApiApiV1ChatNotificationsCheckPostRequest
|
|
117
|
+
*/
|
|
118
|
+
export interface NotificationsApiApiV1ChatNotificationsCheckPostRequest {
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @type {CheckChatNotificationsCommand}
|
|
122
|
+
* @memberof NotificationsApiApiV1ChatNotificationsCheckPost
|
|
123
|
+
*/
|
|
124
|
+
readonly checkChatNotificationsCommand?: CheckChatNotificationsCommand;
|
|
125
|
+
}
|
|
88
126
|
/**
|
|
89
127
|
* Request parameters for apiV1ChatNotificationsGet operation in NotificationsApi.
|
|
90
128
|
* @export
|
|
@@ -136,6 +174,15 @@ export interface NotificationsApiApiV1ChatNotificationsIdCheckPostRequest {
|
|
|
136
174
|
* @extends {BaseAPI}
|
|
137
175
|
*/
|
|
138
176
|
export declare class NotificationsApi extends BaseAPI {
|
|
177
|
+
/**
|
|
178
|
+
*
|
|
179
|
+
* @summary Multiple mark all notifications as read for the current user.
|
|
180
|
+
* @param {NotificationsApiApiV1ChatNotificationsCheckPostRequest} requestParameters Request parameters.
|
|
181
|
+
* @param {*} [options] Override http request option.
|
|
182
|
+
* @throws {RequiredError}
|
|
183
|
+
* @memberof NotificationsApi
|
|
184
|
+
*/
|
|
185
|
+
apiV1ChatNotificationsCheckPost(requestParameters?: NotificationsApiApiV1ChatNotificationsCheckPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
139
186
|
/**
|
|
140
187
|
*
|
|
141
188
|
* @summary Get the notifications for the current user.
|
|
@@ -38,6 +38,37 @@ const base_1 = require("../base");
|
|
|
38
38
|
*/
|
|
39
39
|
const NotificationsApiAxiosParamCreator = function (configuration) {
|
|
40
40
|
return {
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @summary Multiple mark all notifications as read for the current user.
|
|
44
|
+
* @param {CheckChatNotificationsCommand} [checkChatNotificationsCommand]
|
|
45
|
+
* @param {*} [options] Override http request option.
|
|
46
|
+
* @throws {RequiredError}
|
|
47
|
+
*/
|
|
48
|
+
apiV1ChatNotificationsCheckPost: (checkChatNotificationsCommand_1, ...args_1) => __awaiter(this, [checkChatNotificationsCommand_1, ...args_1], void 0, function* (checkChatNotificationsCommand, options = {}) {
|
|
49
|
+
const localVarPath = `/api/v1/chat/notifications/check`;
|
|
50
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
51
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
52
|
+
let baseOptions;
|
|
53
|
+
if (configuration) {
|
|
54
|
+
baseOptions = configuration.baseOptions;
|
|
55
|
+
}
|
|
56
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
57
|
+
const localVarHeaderParameter = {};
|
|
58
|
+
const localVarQueryParameter = {};
|
|
59
|
+
// authentication oauth2 required
|
|
60
|
+
// oauth required
|
|
61
|
+
yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_chat_api"], configuration);
|
|
62
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
63
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
64
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
65
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
66
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(checkChatNotificationsCommand, localVarRequestOptions, configuration);
|
|
67
|
+
return {
|
|
68
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
69
|
+
options: localVarRequestOptions,
|
|
70
|
+
};
|
|
71
|
+
}),
|
|
41
72
|
/**
|
|
42
73
|
*
|
|
43
74
|
* @summary Get the notifications for the current user.
|
|
@@ -126,6 +157,22 @@ exports.NotificationsApiAxiosParamCreator = NotificationsApiAxiosParamCreator;
|
|
|
126
157
|
const NotificationsApiFp = function (configuration) {
|
|
127
158
|
const localVarAxiosParamCreator = (0, exports.NotificationsApiAxiosParamCreator)(configuration);
|
|
128
159
|
return {
|
|
160
|
+
/**
|
|
161
|
+
*
|
|
162
|
+
* @summary Multiple mark all notifications as read for the current user.
|
|
163
|
+
* @param {CheckChatNotificationsCommand} [checkChatNotificationsCommand]
|
|
164
|
+
* @param {*} [options] Override http request option.
|
|
165
|
+
* @throws {RequiredError}
|
|
166
|
+
*/
|
|
167
|
+
apiV1ChatNotificationsCheckPost(checkChatNotificationsCommand, options) {
|
|
168
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
169
|
+
var _a, _b, _c;
|
|
170
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.apiV1ChatNotificationsCheckPost(checkChatNotificationsCommand, options);
|
|
171
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
172
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['NotificationsApi.apiV1ChatNotificationsCheckPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
173
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
174
|
+
});
|
|
175
|
+
},
|
|
129
176
|
/**
|
|
130
177
|
*
|
|
131
178
|
* @summary Get the notifications for the current user.
|
|
@@ -171,6 +218,16 @@ exports.NotificationsApiFp = NotificationsApiFp;
|
|
|
171
218
|
const NotificationsApiFactory = function (configuration, basePath, axios) {
|
|
172
219
|
const localVarFp = (0, exports.NotificationsApiFp)(configuration);
|
|
173
220
|
return {
|
|
221
|
+
/**
|
|
222
|
+
*
|
|
223
|
+
* @summary Multiple mark all notifications as read for the current user.
|
|
224
|
+
* @param {NotificationsApiApiV1ChatNotificationsCheckPostRequest} requestParameters Request parameters.
|
|
225
|
+
* @param {*} [options] Override http request option.
|
|
226
|
+
* @throws {RequiredError}
|
|
227
|
+
*/
|
|
228
|
+
apiV1ChatNotificationsCheckPost(requestParameters = {}, options) {
|
|
229
|
+
return localVarFp.apiV1ChatNotificationsCheckPost(requestParameters.checkChatNotificationsCommand, options).then((request) => request(axios, basePath));
|
|
230
|
+
},
|
|
174
231
|
/**
|
|
175
232
|
*
|
|
176
233
|
* @summary Get the notifications for the current user.
|
|
@@ -201,6 +258,17 @@ exports.NotificationsApiFactory = NotificationsApiFactory;
|
|
|
201
258
|
* @extends {BaseAPI}
|
|
202
259
|
*/
|
|
203
260
|
class NotificationsApi extends base_1.BaseAPI {
|
|
261
|
+
/**
|
|
262
|
+
*
|
|
263
|
+
* @summary Multiple mark all notifications as read for the current user.
|
|
264
|
+
* @param {NotificationsApiApiV1ChatNotificationsCheckPostRequest} requestParameters Request parameters.
|
|
265
|
+
* @param {*} [options] Override http request option.
|
|
266
|
+
* @throws {RequiredError}
|
|
267
|
+
* @memberof NotificationsApi
|
|
268
|
+
*/
|
|
269
|
+
apiV1ChatNotificationsCheckPost(requestParameters = {}, options) {
|
|
270
|
+
return (0, exports.NotificationsApiFp)(this.configuration).apiV1ChatNotificationsCheckPost(requestParameters.checkChatNotificationsCommand, options).then((request) => request(this.axios, this.basePath));
|
|
271
|
+
}
|
|
204
272
|
/**
|
|
205
273
|
*
|
|
206
274
|
* @summary Get the notifications for the current user.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notifications-api.js","sourceRoot":"","sources":["../../src/api/notifications-api.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;;;;;;;;;;;;;AAKH,kDAAgC;AAChC,yDAAyD;AACzD,aAAa;AACb,sCAA6N;AAC7N,aAAa;AACb,kCAAsH;
|
|
1
|
+
{"version":3,"file":"notifications-api.js","sourceRoot":"","sources":["../../src/api/notifications-api.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital.ChatApi
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface AssigneeModel
|
|
16
|
+
*/
|
|
17
|
+
export interface AssigneeModel {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof AssigneeModel
|
|
22
|
+
*/
|
|
23
|
+
'userId'?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof AssigneeModel
|
|
28
|
+
*/
|
|
29
|
+
'userName'?: string | null;
|
|
30
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital.ChatApi
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
//# sourceMappingURL=assignee-model.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"assignee-model.js","sourceRoot":"","sources":["../../src/models/assignee-model.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital.ChatApi
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ChatNotificationPagedListMetaData
|
|
16
|
+
*/
|
|
17
|
+
export interface ChatNotificationPagedListMetaData {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof ChatNotificationPagedListMetaData
|
|
22
|
+
*/
|
|
23
|
+
'pageCount'?: number;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof ChatNotificationPagedListMetaData
|
|
28
|
+
*/
|
|
29
|
+
'totalItemCount'?: number;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof ChatNotificationPagedListMetaData
|
|
34
|
+
*/
|
|
35
|
+
'pageNumber'?: number;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ChatNotificationPagedListMetaData
|
|
40
|
+
*/
|
|
41
|
+
'pageSize'?: number;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {boolean}
|
|
45
|
+
* @memberof ChatNotificationPagedListMetaData
|
|
46
|
+
*/
|
|
47
|
+
'hasPreviousPage'?: boolean;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {boolean}
|
|
51
|
+
* @memberof ChatNotificationPagedListMetaData
|
|
52
|
+
*/
|
|
53
|
+
'hasNextPage'?: boolean;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {boolean}
|
|
57
|
+
* @memberof ChatNotificationPagedListMetaData
|
|
58
|
+
*/
|
|
59
|
+
'isFirstPage'?: boolean;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {boolean}
|
|
63
|
+
* @memberof ChatNotificationPagedListMetaData
|
|
64
|
+
*/
|
|
65
|
+
'isLastPage'?: boolean;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {number}
|
|
69
|
+
* @memberof ChatNotificationPagedListMetaData
|
|
70
|
+
*/
|
|
71
|
+
'firstItemOnPage'?: number;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {number}
|
|
75
|
+
* @memberof ChatNotificationPagedListMetaData
|
|
76
|
+
*/
|
|
77
|
+
'lastItemOnPage'?: number;
|
|
78
|
+
/**
|
|
79
|
+
*
|
|
80
|
+
* @type {number}
|
|
81
|
+
* @memberof ChatNotificationPagedListMetaData
|
|
82
|
+
*/
|
|
83
|
+
'unreadCount'?: number;
|
|
84
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital.ChatApi
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
//# sourceMappingURL=chat-notification-paged-list-meta-data.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chat-notification-paged-list-meta-data.js","sourceRoot":"","sources":["../../src/models/chat-notification-paged-list-meta-data.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { AssigneeModel } from './assignee-model';
|
|
12
13
|
import type { NotificationCode } from './notification-code';
|
|
13
14
|
import type { PlatformTypes } from './platform-types';
|
|
14
15
|
/**
|
|
@@ -61,10 +62,10 @@ export interface ChatNotification {
|
|
|
61
62
|
'platformType'?: PlatformTypes;
|
|
62
63
|
/**
|
|
63
64
|
*
|
|
64
|
-
* @type {
|
|
65
|
+
* @type {AssigneeModel}
|
|
65
66
|
* @memberof ChatNotification
|
|
66
67
|
*/
|
|
67
|
-
'
|
|
68
|
+
'assignee'?: AssigneeModel;
|
|
68
69
|
/**
|
|
69
70
|
*
|
|
70
71
|
* @type {string}
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { ChatNotification } from './chat-notification';
|
|
13
|
-
import type {
|
|
13
|
+
import type { ChatNotificationPagedListMetaData } from './chat-notification-paged-list-meta-data';
|
|
14
14
|
/**
|
|
15
15
|
*
|
|
16
16
|
* @export
|
|
@@ -25,8 +25,8 @@ export interface ChatNotifications {
|
|
|
25
25
|
'items'?: Array<ChatNotification> | null;
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
|
-
* @type {
|
|
28
|
+
* @type {ChatNotificationPagedListMetaData}
|
|
29
29
|
* @memberof ChatNotifications
|
|
30
30
|
*/
|
|
31
|
-
'metaData'?:
|
|
31
|
+
'metaData'?: ChatNotificationPagedListMetaData;
|
|
32
32
|
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital.ChatApi
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CheckChatNotificationsCommand
|
|
16
|
+
*/
|
|
17
|
+
export interface CheckChatNotificationsCommand {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {Array<string>}
|
|
21
|
+
* @memberof CheckChatNotificationsCommand
|
|
22
|
+
*/
|
|
23
|
+
'notificationIds'?: Array<string> | null;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {boolean}
|
|
27
|
+
* @memberof CheckChatNotificationsCommand
|
|
28
|
+
*/
|
|
29
|
+
'allRead'?: boolean;
|
|
30
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital.ChatApi
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
//# sourceMappingURL=check-chat-notifications-command.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"check-chat-notifications-command.js","sourceRoot":"","sources":["../../src/models/check-chat-notifications-command.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
export * from './api-v1-chat-migrations-post401-response';
|
|
2
2
|
export * from './api-v1-chat-migrations-post401-response-errors';
|
|
3
|
+
export * from './assignee-model';
|
|
3
4
|
export * from './author-roles';
|
|
4
5
|
export * from './chat-message';
|
|
5
6
|
export * from './chat-messages-model';
|
|
6
7
|
export * from './chat-notification';
|
|
8
|
+
export * from './chat-notification-paged-list-meta-data';
|
|
7
9
|
export * from './chat-notifications';
|
|
8
10
|
export * from './chat-participant';
|
|
9
11
|
export * from './chat-send-flow-message-command';
|
|
@@ -12,6 +14,7 @@ export * from './chat-send-template-message-command';
|
|
|
12
14
|
export * from './chat-session-model';
|
|
13
15
|
export * from './chat-session-status';
|
|
14
16
|
export * from './chat-sessions-model';
|
|
17
|
+
export * from './check-chat-notifications-command';
|
|
15
18
|
export * from './create-chat-session-command';
|
|
16
19
|
export * from './create-intake-form-command';
|
|
17
20
|
export * from './dynamic-template-message';
|
package/dist/models/index.js
CHANGED
|
@@ -16,10 +16,12 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./api-v1-chat-migrations-post401-response"), exports);
|
|
18
18
|
__exportStar(require("./api-v1-chat-migrations-post401-response-errors"), exports);
|
|
19
|
+
__exportStar(require("./assignee-model"), exports);
|
|
19
20
|
__exportStar(require("./author-roles"), exports);
|
|
20
21
|
__exportStar(require("./chat-message"), exports);
|
|
21
22
|
__exportStar(require("./chat-messages-model"), exports);
|
|
22
23
|
__exportStar(require("./chat-notification"), exports);
|
|
24
|
+
__exportStar(require("./chat-notification-paged-list-meta-data"), exports);
|
|
23
25
|
__exportStar(require("./chat-notifications"), exports);
|
|
24
26
|
__exportStar(require("./chat-participant"), exports);
|
|
25
27
|
__exportStar(require("./chat-send-flow-message-command"), exports);
|
|
@@ -28,6 +30,7 @@ __exportStar(require("./chat-send-template-message-command"), exports);
|
|
|
28
30
|
__exportStar(require("./chat-session-model"), exports);
|
|
29
31
|
__exportStar(require("./chat-session-status"), exports);
|
|
30
32
|
__exportStar(require("./chat-sessions-model"), exports);
|
|
33
|
+
__exportStar(require("./check-chat-notifications-command"), exports);
|
|
31
34
|
__exportStar(require("./create-chat-session-command"), exports);
|
|
32
35
|
__exportStar(require("./create-intake-form-command"), exports);
|
|
33
36
|
__exportStar(require("./dynamic-template-message"), exports);
|
package/dist/models/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4EAA0D;AAC1D,mFAAiE;AACjE,iDAA+B;AAC/B,iDAA+B;AAC/B,wDAAsC;AACtC,sDAAoC;AACpC,uDAAqC;AACrC,qDAAmC;AACnC,mEAAiD;AACjD,iFAA+D;AAC/D,uEAAqD;AACrD,uDAAqC;AACrC,wDAAsC;AACtC,wDAAsC;AACtC,gEAA8C;AAC9C,+DAA6C;AAC7C,6DAA2C;AAC3C,gDAA8B;AAC9B,qDAAmC;AACnC,uDAAqC;AACrC,qDAAmC;AACnC,uDAAqC;AACrC,uDAAqC;AACrC,qEAAmD;AACnD,yDAAuC;AACvC,6DAA2C;AAC3C,8DAA4C;AAC5C,gDAA8B;AAC9B,4DAA0C;AAC1C,iDAA+B;AAC/B,sDAAoC;AACpC,yDAAuC;AACvC,8DAA4C;AAC5C,sDAAoC;AACpC,mDAAiC;AACjC,6DAA2C;AAC3C,0EAAwD;AACxD,wEAAsD;AACtD,4CAA0B;AAC1B,8DAA4C;AAC5C,uDAAqC;AACrC,iEAA+C;AAC/C,gEAA8C;AAC9C,iEAA+C;AAC/C,6DAA2C;AAC3C,2DAAyC;AACzC,6DAA2C;AAC3C,6DAA2C;AAC3C,wDAAsC;AACtC,4DAA0C;AAC1C,uDAAqC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4EAA0D;AAC1D,mFAAiE;AACjE,mDAAiC;AACjC,iDAA+B;AAC/B,iDAA+B;AAC/B,wDAAsC;AACtC,sDAAoC;AACpC,2EAAyD;AACzD,uDAAqC;AACrC,qDAAmC;AACnC,mEAAiD;AACjD,iFAA+D;AAC/D,uEAAqD;AACrD,uDAAqC;AACrC,wDAAsC;AACtC,wDAAsC;AACtC,qEAAmD;AACnD,gEAA8C;AAC9C,+DAA6C;AAC7C,6DAA2C;AAC3C,gDAA8B;AAC9B,qDAAmC;AACnC,uDAAqC;AACrC,qDAAmC;AACnC,uDAAqC;AACrC,uDAAqC;AACrC,qEAAmD;AACnD,yDAAuC;AACvC,6DAA2C;AAC3C,8DAA4C;AAC5C,gDAA8B;AAC9B,4DAA0C;AAC1C,iDAA+B;AAC/B,sDAAoC;AACpC,yDAAuC;AACvC,8DAA4C;AAC5C,sDAAoC;AACpC,mDAAiC;AACjC,6DAA2C;AAC3C,0EAAwD;AACxD,wEAAsD;AACtD,4CAA0B;AAC1B,8DAA4C;AAC5C,uDAAqC;AACrC,iEAA+C;AAC/C,gEAA8C;AAC9C,iEAA+C;AAC/C,6DAA2C;AAC3C,2DAAyC;AACzC,6DAA2C;AAC3C,6DAA2C;AAC3C,wDAAsC;AACtC,4DAA0C;AAC1C,uDAAqC"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ch-chat-api-typescript-axios",
|
|
3
3
|
"description": "An OpenAPI generator tool for the CH Chat API, designed to simplify API client generation and streamline integration workflows.",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.83.1",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"scripts": {
|