@elevasis/sdk 0.4.15 → 0.4.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/dist/cli.cjs CHANGED
@@ -43830,7 +43830,7 @@ async function apiDelete(endpoint, apiUrl = resolveApiUrl()) {
43830
43830
  // package.json
43831
43831
  var package_default = {
43832
43832
  name: "@elevasis/sdk",
43833
- version: "0.4.14",
43833
+ version: "0.4.16",
43834
43834
  description: "SDK for building Elevasis organization resources",
43835
43835
  "comment:bin": "IMPORTANT: This package shares the 'elevasis' binary name with @repo/cli. They never conflict because @elevasis/sdk must NEVER be added as a dependency of any workspace package (apps/*, packages/*, organizations/*). Workspace projects use @repo/cli for the 'elevasis' binary. External developers (outside the workspace) get this SDK's binary via npm install.",
43836
43836
  type: "module",
@@ -4645,8 +4645,8 @@ var platform = {
4645
4645
  credential: options.credential
4646
4646
  };
4647
4647
  return new Promise((resolve, reject) => {
4648
- const timeoutMs = options.tool === "llm" ? 12e4 : 6e4;
4649
- const timeoutLabel = options.tool === "llm" ? "120s" : "60s";
4648
+ const timeoutMs = options.tool === "llm" ? 12e4 : options.tool === "execution" ? 3e5 : 6e4;
4649
+ const timeoutLabel = options.tool === "llm" ? "120s" : options.tool === "execution" ? "300s" : "60s";
4650
4650
  const timer = setTimeout(() => {
4651
4651
  pendingCalls.delete(id);
4652
4652
  reject(new PlatformToolError(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elevasis/sdk",
3
- "version": "0.4.15",
3
+ "version": "0.4.16",
4
4
  "description": "SDK for building Elevasis organization resources",
5
5
  "comment:bin": "IMPORTANT: This package shares the 'elevasis' binary name with @repo/cli. They never conflict because @elevasis/sdk must NEVER be added as a dependency of any workspace package (apps/*, packages/*, organizations/*). Workspace projects use @repo/cli for the 'elevasis' binary. External developers (outside the workspace) get this SDK's binary via npm install.",
6
6
  "type": "module",