tracia 0.3.5 → 0.3.6

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.js CHANGED
@@ -76,7 +76,7 @@ var LLMProvider = /* @__PURE__ */ ((LLMProvider2) => {
76
76
  })(LLMProvider || {});
77
77
 
78
78
  // src/client.ts
79
- var SDK_VERSION = "0.3.5";
79
+ var SDK_VERSION = "0.3.6";
80
80
  var DEFAULT_TIMEOUT_MS = 12e4;
81
81
  function mapApiErrorCodeToTraciaErrorCode(apiCode) {
82
82
  const codeMap = {
package/dist/index.mjs CHANGED
@@ -35,7 +35,7 @@ var LLMProvider = /* @__PURE__ */ ((LLMProvider2) => {
35
35
  })(LLMProvider || {});
36
36
 
37
37
  // src/client.ts
38
- var SDK_VERSION = "0.3.5";
38
+ var SDK_VERSION = "0.3.6";
39
39
  var DEFAULT_TIMEOUT_MS = 12e4;
40
40
  function mapApiErrorCodeToTraciaErrorCode(apiCode) {
41
41
  const codeMap = {
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "tracia",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "description": "TypeScript/JavaScript SDK for Tracia - store, test, and trace LLM prompts",
5
- "main": "./dist/index.cjs",
6
- "module": "./dist/index.js",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
7
  "types": "./dist/index.d.ts",
8
8
  "exports": {
9
9
  ".": {
10
10
  "import": {
11
- "types": "./dist/index.d.ts",
12
- "default": "./dist/index.js"
11
+ "types": "./dist/index.d.mts",
12
+ "default": "./dist/index.mjs"
13
13
  },
14
14
  "require": {
15
- "types": "./dist/index.d.cts",
16
- "default": "./dist/index.cjs"
15
+ "types": "./dist/index.d.ts",
16
+ "default": "./dist/index.js"
17
17
  }
18
18
  }
19
19
  },