@auctra/sdk 0.3.4 → 0.3.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.5
4
+
5
+ - Align `AUCTRA_SDK_VERSION` and the `x-auctra-sdk-version` request header with the published package version.
6
+
3
7
  ## 0.3.4
4
8
 
5
9
  - Return explicit `approved`, `rejected`, or `escalated` resolution status from review endpoints.
package/README.md CHANGED
@@ -54,7 +54,7 @@ if (decision.decision === "allowed") {
54
54
  }
55
55
  ```
56
56
 
57
- ### Trust infrastructure (0.3.3+)
57
+ ### Trust infrastructure (0.3.5+)
58
58
 
59
59
  Declare why an action is happening and trace it back to human-approved intent:
60
60
 
package/dist/cjs/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Auctra = exports.AuctraApiError = exports.AUCTRA_SDK_VERSION = void 0;
4
- exports.AUCTRA_SDK_VERSION = "0.3.3";
4
+ exports.AUCTRA_SDK_VERSION = "0.3.5";
5
5
  class AuctraApiError extends Error {
6
6
  status;
7
7
  code;
@@ -1,4 +1,4 @@
1
- export declare const AUCTRA_SDK_VERSION = "0.3.3";
1
+ export declare const AUCTRA_SDK_VERSION = "0.3.5";
2
2
  export type AgentEnvironment = "dev" | "staging" | "production";
3
3
  export type AuthorityLevel = "low" | "medium" | "high" | "critical";
4
4
  export type Decision = "allowed" | "blocked" | "require_approval";
package/dist/esm/index.js CHANGED
@@ -1,4 +1,4 @@
1
- export const AUCTRA_SDK_VERSION = "0.3.3";
1
+ export const AUCTRA_SDK_VERSION = "0.3.5";
2
2
  export class AuctraApiError extends Error {
3
3
  status;
4
4
  code;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@auctra/sdk",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "Authority delegation SDK for AI agents — evaluate agent actions against delegated authority and org policies",
5
5
  "homepage": "https://auctra.tech/docs",
6
6
  "bugs": {
package/src/index.ts CHANGED
@@ -1,4 +1,4 @@
1
- export const AUCTRA_SDK_VERSION = "0.3.3";
1
+ export const AUCTRA_SDK_VERSION = "0.3.5";
2
2
 
3
3
  export type AgentEnvironment = "dev" | "staging" | "production";
4
4
  export type AuthorityLevel = "low" | "medium" | "high" | "critical";