@codize/sdk 0.1.1 → 0.1.2

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.mts CHANGED
@@ -58,7 +58,7 @@ type SandboxExecuteResponse = {
58
58
  /**
59
59
  * Run-stage output.
60
60
  */
61
- run: SandboxStageResult;
61
+ run: SandboxStageResult | null;
62
62
  };
63
63
  };
64
64
  /**
package/dist/index.mjs CHANGED
@@ -109,7 +109,7 @@ var CodizeClient = class {
109
109
  headers: response.headers,
110
110
  data: {
111
111
  compile: data.compile ? mapStageResult(data.compile) : null,
112
- run: mapStageResult(data.run)
112
+ run: data.run ? mapStageResult(data.run) : null
113
113
  }
114
114
  };
115
115
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codize/sdk",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Official TypeScript SDK for the Codize API",
5
5
  "homepage": "https://github.com/codize-dev/sdk",
6
6
  "repository": {