@eigenpal/sdk 0.10.14 → 0.10.16

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,11 @@
1
1
  # @eigenpal/sdk
2
2
 
3
+ ## 0.10.15
4
+
5
+ ### Patch Changes
6
+
7
+ - 064ec4f: SDK clients now expose the trace-inclusive experiment export option for deeper debugging and audit review.
8
+
3
9
  ## 0.10.8
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eigenpal/sdk",
3
- "version": "0.10.14",
3
+ "version": "0.10.16",
4
4
  "description": "Official TypeScript SDK for the EigenPal API",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -3085,6 +3085,7 @@ export type AutomationsExperimentsExportData = {
3085
3085
  };
3086
3086
  query: {
3087
3087
  format: 'csv' | 'json';
3088
+ includeTrace?: '0' | '1' | 'true' | 'false';
3088
3089
  };
3089
3090
  url: '/api/v1/automations/{id}/experiments/{experimentId}/export';
3090
3091
  };
package/src/telemetry.ts CHANGED
@@ -19,7 +19,7 @@
19
19
  export const SDK_LANGUAGE = 'typescript';
20
20
  // Rewritten at publish time by scripts/render-sdk-versions.sh.
21
21
  // Keep this string literal exactly stable — sed matches on it.
22
- export const SDK_VERSION = '0.10.14';
22
+ export const SDK_VERSION = '0.10.16';
23
23
 
24
24
  function detectRuntime(): string {
25
25
  const g = globalThis as unknown as {