@elevasis/sdk 0.4.14 → 0.4.15

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
@@ -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 {
@@ -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.15",
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",