@intuned/runtime-dev 1.0.6-cli.8.2.8 → 1.0.6-cli.8.2.9

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.
@@ -150,13 +150,13 @@ async function deployProject(projectName, auth) {
150
150
  const {
151
151
  status,
152
152
  message,
153
- result
153
+ projectId
154
154
  } = await checkIntunedProjectDeployStatus(workspaceId, projectName, apiKey);
155
155
  if (status === "completed" || status === "failed" || status === "not_found") {
156
156
  clearInterval(checkInterval);
157
157
  resolve(status === "completed" ? {
158
158
  deployDone: true,
159
- projectId: result.projectId
159
+ projectId
160
160
  } : {
161
161
  deployDone: false,
162
162
  projectId: "",
@@ -311,7 +311,7 @@ const checkIntunedProjectDeployStatus = async (workspaceId, projectName, apiKey)
311
311
  return {
312
312
  status: data.status,
313
313
  message: data.message,
314
- result: data.projectId
314
+ projectId: data.projectId
315
315
  };
316
316
  }
317
317
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intuned/runtime-dev",
3
- "version": "1.0.6-cli.8.2.8",
3
+ "version": "1.0.6-cli.8.2.9",
4
4
  "description": "Intuned runtime",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",