@extrovert.dev/sdk 0.1.0-pre.17 → 0.1.0-pre.18

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
@@ -2923,7 +2923,7 @@ declare class Administration {
2923
2923
  * on 429/5xx, honors `Retry-After`, and surfaces every failure as a typed {@link ApiError}.
2924
2924
  */
2925
2925
  /** The library version, surfaced in the User-Agent. Kept in sync with package.json by build. */
2926
- declare const SDK_VERSION = "0.1.0-pre.16";
2926
+ declare const SDK_VERSION = "0.1.0-pre.18";
2927
2927
  interface RetryOptions {
2928
2928
  /** Max retry attempts for idempotent requests on 429/5xx/network errors. Default 2. */
2929
2929
  maxRetries: number;
@@ -6991,7 +6991,7 @@ declare function signWebhook(secret: string, body: string, timestampSeconds: num
6991
6991
  *
6992
6992
  * ## Provisional, pre-1.0 (0.x)
6993
6993
  *
6994
- * {@link CONTRACT_VERSION} is **`0.1.0-pre.17`** - a deliberately **provisional**, pre-1.0
6994
+ * {@link CONTRACT_VERSION} is **`0.1.0-pre.18`** - a deliberately **provisional**, pre-1.0
6995
6995
  * contract. It is open and documented, but it MAY still evolve before 1.0: there
6996
6996
  * are no external users yet, and the **D20 shared-pool auto-send governor** is a
6997
6997
  * hard prerequisite before onboarding external users. Pin the version; expect
@@ -7048,12 +7048,12 @@ interface DiffJson {
7048
7048
  /**
7049
7049
  * The published version of the Extrovert Review-Loop open contract (D14).
7050
7050
  *
7051
- * **`0.1.0-pre.17` - PROVISIONAL, pre-1.0.** Versioned *with the SDK* (this package's
7051
+ * **`0.1.0-pre.18` - PROVISIONAL, pre-1.0.** Versioned *with the SDK* (this package's
7052
7052
  * `package.json` version) and aligned to the openapi `info.version`. Open and
7053
7053
  * documented, but MAY still evolve before 1.0 (no external users yet; the D20
7054
7054
  * shared-pool governor is required before external users). Pin it.
7055
7055
  */
7056
- declare const CONTRACT_VERSION: "0.1.0-pre.17";
7056
+ declare const CONTRACT_VERSION: "0.1.0-pre.18";
7057
7057
  /** The stability posture of a published contract version. */
7058
7058
  type ContractStability = "provisional" | "stable";
7059
7059
  /**
package/dist/index.d.ts CHANGED
@@ -2923,7 +2923,7 @@ declare class Administration {
2923
2923
  * on 429/5xx, honors `Retry-After`, and surfaces every failure as a typed {@link ApiError}.
2924
2924
  */
2925
2925
  /** The library version, surfaced in the User-Agent. Kept in sync with package.json by build. */
2926
- declare const SDK_VERSION = "0.1.0-pre.16";
2926
+ declare const SDK_VERSION = "0.1.0-pre.18";
2927
2927
  interface RetryOptions {
2928
2928
  /** Max retry attempts for idempotent requests on 429/5xx/network errors. Default 2. */
2929
2929
  maxRetries: number;
@@ -6991,7 +6991,7 @@ declare function signWebhook(secret: string, body: string, timestampSeconds: num
6991
6991
  *
6992
6992
  * ## Provisional, pre-1.0 (0.x)
6993
6993
  *
6994
- * {@link CONTRACT_VERSION} is **`0.1.0-pre.17`** - a deliberately **provisional**, pre-1.0
6994
+ * {@link CONTRACT_VERSION} is **`0.1.0-pre.18`** - a deliberately **provisional**, pre-1.0
6995
6995
  * contract. It is open and documented, but it MAY still evolve before 1.0: there
6996
6996
  * are no external users yet, and the **D20 shared-pool auto-send governor** is a
6997
6997
  * hard prerequisite before onboarding external users. Pin the version; expect
@@ -7048,12 +7048,12 @@ interface DiffJson {
7048
7048
  /**
7049
7049
  * The published version of the Extrovert Review-Loop open contract (D14).
7050
7050
  *
7051
- * **`0.1.0-pre.17` - PROVISIONAL, pre-1.0.** Versioned *with the SDK* (this package's
7051
+ * **`0.1.0-pre.18` - PROVISIONAL, pre-1.0.** Versioned *with the SDK* (this package's
7052
7052
  * `package.json` version) and aligned to the openapi `info.version`. Open and
7053
7053
  * documented, but MAY still evolve before 1.0 (no external users yet; the D20
7054
7054
  * shared-pool governor is required before external users). Pin it.
7055
7055
  */
7056
- declare const CONTRACT_VERSION: "0.1.0-pre.17";
7056
+ declare const CONTRACT_VERSION: "0.1.0-pre.18";
7057
7057
  /** The stability posture of a published contract version. */
7058
7058
  type ContractStability = "provisional" | "stable";
7059
7059
  /**
package/dist/index.js CHANGED
@@ -402,7 +402,7 @@ var CURRENT_API_VERSION = "2026-06-23";
402
402
  var API_VERSION_HEADER = "Extrovert-Version";
403
403
 
404
404
  // src/http.ts
405
- var SDK_VERSION = "0.1.0-pre.16";
405
+ var SDK_VERSION = "0.1.0-pre.18";
406
406
  function buildUrl(baseUrl, path, query) {
407
407
  const base = baseUrl.endsWith("/") ? baseUrl.slice(0, -1) : baseUrl;
408
408
  const rel = path.startsWith("/") ? path : `/${path}`;
@@ -5954,7 +5954,7 @@ async function signWebhook(secret, body, timestampSeconds) {
5954
5954
  }
5955
5955
 
5956
5956
  // src/contract.ts
5957
- var CONTRACT_VERSION = "0.1.0-pre.17";
5957
+ var CONTRACT_VERSION = "0.1.0-pre.18";
5958
5958
  var CONTRACT_MANIFEST = {
5959
5959
  name: "extrovert.review-loop",
5960
5960
  version: CONTRACT_VERSION,