@extrovert.dev/sdk 0.1.0-pre.12 → 0.1.0-pre.13

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.12";
2926
+ declare const SDK_VERSION = "0.1.0-pre.13";
2927
2927
  interface RetryOptions {
2928
2928
  /** Max retry attempts for idempotent requests on 429/5xx/network errors. Default 2. */
2929
2929
  maxRetries: number;
@@ -6969,7 +6969,7 @@ declare function signWebhook(secret: string, body: string, timestampSeconds: num
6969
6969
  *
6970
6970
  * ## Provisional, pre-1.0 (0.x)
6971
6971
  *
6972
- * {@link CONTRACT_VERSION} is **`0.1.0-pre.12`** - a deliberately **provisional**, pre-1.0
6972
+ * {@link CONTRACT_VERSION} is **`0.1.0-pre.13`** - a deliberately **provisional**, pre-1.0
6973
6973
  * contract. It is open and documented, but it MAY still evolve before 1.0: there
6974
6974
  * are no external users yet, and the **D20 shared-pool auto-send governor** is a
6975
6975
  * hard prerequisite before onboarding external users. Pin the version; expect
@@ -7026,12 +7026,12 @@ interface DiffJson {
7026
7026
  /**
7027
7027
  * The published version of the Extrovert Review-Loop open contract (D14).
7028
7028
  *
7029
- * **`0.1.0-pre.12` - PROVISIONAL, pre-1.0.** Versioned *with the SDK* (this package's
7029
+ * **`0.1.0-pre.13` - PROVISIONAL, pre-1.0.** Versioned *with the SDK* (this package's
7030
7030
  * `package.json` version) and aligned to the openapi `info.version`. Open and
7031
7031
  * documented, but MAY still evolve before 1.0 (no external users yet; the D20
7032
7032
  * shared-pool governor is required before external users). Pin it.
7033
7033
  */
7034
- declare const CONTRACT_VERSION: "0.1.0-pre.12";
7034
+ declare const CONTRACT_VERSION: "0.1.0-pre.13";
7035
7035
  /** The stability posture of a published contract version. */
7036
7036
  type ContractStability = "provisional" | "stable";
7037
7037
  /**
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.12";
2926
+ declare const SDK_VERSION = "0.1.0-pre.13";
2927
2927
  interface RetryOptions {
2928
2928
  /** Max retry attempts for idempotent requests on 429/5xx/network errors. Default 2. */
2929
2929
  maxRetries: number;
@@ -6969,7 +6969,7 @@ declare function signWebhook(secret: string, body: string, timestampSeconds: num
6969
6969
  *
6970
6970
  * ## Provisional, pre-1.0 (0.x)
6971
6971
  *
6972
- * {@link CONTRACT_VERSION} is **`0.1.0-pre.12`** - a deliberately **provisional**, pre-1.0
6972
+ * {@link CONTRACT_VERSION} is **`0.1.0-pre.13`** - a deliberately **provisional**, pre-1.0
6973
6973
  * contract. It is open and documented, but it MAY still evolve before 1.0: there
6974
6974
  * are no external users yet, and the **D20 shared-pool auto-send governor** is a
6975
6975
  * hard prerequisite before onboarding external users. Pin the version; expect
@@ -7026,12 +7026,12 @@ interface DiffJson {
7026
7026
  /**
7027
7027
  * The published version of the Extrovert Review-Loop open contract (D14).
7028
7028
  *
7029
- * **`0.1.0-pre.12` - PROVISIONAL, pre-1.0.** Versioned *with the SDK* (this package's
7029
+ * **`0.1.0-pre.13` - PROVISIONAL, pre-1.0.** Versioned *with the SDK* (this package's
7030
7030
  * `package.json` version) and aligned to the openapi `info.version`. Open and
7031
7031
  * documented, but MAY still evolve before 1.0 (no external users yet; the D20
7032
7032
  * shared-pool governor is required before external users). Pin it.
7033
7033
  */
7034
- declare const CONTRACT_VERSION: "0.1.0-pre.12";
7034
+ declare const CONTRACT_VERSION: "0.1.0-pre.13";
7035
7035
  /** The stability posture of a published contract version. */
7036
7036
  type ContractStability = "provisional" | "stable";
7037
7037
  /**
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.12";
405
+ var SDK_VERSION = "0.1.0-pre.13";
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}`;
@@ -5904,7 +5904,7 @@ async function signWebhook(secret, body, timestampSeconds) {
5904
5904
  }
5905
5905
 
5906
5906
  // src/contract.ts
5907
- var CONTRACT_VERSION = "0.1.0-pre.12";
5907
+ var CONTRACT_VERSION = "0.1.0-pre.13";
5908
5908
  var CONTRACT_MANIFEST = {
5909
5909
  name: "extrovert.review-loop",
5910
5910
  version: CONTRACT_VERSION,