ch-chat-api-typescript-axios 1.3.20 → 1.3.21
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.
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
* @enum {string}
|
|
16
16
|
*/
|
|
17
17
|
export declare const ChatSessionStatus: {
|
|
18
|
-
readonly Deactivated: "
|
|
19
|
-
readonly Activated: "
|
|
20
|
-
readonly Expired: "
|
|
21
|
-
readonly RequireAgentResponse: "
|
|
18
|
+
readonly Deactivated: "deactivated";
|
|
19
|
+
readonly Activated: "activated";
|
|
20
|
+
readonly Expired: "expired";
|
|
21
|
+
readonly RequireAgentResponse: "requireAgentResponse";
|
|
22
22
|
};
|
|
23
23
|
export type ChatSessionStatus = typeof ChatSessionStatus[keyof typeof ChatSessionStatus];
|
|
@@ -20,9 +20,9 @@ exports.ChatSessionStatus = void 0;
|
|
|
20
20
|
* @enum {string}
|
|
21
21
|
*/
|
|
22
22
|
exports.ChatSessionStatus = {
|
|
23
|
-
Deactivated: '
|
|
24
|
-
Activated: '
|
|
25
|
-
Expired: '
|
|
26
|
-
RequireAgentResponse: '
|
|
23
|
+
Deactivated: 'deactivated',
|
|
24
|
+
Activated: 'activated',
|
|
25
|
+
Expired: 'expired',
|
|
26
|
+
RequireAgentResponse: 'requireAgentResponse'
|
|
27
27
|
};
|
|
28
28
|
//# sourceMappingURL=chat-session-status.js.map
|
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": "1.3.
|
|
4
|
+
"version": "1.3.21",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"scripts": {
|