@copilotkit/runtime-client-gql 1.55.0-next.9 → 1.55.1-next.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/CHANGELOG.md CHANGED
@@ -1,10 +1,24 @@
1
1
  # @copilotkit/runtime-client-gql
2
2
 
3
- ## 1.55.0-next.9
3
+ ## 1.55.1-next.0
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - @copilotkit/shared@1.55.0-next.9
7
+ - @copilotkit/shared@1.55.1-next.0
8
+
9
+ ## 1.55.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 1ceb963: refactor: consolidate V1/V2 packages into flat @copilotkit/\* structure
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [1ceb963]
18
+ - Updated dependencies [52a9322]
19
+ - Updated dependencies [5289791]
20
+ - Updated dependencies [434ccd8]
21
+ - @copilotkit/shared@1.55.0
8
22
 
9
23
  ## 1.55.0-next.8
10
24
 
package/dist/index.umd.js CHANGED
@@ -34,7 +34,7 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
34
34
  untruncate_json = __toESM(untruncate_json);
35
35
 
36
36
  //#region package.json
37
- var version = "1.55.0-next.9";
37
+ var version = "1.55.1-next.0";
38
38
 
39
39
  //#endregion
40
40
  //#region src/graphql/@generated/graphql.ts
package/dist/package.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  //#region package.json
3
- var version = "1.55.0-next.9";
3
+ var version = "1.55.1-next.0";
4
4
 
5
5
  //#endregion
6
6
  Object.defineProperty(exports, 'version', {
package/dist/package.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  //#region package.json
2
- var version = "1.55.0-next.9";
2
+ var version = "1.55.1-next.0";
3
3
 
4
4
  //#endregion
5
5
  export { version };
package/package.json CHANGED
@@ -1,18 +1,31 @@
1
1
  {
2
2
  "name": "@copilotkit/runtime-client-gql",
3
+ "version": "1.55.1-next.0",
3
4
  "private": false,
5
+ "keywords": [
6
+ "ai",
7
+ "assistant",
8
+ "automation",
9
+ "copilot",
10
+ "copilotkit",
11
+ "javascript",
12
+ "nextjs",
13
+ "nodejs",
14
+ "react",
15
+ "textarea"
16
+ ],
4
17
  "homepage": "https://github.com/CopilotKit/CopilotKit",
18
+ "license": "MIT",
5
19
  "repository": {
6
20
  "type": "git",
7
21
  "url": "https://github.com/CopilotKit/CopilotKit.git"
8
22
  },
9
- "publishConfig": {
10
- "access": "public"
11
- },
12
- "version": "1.55.0-next.9",
13
23
  "sideEffects": false,
14
24
  "main": "./dist/index.cjs",
15
25
  "module": "./dist/index.mjs",
26
+ "types": "./dist/index.d.cts",
27
+ "unpkg": "./dist/index.umd.js",
28
+ "jsdelivr": "./dist/index.umd.js",
16
29
  "exports": {
17
30
  ".": {
18
31
  "import": "./dist/index.mjs",
@@ -20,12 +33,14 @@
20
33
  },
21
34
  "./package.json": "./package.json"
22
35
  },
23
- "unpkg": "./dist/index.umd.js",
24
- "jsdelivr": "./dist/index.umd.js",
25
- "types": "./dist/index.d.cts",
26
- "license": "MIT",
27
- "peerDependencies": {
28
- "react": "^18 || ^19 || ^19.0.0-rc"
36
+ "publishConfig": {
37
+ "access": "public"
38
+ },
39
+ "dependencies": {
40
+ "@urql/core": "^5.0.3",
41
+ "untruncate-json": "^0.0.1",
42
+ "urql": "^4.1.0",
43
+ "@copilotkit/shared": "1.55.1-next.0"
29
44
  },
30
45
  "devDependencies": {
31
46
  "@graphql-codegen/cli": "^5.0.2",
@@ -46,29 +61,14 @@
46
61
  "typescript": "^5.4.5",
47
62
  "vitest": "^3.2.4"
48
63
  },
49
- "dependencies": {
50
- "@urql/core": "^5.0.3",
51
- "untruncate-json": "^0.0.1",
52
- "urql": "^4.1.0",
53
- "@copilotkit/shared": "1.55.0-next.9"
64
+ "peerDependencies": {
65
+ "react": "^18 || ^19 || ^19.0.0-rc"
54
66
  },
55
- "keywords": [
56
- "copilotkit",
57
- "copilot",
58
- "react",
59
- "nextjs",
60
- "nodejs",
61
- "ai",
62
- "assistant",
63
- "javascript",
64
- "automation",
65
- "textarea"
66
- ],
67
67
  "scripts": {
68
68
  "build": "pnpm run graphql-codegen && tsdown",
69
69
  "dev": "concurrently \"pnpm run graphql-codegen:watch\" \"tsdown --watch\"",
70
- "test": "vitest run",
71
- "test:watch": "vitest",
70
+ "test": "pnpm run graphql-codegen && vitest run",
71
+ "test:watch": "pnpm run graphql-codegen && vitest",
72
72
  "check-types": "tsc --noEmit",
73
73
  "graphql-codegen": "graphql-codegen -c codegen.ts",
74
74
  "graphql-codegen:watch": "graphql-codegen -c codegen.ts --watch",