@compose-market/sdk 0.6.94 → 0.6.96

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.
@@ -6,7 +6,7 @@ info:
6
6
  Step 1 dials blind, step 2 retries with a Permit2 signature against the
7
7
  server's `upto` quote, step 3 submits structured feedback. Authoritative
8
8
  metering decides the actual settled amount inside the envelope.
9
- version: 0.6.94
9
+ version: 0.6.96
10
10
  sourceDescriptions:
11
11
  - name: manowar
12
12
  url: ../specs/manowar.openapi.yaml
@@ -1,7 +1,7 @@
1
1
  arazzo: 1.0.1
2
2
  info:
3
3
  title: Compose Memory — agent-first contracts
4
- version: 0.6.94
4
+ version: 0.6.96
5
5
  summary: |
6
6
  You are an agent. You have memory. Three calls cover 99% of turns.
7
7
 
@@ -2,7 +2,7 @@ arazzo: 1.0.1
2
2
  info:
3
3
  title: Compose SDK Agent-First Workflows
4
4
  summary: E2E workflow contracts for the Compose SDK, inference, x402, and manowar loops.
5
- version: 0.6.94
5
+ version: 0.6.96
6
6
  sourceDescriptions:
7
7
  - name: x402
8
8
  url: ../specs/x402.openapi.yaml
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.6.96 — Native SDK parity guards and third-party web integration cleanup
4
+
5
+ ### Highlights
6
+
7
+ - Kept `sdk.inference` as explicit endpoint wrappers only: chat completions, responses, embeddings, images, audio speech/transcriptions, and videos.
8
+ - Added contract guards that prevent reintroducing `/external/*`, metrics, internal avatar/banner services, or fake `sdk.inference.plan/run` dispatcher methods.
9
+ - Preserved the existing published runtime/memory/manowar surface without expanding it in this pass.
10
+ - Updated first-party `web/` integration to use SDK catalog operation data and explicit SDK endpoint calls instead of the removed planner/runner path.
11
+ - Replaced raw Backpack and workflow stop calls in `web/` with existing typed SDK resources.
12
+
13
+ ### Tests
14
+
15
+ - `npx tsc --noEmit -p tsconfig.json --pretty false`
16
+ - `node --import tsx --test tests/sdk.unit.test.ts tests/sdk.streaming.test.ts tests/sdk.contract.test.ts tests/sdk.session-events.test.ts tests/sdk.events.test.ts tests/sdk.runtime-streams.test.ts` — 83 passing tests.
17
+ - Web third-party integrator checks pass after consuming the SDK from `web/`.
18
+
3
19
  ## 0.6.94 — Native SDK parity for x402 metering, local control, and directory APIs
4
20
 
5
21
  ### Highlights
package/dist/version.d.ts CHANGED
@@ -5,5 +5,5 @@
5
5
  * every build and every test by `scripts/sync-version.mjs`. The only place
6
6
  * to change the version is `package.json`.
7
7
  */
8
- export declare const SDK_VERSION: "0.6.94";
8
+ export declare const SDK_VERSION: "0.6.96";
9
9
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js CHANGED
@@ -5,5 +5,5 @@
5
5
  * every build and every test by `scripts/sync-version.mjs`. The only place
6
6
  * to change the version is `package.json`.
7
7
  */
8
- export const SDK_VERSION = "0.6.94";
8
+ export const SDK_VERSION = "0.6.96";
9
9
  //# sourceMappingURL=version.js.map
@@ -41,9 +41,9 @@ export type SDKOptions = {
41
41
  export declare function serverURLFromOptions(options: SDKOptions): URL | null;
42
42
  export declare const SDK_METADATA: {
43
43
  readonly language: "typescript";
44
- readonly openapiDocVersion: "0.6.94";
45
- readonly sdkVersion: "0.6.94";
44
+ readonly openapiDocVersion: "0.6.96";
45
+ readonly sdkVersion: "0.6.96";
46
46
  readonly genVersion: "2.884.4";
47
- readonly userAgent: "speakeasy-sdk/typescript 0.6.94 2.884.4 0.6.93 @compose-market/sdk";
47
+ readonly userAgent: "speakeasy-sdk/typescript 0.6.96 2.884.4 0.6.93 @compose-market/sdk";
48
48
  };
49
49
  //# sourceMappingURL=config.d.ts.map
@@ -29,9 +29,9 @@ export function serverURLFromOptions(options) {
29
29
  }
30
30
  export const SDK_METADATA = {
31
31
  language: "typescript",
32
- openapiDocVersion: "0.6.94",
33
- sdkVersion: "0.6.94",
32
+ openapiDocVersion: "0.6.96",
33
+ sdkVersion: "0.6.96",
34
34
  genVersion: "2.884.4",
35
- userAgent: "speakeasy-sdk/typescript 0.6.94 2.884.4 0.6.93 @compose-market/sdk",
35
+ userAgent: "speakeasy-sdk/typescript 0.6.96 2.884.4 0.6.93 @compose-market/sdk",
36
36
  };
37
37
  //# sourceMappingURL=config.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compose-market/sdk",
3
- "version": "0.6.94",
3
+ "version": "0.6.96",
4
4
  "author": "Compose.Market",
5
5
  "type": "module",
6
6
  "main": "./esm/index.js",
@@ -63,9 +63,9 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
63
63
 
64
64
  export const SDK_METADATA = {
65
65
  language: "typescript",
66
- openapiDocVersion: "0.6.94",
67
- sdkVersion: "0.6.94",
66
+ openapiDocVersion: "0.6.96",
67
+ sdkVersion: "0.6.96",
68
68
  genVersion: "2.884.4",
69
69
  userAgent:
70
- "speakeasy-sdk/typescript 0.6.94 2.884.4 0.6.93 @compose-market/sdk",
70
+ "speakeasy-sdk/typescript 0.6.96 2.884.4 0.6.93 @compose-market/sdk",
71
71
  } as const;
@@ -46,9 +46,9 @@ export type SDKOptions = {
46
46
  export declare function serverURLFromOptions(options: SDKOptions): URL | null;
47
47
  export declare const SDK_METADATA: {
48
48
  readonly language: "typescript";
49
- readonly openapiDocVersion: "0.6.94";
50
- readonly sdkVersion: "0.6.94";
49
+ readonly openapiDocVersion: "0.6.96";
50
+ readonly sdkVersion: "0.6.96";
51
51
  readonly genVersion: "2.884.4";
52
- readonly userAgent: "speakeasy-sdk/typescript 0.6.94 2.884.4 0.6.92 @compose-market/sdk";
52
+ readonly userAgent: "speakeasy-sdk/typescript 0.6.96 2.884.4 0.6.92 @compose-market/sdk";
53
53
  };
54
54
  //# sourceMappingURL=config.d.ts.map
@@ -34,9 +34,9 @@ export function serverURLFromOptions(options) {
34
34
  }
35
35
  export const SDK_METADATA = {
36
36
  language: "typescript",
37
- openapiDocVersion: "0.6.94",
38
- sdkVersion: "0.6.94",
37
+ openapiDocVersion: "0.6.96",
38
+ sdkVersion: "0.6.96",
39
39
  genVersion: "2.884.4",
40
- userAgent: "speakeasy-sdk/typescript 0.6.94 2.884.4 0.6.92 @compose-market/sdk",
40
+ userAgent: "speakeasy-sdk/typescript 0.6.96 2.884.4 0.6.92 @compose-market/sdk",
41
41
  };
42
42
  //# sourceMappingURL=config.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compose-market/sdk",
3
- "version": "0.6.94",
3
+ "version": "0.6.96",
4
4
  "author": "Compose.Market",
5
5
  "type": "module",
6
6
  "main": "./esm/index.js",
@@ -68,9 +68,9 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
68
68
 
69
69
  export const SDK_METADATA = {
70
70
  language: "typescript",
71
- openapiDocVersion: "0.6.94",
72
- sdkVersion: "0.6.94",
71
+ openapiDocVersion: "0.6.96",
72
+ sdkVersion: "0.6.96",
73
73
  genVersion: "2.884.4",
74
74
  userAgent:
75
- "speakeasy-sdk/typescript 0.6.94 2.884.4 0.6.92 @compose-market/sdk",
75
+ "speakeasy-sdk/typescript 0.6.96 2.884.4 0.6.92 @compose-market/sdk",
76
76
  } as const;
@@ -45,9 +45,9 @@ export type SDKOptions = {
45
45
  export declare function serverURLFromOptions(options: SDKOptions): URL | null;
46
46
  export declare const SDK_METADATA: {
47
47
  readonly language: "typescript";
48
- readonly openapiDocVersion: "0.6.94";
49
- readonly sdkVersion: "0.6.94";
48
+ readonly openapiDocVersion: "0.6.96";
49
+ readonly sdkVersion: "0.6.96";
50
50
  readonly genVersion: "2.881.17";
51
- readonly userAgent: "speakeasy-sdk/typescript 0.6.94 2.881.17 0.6.91 @compose-market/sdk";
51
+ readonly userAgent: "speakeasy-sdk/typescript 0.6.96 2.881.17 0.6.91 @compose-market/sdk";
52
52
  };
53
53
  //# sourceMappingURL=config.d.ts.map
@@ -34,9 +34,9 @@ export function serverURLFromOptions(options) {
34
34
  }
35
35
  export const SDK_METADATA = {
36
36
  language: "typescript",
37
- openapiDocVersion: "0.6.94",
38
- sdkVersion: "0.6.94",
37
+ openapiDocVersion: "0.6.96",
38
+ sdkVersion: "0.6.96",
39
39
  genVersion: "2.881.17",
40
- userAgent: "speakeasy-sdk/typescript 0.6.94 2.881.17 0.6.91 @compose-market/sdk",
40
+ userAgent: "speakeasy-sdk/typescript 0.6.96 2.881.17 0.6.91 @compose-market/sdk",
41
41
  };
42
42
  //# sourceMappingURL=config.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compose-market/sdk",
3
- "version": "0.6.94",
3
+ "version": "0.6.96",
4
4
  "author": "Compose.Market",
5
5
  "type": "module",
6
6
  "main": "./esm/index.js",
@@ -66,9 +66,9 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
66
66
 
67
67
  export const SDK_METADATA = {
68
68
  language: "typescript",
69
- openapiDocVersion: "0.6.94",
70
- sdkVersion: "0.6.94",
69
+ openapiDocVersion: "0.6.96",
70
+ sdkVersion: "0.6.96",
71
71
  genVersion: "2.881.17",
72
72
  userAgent:
73
- "speakeasy-sdk/typescript 0.6.94 2.881.17 0.6.91 @compose-market/sdk",
73
+ "speakeasy-sdk/typescript 0.6.96 2.881.17 0.6.91 @compose-market/sdk",
74
74
  } as const;
@@ -41,9 +41,9 @@ export type SDKOptions = {
41
41
  export declare function serverURLFromOptions(options: SDKOptions): URL | null;
42
42
  export declare const SDK_METADATA: {
43
43
  readonly language: "typescript";
44
- readonly openapiDocVersion: "0.6.94";
45
- readonly sdkVersion: "0.6.94";
44
+ readonly openapiDocVersion: "0.6.96";
45
+ readonly sdkVersion: "0.6.96";
46
46
  readonly genVersion: "2.884.4";
47
- readonly userAgent: "speakeasy-sdk/typescript 0.6.94 2.884.4 0.6.93 @compose-market/sdk";
47
+ readonly userAgent: "speakeasy-sdk/typescript 0.6.96 2.884.4 0.6.93 @compose-market/sdk";
48
48
  };
49
49
  //# sourceMappingURL=config.d.ts.map
@@ -29,9 +29,9 @@ export function serverURLFromOptions(options) {
29
29
  }
30
30
  export const SDK_METADATA = {
31
31
  language: "typescript",
32
- openapiDocVersion: "0.6.94",
33
- sdkVersion: "0.6.94",
32
+ openapiDocVersion: "0.6.96",
33
+ sdkVersion: "0.6.96",
34
34
  genVersion: "2.884.4",
35
- userAgent: "speakeasy-sdk/typescript 0.6.94 2.884.4 0.6.93 @compose-market/sdk",
35
+ userAgent: "speakeasy-sdk/typescript 0.6.96 2.884.4 0.6.93 @compose-market/sdk",
36
36
  };
37
37
  //# sourceMappingURL=config.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compose-market/sdk",
3
- "version": "0.6.94",
3
+ "version": "0.6.96",
4
4
  "author": "Compose.Market",
5
5
  "type": "module",
6
6
  "main": "./esm/index.js",
@@ -63,9 +63,9 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
63
63
 
64
64
  export const SDK_METADATA = {
65
65
  language: "typescript",
66
- openapiDocVersion: "0.6.94",
67
- sdkVersion: "0.6.94",
66
+ openapiDocVersion: "0.6.96",
67
+ sdkVersion: "0.6.96",
68
68
  genVersion: "2.884.4",
69
69
  userAgent:
70
- "speakeasy-sdk/typescript 0.6.94 2.884.4 0.6.93 @compose-market/sdk",
70
+ "speakeasy-sdk/typescript 0.6.96 2.884.4 0.6.93 @compose-market/sdk",
71
71
  } as const;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compose-market/sdk",
3
- "version": "0.6.94",
3
+ "version": "0.6.96",
4
4
  "description": "Official Compose.Market SDK: Compose Keys, x402 facilitator, multi-provider model catalog, native streaming inference with typed receipts, unified tool-call events, agent + workflow runtime streams, live session events, and wallet-scoped persistence.",
5
5
  "keywords": [
6
6
  "compose",
@@ -2,7 +2,7 @@
2
2
  openapi: 3.1.0
3
3
  info:
4
4
  title: Compose Inference
5
- version: 0.6.94
5
+ version: 0.6.96
6
6
  summary: Model discovery, inference, and realtime inference stream contracts.
7
7
  description: |
8
8
  Canonical contract for Compose model discovery, serverless inference,
@@ -2,7 +2,7 @@
2
2
  openapi: 3.1.0
3
3
  info:
4
4
  title: Compose Manowar
5
- version: 0.6.94
5
+ version: 0.6.96
6
6
  summary: Agent, workflow, workspace, connector, MCP, and mesh execution contracts.
7
7
  description: |
8
8
  Canonical contract for Compose manowar loops: agents, workflows, workspace
@@ -2,7 +2,7 @@
2
2
  openapi: 3.1.0
3
3
  info:
4
4
  title: Compose Memory
5
- version: 0.6.94
5
+ version: 0.6.96
6
6
  summary: Agent-first memory loop and low-level memory primitives.
7
7
  description: |
8
8
  Standalone Compose Memory contract. This SDK surface is intentionally
@@ -2,7 +2,7 @@
2
2
  openapi: 3.1.0
3
3
  info:
4
4
  title: Compose x402
5
- version: 0.6.94
5
+ version: 0.6.96
6
6
  summary: x402 settlement, Compose Keys, sessions, payments, and facilitator contracts.
7
7
  description: |
8
8
  Canonical contract for Compose x402 settlement, reusable Compose Keys,