@curviate/cli 0.24.1 → 0.24.2

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 +30 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -8,6 +8,36 @@ a new command or flag is a minor; a breaking command/flag/exit-code change is a
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [0.24.2] - 2026-08-27
12
+
13
+ ### Changed
14
+
15
+ - **`@curviate/sdk` pin raised from `0.24.2` to `0.24.3`** (exact, per the
16
+ compiler-coupling policy that `check:sdk-pin` enforces). The SDK's
17
+ corrected Sales Navigator response types now flow through to CLI users:
18
+ - `founded_on` is a `number`, was an open object.
19
+ - `websites` and `addresses` are `string[]`, were arrays of open objects.
20
+ - `contact_info.phones` and `contact_info.emails` are `string[]`, were
21
+ arrays of open objects.
22
+ - `specialties` is a `string[]` on `sales-navigator/search/companies`, was
23
+ `unknown`.
24
+ - `job_title` and `role` are required (non-optional) on `work_experience`
25
+ and `volunteering`.
26
+ - Nested `school`, `company` and `organization` references on `education`,
27
+ `work_experience` and `volunteering` are now declared, each with a
28
+ nullable `id`.
29
+
30
+ These are corrections, not behaviour changes. The wire has always sent
31
+ these shapes; the previous declarations described them wrongly. Upgrading
32
+ may turn a consumer's `tsc` red where it was green against a declaration
33
+ that did not match reality. That red is a pre-existing bug becoming
34
+ visible, not a new one. The CLI's own runtime behaviour and command surface
35
+ are unchanged in this release.
36
+
37
+ - The vendored OpenAPI test fixture (`test/fixtures/openapi.json`) was
38
+ re-copied from the SDK at `0.24.3`, with `test/fixtures/VENDORED_FROM.json`
39
+ updated to match, as `check:fixture-pin` requires.
40
+
11
41
  ## [0.24.1] - 2026-08-25
12
42
 
13
43
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@curviate/cli",
3
- "version": "0.24.1",
3
+ "version": "0.24.2",
4
4
  "private": false,
5
5
  "description": "Official command-line interface for the Curviate API.",
6
6
  "license": "MIT",
@@ -45,7 +45,7 @@
45
45
  "clean": "rm -rf dist *.tsbuildinfo"
46
46
  },
47
47
  "dependencies": {
48
- "@curviate/sdk": "0.24.2",
48
+ "@curviate/sdk": "0.24.3",
49
49
  "citty": "^0.1.6",
50
50
  "open": "^10.1.0"
51
51
  },