@copilotkit/shared 0.36.0-mme-pre.4 → 0.36.0
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/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +3 -20
- package/package.json +3 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @copilotkit/shared@0.36.0
|
|
2
|
+
> @copilotkit/shared@0.36.0 build /home/runner/work/CopilotKit/CopilotKit/CopilotKit/packages/shared
|
|
3
3
|
> tsup --clean
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts, src/constants/copilot-protocol.ts, src/constants/index.ts, src/types/action.ts, src/types/annotated-function.ts, src/types/copilot-cloud-config.ts, src/types/index.ts, src/types/openai-assistant.ts, src/utils/annotated-function.ts, src/utils/decode-chat-completion-as-text.ts, src/utils/decode-chat-completion.ts, src/utils/index.ts, src/utils/parse-chat-completion.ts, src/utils/utils.test.ts, src/utils/utils.ts
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
[32mCJS[39m [1mdist/utils/parse-chat-completion.js.map [22m[32m4.17 KB[39m
|
|
41
41
|
[32mCJS[39m [1mdist/utils/utils.test.js.map [22m[32m354.00 B[39m
|
|
42
42
|
[32mCJS[39m [1mdist/utils/utils.js.map [22m[32m12.09 KB[39m
|
|
43
|
-
[32mCJS[39m ⚡️ Build success in
|
|
43
|
+
[32mCJS[39m ⚡️ Build success in 59ms
|
|
44
44
|
[32mESM[39m [1mdist/utils/annotated-function.mjs [22m[32m314.00 B[39m
|
|
45
45
|
[32mESM[39m [1mdist/utils/decode-chat-completion-as-text.mjs [22m[32m170.00 B[39m
|
|
46
46
|
[32mESM[39m [1mdist/utils/decode-chat-completion.mjs [22m[32m150.00 B[39m
|
|
@@ -97,9 +97,9 @@
|
|
|
97
97
|
[32mESM[39m [1mdist/chunk-MSUB6DGR.mjs.map [22m[32m71.00 B[39m
|
|
98
98
|
[32mESM[39m [1mdist/types/openai-assistant.mjs.map [22m[32m71.00 B[39m
|
|
99
99
|
[32mESM[39m [1mdist/chunk-IAFBVORQ.mjs.map [22m[32m71.00 B[39m
|
|
100
|
-
[32mESM[39m ⚡️ Build success in
|
|
100
|
+
[32mESM[39m ⚡️ Build success in 62ms
|
|
101
101
|
[34mDTS[39m Build start
|
|
102
|
-
[32mDTS[39m ⚡️ Build success in
|
|
102
|
+
[32mDTS[39m ⚡️ Build success in 3142ms
|
|
103
103
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m1.47 KB[39m
|
|
104
104
|
[32mDTS[39m [1mdist/types/openai-assistant.d.ts [22m[32m2.79 KB[39m
|
|
105
105
|
[32mDTS[39m [1mdist/types/annotated-function.d.ts [22m[32m766.00 B[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,28 +1,11 @@
|
|
|
1
1
|
# @copilotkit/shared
|
|
2
2
|
|
|
3
|
-
## 0.36.0
|
|
3
|
+
## 0.36.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
|
|
9
|
-
## 0.36.0-mme-pre.3
|
|
10
|
-
|
|
11
|
-
### Minor Changes
|
|
12
|
-
|
|
13
|
-
- Fix textarea autofocus
|
|
14
|
-
|
|
15
|
-
## 0.36.0-mme-pre.2
|
|
16
|
-
|
|
17
|
-
### Minor Changes
|
|
18
|
-
|
|
19
|
-
- Fix sidebar layout
|
|
20
|
-
|
|
21
|
-
## 0.36.0-mme-pre.1
|
|
22
|
-
|
|
23
|
-
### Minor Changes
|
|
24
|
-
|
|
25
|
-
- Pre: CopilotChat, useCopilotChatSuggestions
|
|
7
|
+
- 8baa862: Add push to talk prototype
|
|
8
|
+
- chat suggestions, standalone chat component, gemini adapter, push to talk
|
|
26
9
|
|
|
27
10
|
## 0.36.0-mme-push-to-talk.0
|
|
28
11
|
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.36.0
|
|
7
|
+
"version": "0.36.0",
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"main": "./dist/index.js",
|
|
10
10
|
"module": "./dist/index.mjs",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"ts-jest": "^29.1.1",
|
|
26
26
|
"tsup": "^6.7.0",
|
|
27
27
|
"typescript": "^5.2.3",
|
|
28
|
-
"eslint-config-custom": "0.11.0
|
|
29
|
-
"tsconfig": "0.15.0
|
|
28
|
+
"eslint-config-custom": "0.11.0",
|
|
29
|
+
"tsconfig": "0.15.0"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {},
|
|
32
32
|
"scripts": {
|