@intuned/runtime-dev 1.3.8-deploy.1 → 1.3.8-deploy.3

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.
@@ -155,12 +155,12 @@ const checkIntunedProjectDeployStatus = async (workspaceId, projectName, apiKey)
155
155
  };
156
156
  {}
157
157
  async function handleFirstRunExperience() {
158
- let testAuthSessionInput = null;
158
+ let testAuthSessionInput = undefined;
159
159
  const settings = await (0, _helpers.loadIntunedJson)();
160
160
  const shouldPromptForTestAuthSession = settings.authSessions.enabled && settings.authSessions.type === "API";
161
161
  let shouldPromptForDefaultJob = true;
162
162
  if (shouldPromptForTestAuthSession) {
163
- testAuthSessionInput = getFirstRunExperienceTestAuthSessionParameters({
163
+ testAuthSessionInput = await getFirstRunExperienceTestAuthSessionParameters({
164
164
  shouldPromptForDefaultJob
165
165
  });
166
166
  if (!testAuthSessionInput) {
@@ -169,7 +169,7 @@ async function handleFirstRunExperience() {
169
169
  }
170
170
  return {
171
171
  testAuthSessionInput,
172
- defaultJobInput: shouldPromptForDefaultJob ? getFirstRunExperienceDefaultJobParameters(settings["metadata"].defaultJobInput) : undefined
172
+ defaultJobInput: shouldPromptForDefaultJob ? await getFirstRunExperienceDefaultJobParameters(settings["metadata"].defaultJobInput) : undefined
173
173
  };
174
174
  }
175
175
  async function getFirstRunExperienceTestAuthSessionParameters({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intuned/runtime-dev",
3
- "version": "1.3.8-deploy.1",
3
+ "version": "1.3.8-deploy.3",
4
4
  "description": "Intuned runtime",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",