@coze/realtime-api 1.0.4 → 1.0.5
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/README.md +3 -1
- package/README.zh-CN.md +3 -1
- package/dist/cjs/index.cjs +2155 -1355
- package/dist/cjs/index.cjs.LICENSE.txt +22 -0
- package/dist/esm/index.js +2157 -1357
- package/dist/esm/index.js.LICENSE.txt +22 -0
- package/dist/types/client.d.ts +2 -1
- package/dist/types/index.d.ts +11 -1
- package/dist/umd/index.js +2155 -1355
- package/dist/umd/index.js.LICENSE.txt +22 -0
- package/package.json +18 -6
@@ -1 +1,23 @@
|
|
1
|
+
/*!
|
2
|
+
* Reconnecting WebSocket
|
3
|
+
* by Pedro Ladaria <pedro.ladaria@gmail.com>
|
4
|
+
* https://github.com/pladaria/reconnecting-websocket
|
5
|
+
* License MIT
|
6
|
+
*/
|
7
|
+
|
8
|
+
/*! *****************************************************************************
|
9
|
+
Copyright (c) Microsoft Corporation. All rights reserved.
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
11
|
+
this file except in compliance with the License. You may obtain a copy of the
|
12
|
+
License at http://www.apache.org/licenses/LICENSE-2.0
|
13
|
+
|
14
|
+
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
15
|
+
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
16
|
+
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
17
|
+
MERCHANTABLITY OR NON-INFRINGEMENT.
|
18
|
+
|
19
|
+
See the Apache Version 2.0 License for specific language governing permissions
|
20
|
+
and limitations under the License.
|
21
|
+
***************************************************************************** */
|
22
|
+
|
1
23
|
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|