@elevasis/sdk 0.4.14 → 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",
@@ -44078,7 +44078,8 @@ function registerDeployCommand(program3) {
44078
44078
  name: w.config.name,
44079
44079
  version: w.config.version,
44080
44080
  status: w.config.status,
44081
- description: w.config.description
44081
+ description: w.config.description,
44082
+ domains: w.config.domains
44082
44083
  };
44083
44084
  if (w.contract.inputSchema) {
44084
44085
  try {
@@ -44102,7 +44103,8 @@ function registerDeployCommand(program3) {
44102
44103
  name: a.config.name,
44103
44104
  version: a.config.version,
44104
44105
  status: a.config.status,
44105
- description: a.config.description
44106
+ description: a.config.description,
44107
+ domains: a.config.domains
44106
44108
  };
44107
44109
  if (a.contract.inputSchema) {
44108
44110
  try {
@@ -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(
@@ -5121,7 +5121,8 @@ function startWorker(org) {
5121
5121
  type: w.config.type,
5122
5122
  status: w.config.status,
5123
5123
  description: w.config.description,
5124
- version: w.config.version
5124
+ version: w.config.version,
5125
+ domains: w.config.domains
5125
5126
  })),
5126
5127
  agents: (org.agents ?? []).map((a) => ({
5127
5128
  resourceId: a.config.resourceId,
@@ -5129,7 +5130,8 @@ function startWorker(org) {
5129
5130
  type: a.config.type,
5130
5131
  status: a.config.status,
5131
5132
  description: a.config.description,
5132
- version: a.config.version
5133
+ version: a.config.version,
5134
+ domains: a.config.domains
5133
5135
  })),
5134
5136
  triggers: org.triggers ?? [],
5135
5137
  integrations: org.integrations ?? [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elevasis/sdk",
3
- "version": "0.4.14",
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",