@extrovert.dev/sdk 0.1.0-pre.3 → 0.1.0-pre.4

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/dist/index.d.cts CHANGED
@@ -6,7 +6,7 @@
6
6
  * on 429/5xx, honors `Retry-After`, and surfaces every failure as a typed {@link ApiError}.
7
7
  */
8
8
  /** The library version, surfaced in the User-Agent. Kept in sync with package.json by build. */
9
- declare const SDK_VERSION = "0.1.0-pre.3";
9
+ declare const SDK_VERSION = "0.1.0-pre.4";
10
10
  interface RetryOptions {
11
11
  /** Max retry attempts for idempotent requests on 429/5xx/network errors. Default 2. */
12
12
  maxRetries: number;
@@ -3674,7 +3674,7 @@ declare function signWebhook(secret: string, body: string, timestampSeconds: num
3674
3674
  *
3675
3675
  * ## Provisional, pre-1.0 (0.x)
3676
3676
  *
3677
- * {@link CONTRACT_VERSION} is **`0.1.0-pre.3`** — a deliberately **provisional**, pre-1.0
3677
+ * {@link CONTRACT_VERSION} is **`0.1.0-pre.4`** — a deliberately **provisional**, pre-1.0
3678
3678
  * contract. It is open and documented, but it MAY still evolve before 1.0: there
3679
3679
  * are no external users yet, and the **D20 shared-pool auto-send governor** is a
3680
3680
  * hard prerequisite before onboarding external users. Pin the version; expect
@@ -3731,12 +3731,12 @@ interface DiffJson {
3731
3731
  /**
3732
3732
  * The published version of the Extrovert Review-Loop open contract (D14).
3733
3733
  *
3734
- * **`0.1.0-pre.3` — PROVISIONAL, pre-1.0.** Versioned *with the SDK* (this package's
3734
+ * **`0.1.0-pre.4` — PROVISIONAL, pre-1.0.** Versioned *with the SDK* (this package's
3735
3735
  * `package.json` version) and aligned to the openapi `info.version`. Open and
3736
3736
  * documented, but MAY still evolve before 1.0 (no external users yet; the D20
3737
3737
  * shared-pool governor is required before external users). Pin it.
3738
3738
  */
3739
- declare const CONTRACT_VERSION: "0.1.0-pre.3";
3739
+ declare const CONTRACT_VERSION: "0.1.0-pre.4";
3740
3740
  /** The stability posture of a published contract version. */
3741
3741
  type ContractStability = "provisional" | "stable";
3742
3742
  /**
package/dist/index.d.ts CHANGED
@@ -6,7 +6,7 @@
6
6
  * on 429/5xx, honors `Retry-After`, and surfaces every failure as a typed {@link ApiError}.
7
7
  */
8
8
  /** The library version, surfaced in the User-Agent. Kept in sync with package.json by build. */
9
- declare const SDK_VERSION = "0.1.0-pre.3";
9
+ declare const SDK_VERSION = "0.1.0-pre.4";
10
10
  interface RetryOptions {
11
11
  /** Max retry attempts for idempotent requests on 429/5xx/network errors. Default 2. */
12
12
  maxRetries: number;
@@ -3674,7 +3674,7 @@ declare function signWebhook(secret: string, body: string, timestampSeconds: num
3674
3674
  *
3675
3675
  * ## Provisional, pre-1.0 (0.x)
3676
3676
  *
3677
- * {@link CONTRACT_VERSION} is **`0.1.0-pre.3`** — a deliberately **provisional**, pre-1.0
3677
+ * {@link CONTRACT_VERSION} is **`0.1.0-pre.4`** — a deliberately **provisional**, pre-1.0
3678
3678
  * contract. It is open and documented, but it MAY still evolve before 1.0: there
3679
3679
  * are no external users yet, and the **D20 shared-pool auto-send governor** is a
3680
3680
  * hard prerequisite before onboarding external users. Pin the version; expect
@@ -3731,12 +3731,12 @@ interface DiffJson {
3731
3731
  /**
3732
3732
  * The published version of the Extrovert Review-Loop open contract (D14).
3733
3733
  *
3734
- * **`0.1.0-pre.3` — PROVISIONAL, pre-1.0.** Versioned *with the SDK* (this package's
3734
+ * **`0.1.0-pre.4` — PROVISIONAL, pre-1.0.** Versioned *with the SDK* (this package's
3735
3735
  * `package.json` version) and aligned to the openapi `info.version`. Open and
3736
3736
  * documented, but MAY still evolve before 1.0 (no external users yet; the D20
3737
3737
  * shared-pool governor is required before external users). Pin it.
3738
3738
  */
3739
- declare const CONTRACT_VERSION: "0.1.0-pre.3";
3739
+ declare const CONTRACT_VERSION: "0.1.0-pre.4";
3740
3740
  /** The stability posture of a published contract version. */
3741
3741
  type ContractStability = "provisional" | "stable";
3742
3742
  /**
package/dist/index.js CHANGED
@@ -266,7 +266,7 @@ var CURRENT_API_VERSION = "2026-06-23";
266
266
  var API_VERSION_HEADER = "Extrovert-Version";
267
267
 
268
268
  // src/http.ts
269
- var SDK_VERSION = "0.1.0-pre.3";
269
+ var SDK_VERSION = "0.1.0-pre.4";
270
270
  function buildUrl(baseUrl, path, query) {
271
271
  const base = baseUrl.endsWith("/") ? baseUrl.slice(0, -1) : baseUrl;
272
272
  const rel = path.startsWith("/") ? path : `/${path}`;
@@ -5148,7 +5148,7 @@ async function signWebhook(secret, body, timestampSeconds) {
5148
5148
  }
5149
5149
 
5150
5150
  // src/contract.ts
5151
- var CONTRACT_VERSION = "0.1.0-pre.3";
5151
+ var CONTRACT_VERSION = "0.1.0-pre.4";
5152
5152
  var CONTRACT_MANIFEST = {
5153
5153
  name: "extrovert.review-loop",
5154
5154
  version: CONTRACT_VERSION,