@sealant/sdk 0.19.1 → 0.20.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/dist/types.d.ts +9 -4
  2. package/package.json +2 -2
package/dist/types.d.ts CHANGED
@@ -792,15 +792,20 @@ export interface AccessTokensNamespace {
792
792
  /**
793
793
  * Connected-account selection for inference — the same reference shape as workspace creation,
794
794
  * minus GitHub (not a model provider). `true` means "my default account"; a string names one.
795
- * Only claude accounts are supported today; a codex selection is rejected until Codex inference
796
- * ships. SECURITY: only account references cross this surface never token material.
795
+ * Selecting both providers in one exchange is ambiguous and rejected; a profile-only selection
796
+ * prefers the profile's claude binding and falls back to its codex binding. SECURITY: only
797
+ * account references cross this surface — never token material.
797
798
  */
798
799
  export interface InferenceCredentialsOptions {
799
- /** Profile id whose claude binding applies when `claude` is not set explicitly. */
800
+ /** Profile id whose claude (else codex) binding applies when neither is set explicitly. */
800
801
  readonly profile?: string;
801
802
  /** `true` for the caller's default claude account, or a string naming a specific one. */
802
803
  readonly claude?: boolean | string;
803
- /** Reserved — rejected until Codex inference ships. */
804
+ /**
805
+ * `true` for the caller's default codex account, or a string naming a specific one. Codex
806
+ * exchanges are tool-less today: caller-defined `tools` are rejected, and the exchange settles
807
+ * in a single turn.
808
+ */
804
809
  readonly codex?: boolean | string;
805
810
  }
806
811
  /** A caller-defined tool the model may call. `inputSchema` is a JSON Schema object, verbatim. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sealant/sdk",
3
- "version": "0.19.1",
3
+ "version": "0.20.0",
4
4
  "description": "The fluent public SDK for Sealant — create a workspace, run a harness, replay the record.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -26,7 +26,7 @@
26
26
  "access": "public"
27
27
  },
28
28
  "dependencies": {
29
- "@sealant/api-contracts": "^0.19.1"
29
+ "@sealant/api-contracts": "^0.20.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@effect/vitest": "4.0.0-beta.85",