@theokit/sdk-pty 0.3.4 → 0.3.6-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.
Files changed (2) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # @theokit/sdk-pty
2
2
 
3
+ ## 0.3.6-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [01630ec]
8
+ - @theokit/sdk@4.63.4-next.0
9
+
10
+ ## 0.3.5
11
+
12
+ ### Patch Changes
13
+
14
+ - e8b8930: Raises the `@theokit/sdk` peer floor from `>=4.4.1` to `>=4.54.0`.
15
+
16
+ This range **passed** the CI leg that builds each package against its own floor, and that is what
17
+ makes it worth recording. `sdk-pty`'s build does not typecheck the SDK's declarations, so a broken
18
+ `.d.ts` never reaches its compiler. A consumer's does.
19
+
20
+ Measured across the 4.x line with `skipLibCheck: false` and `@types/node` + `zod` installed —
21
+ the environment a real consumer has:
22
+
23
+ | version | errors inside the SDK's own `.d.ts` |
24
+ | ---------- | ----------------------------------- |
25
+ | 4.4.1 | 6 |
26
+ | 4.19.3 | 7 |
27
+ | 4.53.1 | 7 |
28
+ | **4.54.0** | **0** |
29
+
30
+ 4.54.0 is the first version a TypeScript consumer can compile against at all (#335 / #345 / #348).
31
+ The old floor was true about this repository's build and false about the consumers the field exists
32
+ to inform — and where those disagree, the consumer's answer is the one a peer range is making a
33
+ claim about.
34
+
3
35
  ## 0.3.4
4
36
 
5
37
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theokit/sdk-pty",
3
- "version": "0.3.4",
3
+ "version": "0.3.6-next.0",
4
4
  "description": "Local interactive-shell backend for @theokit/sdk — a node-pty implementation of InteractiveBackend. Opt-in, terminal-surface only; node-pty is optional so install never fails on a native build.",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/usetheokit/theokit-sdk#readme",
@@ -42,13 +42,13 @@
42
42
  "access": "public"
43
43
  },
44
44
  "peerDependencies": {
45
- "@theokit/sdk": ">=4.4.1"
45
+ "@theokit/sdk": ">=4.63.4-next.0"
46
46
  },
47
47
  "devDependencies": {
48
48
  "tsup": "^8.3.5",
49
49
  "typescript": "^5.7.2",
50
50
  "vitest": "^4.1.8",
51
- "@theokit/sdk": "4.54.0"
51
+ "@theokit/sdk": "4.63.4-next.0"
52
52
  },
53
53
  "optionalDependencies": {
54
54
  "node-pty": "^1.1.0"