@intuned/runtime-dev 1.3.9-deploy.0 → 1.3.9-deploy.1

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.
@@ -24,10 +24,10 @@ const START_RUN_INPUT_QUERY_PARAM_KEY = exports.START_RUN_INPUT_QUERY_PARAM_KEY
24
24
  async function runDeployProject(projectName, auth) {
25
25
  const result = await (0, _save.runSaveProject)(projectName, auth);
26
26
  const enableFirstRunExperience = result?.enableFirstRunExperience ?? false;
27
- let firstRunInfo = undefined;
27
+ let firstRunExperienceInput = undefined;
28
28
  const settings = await (0, _helpers.loadIntunedJson)();
29
29
  if (enableFirstRunExperience) {
30
- firstRunInfo = await promptFirstRunExperience(settings);
30
+ firstRunExperienceInput = await promptFirstRunExperience(settings);
31
31
  }
32
32
  const {
33
33
  workspaceId,
@@ -43,7 +43,7 @@ async function runDeployProject(projectName, auth) {
43
43
  headers,
44
44
  method: "POST",
45
45
  body: JSON.stringify({
46
- firstRunInfo
46
+ firstRunExperienceInput
47
47
  })
48
48
  });
49
49
  if (!response.ok) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intuned/runtime-dev",
3
- "version": "1.3.9-deploy.0",
3
+ "version": "1.3.9-deploy.1",
4
4
  "description": "Intuned runtime",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",