@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
|
|
27
|
+
let firstRunExperienceInput = undefined;
|
|
28
28
|
const settings = await (0, _helpers.loadIntunedJson)();
|
|
29
29
|
if (enableFirstRunExperience) {
|
|
30
|
-
|
|
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
|
-
|
|
46
|
+
firstRunExperienceInput
|
|
47
47
|
})
|
|
48
48
|
});
|
|
49
49
|
if (!response.ok) {
|