@intuned/runtime-dev 1.2.0-dev-52 → 1.2.1-hooks.0
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/.babelrc +2 -2
- package/.npmrc.wtf +1 -0
- package/CHANGELOG.md +5 -1
- package/WebTemplate.zip +0 -0
- package/bin/intuned +2 -0
- package/dist/commands/api/run.js +4 -3
- package/dist/commands/common/getFirstLineNumber.js +2 -4
- package/dist/commands/interface/run.js +5 -6
- package/dist/commands/intuned-cli/commands/attempt.command.d.ts +1 -0
- package/dist/commands/intuned-cli/commands/attempt.command.js +8 -0
- package/dist/commands/intuned-cli/commands/attempt_api.command.d.ts +1 -0
- package/dist/commands/intuned-cli/commands/attempt_api.command.js +40 -0
- package/dist/commands/intuned-cli/commands/attempt_authsession.command.d.ts +1 -0
- package/dist/commands/intuned-cli/commands/attempt_authsession.command.js +8 -0
- package/dist/commands/intuned-cli/commands/attempt_authsession_check.command.d.ts +1 -0
- package/dist/commands/intuned-cli/commands/attempt_authsession_check.command.js +24 -0
- package/dist/commands/intuned-cli/commands/attempt_authsession_create.command.d.ts +1 -0
- package/dist/commands/intuned-cli/commands/attempt_authsession_create.command.js +36 -0
- package/dist/commands/intuned-cli/commands/build.command.d.ts +1 -0
- package/dist/commands/intuned-cli/commands/build.command.js +12 -0
- package/dist/commands/intuned-cli/commands/command.d.ts +2 -0
- package/dist/commands/intuned-cli/commands/command.js +9 -0
- package/dist/commands/intuned-cli/commands/deploy.command.d.ts +1 -0
- package/dist/commands/intuned-cli/commands/deploy.command.js +46 -0
- package/dist/commands/intuned-cli/commands/index.d.ts +15 -0
- package/dist/commands/intuned-cli/commands/index.js +170 -0
- package/dist/commands/intuned-cli/commands/init.command.d.ts +1 -0
- package/dist/commands/intuned-cli/commands/init.command.js +13 -0
- package/dist/commands/intuned-cli/commands/run.command.d.ts +1 -0
- package/dist/commands/intuned-cli/commands/run.command.js +8 -0
- package/dist/commands/intuned-cli/commands/run_api.command.d.ts +1 -0
- package/dist/commands/intuned-cli/commands/run_api.command.js +54 -0
- package/dist/commands/intuned-cli/commands/run_authsession.command.d.ts +20 -0
- package/dist/commands/intuned-cli/commands/run_authsession.command.js +13 -0
- package/dist/commands/intuned-cli/commands/run_authsession_create.command.d.ts +1 -0
- package/dist/commands/intuned-cli/commands/run_authsession_create.command.js +39 -0
- package/dist/commands/intuned-cli/commands/run_authsession_update.command.d.ts +1 -0
- package/dist/commands/intuned-cli/commands/run_authsession_update.command.js +39 -0
- package/dist/commands/intuned-cli/commands/run_authsession_validate.command.d.ts +1 -0
- package/dist/commands/intuned-cli/commands/run_authsession_validate.command.js +37 -0
- package/dist/commands/intuned-cli/commands/types.d.ts +21 -0
- package/dist/commands/intuned-cli/commands/types.js +21 -0
- package/dist/commands/intuned-cli/constants/index.d.ts +17 -0
- package/dist/commands/intuned-cli/constants/index.js +25 -0
- package/dist/commands/intuned-cli/controller/__test__/api.test.js +280 -0
- package/dist/commands/intuned-cli/controller/__test__/authSession.test.js +676 -0
- package/dist/commands/intuned-cli/controller/api.d.ts +44 -0
- package/dist/commands/intuned-cli/controller/api.js +181 -0
- package/dist/commands/intuned-cli/controller/authSession.d.ts +198 -0
- package/dist/commands/intuned-cli/controller/authSession.js +292 -0
- package/dist/commands/intuned-cli/controller/build.d.ts +1 -0
- package/dist/commands/intuned-cli/controller/build.js +36 -0
- package/dist/commands/intuned-cli/controller/deploy.d.ts +15 -0
- package/dist/commands/{deploy/utils.js → intuned-cli/controller/deploy.js} +115 -109
- package/dist/commands/intuned-cli/controller/index.d.ts +1 -0
- package/dist/commands/intuned-cli/controller/index.js +46 -0
- package/dist/commands/intuned-cli/helpers/api.d.ts +3 -0
- package/dist/commands/intuned-cli/helpers/api.js +19 -0
- package/dist/commands/intuned-cli/helpers/auth.d.ts +41 -0
- package/dist/commands/intuned-cli/helpers/auth.js +129 -0
- package/dist/commands/intuned-cli/helpers/backend.d.ts +8 -0
- package/dist/commands/intuned-cli/helpers/backend.js +26 -0
- package/dist/commands/intuned-cli/helpers/context.d.ts +3 -0
- package/dist/commands/intuned-cli/helpers/context.js +33 -0
- package/dist/commands/intuned-cli/helpers/errors.d.ts +14 -0
- package/dist/commands/intuned-cli/helpers/errors.js +55 -0
- package/dist/commands/intuned-cli/helpers/index.d.ts +10 -0
- package/dist/commands/intuned-cli/helpers/index.js +115 -0
- package/dist/commands/intuned-cli/helpers/intunedJson.d.ts +1 -0
- package/dist/{common/cli/utils.js → commands/intuned-cli/helpers/intunedJson.js} +0 -16
- package/dist/commands/intuned-cli/helpers/proxy.d.ts +5 -0
- package/dist/commands/intuned-cli/helpers/proxy.js +23 -0
- package/dist/commands/intuned-cli/helpers/terminal.d.ts +5 -0
- package/dist/commands/intuned-cli/helpers/terminal.js +13 -0
- package/dist/commands/intuned-cli/helpers/timeout.d.ts +1 -0
- package/dist/commands/intuned-cli/helpers/timeout.js +23 -0
- package/dist/commands/intuned-cli/helpers/validation.d.ts +2 -0
- package/dist/commands/intuned-cli/helpers/validation.js +12 -0
- package/dist/commands/intuned-cli/index.d.ts +1 -0
- package/dist/commands/intuned-cli/index.js +16 -0
- package/dist/commands/intuned-cli/main.d.ts +1 -0
- package/dist/commands/intuned-cli/main.js +15 -0
- package/dist/{common/cli → commands/intuned-cli}/types.d.ts +1 -34
- package/dist/{common/cli → commands/intuned-cli}/types.js +1 -2
- package/dist/common/assets/browser_scripts.js +2509 -2143
- package/dist/common/asyncLocalStorage/index.d.ts +1 -0
- package/dist/common/constants.d.ts +1 -0
- package/dist/common/constants.js +2 -1
- package/dist/common/getPlaywrightConstructs.d.ts +5 -4
- package/dist/common/getPlaywrightConstructs.js +71 -35
- package/dist/common/jwtTokenManager.js +3 -5
- package/dist/common/runApi/errors.js +5 -6
- package/dist/common/runApi/index.d.ts +3 -0
- package/dist/common/runApi/index.js +22 -21
- package/dist/common/runApi/types.d.ts +144 -13
- package/dist/common/runApi/types.js +28 -27
- package/dist/runtime/executionHelpers.test.js +3 -4
- package/dist/runtime/export.d.ts +17 -0
- package/dist/runtime/extendPayload.js +1 -1
- package/dist/runtime/getCdpAddress.d.ts +1 -0
- package/dist/runtime/getCdpAddress.js +11 -0
- package/dist/runtime/index.d.ts +1 -0
- package/dist/runtime/index.js +8 -1
- package/package.json +11 -12
- package/tsconfig.json +2 -1
- package/bin/check-auth-session +0 -3
- package/bin/cli-build +0 -3
- package/bin/create-auth-session +0 -3
- package/bin/deploy +0 -3
- package/bin/init +0 -3
- package/bin/run-api +0 -3
- package/dist/commands/cli-auth-sessions/check.d.ts +0 -2
- package/dist/commands/cli-auth-sessions/check.js +0 -40
- package/dist/commands/cli-auth-sessions/create.d.ts +0 -2
- package/dist/commands/cli-auth-sessions/create.js +0 -53
- package/dist/commands/cli-auth-sessions/utils.d.ts +0 -28
- package/dist/commands/cli-auth-sessions/utils.js +0 -285
- package/dist/commands/cli-build/cli-build.d.ts +0 -2
- package/dist/commands/cli-build/cli-build.js +0 -20
- package/dist/commands/deploy/deploy.d.ts +0 -2
- package/dist/commands/deploy/deploy.js +0 -47
- package/dist/commands/deploy/utils.d.ts +0 -16
- package/dist/commands/init/init.d.ts +0 -2
- package/dist/commands/init/init.js +0 -22
- package/dist/commands/init/utils.d.ts +0 -11
- package/dist/commands/init/utils.js +0 -181
- package/dist/commands/run-api-cli/run-api.d.ts +0 -2
- package/dist/commands/run-api-cli/run-api.js +0 -57
- package/dist/commands/run-api-cli/utils.d.ts +0 -9
- package/dist/commands/run-api-cli/utils.js +0 -144
- package/dist/common/cli/cliReadme.d.ts +0 -1
- package/dist/common/cli/cliReadme.js +0 -92
- package/dist/common/cli/constants.d.ts +0 -33
- package/dist/common/cli/constants.js +0 -39
- package/dist/common/cli/utils.d.ts +0 -6
|
@@ -1,144 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.loadParameters = loadParameters;
|
|
7
|
-
exports.runApiViaCLI = runApiViaCLI;
|
|
8
|
-
exports.writeResultToFile = writeResultToFile;
|
|
9
|
-
var _path = _interopRequireDefault(require("path"));
|
|
10
|
-
var fs = _interopRequireWildcard(require("fs-extra"));
|
|
11
|
-
var _Logger = require("../../common/Logger");
|
|
12
|
-
var _chalk = _interopRequireDefault(require("chalk"));
|
|
13
|
-
var _runApi = require("../../common/runApi");
|
|
14
|
-
var _tsNodeImport = require("../common/tsNodeImport");
|
|
15
|
-
var _utils = require("../cli-auth-sessions/utils");
|
|
16
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
17
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
18
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
19
|
-
async function loadParameters(parametersFile) {
|
|
20
|
-
if (!parametersFile) {
|
|
21
|
-
return {};
|
|
22
|
-
}
|
|
23
|
-
try {
|
|
24
|
-
const filePath = _path.default.join(process.cwd(), parametersFile);
|
|
25
|
-
await fs.access(filePath);
|
|
26
|
-
let inputData = null;
|
|
27
|
-
if (parametersFile) {
|
|
28
|
-
inputData = await fs.readJSON(filePath);
|
|
29
|
-
} else {
|
|
30
|
-
inputData = {};
|
|
31
|
-
}
|
|
32
|
-
return inputData;
|
|
33
|
-
} catch (error) {
|
|
34
|
-
if (error.code === "ENOENT") {
|
|
35
|
-
throw new Error(`Parameters file not found: ${parametersFile}`);
|
|
36
|
-
} else if (error instanceof SyntaxError) {
|
|
37
|
-
throw new Error(`Invalid JSON in parameters file: ${error.message}`);
|
|
38
|
-
}
|
|
39
|
-
throw new Error(`Error reading parameters file: ${error.message}`);
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
async function writeResultToFile(runId, result, payloadToAppend) {
|
|
43
|
-
const outputDir = _path.default.join(process.cwd(), "output", runId);
|
|
44
|
-
const resultsPath = _path.default.join(outputDir, "results.json");
|
|
45
|
-
const extendedPayloadsPath = _path.default.join(outputDir, "extendedPayloads.json");
|
|
46
|
-
await fs.ensureDir(outputDir);
|
|
47
|
-
try {
|
|
48
|
-
await fs.writeJSON(resultsPath, result, {
|
|
49
|
-
spaces: 2
|
|
50
|
-
});
|
|
51
|
-
if (payloadToAppend && payloadToAppend.length > 0) {
|
|
52
|
-
await fs.writeJSON(extendedPayloadsPath, payloadToAppend, {
|
|
53
|
-
spaces: 2
|
|
54
|
-
});
|
|
55
|
-
_Logger.logger.info(_chalk.default.underline.green.white(`Payloads to append saved into (${extendedPayloadsPath})`));
|
|
56
|
-
}
|
|
57
|
-
console.log(_chalk.default.underline.green.white(`✓ API executed successfully. Results stored in ${outputDir}`));
|
|
58
|
-
console.log(_chalk.default.blue(`Run ID: ${runId}`));
|
|
59
|
-
} catch (error) {
|
|
60
|
-
_Logger.logger.error(`Failed to write result to file: ${error.message}`);
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
async function runApiViaCLI(apiName, inputData, options) {
|
|
64
|
-
let authSessionPathToUse = null;
|
|
65
|
-
if (options !== null && options !== void 0 && options.authSession) {
|
|
66
|
-
const {
|
|
67
|
-
authSessionInstanceStoragePath
|
|
68
|
-
} = await (0, _utils.retrieveAuthSessionInstance)(options === null || options === void 0 ? void 0 : options.authSession, true);
|
|
69
|
-
authSessionPathToUse = authSessionInstanceStoragePath;
|
|
70
|
-
}
|
|
71
|
-
if (authSessionPathToUse) {
|
|
72
|
-
const checkApiExists = await (0, _utils.ensureAuthApi)("check");
|
|
73
|
-
if (!checkApiExists) {
|
|
74
|
-
throw new Error("Auth session check API not implemented, please create it in the auth sessions specified directory");
|
|
75
|
-
}
|
|
76
|
-
const checkResult = await (0, _utils.runCheckApiViaCLI)(authSessionPathToUse);
|
|
77
|
-
if (!checkResult) {
|
|
78
|
-
console.log(_chalk.default.yellow("Auth session check failed, trying to refresh it..."));
|
|
79
|
-
const createApiExists = await (0, _utils.ensureAuthApi)("create");
|
|
80
|
-
if (!createApiExists) {
|
|
81
|
-
throw new Error("Auth session creation API not implemented, please create it in the auth sessions specified directory");
|
|
82
|
-
}
|
|
83
|
-
const {
|
|
84
|
-
metadata
|
|
85
|
-
} = await (0, _utils.retrieveAuthSessionInstance)(options === null || options === void 0 ? void 0 : options.authSession);
|
|
86
|
-
if ((metadata === null || metadata === void 0 ? void 0 : metadata.authSessionType) === "MANUAL") {
|
|
87
|
-
throw new Error("Expired Auth session is recorder-based, please provide a new one or refresh it manually");
|
|
88
|
-
}
|
|
89
|
-
const authSessionInput = (metadata === null || metadata === void 0 ? void 0 : metadata.authSessionInput) ?? {};
|
|
90
|
-
try {
|
|
91
|
-
const refresehAuthSessionInstance = await (0, _utils.runCreateApiViaCLI)(authSessionInput);
|
|
92
|
-
if (!refresehAuthSessionInstance) {
|
|
93
|
-
throw new Error("Failed to refresh auth session");
|
|
94
|
-
}
|
|
95
|
-
await (0, _utils.storeAuthSessionInstance)(refresehAuthSessionInstance, options === null || options === void 0 ? void 0 : options.authSession, authSessionInput);
|
|
96
|
-
const checkResult = await (0, _utils.runCheckApiViaCLI)(authSessionPathToUse);
|
|
97
|
-
if (!checkResult) {
|
|
98
|
-
throw new Error("Failed to refresh auth session");
|
|
99
|
-
}
|
|
100
|
-
console.log(_chalk.default.green("✓ Auth session refreshed successfully on this run"));
|
|
101
|
-
} catch (error) {
|
|
102
|
-
throw new Error(`Failed to refresh auth session: ${error.message}`);
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
const runApiResult = await (0, _runApi.runApi)({
|
|
107
|
-
automationFunction: {
|
|
108
|
-
name: `api/${apiName}`,
|
|
109
|
-
params: inputData
|
|
110
|
-
},
|
|
111
|
-
runOptions: {
|
|
112
|
-
headless: false,
|
|
113
|
-
environment: "standalone"
|
|
114
|
-
},
|
|
115
|
-
auth: authSessionPathToUse ? {
|
|
116
|
-
session: {
|
|
117
|
-
type: "file",
|
|
118
|
-
path: authSessionPathToUse
|
|
119
|
-
},
|
|
120
|
-
runCheck: false
|
|
121
|
-
} : undefined,
|
|
122
|
-
importFunction: _tsNodeImport.tsNodeImport
|
|
123
|
-
});
|
|
124
|
-
if (runApiResult.isErr()) {
|
|
125
|
-
if (runApiResult.error instanceof _runApi.AutomationError) {
|
|
126
|
-
throw runApiResult.error.error;
|
|
127
|
-
}
|
|
128
|
-
console.error(runApiResult.error);
|
|
129
|
-
throw new Error("An error occurred while running the API");
|
|
130
|
-
}
|
|
131
|
-
const {
|
|
132
|
-
result,
|
|
133
|
-
extendedPayloads: payloadToAppend
|
|
134
|
-
} = runApiResult.value;
|
|
135
|
-
const hasPayloadToAppend = payloadToAppend && payloadToAppend.length > 0;
|
|
136
|
-
if (hasPayloadToAppend) {
|
|
137
|
-
_Logger.logger.info("payload to append:", payloadToAppend);
|
|
138
|
-
_Logger.logger.info("This will only take an effect if this API run was part of a job.");
|
|
139
|
-
}
|
|
140
|
-
return {
|
|
141
|
-
result,
|
|
142
|
-
payloadToAppend
|
|
143
|
-
};
|
|
144
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const cliReadme = "# Intuned CLI\n## Introduction\nThe Intuned CLI exposes a variaty of commands to develop your Intuned projects locally\n\n## Development Commands\n\n### Initialize a Project\n`npx -p @intuned/runtime init`\n\n### Run an API\n`yarn run-api <api-name>`\nor\n`npm run run-api <api-name>`\n\nOptions:\n- `-i, --parameters-file file-path`: JSON file containing API parameters\n- `-s, --store-results`: Store the results in `./output/[runId]/results.json` and `./output/[runId]/extendedPayloads.json`\n- `-a, --auth-session <session>`: Name of the auth session instance to use if project is auth-enabled\n\n### Build a Project\n`yarn cli-build`\n\n### Deploy a Project\n`yarn deploy <project-name>`\nor\n`npm run deploy <project-name>`\n\n- `project-name`: Optional name that overrides the one in intuned.json\n- Options:\n - `--workspace-id`: Overrides the workspace ID in intuned.json\n - `--api-key`: Overrides the API key from environment variables\n\n\n### Create an auth session\n`yarn create-auth-session <auth-session-name>`\nor\n`npm create-auth-session <auth-session-name>`\n\n- `auth-session-name`: Optional name/id of the auth session instance to use, if not provided, a name will be generated with the current timestamp\n- Options:\n - `--input`: Auth session input parameters file path\n\n### Check an auth session\n`yarn check-auth-session <auth-session-name>`\nor\n`npm check-auth-session <auth-session-name>`\n- `auth-session-name`: Name/id of the auth session instance to check, required\n\n## Configuration\n\n### Environment Variables and Settings\n- `workspaceId`: Your Intuned workspace ID ([How to get your workspaceId](https://docs.intunedhq.com/docs/guides/platform/how-to-get-a-workspace-id))\n - Set in `intuned.json` file under the `workspaceId` property\n - Or provide via CLI with `--workspace-id` flag during deployment\n \n- `projectName`: The name of your Intuned project\n - Set in `intuned.json` file under the `projectName` property\n - Or override via command line when deploying with `yarn deploy my-project-name` or `npm run deploy my-project-name`\n \n- `INTUNED_API_KEY`: Your Intuned API key\n - Set as an environment variable: `export INTUNED_API_KEY=your_api_key_here`\n - Or include in your .env file for development\n - Or provide via CLI with `--api-key` flag during deployment\n\n## Project Structure\n\n### Generated Artifacts\n- `./intuned.json`: Project configuration file\n- `./api`: Folder containing API implementation files\n- `./auth-sessions`: Folder containing auth APIs\n- `./parameters`: Folder for API parameters injection\n- `./output`: Folder containing generated output files\n- `./auth-sessions-instances`: Folder containing auth session instances\n\n## Types of auth sessions\n- `MANUAL`: Manual auth session, records the session using a recorder and stores it in the `auth-sessions-instances` folder\n- `API`: Auth session created via create API, stores the session in the `auth-sessions-instances` folder\n\n### Notes\n- You can use either `yarn` or `npm run` to execute commands\n- All commands must be run from the project root directory\n- Verify you're in the correct location by confirming the presence of package.json and intuned.json\n- Running commands from subdirectories may result in errors\n- You can manage your deployed projects through the Intuned platform\n- WARNING: \u26A0\uFE0F Changes to TS Config may break some Intuned functionalities\n";
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.cliReadme = void 0;
|
|
7
|
-
const cliReadme = exports.cliReadme = `# Intuned CLI
|
|
8
|
-
## Introduction
|
|
9
|
-
The Intuned CLI exposes a variaty of commands to develop your Intuned projects locally
|
|
10
|
-
|
|
11
|
-
## Development Commands
|
|
12
|
-
|
|
13
|
-
### Initialize a Project
|
|
14
|
-
\`npx -p @intuned/runtime init\`
|
|
15
|
-
|
|
16
|
-
### Run an API
|
|
17
|
-
\`yarn run-api <api-name>\`
|
|
18
|
-
or
|
|
19
|
-
\`npm run run-api <api-name>\`
|
|
20
|
-
|
|
21
|
-
Options:
|
|
22
|
-
- \`-i, --parameters-file file-path\`: JSON file containing API parameters
|
|
23
|
-
- \`-s, --store-results\`: Store the results in \`./output/[runId]/results.json\` and \`./output/[runId]/extendedPayloads.json\`
|
|
24
|
-
- \`-a, --auth-session <session>\`: Name of the auth session instance to use if project is auth-enabled
|
|
25
|
-
|
|
26
|
-
### Build a Project
|
|
27
|
-
\`yarn cli-build\`
|
|
28
|
-
|
|
29
|
-
### Deploy a Project
|
|
30
|
-
\`yarn deploy <project-name>\`
|
|
31
|
-
or
|
|
32
|
-
\`npm run deploy <project-name>\`
|
|
33
|
-
|
|
34
|
-
- \`project-name\`: Optional name that overrides the one in intuned.json
|
|
35
|
-
- Options:
|
|
36
|
-
- \`--workspace-id\`: Overrides the workspace ID in intuned.json
|
|
37
|
-
- \`--api-key\`: Overrides the API key from environment variables
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
### Create an auth session
|
|
41
|
-
\`yarn create-auth-session <auth-session-name>\`
|
|
42
|
-
or
|
|
43
|
-
\`npm create-auth-session <auth-session-name>\`
|
|
44
|
-
|
|
45
|
-
- \`auth-session-name\`: Optional name/id of the auth session instance to use, if not provided, a name will be generated with the current timestamp
|
|
46
|
-
- Options:
|
|
47
|
-
- \`--input\`: Auth session input parameters file path
|
|
48
|
-
|
|
49
|
-
### Check an auth session
|
|
50
|
-
\`yarn check-auth-session <auth-session-name>\`
|
|
51
|
-
or
|
|
52
|
-
\`npm check-auth-session <auth-session-name>\`
|
|
53
|
-
- \`auth-session-name\`: Name/id of the auth session instance to check, required
|
|
54
|
-
|
|
55
|
-
## Configuration
|
|
56
|
-
|
|
57
|
-
### Environment Variables and Settings
|
|
58
|
-
- \`workspaceId\`: Your Intuned workspace ID ([How to get your workspaceId](https://docs.intunedhq.com/docs/guides/platform/how-to-get-a-workspace-id))
|
|
59
|
-
- Set in \`intuned.json\` file under the \`workspaceId\` property
|
|
60
|
-
- Or provide via CLI with \`--workspace-id\` flag during deployment
|
|
61
|
-
|
|
62
|
-
- \`projectName\`: The name of your Intuned project
|
|
63
|
-
- Set in \`intuned.json\` file under the \`projectName\` property
|
|
64
|
-
- Or override via command line when deploying with \`yarn deploy my-project-name\` or \`npm run deploy my-project-name\`
|
|
65
|
-
|
|
66
|
-
- \`INTUNED_API_KEY\`: Your Intuned API key
|
|
67
|
-
- Set as an environment variable: \`export INTUNED_API_KEY=your_api_key_here\`
|
|
68
|
-
- Or include in your .env file for development
|
|
69
|
-
- Or provide via CLI with \`--api-key\` flag during deployment
|
|
70
|
-
|
|
71
|
-
## Project Structure
|
|
72
|
-
|
|
73
|
-
### Generated Artifacts
|
|
74
|
-
- \`./intuned.json\`: Project configuration file
|
|
75
|
-
- \`./api\`: Folder containing API implementation files
|
|
76
|
-
- \`./auth-sessions\`: Folder containing auth APIs
|
|
77
|
-
- \`./parameters\`: Folder for API parameters injection
|
|
78
|
-
- \`./output\`: Folder containing generated output files
|
|
79
|
-
- \`./auth-sessions-instances\`: Folder containing auth session instances
|
|
80
|
-
|
|
81
|
-
## Types of auth sessions
|
|
82
|
-
- \`MANUAL\`: Manual auth session, records the session using a recorder and stores it in the \`auth-sessions-instances\` folder
|
|
83
|
-
- \`API\`: Auth session created via create API, stores the session in the \`auth-sessions-instances\` folder
|
|
84
|
-
|
|
85
|
-
### Notes
|
|
86
|
-
- You can use either \`yarn\` or \`npm run\` to execute commands
|
|
87
|
-
- All commands must be run from the project root directory
|
|
88
|
-
- Verify you're in the correct location by confirming the presence of package.json and intuned.json
|
|
89
|
-
- Running commands from subdirectories may result in errors
|
|
90
|
-
- You can manage your deployed projects through the Intuned platform
|
|
91
|
-
- WARNING: ⚠️ Changes to TS Config may break some Intuned functionalities
|
|
92
|
-
`;
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
export declare const CURRENT_PLAYWRIGHT_VERSION = "1.44.1";
|
|
2
|
-
export declare const ProjectDeploymentStatus: string[];
|
|
3
|
-
export declare const PROJECT_DEPLOY_TIMEOUT = 600000;
|
|
4
|
-
export declare const userCLIScripts: {
|
|
5
|
-
"dev:local": string;
|
|
6
|
-
dev: string;
|
|
7
|
-
build: string;
|
|
8
|
-
"types-check": string;
|
|
9
|
-
"pre-publish": string;
|
|
10
|
-
start: string;
|
|
11
|
-
"run-api": string;
|
|
12
|
-
"cli-build": string;
|
|
13
|
-
deploy: string;
|
|
14
|
-
"cli-create-auth-session": string;
|
|
15
|
-
"cli-check-auth-session": string;
|
|
16
|
-
"browser-save-state": string;
|
|
17
|
-
"auth-session-check": string;
|
|
18
|
-
"auth-session-create": string;
|
|
19
|
-
"auth-session-refresh": string;
|
|
20
|
-
"auth-session-load": string;
|
|
21
|
-
};
|
|
22
|
-
export declare const tsConfigCli: {
|
|
23
|
-
compilerOptions: {
|
|
24
|
-
moduleResolution: string;
|
|
25
|
-
target: string;
|
|
26
|
-
outDir: string;
|
|
27
|
-
sourceMap: boolean;
|
|
28
|
-
declaration: boolean;
|
|
29
|
-
esModuleInterop: boolean;
|
|
30
|
-
};
|
|
31
|
-
include: string[];
|
|
32
|
-
exclude: string[];
|
|
33
|
-
};
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.userCLIScripts = exports.tsConfigCli = exports.ProjectDeploymentStatus = exports.PROJECT_DEPLOY_TIMEOUT = exports.CURRENT_PLAYWRIGHT_VERSION = void 0;
|
|
7
|
-
const CURRENT_PLAYWRIGHT_VERSION = exports.CURRENT_PLAYWRIGHT_VERSION = "1.44.1";
|
|
8
|
-
const ProjectDeploymentStatus = exports.ProjectDeploymentStatus = ["completed", "failed", "pending", "not_found"];
|
|
9
|
-
const PROJECT_DEPLOY_TIMEOUT = exports.PROJECT_DEPLOY_TIMEOUT = 600000;
|
|
10
|
-
const userCLIScripts = exports.userCLIScripts = {
|
|
11
|
-
"dev:local": "intuned-api-run sample playwright -j '{}'",
|
|
12
|
-
dev: "intuned-api-run",
|
|
13
|
-
build: "intuned-build",
|
|
14
|
-
"types-check": "intuned-ts-check",
|
|
15
|
-
"pre-publish": "intuned-ts-check && intuned-build",
|
|
16
|
-
start: "node ./output/bundle_v2.js",
|
|
17
|
-
"run-api": "run-api",
|
|
18
|
-
"cli-build": "cli-build",
|
|
19
|
-
deploy: "deploy",
|
|
20
|
-
"cli-create-auth-session": "create-auth-session",
|
|
21
|
-
"cli-check-auth-session": "check-auth-session",
|
|
22
|
-
"browser-save-state": "intuned-browser-save-state",
|
|
23
|
-
"auth-session-check": "intuned-auth-session-check",
|
|
24
|
-
"auth-session-create": "intuned-auth-session-create",
|
|
25
|
-
"auth-session-refresh": "intuned-auth-session-refresh",
|
|
26
|
-
"auth-session-load": "intuned-auth-session-load"
|
|
27
|
-
};
|
|
28
|
-
const tsConfigCli = exports.tsConfigCli = {
|
|
29
|
-
compilerOptions: {
|
|
30
|
-
moduleResolution: "bundler",
|
|
31
|
-
target: "ES2021",
|
|
32
|
-
outDir: "./dist",
|
|
33
|
-
sourceMap: false,
|
|
34
|
-
declaration: true,
|
|
35
|
-
esModuleInterop: true
|
|
36
|
-
},
|
|
37
|
-
include: ["**/*.ts"],
|
|
38
|
-
exclude: ["node_modules", "dist"]
|
|
39
|
-
};
|