@intuned/runtime-dev 1.3.8-jsonl.0 → 1.3.9-dev1
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/bin/common.js +23 -0
- package/bin/intuned +2 -0
- package/bin/intuned-api-run +2 -0
- package/dist/commands/common/utils/settings.js +3 -0
- package/dist/commands/intuned-cli/commands/authsession_record.command.d.ts +1 -1
- package/dist/commands/intuned-cli/commands/authsession_record.command.js +3 -2
- package/dist/commands/intuned-cli/controller/deploy.js +1 -1
- package/dist/commands/intuned-cli/controller/save.js +1 -1
- package/dist/common/settingsSchema.d.ts +13 -0
- package/dist/common/settingsSchema.js +6 -0
- package/package/dist/commands/api/run.d.ts +6 -0
- package/package/dist/commands/api/run.js +123 -0
- package/package/dist/commands/auth-sessions/load.d.ts +2 -0
- package/package/dist/commands/auth-sessions/load.js +35 -0
- package/package/dist/commands/auth-sessions/run-check.d.ts +2 -0
- package/package/dist/commands/auth-sessions/run-check.js +74 -0
- package/package/dist/commands/auth-sessions/run-create.d.ts +2 -0
- package/package/dist/commands/auth-sessions/run-create.js +78 -0
- package/package/dist/commands/browser/save-state.d.ts +2 -0
- package/package/dist/commands/browser/save-state.js +17 -0
- package/package/dist/commands/browser/start-browser.d.ts +2 -0
- package/package/dist/commands/browser/start-browser.js +14 -0
- package/package/dist/commands/build.d.ts +1 -0
- package/package/dist/commands/build.js +84 -0
- package/package/dist/commands/common/browserUtils.d.ts +14 -0
- package/package/dist/commands/common/browserUtils.js +58 -0
- package/package/dist/commands/common/getFirstLineNumber.d.ts +9 -0
- package/package/dist/commands/common/getFirstLineNumber.js +101 -0
- package/package/dist/commands/common/getFirstLineNumber.test.js +228 -0
- package/package/dist/commands/common/projectExclusions.d.ts +2 -0
- package/package/dist/commands/common/projectExclusions.js +8 -0
- package/package/dist/commands/common/sendMessageToClient.d.ts +1 -0
- package/package/dist/commands/common/sendMessageToClient.js +10 -0
- package/package/dist/commands/common/tsNodeImport.d.ts +2 -0
- package/package/dist/commands/common/tsNodeImport.js +34 -0
- package/package/dist/commands/common/utils/fileUtils.d.ts +6 -0
- package/package/dist/commands/common/utils/fileUtils.js +33 -0
- package/package/dist/commands/common/utils/settings.d.ts +2 -0
- package/package/dist/commands/common/utils/settings.js +31 -0
- package/package/dist/commands/common/utils/template.d.ts +2 -0
- package/package/dist/commands/common/utils/template.js +31 -0
- package/package/dist/commands/common/utils/unixSocket.d.ts +9 -0
- package/package/dist/commands/common/utils/unixSocket.js +44 -0
- package/package/dist/commands/interface/run.d.ts +1 -0
- package/package/dist/commands/interface/run.js +216 -0
- package/package/dist/commands/intuned-cli/commands/attempt.command.d.ts +1 -0
- package/package/dist/commands/intuned-cli/commands/attempt.command.js +8 -0
- package/package/dist/commands/intuned-cli/commands/attempt_api.command.d.ts +1 -0
- package/package/dist/commands/intuned-cli/commands/attempt_api.command.js +30 -0
- package/package/dist/commands/intuned-cli/commands/attempt_authsession.command.d.ts +1 -0
- package/package/dist/commands/intuned-cli/commands/attempt_authsession.command.js +8 -0
- package/package/dist/commands/intuned-cli/commands/attempt_authsession_check.command.d.ts +1 -0
- package/package/dist/commands/intuned-cli/commands/attempt_authsession_check.command.js +19 -0
- package/package/dist/commands/intuned-cli/commands/attempt_authsession_create.command.d.ts +1 -0
- package/package/dist/commands/intuned-cli/commands/attempt_authsession_create.command.js +24 -0
- package/package/dist/commands/intuned-cli/commands/authsession.command.d.ts +1 -0
- package/package/dist/commands/intuned-cli/commands/authsession.command.js +8 -0
- package/package/dist/commands/intuned-cli/commands/authsession_record.command.d.ts +1 -0
- package/package/dist/commands/intuned-cli/commands/authsession_record.command.js +31 -0
- package/package/dist/commands/intuned-cli/commands/build.command.d.ts +1 -0
- package/package/dist/commands/intuned-cli/commands/build.command.js +12 -0
- package/package/dist/commands/intuned-cli/commands/command.d.ts +2 -0
- package/package/dist/commands/intuned-cli/commands/command.js +9 -0
- package/package/dist/commands/intuned-cli/commands/deploy.command.d.ts +1 -0
- package/package/dist/commands/intuned-cli/commands/deploy.command.js +38 -0
- package/package/dist/commands/intuned-cli/commands/index.d.ts +18 -0
- package/package/dist/commands/intuned-cli/commands/index.js +203 -0
- package/package/dist/commands/intuned-cli/commands/init.command.d.ts +1 -0
- package/package/dist/commands/intuned-cli/commands/init.command.js +13 -0
- package/package/dist/commands/intuned-cli/commands/run.command.d.ts +1 -0
- package/package/dist/commands/intuned-cli/commands/run.command.js +8 -0
- package/package/dist/commands/intuned-cli/commands/run_api.command.d.ts +1 -0
- package/package/dist/commands/intuned-cli/commands/run_api.command.js +46 -0
- package/package/dist/commands/intuned-cli/commands/run_authsession.command.d.ts +28 -0
- package/package/dist/commands/intuned-cli/commands/run_authsession.command.js +17 -0
- package/package/dist/commands/intuned-cli/commands/run_authsession_create.command.d.ts +1 -0
- package/package/dist/commands/intuned-cli/commands/run_authsession_create.command.js +35 -0
- package/package/dist/commands/intuned-cli/commands/run_authsession_update.command.d.ts +1 -0
- package/package/dist/commands/intuned-cli/commands/run_authsession_update.command.js +35 -0
- package/package/dist/commands/intuned-cli/commands/run_authsession_validate.command.d.ts +1 -0
- package/package/dist/commands/intuned-cli/commands/run_authsession_validate.command.js +33 -0
- package/package/dist/commands/intuned-cli/commands/save.command.d.ts +13 -0
- package/package/dist/commands/intuned-cli/commands/save.command.js +42 -0
- package/package/dist/commands/intuned-cli/commands/types.d.ts +31 -0
- package/package/dist/commands/intuned-cli/commands/types.js +29 -0
- package/package/dist/commands/intuned-cli/constants/index.d.ts +17 -0
- package/package/dist/commands/intuned-cli/constants/index.js +25 -0
- package/package/dist/commands/intuned-cli/controller/__test__/api.test.js +397 -0
- package/package/dist/commands/intuned-cli/controller/__test__/authSession.test.js +1059 -0
- package/package/dist/commands/intuned-cli/controller/api.d.ts +42 -0
- package/package/dist/commands/intuned-cli/controller/api.js +189 -0
- package/package/dist/commands/intuned-cli/controller/authSession.d.ts +209 -0
- package/package/dist/commands/intuned-cli/controller/authSession.js +420 -0
- package/package/dist/commands/intuned-cli/controller/build.d.ts +1 -0
- package/package/dist/commands/intuned-cli/controller/build.js +36 -0
- package/package/dist/commands/intuned-cli/controller/deploy.d.ts +4 -0
- package/package/dist/commands/intuned-cli/controller/deploy.js +139 -0
- package/package/dist/commands/intuned-cli/controller/index.d.ts +1 -0
- package/package/dist/commands/intuned-cli/controller/index.js +46 -0
- package/package/dist/commands/intuned-cli/controller/save.d.ts +14 -0
- package/package/dist/commands/intuned-cli/controller/save.js +345 -0
- package/package/dist/commands/intuned-cli/helpers/__test__/browser.test.js +103 -0
- package/package/dist/commands/intuned-cli/helpers/__test__/tracing.test.js +40 -0
- package/package/dist/commands/intuned-cli/helpers/api.d.ts +3 -0
- package/package/dist/commands/intuned-cli/helpers/api.js +19 -0
- package/package/dist/commands/intuned-cli/helpers/auth.d.ts +46 -0
- package/package/dist/commands/intuned-cli/helpers/auth.js +144 -0
- package/package/dist/commands/intuned-cli/helpers/backend.d.ts +8 -0
- package/package/dist/commands/intuned-cli/helpers/backend.js +27 -0
- package/package/dist/commands/intuned-cli/helpers/browser.d.ts +14 -0
- package/package/dist/commands/intuned-cli/helpers/browser.js +57 -0
- package/package/dist/commands/intuned-cli/helpers/context.d.ts +3 -0
- package/package/dist/commands/intuned-cli/helpers/context.js +33 -0
- package/package/dist/commands/intuned-cli/helpers/errors.d.ts +13 -0
- package/package/dist/commands/intuned-cli/helpers/errors.js +37 -0
- package/package/dist/commands/intuned-cli/helpers/index.d.ts +12 -0
- package/package/dist/commands/intuned-cli/helpers/index.js +137 -0
- package/package/dist/commands/intuned-cli/helpers/intunedJson.d.ts +69 -0
- package/package/dist/commands/intuned-cli/helpers/intunedJson.js +71 -0
- package/package/dist/commands/intuned-cli/helpers/proxy.d.ts +5 -0
- package/package/dist/commands/intuned-cli/helpers/proxy.js +23 -0
- package/package/dist/commands/intuned-cli/helpers/terminal.d.ts +5 -0
- package/package/dist/commands/intuned-cli/helpers/terminal.js +13 -0
- package/package/dist/commands/intuned-cli/helpers/timeout.d.ts +1 -0
- package/package/dist/commands/intuned-cli/helpers/timeout.js +23 -0
- package/package/dist/commands/intuned-cli/helpers/traces.d.ts +2 -0
- package/package/dist/commands/intuned-cli/helpers/traces.js +32 -0
- package/package/dist/commands/intuned-cli/helpers/validation.d.ts +2 -0
- package/package/dist/commands/intuned-cli/helpers/validation.js +14 -0
- package/package/dist/commands/intuned-cli/helpers/wrapper.d.ts +2 -0
- package/package/dist/commands/intuned-cli/helpers/wrapper.js +60 -0
- package/package/dist/commands/intuned-cli/index.d.ts +1 -0
- package/package/dist/commands/intuned-cli/index.js +16 -0
- package/package/dist/commands/intuned-cli/main.d.ts +1 -0
- package/package/dist/commands/intuned-cli/main.js +22 -0
- package/package/dist/commands/intuned-cli/types.d.ts +41 -0
- package/package/dist/commands/intuned-cli/types.js +12 -0
- package/package/dist/commands/ts-check.d.ts +2 -0
- package/package/dist/commands/ts-check.js +56 -0
- package/package/dist/common/Logger/Logger/index.d.ts +12 -0
- package/package/dist/common/Logger/Logger/index.js +60 -0
- package/package/dist/common/Logger/Logger/types.d.ts +8 -0
- package/package/dist/common/Logger/Logger/types.js +5 -0
- package/package/dist/common/Logger/index.d.ts +12 -0
- package/package/dist/common/Logger/index.js +60 -0
- package/package/dist/common/Logger/types.d.ts +8 -0
- package/package/dist/common/Logger/types.js +5 -0
- package/package/dist/common/assets/browser_scripts.js +2580 -0
- package/package/dist/common/asyncLocalStorage/index.d.ts +16 -0
- package/package/dist/common/asyncLocalStorage/index.js +17 -0
- package/package/dist/common/backendFunctions/getAuthSessionParameters.d.ts +1 -0
- package/package/dist/common/backendFunctions/getAuthSessionParameters.js +38 -0
- package/package/dist/common/cleanEnvironmentVariables.d.ts +1 -0
- package/package/dist/common/cleanEnvironmentVariables.js +16 -0
- package/package/dist/common/constants.d.ts +10 -0
- package/package/dist/common/constants.js +16 -0
- package/package/dist/common/contextStorageStateHelpers.d.ts +21 -0
- package/package/dist/common/contextStorageStateHelpers.js +81 -0
- package/package/dist/common/extensionsHelpers.d.ts +8 -0
- package/package/dist/common/extensionsHelpers.js +80 -0
- package/package/dist/common/formatZodError.d.ts +2 -0
- package/package/dist/common/formatZodError.js +18 -0
- package/package/dist/common/jwtTokenManager.d.ts +17 -0
- package/package/dist/common/jwtTokenManager.js +109 -0
- package/package/dist/common/launchBrowser.d.ts +25 -0
- package/package/dist/common/launchBrowser.js +172 -0
- package/package/dist/common/playwrightContext.d.ts +31 -0
- package/package/dist/common/playwrightContext.js +144 -0
- package/package/dist/common/runApi/errors.d.ts +72 -0
- package/package/dist/common/runApi/errors.js +169 -0
- package/package/dist/common/runApi/importUsingImportFunction.d.ts +9 -0
- package/package/dist/common/runApi/importUsingImportFunction.js +46 -0
- package/package/dist/common/runApi/index.d.ts +11 -0
- package/package/dist/common/runApi/index.js +199 -0
- package/package/dist/common/runApi/types.d.ts +830 -0
- package/package/dist/common/runApi/types.js +73 -0
- package/package/dist/common/settingsSchema.d.ts +518 -0
- package/package/dist/common/settingsSchema.js +57 -0
- package/package/dist/common/setupContextHook.d.ts +17 -0
- package/package/dist/common/setupContextHook.js +22 -0
- package/package/dist/common/telemetry.d.ts +3 -0
- package/package/dist/common/telemetry.js +32 -0
- package/package/dist/index.d.ts +4 -0
- package/package/dist/index.js +69 -0
- package/package/dist/runtime/RunError.d.ts +5 -0
- package/package/dist/runtime/RunError.js +19 -0
- package/package/dist/runtime/attemptStore.d.ts +2 -0
- package/package/dist/runtime/attemptStore.js +23 -0
- package/package/dist/runtime/downloadDirectory.d.ts +1 -0
- package/package/dist/runtime/downloadDirectory.js +19 -0
- package/package/dist/runtime/enums.d.js +5 -0
- package/package/dist/runtime/enums.d.ts +11 -0
- package/package/dist/runtime/enums.js +18 -0
- package/package/dist/runtime/executionHelpers.test.js +52 -0
- package/package/dist/runtime/export.d.js +5 -0
- package/package/dist/runtime/export.d.ts +228 -0
- package/package/dist/runtime/extendPayload.d.ts +2 -0
- package/package/dist/runtime/extendPayload.js +21 -0
- package/package/dist/runtime/extendTimeout.d.ts +1 -0
- package/package/dist/runtime/extendTimeout.js +23 -0
- package/package/dist/runtime/getAuthSessionParameters.d.ts +1 -0
- package/package/dist/runtime/getAuthSessionParameters.js +20 -0
- package/package/dist/runtime/index.d.ts +7 -0
- package/package/dist/runtime/index.js +54 -0
- package/package/dist/runtime/runInfo.d.ts +2 -0
- package/package/dist/runtime/runInfo.js +21 -0
- package/package.json +1 -2
- package/WebTemplate.zip +0 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { Payload } from "../../../runtime/export";
|
|
2
|
+
import { RunApiStorageState } from "../../../common/runApi";
|
|
3
|
+
import type { BaseCommandOptions } from "../commands/types";
|
|
4
|
+
export declare function executeRunApiCLI({ apiName, inputData, retries, authSession, outputFile, trace, ...rest }: {
|
|
5
|
+
apiName: string;
|
|
6
|
+
inputData: object | null | undefined;
|
|
7
|
+
retries: number;
|
|
8
|
+
authSession?: {
|
|
9
|
+
id: string;
|
|
10
|
+
autoRecreate: boolean;
|
|
11
|
+
checkRetries: number;
|
|
12
|
+
createRetries: number;
|
|
13
|
+
};
|
|
14
|
+
outputFile?: string;
|
|
15
|
+
} & BaseCommandOptions): Promise<void>;
|
|
16
|
+
export declare function executeAttemptApiCLI({ apiName, inputData, authSessionId, outputFile, trace, ...rest }: {
|
|
17
|
+
apiName: string;
|
|
18
|
+
inputData: object | null | undefined;
|
|
19
|
+
authSessionId?: string;
|
|
20
|
+
outputFile?: string;
|
|
21
|
+
} & BaseCommandOptions): Promise<void>;
|
|
22
|
+
declare function handleApiResult({ apiResult, outputFile, }: {
|
|
23
|
+
apiResult: {
|
|
24
|
+
result: any;
|
|
25
|
+
payloadToAppend?: Payload[];
|
|
26
|
+
};
|
|
27
|
+
outputFile?: string;
|
|
28
|
+
}): Promise<void>;
|
|
29
|
+
export declare const _handleApiResult: typeof handleApiResult;
|
|
30
|
+
declare function writeResultToFile(outputFile: string, result: any, payloadToAppend?: Payload[]): Promise<void>;
|
|
31
|
+
export declare const _writeResultToFile: typeof writeResultToFile;
|
|
32
|
+
declare function attemptApi({ apiName, inputData, auth, proxy, headless, timeout, traceId, keepBrowserOpen, }: {
|
|
33
|
+
apiName: string;
|
|
34
|
+
inputData: object | null | undefined;
|
|
35
|
+
auth?: RunApiStorageState;
|
|
36
|
+
traceId?: string;
|
|
37
|
+
} & Omit<BaseCommandOptions, "trace">): Promise<{
|
|
38
|
+
result: any;
|
|
39
|
+
payloadToAppend: Payload[] | undefined;
|
|
40
|
+
}>;
|
|
41
|
+
export declare const _attemptApi: typeof attemptApi;
|
|
42
|
+
export {};
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports._writeResultToFile = exports._handleApiResult = exports._attemptApi = void 0;
|
|
7
|
+
exports.executeAttemptApiCLI = executeAttemptApiCLI;
|
|
8
|
+
exports.executeRunApiCLI = executeRunApiCLI;
|
|
9
|
+
var fs = _interopRequireWildcard(require("fs-extra"));
|
|
10
|
+
var _runApi = require("../../../common/runApi");
|
|
11
|
+
var _tsNodeImport = require("../../common/tsNodeImport");
|
|
12
|
+
var _authSession = require("./authSession");
|
|
13
|
+
var _helpers = require("../helpers");
|
|
14
|
+
var _terminal = require("../helpers/terminal");
|
|
15
|
+
var _constants = require("../../../common/constants");
|
|
16
|
+
var _browser = require("../helpers/browser");
|
|
17
|
+
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); }
|
|
18
|
+
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; }
|
|
19
|
+
async function executeRunApiCLI({
|
|
20
|
+
apiName,
|
|
21
|
+
inputData,
|
|
22
|
+
retries,
|
|
23
|
+
authSession,
|
|
24
|
+
outputFile,
|
|
25
|
+
trace,
|
|
26
|
+
...rest
|
|
27
|
+
}) {
|
|
28
|
+
await (0, _helpers.assertApiFileExists)(_constants.API_FOLDER_NAME, apiName);
|
|
29
|
+
(0, _helpers.registerGetAuthSessionParameters)(authSession?.id);
|
|
30
|
+
(0, _terminal.terminal)(`^+Running API ^c${apiName}^:\n`);
|
|
31
|
+
const apiResult = await (async () => {
|
|
32
|
+
for (let i = 0; i < retries; i++) {
|
|
33
|
+
(0, _terminal.terminal)(`\n^+Executing ^c${apiName} ^/(Attempt ${i + 1}) ^:...\n`);
|
|
34
|
+
let auth;
|
|
35
|
+
if (authSession) {
|
|
36
|
+
auth = await (0, _authSession.executeRunValidateAuthSessionCLI)({
|
|
37
|
+
...authSession,
|
|
38
|
+
trace,
|
|
39
|
+
...rest
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
try {
|
|
43
|
+
return await attemptApi({
|
|
44
|
+
apiName,
|
|
45
|
+
inputData,
|
|
46
|
+
auth,
|
|
47
|
+
traceId: trace ? `${apiName}-attempt-${i + 1}` : undefined,
|
|
48
|
+
...rest
|
|
49
|
+
});
|
|
50
|
+
} catch (error) {
|
|
51
|
+
if (error instanceof _runApi.AutomationError) {
|
|
52
|
+
(0, _helpers.logAutomationError)(error);
|
|
53
|
+
(0, _terminal.terminal)(`^r^+Attempt ${i + 1} failed^:\n`);
|
|
54
|
+
continue;
|
|
55
|
+
}
|
|
56
|
+
throw error;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
})();
|
|
60
|
+
if (apiResult === undefined) {
|
|
61
|
+
throw new _helpers.CLIError(`^r^+Failed to run API ^:^+${apiName}^:: ^RExceeded maximum retries of ^+${retries}^:\n`, {
|
|
62
|
+
autoColor: false
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
return handleApiResult({
|
|
66
|
+
apiResult,
|
|
67
|
+
outputFile
|
|
68
|
+
});
|
|
69
|
+
}
|
|
70
|
+
async function executeAttemptApiCLI({
|
|
71
|
+
apiName,
|
|
72
|
+
inputData,
|
|
73
|
+
authSessionId,
|
|
74
|
+
outputFile,
|
|
75
|
+
trace,
|
|
76
|
+
...rest
|
|
77
|
+
}) {
|
|
78
|
+
(0, _terminal.terminal)(`^+Execute API attempt for ^c${apiName}^:\n`);
|
|
79
|
+
await (0, _helpers.assertApiFileExists)(_constants.API_FOLDER_NAME, apiName);
|
|
80
|
+
(0, _helpers.registerGetAuthSessionParameters)(authSessionId);
|
|
81
|
+
let storageState;
|
|
82
|
+
if (authSessionId) {
|
|
83
|
+
({
|
|
84
|
+
storageState
|
|
85
|
+
} = await (0, _helpers.loadAuthSessionInstance)(authSessionId));
|
|
86
|
+
}
|
|
87
|
+
return await (0, _helpers.withCLIContext)(async () => {
|
|
88
|
+
const apiResult = await attemptApi({
|
|
89
|
+
apiName,
|
|
90
|
+
inputData,
|
|
91
|
+
auth: storageState,
|
|
92
|
+
traceId: trace ? `${apiName}-attempt` : undefined,
|
|
93
|
+
...rest
|
|
94
|
+
});
|
|
95
|
+
return await handleApiResult({
|
|
96
|
+
apiResult,
|
|
97
|
+
outputFile
|
|
98
|
+
});
|
|
99
|
+
}, {
|
|
100
|
+
authSessionId
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
async function handleApiResult({
|
|
104
|
+
apiResult,
|
|
105
|
+
outputFile
|
|
106
|
+
}) {
|
|
107
|
+
const {
|
|
108
|
+
result,
|
|
109
|
+
payloadToAppend
|
|
110
|
+
} = apiResult;
|
|
111
|
+
(0, _terminal.terminal)(`^+^gAPI executed successfully^:\n`);
|
|
112
|
+
if (!outputFile) {
|
|
113
|
+
if (!result) {
|
|
114
|
+
(0, _terminal.terminal)(`^+^yNo result returned from the API^:\n`);
|
|
115
|
+
} else {
|
|
116
|
+
(0, _terminal.terminal)(`^+^gResult:^:\n`);
|
|
117
|
+
(0, _terminal.terminal)(`${JSON.stringify(result, null, 2)}\n`);
|
|
118
|
+
}
|
|
119
|
+
if (payloadToAppend && payloadToAppend.length > 0) {
|
|
120
|
+
(0, _terminal.terminal)(`^+^gExtended payloads:^ ^/^G(This will only take effect if this API run was part of a job.)^:\n`);
|
|
121
|
+
(0, _terminal.terminal)(`${JSON.stringify(payloadToAppend, null, 2)}\n`);
|
|
122
|
+
}
|
|
123
|
+
return;
|
|
124
|
+
}
|
|
125
|
+
await writeResultToFile(outputFile, result, payloadToAppend);
|
|
126
|
+
}
|
|
127
|
+
const _handleApiResult = exports._handleApiResult = handleApiResult;
|
|
128
|
+
async function writeResultToFile(outputFile, result, payloadToAppend) {
|
|
129
|
+
const resultToWrite = {
|
|
130
|
+
result
|
|
131
|
+
};
|
|
132
|
+
if (payloadToAppend && payloadToAppend.length > 0) {
|
|
133
|
+
resultToWrite["extendedPayloads"] = payloadToAppend;
|
|
134
|
+
}
|
|
135
|
+
try {
|
|
136
|
+
await fs.writeJSON(outputFile, resultToWrite, {
|
|
137
|
+
spaces: 2
|
|
138
|
+
});
|
|
139
|
+
(0, _terminal.terminal)(`^+^gResults written to^ ^_${outputFile}^:\n`);
|
|
140
|
+
} catch (error) {
|
|
141
|
+
throw new _helpers.CLIError(`Failed to write result to file: ${error.message}`);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
const _writeResultToFile = exports._writeResultToFile = writeResultToFile;
|
|
145
|
+
async function attemptApi({
|
|
146
|
+
apiName,
|
|
147
|
+
inputData,
|
|
148
|
+
auth,
|
|
149
|
+
proxy,
|
|
150
|
+
headless,
|
|
151
|
+
timeout,
|
|
152
|
+
traceId,
|
|
153
|
+
keepBrowserOpen
|
|
154
|
+
}) {
|
|
155
|
+
return await (0, _helpers.withTimeout)(async abortSignal => (0, _helpers.withCLITrace)(async tracing => {
|
|
156
|
+
const runApiResult = await (0, _runApi.runApi)({
|
|
157
|
+
automationFunction: {
|
|
158
|
+
name: `${_constants.API_FOLDER_NAME}/${apiName}`,
|
|
159
|
+
params: inputData
|
|
160
|
+
},
|
|
161
|
+
runOptions: await (0, _browser.getCLIRunOptions)({
|
|
162
|
+
headless,
|
|
163
|
+
proxy,
|
|
164
|
+
keepBrowserOpen
|
|
165
|
+
}),
|
|
166
|
+
auth: auth ? {
|
|
167
|
+
session: {
|
|
168
|
+
type: "state",
|
|
169
|
+
state: auth
|
|
170
|
+
}
|
|
171
|
+
} : undefined,
|
|
172
|
+
tracing,
|
|
173
|
+
importFunction: _tsNodeImport.tsNodeImport,
|
|
174
|
+
abortSignal
|
|
175
|
+
});
|
|
176
|
+
if (runApiResult.isErr()) {
|
|
177
|
+
throw runApiResult.error;
|
|
178
|
+
}
|
|
179
|
+
const {
|
|
180
|
+
result,
|
|
181
|
+
extendedPayloads: payloadToAppend
|
|
182
|
+
} = runApiResult.value;
|
|
183
|
+
return {
|
|
184
|
+
result,
|
|
185
|
+
payloadToAppend
|
|
186
|
+
};
|
|
187
|
+
}, traceId), timeout);
|
|
188
|
+
}
|
|
189
|
+
const _attemptApi = exports._attemptApi = attemptApi;
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
import type { BaseCommandOptions } from "../commands/types";
|
|
2
|
+
import { RunApiStorageState } from "../../../common/runApi";
|
|
3
|
+
import { AuthSessionMetadata } from "../types";
|
|
4
|
+
export declare function executeRunValidateAuthSessionCLI({ id, autoRecreate, checkRetries, createRetries, ...rest }: {
|
|
5
|
+
id: string;
|
|
6
|
+
autoRecreate: boolean;
|
|
7
|
+
checkRetries: number;
|
|
8
|
+
createRetries: number;
|
|
9
|
+
} & BaseCommandOptions): Promise<RunApiStorageState>;
|
|
10
|
+
export declare function executeRunCreateAuthSessionCLI({ id, input, checkRetries, createRetries, log, ...rest }: {
|
|
11
|
+
id?: string;
|
|
12
|
+
input: any;
|
|
13
|
+
checkRetries: number;
|
|
14
|
+
createRetries: number;
|
|
15
|
+
log?: boolean;
|
|
16
|
+
metadata?: AuthSessionMetadata;
|
|
17
|
+
} & BaseCommandOptions): Promise<{
|
|
18
|
+
cookies: {
|
|
19
|
+
value: string;
|
|
20
|
+
name: string;
|
|
21
|
+
path: string;
|
|
22
|
+
domain: string;
|
|
23
|
+
expires: number;
|
|
24
|
+
httpOnly: boolean;
|
|
25
|
+
secure: boolean;
|
|
26
|
+
sameSite: "Strict" | "Lax" | "None";
|
|
27
|
+
}[];
|
|
28
|
+
origins: {
|
|
29
|
+
origin: string;
|
|
30
|
+
localStorage: {
|
|
31
|
+
value: string;
|
|
32
|
+
name: string;
|
|
33
|
+
}[];
|
|
34
|
+
}[];
|
|
35
|
+
sessionStorage?: {
|
|
36
|
+
sessionStorage: {
|
|
37
|
+
value: string;
|
|
38
|
+
name: string;
|
|
39
|
+
}[];
|
|
40
|
+
origin: string;
|
|
41
|
+
}[] | undefined;
|
|
42
|
+
}>;
|
|
43
|
+
export declare function executeRunUpdateAuthSessionCLI({ id, input, checkRetries, createRetries, ...rest }: {
|
|
44
|
+
id: string;
|
|
45
|
+
input?: any;
|
|
46
|
+
checkRetries: number;
|
|
47
|
+
createRetries: number;
|
|
48
|
+
} & BaseCommandOptions): Promise<{
|
|
49
|
+
cookies: {
|
|
50
|
+
value: string;
|
|
51
|
+
name: string;
|
|
52
|
+
path: string;
|
|
53
|
+
domain: string;
|
|
54
|
+
expires: number;
|
|
55
|
+
httpOnly: boolean;
|
|
56
|
+
secure: boolean;
|
|
57
|
+
sameSite: "Strict" | "Lax" | "None";
|
|
58
|
+
}[];
|
|
59
|
+
origins: {
|
|
60
|
+
origin: string;
|
|
61
|
+
localStorage: {
|
|
62
|
+
value: string;
|
|
63
|
+
name: string;
|
|
64
|
+
}[];
|
|
65
|
+
}[];
|
|
66
|
+
sessionStorage?: {
|
|
67
|
+
sessionStorage: {
|
|
68
|
+
value: string;
|
|
69
|
+
name: string;
|
|
70
|
+
}[];
|
|
71
|
+
origin: string;
|
|
72
|
+
}[] | undefined;
|
|
73
|
+
}>;
|
|
74
|
+
export declare function executeAttemptCreateAuthSessionCLI({ id, input, ...rest }: {
|
|
75
|
+
id?: string;
|
|
76
|
+
input: any;
|
|
77
|
+
} & BaseCommandOptions): Promise<{
|
|
78
|
+
cookies: {
|
|
79
|
+
value: string;
|
|
80
|
+
name: string;
|
|
81
|
+
path: string;
|
|
82
|
+
domain: string;
|
|
83
|
+
expires: number;
|
|
84
|
+
httpOnly: boolean;
|
|
85
|
+
secure: boolean;
|
|
86
|
+
sameSite: "Strict" | "Lax" | "None";
|
|
87
|
+
}[];
|
|
88
|
+
origins: {
|
|
89
|
+
origin: string;
|
|
90
|
+
localStorage: {
|
|
91
|
+
value: string;
|
|
92
|
+
name: string;
|
|
93
|
+
}[];
|
|
94
|
+
}[];
|
|
95
|
+
sessionStorage?: {
|
|
96
|
+
sessionStorage: {
|
|
97
|
+
value: string;
|
|
98
|
+
name: string;
|
|
99
|
+
}[];
|
|
100
|
+
origin: string;
|
|
101
|
+
}[] | undefined;
|
|
102
|
+
}>;
|
|
103
|
+
export declare function executeAttemptCheckAuthSessionCLI({ id, ...rest }: {
|
|
104
|
+
id: string;
|
|
105
|
+
} & BaseCommandOptions): Promise<{
|
|
106
|
+
cookies: {
|
|
107
|
+
value: string;
|
|
108
|
+
name: string;
|
|
109
|
+
path: string;
|
|
110
|
+
domain: string;
|
|
111
|
+
expires: number;
|
|
112
|
+
httpOnly: boolean;
|
|
113
|
+
secure: boolean;
|
|
114
|
+
sameSite: "Strict" | "Lax" | "None";
|
|
115
|
+
}[];
|
|
116
|
+
origins: {
|
|
117
|
+
origin: string;
|
|
118
|
+
localStorage: {
|
|
119
|
+
value: string;
|
|
120
|
+
name: string;
|
|
121
|
+
}[];
|
|
122
|
+
}[];
|
|
123
|
+
sessionStorage?: {
|
|
124
|
+
sessionStorage: {
|
|
125
|
+
value: string;
|
|
126
|
+
name: string;
|
|
127
|
+
}[];
|
|
128
|
+
origin: string;
|
|
129
|
+
}[] | undefined;
|
|
130
|
+
}>;
|
|
131
|
+
declare function runCheck({ auth, proxy, headless, timeout, traceId, keepBrowserOpen, }: {
|
|
132
|
+
auth: RunApiStorageState;
|
|
133
|
+
traceId?: string;
|
|
134
|
+
} & Omit<BaseCommandOptions, "trace">): Promise<boolean>;
|
|
135
|
+
export declare const _runCheck: typeof runCheck;
|
|
136
|
+
declare function runCreate({ authSessionInput, proxy, headless, timeout, traceId, keepBrowserOpen, }: {
|
|
137
|
+
authSessionInput: Record<string, any>;
|
|
138
|
+
traceId?: string;
|
|
139
|
+
} & Omit<BaseCommandOptions, "trace">): Promise<{
|
|
140
|
+
cookies: {
|
|
141
|
+
value: string;
|
|
142
|
+
name: string;
|
|
143
|
+
path: string;
|
|
144
|
+
domain: string;
|
|
145
|
+
expires: number;
|
|
146
|
+
httpOnly: boolean;
|
|
147
|
+
secure: boolean;
|
|
148
|
+
sameSite: "Strict" | "Lax" | "None";
|
|
149
|
+
}[];
|
|
150
|
+
origins: {
|
|
151
|
+
origin: string;
|
|
152
|
+
localStorage: {
|
|
153
|
+
value: string;
|
|
154
|
+
name: string;
|
|
155
|
+
}[];
|
|
156
|
+
}[];
|
|
157
|
+
sessionStorage?: {
|
|
158
|
+
sessionStorage: {
|
|
159
|
+
value: string;
|
|
160
|
+
name: string;
|
|
161
|
+
}[];
|
|
162
|
+
origin: string;
|
|
163
|
+
}[] | undefined;
|
|
164
|
+
}>;
|
|
165
|
+
export declare const _runCreate: typeof runCreate;
|
|
166
|
+
declare function runCheckWithRetries({ auth, retries, ...rest }: {
|
|
167
|
+
auth: RunApiStorageState;
|
|
168
|
+
retries?: number;
|
|
169
|
+
} & BaseCommandOptions): Promise<boolean>;
|
|
170
|
+
export declare const _runCheckWithRetries: typeof runCheckWithRetries;
|
|
171
|
+
declare function runCreateWithRetries({ authSessionId, authSessionInput, retries, trace, metadata, ...rest }: {
|
|
172
|
+
authSessionId: string;
|
|
173
|
+
authSessionInput: any;
|
|
174
|
+
retries?: number;
|
|
175
|
+
metadata?: AuthSessionMetadata;
|
|
176
|
+
} & BaseCommandOptions): Promise<{
|
|
177
|
+
cookies: {
|
|
178
|
+
value: string;
|
|
179
|
+
name: string;
|
|
180
|
+
path: string;
|
|
181
|
+
domain: string;
|
|
182
|
+
expires: number;
|
|
183
|
+
httpOnly: boolean;
|
|
184
|
+
secure: boolean;
|
|
185
|
+
sameSite: "Strict" | "Lax" | "None";
|
|
186
|
+
}[];
|
|
187
|
+
origins: {
|
|
188
|
+
origin: string;
|
|
189
|
+
localStorage: {
|
|
190
|
+
value: string;
|
|
191
|
+
name: string;
|
|
192
|
+
}[];
|
|
193
|
+
}[];
|
|
194
|
+
sessionStorage?: {
|
|
195
|
+
sessionStorage: {
|
|
196
|
+
value: string;
|
|
197
|
+
name: string;
|
|
198
|
+
}[];
|
|
199
|
+
origin: string;
|
|
200
|
+
}[] | undefined;
|
|
201
|
+
}>;
|
|
202
|
+
export declare const _runCreateWithRetries: typeof runCreateWithRetries;
|
|
203
|
+
export declare function executeRecordAuthSessionCLI({ id, checkRetries, timeout, headless, proxy, trace, keepBrowserOpen, startUrl, finishUrl, }: {
|
|
204
|
+
id?: string;
|
|
205
|
+
checkRetries: number;
|
|
206
|
+
startUrl: string;
|
|
207
|
+
finishUrl: string;
|
|
208
|
+
} & BaseCommandOptions): Promise<void>;
|
|
209
|
+
export {};
|