@intuned/runtime-dev 1.3.18-interface.13 → 1.3.18-interface.4
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 +21 -0
- package/.eslintignore +10 -0
- package/.eslintrc.js +39 -0
- package/.turbo/turbo-build.log +2 -0
- package/WebTemplate.zip +0 -0
- package/dist/commands/api/run.d.ts +1 -3
- package/dist/commands/api/run.js +65 -2039
- package/dist/commands/auth-sessions/load.d.ts +1 -0
- package/dist/commands/auth-sessions/load.js +28 -1552
- package/dist/commands/auth-sessions/run-check.d.ts +1 -0
- package/dist/commands/auth-sessions/run-check.js +72 -1961
- package/dist/commands/auth-sessions/run-create.d.ts +1 -0
- package/dist/commands/auth-sessions/run-create.js +66 -1955
- package/dist/commands/browser/save-state.d.ts +1 -0
- package/dist/commands/browser/save-state.js +11 -102
- package/dist/commands/browser/start-browser.d.ts +1 -0
- package/dist/commands/browser/start-browser.js +9 -62
- package/dist/commands/build.d.ts +1 -2
- package/dist/commands/build.js +53 -172
- package/dist/commands/common/browserUtils.d.ts +14 -0
- package/dist/commands/common/browserUtils.js +58 -0
- package/dist/commands/common/getFirstLineNumber.d.ts +9 -0
- package/dist/commands/common/getFirstLineNumber.js +101 -0
- package/dist/commands/common/getFirstLineNumber.test.js +228 -0
- package/dist/commands/common/projectExclusions.d.ts +2 -0
- package/dist/commands/common/projectExclusions.js +8 -0
- package/dist/commands/common/sendMessageToClient.d.ts +1 -0
- package/dist/commands/common/sendMessageToClient.js +10 -0
- package/dist/commands/common/tsNodeImport.d.ts +2 -5
- package/dist/commands/common/tsNodeImport.js +16 -55
- package/dist/commands/common/utils/fileUtils.d.ts +6 -0
- package/dist/commands/common/utils/fileUtils.js +33 -0
- package/dist/commands/common/utils/interfaceClient.d.ts +31 -0
- package/dist/commands/common/utils/interfaceClient.js +99 -0
- package/dist/commands/common/utils/settings.d.ts +2 -0
- package/dist/commands/common/utils/settings.js +31 -0
- package/dist/commands/common/utils/template.d.ts +2 -0
- package/dist/commands/common/utils/template.js +31 -0
- package/dist/commands/get-headless-user-agent.d.ts +1 -2
- package/dist/commands/get-headless-user-agent.js +12 -348
- package/dist/commands/interface/pingPong.d.ts +2 -0
- package/dist/commands/interface/pingPong.js +11 -0
- package/dist/commands/interface/run.d.ts +1 -3
- package/dist/commands/interface/run.js +140 -2034
- package/dist/commands/interface/runApi.d.ts +1 -0
- package/dist/commands/interface/runApi.js +102 -0
- 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 +30 -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 +19 -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 +24 -0
- package/dist/commands/intuned-cli/commands/authsession.command.d.ts +1 -0
- package/dist/commands/intuned-cli/commands/authsession.command.js +8 -0
- package/dist/commands/intuned-cli/commands/authsession_record.command.d.ts +1 -0
- package/dist/commands/intuned-cli/commands/authsession_record.command.js +32 -0
- package/dist/commands/intuned-cli/commands/authsession_scaffold.command.d.ts +1 -0
- package/dist/commands/intuned-cli/commands/authsession_scaffold.command.js +16 -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 +42 -0
- package/dist/commands/intuned-cli/commands/index.d.ts +18 -0
- package/dist/commands/intuned-cli/commands/index.js +203 -0
- package/dist/commands/intuned-cli/commands/provision.command.d.ts +13 -0
- package/dist/commands/intuned-cli/commands/provision.command.js +50 -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 +46 -0
- package/dist/commands/intuned-cli/commands/run_authsession.command.d.ts +34 -0
- package/dist/commands/intuned-cli/commands/run_authsession.command.js +17 -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 +35 -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 +35 -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 +33 -0
- package/dist/commands/intuned-cli/commands/types.d.ts +39 -0
- package/dist/commands/intuned-cli/commands/types.js +33 -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 +398 -0
- package/dist/commands/intuned-cli/controller/__test__/authSession.test.js +1060 -0
- package/dist/commands/intuned-cli/controller/api.d.ts +42 -0
- package/dist/commands/intuned-cli/controller/api.js +195 -0
- package/dist/commands/intuned-cli/controller/authSession.d.ts +209 -0
- package/dist/commands/intuned-cli/controller/authSession.js +425 -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 +5 -0
- package/dist/commands/intuned-cli/controller/deploy.js +318 -0
- 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/controller/provision.d.ts +21 -0
- package/dist/commands/intuned-cli/controller/provision.js +300 -0
- package/dist/commands/intuned-cli/controller/scaffold.d.ts +1 -0
- package/dist/commands/intuned-cli/controller/scaffold.js +77 -0
- package/dist/commands/intuned-cli/helpers/__test__/browser.test.js +152 -0
- package/dist/commands/intuned-cli/helpers/__test__/tracing.test.js +41 -0
- package/dist/commands/intuned-cli/helpers/api.d.ts +3 -0
- package/dist/commands/intuned-cli/helpers/api.js +16 -0
- package/dist/commands/intuned-cli/helpers/auth.d.ts +46 -0
- package/dist/commands/intuned-cli/helpers/auth.js +147 -0
- package/dist/commands/intuned-cli/helpers/backend.d.ts +8 -0
- package/dist/commands/intuned-cli/helpers/backend.js +35 -0
- package/dist/commands/intuned-cli/helpers/browser.d.ts +14 -0
- package/dist/commands/intuned-cli/helpers/browser.js +93 -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 +16 -0
- package/dist/commands/intuned-cli/helpers/errors.js +44 -0
- package/dist/commands/intuned-cli/helpers/index.d.ts +12 -0
- package/dist/commands/intuned-cli/helpers/index.js +137 -0
- package/dist/commands/intuned-cli/helpers/intunedJson.d.ts +39 -0
- package/dist/commands/intuned-cli/helpers/intunedJson.js +20 -0
- package/dist/commands/intuned-cli/helpers/prompts.d.ts +3 -0
- package/dist/commands/intuned-cli/helpers/prompts.js +71 -0
- 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/traces.d.ts +2 -0
- package/dist/commands/intuned-cli/helpers/traces.js +32 -0
- package/dist/commands/intuned-cli/helpers/validation.d.ts +2 -0
- package/dist/commands/intuned-cli/helpers/validation.js +14 -0
- package/dist/commands/intuned-cli/helpers/wrapper.d.ts +2 -0
- package/dist/commands/intuned-cli/helpers/wrapper.js +76 -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 -2
- package/dist/commands/intuned-cli/main.js +25 -5392
- package/dist/commands/intuned-cli/types.d.ts +70 -0
- package/dist/commands/intuned-cli/types.js +22 -0
- package/dist/commands/ts-check.d.ts +1 -0
- package/dist/commands/ts-check.js +29 -131
- package/dist/common/Logger/Logger/index.d.ts +12 -0
- package/dist/common/Logger/Logger/index.js +60 -0
- package/dist/common/Logger/Logger/types.d.ts +8 -0
- package/dist/common/Logger/Logger/types.js +5 -0
- package/dist/common/Logger/index.d.ts +12 -0
- package/dist/common/Logger/index.js +60 -0
- package/dist/common/Logger/types.d.ts +8 -0
- package/dist/common/Logger/types.js +5 -0
- package/dist/common/asyncLocalStorage/index.d.ts +8 -9
- package/dist/common/asyncLocalStorage/index.js +9 -33
- package/dist/common/backendFunctions/getAuthSessionParameters.d.ts +1 -0
- package/dist/common/backendFunctions/getAuthSessionParameters.js +38 -0
- package/dist/common/binStartupScript.d.ts +1 -2
- package/dist/common/binStartupScript.js +11 -126
- package/dist/common/browserTabs.d.ts +72 -0
- package/dist/common/browserTabs.js +74 -0
- package/dist/common/cleanEnvironmentVariables.d.ts +1 -3
- package/dist/common/cleanEnvironmentVariables.js +7 -29
- package/dist/common/constants.d.ts +11 -13
- package/dist/common/constants.js +15 -57
- package/dist/common/contextStorageStateHelpers.d.ts +6 -8
- package/dist/common/contextStorageStateHelpers.js +22 -46
- package/dist/common/extension/extensionsHelpers.d.ts +11 -0
- package/dist/common/extension/extensionsHelpers.js +147 -0
- package/dist/common/extension/intunedExtensionServer.d.ts +24 -0
- package/dist/common/extension/intunedExtensionServer.js +178 -0
- package/dist/common/extension/types.d.ts +212 -0
- package/dist/common/extension/types.js +51 -0
- package/dist/common/formatZodError.d.ts +2 -0
- package/dist/common/formatZodError.js +18 -0
- package/dist/common/intunedJson.d.ts +229 -0
- package/dist/common/intunedJson.js +133 -0
- package/dist/common/jwtTokenManager.d.ts +4 -6
- package/dist/common/jwtTokenManager.js +41 -107
- package/dist/common/launchBrowser.d.ts +34 -0
- package/dist/common/launchBrowser.js +248 -0
- package/dist/common/playwrightContext.d.ts +30 -0
- package/dist/common/playwrightContext.js +153 -0
- package/dist/common/runApi/importUsingImportFunction.d.ts +7 -0
- package/dist/common/runApi/importUsingImportFunction.js +46 -0
- package/dist/common/runApi/index.d.ts +6 -9
- package/dist/common/runApi/index.js +78 -1765
- package/dist/common/settingsSchema.d.ts +51 -58
- package/dist/common/settingsSchema.js +20 -54
- package/dist/common/setupContextHook.d.ts +16 -0
- package/dist/common/setupContextHook.js +22 -0
- package/dist/common/telemetry.d.ts +3 -6
- package/dist/common/telemetry.js +9 -40
- package/dist/index.d.ts +4 -6
- package/dist/index.js +92 -783
- package/dist/runtime/RunError.d.ts +5 -0
- package/dist/runtime/RunError.js +19 -0
- package/dist/runtime/attemptStore.d.ts +2 -0
- package/dist/runtime/attemptStore.js +23 -0
- package/dist/runtime/captcha.d.ts +15 -0
- package/dist/runtime/captcha.js +191 -0
- package/dist/runtime/captcha.test.js +821 -0
- package/dist/runtime/downloadDirectory.d.ts +1 -0
- package/dist/runtime/downloadDirectory.js +19 -0
- package/dist/runtime/enums.d.js +5 -0
- package/dist/runtime/enums.d.ts +11 -0
- package/dist/runtime/enums.js +18 -0
- package/dist/runtime/executionHelpers.test.js +52 -0
- package/dist/runtime/export.d.js +5 -0
- package/dist/runtime/export.d.ts +284 -0
- package/dist/runtime/extendPayload.d.ts +2 -0
- package/dist/runtime/extendPayload.js +21 -0
- package/dist/runtime/extendTimeout.d.ts +1 -0
- package/dist/runtime/extendTimeout.js +23 -0
- package/dist/runtime/getAiGatewayConfig.d.ts +10 -0
- package/dist/runtime/getAiGatewayConfig.js +16 -0
- package/dist/runtime/getAuthSessionParameters.d.ts +1 -0
- package/dist/runtime/getAuthSessionParameters.js +20 -0
- package/dist/runtime/index.d.ts +10 -168
- package/dist/runtime/index.js +88 -778
- package/dist/runtime/persistentStore.d.ts +2 -0
- package/dist/runtime/persistentStore.js +37 -0
- package/dist/runtime/persistentStore.test.js +101 -0
- package/dist/runtime/runInfo.d.ts +2 -0
- package/dist/runtime/runInfo.js +21 -0
- package/package.json +16 -77
- package/template.tsconfig.json +11 -0
- package/tsconfig.eslint.json +5 -0
- package/tsconfig.json +25 -0
- package/typedoc.json +49 -0
- package/dist/export.d-BAUMB-lG.d.ts +0 -140
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
declare const fileNodeSchema: z.ZodObject<{
|
|
3
|
+
file: z.ZodObject<{
|
|
4
|
+
contents: z.ZodUnion<[z.ZodString, z.ZodType<Uint8Array, z.ZodTypeDef, Uint8Array>]>;
|
|
5
|
+
}, "strip", z.ZodTypeAny, {
|
|
6
|
+
contents: (string | Uint8Array) & (string | Uint8Array | undefined);
|
|
7
|
+
}, {
|
|
8
|
+
contents: (string | Uint8Array) & (string | Uint8Array | undefined);
|
|
9
|
+
}>;
|
|
10
|
+
}, "strip", z.ZodTypeAny, {
|
|
11
|
+
file: {
|
|
12
|
+
contents: (string | Uint8Array) & (string | Uint8Array | undefined);
|
|
13
|
+
};
|
|
14
|
+
}, {
|
|
15
|
+
file: {
|
|
16
|
+
contents: (string | Uint8Array) & (string | Uint8Array | undefined);
|
|
17
|
+
};
|
|
18
|
+
}>;
|
|
19
|
+
export type FileNode = z.infer<typeof fileNodeSchema>;
|
|
20
|
+
export type DirectoryNode = {
|
|
21
|
+
directory: {
|
|
22
|
+
[key: string]: FileNode | DirectoryNode;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
export declare const fileSystemTreeSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodType<DirectoryNode, z.ZodTypeDef, DirectoryNode>, z.ZodObject<{
|
|
26
|
+
file: z.ZodObject<{
|
|
27
|
+
contents: z.ZodUnion<[z.ZodString, z.ZodType<Uint8Array, z.ZodTypeDef, Uint8Array>]>;
|
|
28
|
+
}, "strip", z.ZodTypeAny, {
|
|
29
|
+
contents: (string | Uint8Array) & (string | Uint8Array | undefined);
|
|
30
|
+
}, {
|
|
31
|
+
contents: (string | Uint8Array) & (string | Uint8Array | undefined);
|
|
32
|
+
}>;
|
|
33
|
+
}, "strip", z.ZodTypeAny, {
|
|
34
|
+
file: {
|
|
35
|
+
contents: (string | Uint8Array) & (string | Uint8Array | undefined);
|
|
36
|
+
};
|
|
37
|
+
}, {
|
|
38
|
+
file: {
|
|
39
|
+
contents: (string | Uint8Array) & (string | Uint8Array | undefined);
|
|
40
|
+
};
|
|
41
|
+
}>]>>;
|
|
42
|
+
export type FileSystemTree = z.infer<typeof fileSystemTreeSchema>;
|
|
43
|
+
export interface AuthCredentials {
|
|
44
|
+
workspaceId: string;
|
|
45
|
+
apiKey: string;
|
|
46
|
+
}
|
|
47
|
+
export declare enum ApiAuthSessionBehavior {
|
|
48
|
+
PERFORM_CHECK_AND_REFRESH = "PERFORM_CHECK_AND_REFRESH",
|
|
49
|
+
SKIP_CHECK_AND_REFRESH = "SKIP_CHECK_AND_REFRESH"
|
|
50
|
+
}
|
|
51
|
+
export declare const CHECK_FAILED_ERROR_MESSAGE = "AuthSession check failed";
|
|
52
|
+
export type AuthSessionType = "API" | "MANUAL";
|
|
53
|
+
export type AuthSessionMetadata = {
|
|
54
|
+
createdAt: string;
|
|
55
|
+
updatedAt: string;
|
|
56
|
+
authSessionId: string;
|
|
57
|
+
authSessionType: AuthSessionType;
|
|
58
|
+
authSessionInput?: Record<string, any>;
|
|
59
|
+
authSessionProxy?: string;
|
|
60
|
+
recorderStartUrl?: string;
|
|
61
|
+
recorderEndUrl?: string;
|
|
62
|
+
};
|
|
63
|
+
export interface SessionStorageState {
|
|
64
|
+
origin: string;
|
|
65
|
+
sessionStorage: {
|
|
66
|
+
name: string;
|
|
67
|
+
value: string;
|
|
68
|
+
}[];
|
|
69
|
+
}
|
|
70
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.fileSystemTreeSchema = exports.CHECK_FAILED_ERROR_MESSAGE = exports.ApiAuthSessionBehavior = void 0;
|
|
7
|
+
var _zod = require("zod");
|
|
8
|
+
const fileNodeSchema = _zod.z.object({
|
|
9
|
+
file: _zod.z.object({
|
|
10
|
+
contents: _zod.z.union([_zod.z.string(), _zod.z.instanceof(Uint8Array)])
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
const directoryNodeSchema = _zod.z.lazy(() => _zod.z.object({
|
|
14
|
+
directory: fileSystemTreeSchema
|
|
15
|
+
}));
|
|
16
|
+
const fileSystemTreeSchema = exports.fileSystemTreeSchema = _zod.z.record(_zod.z.union([directoryNodeSchema, fileNodeSchema]));
|
|
17
|
+
let ApiAuthSessionBehavior = exports.ApiAuthSessionBehavior = function (ApiAuthSessionBehavior) {
|
|
18
|
+
ApiAuthSessionBehavior["PERFORM_CHECK_AND_REFRESH"] = "PERFORM_CHECK_AND_REFRESH";
|
|
19
|
+
ApiAuthSessionBehavior["SKIP_CHECK_AND_REFRESH"] = "SKIP_CHECK_AND_REFRESH";
|
|
20
|
+
return ApiAuthSessionBehavior;
|
|
21
|
+
}({});
|
|
22
|
+
const CHECK_FAILED_ERROR_MESSAGE = exports.CHECK_FAILED_ERROR_MESSAGE = "AuthSession check failed";
|
|
@@ -1,114 +1,23 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __copyProps = (to, from, except, desc) => {
|
|
9
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
10
|
-
for (let key of __getOwnPropNames(from))
|
|
11
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
12
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
13
|
-
}
|
|
14
|
-
return to;
|
|
15
|
-
};
|
|
16
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
17
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
18
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
19
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
20
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
21
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
22
|
-
mod
|
|
23
|
-
));
|
|
24
|
-
|
|
25
|
-
// src/commands/ts-check.ts
|
|
26
|
-
var ts = __toESM(require("typescript"));
|
|
27
|
-
var import_commander = require("commander");
|
|
28
|
-
var fs3 = __toESM(require("fs-extra"));
|
|
29
|
-
var path3 = __toESM(require("path"));
|
|
30
|
-
|
|
31
|
-
// src/commands/common/utils/template.ts
|
|
32
|
-
var fs2 = __toESM(require("fs-extra"));
|
|
33
|
-
var path2 = __toESM(require("path"));
|
|
34
|
-
|
|
35
|
-
// src/commands/common/utils/fileUtils.ts
|
|
36
|
-
var path = __toESM(require("path"));
|
|
37
|
-
var fs = __toESM(require("fs-extra"));
|
|
38
|
-
var import_dotenv = __toESM(require("dotenv"));
|
|
39
|
-
import_dotenv.default.config();
|
|
40
|
-
function getFullPathInProject(...paths) {
|
|
41
|
-
return path.resolve(process.cwd(), process.env.ROOT || "./", ...paths);
|
|
42
|
-
}
|
|
43
|
-
async function listProjectFilesAndFolders() {
|
|
44
|
-
const projectPath = path.resolve(process.cwd(), process.env.ROOT || "./");
|
|
45
|
-
try {
|
|
46
|
-
const files = await fs.readdir(projectPath, { withFileTypes: true });
|
|
47
|
-
return files.map((file) => ({
|
|
48
|
-
type: file.isDirectory() ? "Folder" : "File",
|
|
49
|
-
fullPath: path.join(projectPath, file.name),
|
|
50
|
-
name: file.name
|
|
51
|
-
}));
|
|
52
|
-
} catch (err) {
|
|
53
|
-
console.error("Error reading the directory:", err);
|
|
54
|
-
throw err;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
// src/commands/common/utils/template.ts
|
|
59
|
-
var moveTemplateFiles = async (templateName) => {
|
|
60
|
-
await fs2.remove("./intuned");
|
|
61
|
-
await fs2.ensureDir("./intuned");
|
|
62
|
-
const currentFileLocation = path2.resolve(
|
|
63
|
-
__dirname,
|
|
64
|
-
"..",
|
|
65
|
-
"..",
|
|
66
|
-
"..",
|
|
67
|
-
"..",
|
|
68
|
-
templateName
|
|
69
|
-
);
|
|
70
|
-
await fs2.copy(`${currentFileLocation}`, `./intuned/${templateName}`, {
|
|
71
|
-
filter: (src, _) => {
|
|
72
|
-
if (src.includes(".d.ts")) {
|
|
73
|
-
return false;
|
|
74
|
-
}
|
|
75
|
-
return true;
|
|
76
|
-
}
|
|
77
|
-
});
|
|
78
|
-
const filesAndFolders = await listProjectFilesAndFolders();
|
|
79
|
-
const pathsIgnoreList = [
|
|
80
|
-
getFullPathInProject("intuned"),
|
|
81
|
-
getFullPathInProject("node_modules"),
|
|
82
|
-
getFullPathInProject("package.json"),
|
|
83
|
-
getFullPathInProject("yarn.lock"),
|
|
84
|
-
getFullPathInProject(".env")
|
|
85
|
-
];
|
|
86
|
-
const filesToCopy = filesAndFolders.filter(
|
|
87
|
-
(file) => !pathsIgnoreList.includes(file.fullPath)
|
|
88
|
-
);
|
|
89
|
-
for (const file of filesToCopy) {
|
|
90
|
-
await fs2.copy(file.fullPath, `./intuned/${templateName}/${file.name}`);
|
|
91
|
-
}
|
|
92
|
-
};
|
|
2
|
+
"use strict";
|
|
93
3
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
4
|
+
var ts = _interopRequireWildcard(require("typescript"));
|
|
5
|
+
var _commander = require("commander");
|
|
6
|
+
var fs = _interopRequireWildcard(require("fs-extra"));
|
|
7
|
+
var path = _interopRequireWildcard(require("path"));
|
|
8
|
+
var _template = require("./common/utils/template");
|
|
9
|
+
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); }
|
|
10
|
+
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; }
|
|
11
|
+
_commander.program.description("Check TypeScript types in the project").option("-t, --template <type>", "template to use", "InterfaceTemplate").allowUnknownOption().action(async ({
|
|
12
|
+
template
|
|
13
|
+
}) => {
|
|
14
|
+
await (0, _template.moveTemplateFiles)(template);
|
|
15
|
+
const templateTsConfig = path.resolve(__dirname, "..", "..", "template.tsconfig.json");
|
|
16
|
+
await fs.copy(templateTsConfig, `./intuned/${template}/tsconfig.json`);
|
|
104
17
|
checkTypes(template);
|
|
105
18
|
});
|
|
106
19
|
function checkTypes(template) {
|
|
107
|
-
const configPath = ts.findConfigFile(
|
|
108
|
-
`./intuned/${template}`,
|
|
109
|
-
ts.sys.fileExists,
|
|
110
|
-
"tsconfig.json"
|
|
111
|
-
);
|
|
20
|
+
const configPath = ts.findConfigFile(`./intuned/${template}`, ts.sys.fileExists, "tsconfig.json");
|
|
112
21
|
if (!configPath) {
|
|
113
22
|
console.error("Could not find a valid 'tsconfig.json'.");
|
|
114
23
|
process.exit(1);
|
|
@@ -121,38 +30,27 @@ function checkTypes(template) {
|
|
|
121
30
|
fileExists: ts.sys.fileExists,
|
|
122
31
|
readFile: ts.sys.readFile
|
|
123
32
|
};
|
|
124
|
-
const parsed = ts.parseJsonConfigFileContent(
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
const program2 = ts.createProgram(parsed.fileNames, parsed.options);
|
|
130
|
-
const emitResult = program2.emit();
|
|
131
|
-
const allDiagnostics = ts.getPreEmitDiagnostics(program2).concat(emitResult.diagnostics);
|
|
132
|
-
allDiagnostics.forEach((diagnostic) => {
|
|
33
|
+
const parsed = ts.parseJsonConfigFileContent(config, parseConfigHost, "./intuned");
|
|
34
|
+
const program = ts.createProgram(parsed.fileNames, parsed.options);
|
|
35
|
+
const emitResult = program.emit();
|
|
36
|
+
const allDiagnostics = ts.getPreEmitDiagnostics(program).concat(emitResult.diagnostics);
|
|
37
|
+
allDiagnostics.forEach(diagnostic => {
|
|
133
38
|
if (diagnostic.file) {
|
|
134
|
-
const {
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
);
|
|
138
|
-
const message = ts.flattenDiagnosticMessageText(
|
|
139
|
-
|
|
140
|
-
"\n"
|
|
141
|
-
);
|
|
142
|
-
console.log(
|
|
143
|
-
`${diagnostic.file.fileName} (${line + 1},${character + 1}): ${message}`
|
|
144
|
-
);
|
|
39
|
+
const {
|
|
40
|
+
line,
|
|
41
|
+
character
|
|
42
|
+
} = ts.getLineAndCharacterOfPosition(diagnostic.file, diagnostic.start);
|
|
43
|
+
const message = ts.flattenDiagnosticMessageText(diagnostic.messageText, "\n");
|
|
44
|
+
console.log(`${diagnostic.file.fileName} (${line + 1},${character + 1}): ${message}`);
|
|
145
45
|
} else {
|
|
146
|
-
console.log(
|
|
147
|
-
ts.flattenDiagnosticMessageText(diagnostic.messageText, "\n")
|
|
148
|
-
);
|
|
46
|
+
console.log(ts.flattenDiagnosticMessageText(diagnostic.messageText, "\n"));
|
|
149
47
|
}
|
|
150
48
|
});
|
|
151
49
|
if (allDiagnostics.length === 0) {
|
|
152
|
-
console.log("
|
|
50
|
+
console.log("✨ TypeScript type checking passed without errors.");
|
|
153
51
|
} else {
|
|
154
52
|
console.error("Errors found during TypeScript type checking.");
|
|
155
53
|
process.exit(1);
|
|
156
54
|
}
|
|
157
55
|
}
|
|
158
|
-
|
|
56
|
+
_commander.program.parse(process.argv);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { LogEntry, LogMetadata } from "./types";
|
|
2
|
+
declare class Logger {
|
|
3
|
+
logFunction(entry: LogEntry): void;
|
|
4
|
+
private log;
|
|
5
|
+
trace(message: string, meta?: LogMetadata): void;
|
|
6
|
+
debug(message: string, meta?: LogMetadata): void;
|
|
7
|
+
info(message: string, meta?: LogMetadata): void;
|
|
8
|
+
warn(message: string, meta?: LogMetadata): void;
|
|
9
|
+
error(message: string, meta?: LogMetadata): void;
|
|
10
|
+
}
|
|
11
|
+
export declare const logger: Logger;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.logger = void 0;
|
|
7
|
+
var _nodeUtil = require("node:util");
|
|
8
|
+
var _chalk = _interopRequireDefault(require("chalk"));
|
|
9
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
|
+
const format = _nodeUtil.formatWithOptions.bind(undefined, {
|
|
11
|
+
colors: true
|
|
12
|
+
});
|
|
13
|
+
const LOG_LEVEL_COLORS = {
|
|
14
|
+
TRACE: _chalk.default.gray,
|
|
15
|
+
DEBUG: _chalk.default.blue,
|
|
16
|
+
INFO: _chalk.default.green,
|
|
17
|
+
WARN: _chalk.default.yellow,
|
|
18
|
+
ERROR: _chalk.default.red
|
|
19
|
+
};
|
|
20
|
+
class Logger {
|
|
21
|
+
logFunction(entry) {
|
|
22
|
+
const {
|
|
23
|
+
level,
|
|
24
|
+
timestamp,
|
|
25
|
+
message,
|
|
26
|
+
meta
|
|
27
|
+
} = entry;
|
|
28
|
+
const date = new Date(timestamp);
|
|
29
|
+
const levelColor = LOG_LEVEL_COLORS[level];
|
|
30
|
+
if (meta === undefined) {
|
|
31
|
+
process.stderr.write(`${format(date)} [@intuned/sdk][${levelColor(level)}] ${message}\n`);
|
|
32
|
+
} else {
|
|
33
|
+
process.stderr.write(`${format(date)} [@intuned/sdk][${levelColor(level)}] ${message} ${format(meta)}\n`);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
log(level, message, meta) {
|
|
37
|
+
this.logFunction({
|
|
38
|
+
level,
|
|
39
|
+
message,
|
|
40
|
+
meta: meta && Object.keys(meta).length === 0 ? undefined : meta,
|
|
41
|
+
timestamp: Date.now()
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
trace(message, meta) {
|
|
45
|
+
this.log("TRACE", message, meta);
|
|
46
|
+
}
|
|
47
|
+
debug(message, meta) {
|
|
48
|
+
this.log("DEBUG", message, meta);
|
|
49
|
+
}
|
|
50
|
+
info(message, meta) {
|
|
51
|
+
this.log("INFO", message, meta);
|
|
52
|
+
}
|
|
53
|
+
warn(message, meta) {
|
|
54
|
+
this.log("WARN", message, meta);
|
|
55
|
+
}
|
|
56
|
+
error(message, meta) {
|
|
57
|
+
this.log("ERROR", message, meta);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
const logger = exports.logger = new Logger();
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { LogEntry, LogMetadata } from "./types";
|
|
2
|
+
declare class Logger {
|
|
3
|
+
logFunction(entry: LogEntry): void;
|
|
4
|
+
private log;
|
|
5
|
+
trace(message: string, meta?: LogMetadata): void;
|
|
6
|
+
debug(message: string, meta?: LogMetadata): void;
|
|
7
|
+
info(message: string, meta?: LogMetadata): void;
|
|
8
|
+
warn(message: string, meta?: LogMetadata): void;
|
|
9
|
+
error(message: string, meta?: LogMetadata): void;
|
|
10
|
+
}
|
|
11
|
+
export declare const logger: Logger;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.logger = void 0;
|
|
7
|
+
var _nodeUtil = require("node:util");
|
|
8
|
+
var _chalk = _interopRequireDefault(require("chalk"));
|
|
9
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
|
+
const format = _nodeUtil.formatWithOptions.bind(undefined, {
|
|
11
|
+
colors: true
|
|
12
|
+
});
|
|
13
|
+
const LOG_LEVEL_COLORS = {
|
|
14
|
+
TRACE: _chalk.default.gray,
|
|
15
|
+
DEBUG: _chalk.default.blue,
|
|
16
|
+
INFO: _chalk.default.green,
|
|
17
|
+
WARN: _chalk.default.yellow,
|
|
18
|
+
ERROR: _chalk.default.red
|
|
19
|
+
};
|
|
20
|
+
class Logger {
|
|
21
|
+
logFunction(entry) {
|
|
22
|
+
const {
|
|
23
|
+
level,
|
|
24
|
+
timestamp,
|
|
25
|
+
message,
|
|
26
|
+
meta
|
|
27
|
+
} = entry;
|
|
28
|
+
const date = new Date(timestamp);
|
|
29
|
+
const levelColor = LOG_LEVEL_COLORS[level];
|
|
30
|
+
if (meta === undefined) {
|
|
31
|
+
process.stderr.write(`${format(date)} [@intuned/sdk][${levelColor(level)}] ${message}\n`);
|
|
32
|
+
} else {
|
|
33
|
+
process.stderr.write(`${format(date)} [@intuned/sdk][${levelColor(level)}] ${message} ${format(meta)}\n`);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
log(level, message, meta) {
|
|
37
|
+
this.logFunction({
|
|
38
|
+
level,
|
|
39
|
+
message,
|
|
40
|
+
meta: meta && Object.keys(meta).length === 0 ? undefined : meta,
|
|
41
|
+
timestamp: Date.now()
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
trace(message, meta) {
|
|
45
|
+
this.log("TRACE", message, meta);
|
|
46
|
+
}
|
|
47
|
+
debug(message, meta) {
|
|
48
|
+
this.log("DEBUG", message, meta);
|
|
49
|
+
}
|
|
50
|
+
info(message, meta) {
|
|
51
|
+
this.log("INFO", message, meta);
|
|
52
|
+
}
|
|
53
|
+
warn(message, meta) {
|
|
54
|
+
this.log("WARN", message, meta);
|
|
55
|
+
}
|
|
56
|
+
error(message, meta) {
|
|
57
|
+
this.log("ERROR", message, meta);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
const logger = exports.logger = new Logger();
|
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
declare const asyncLocalStorage: AsyncLocalStorage<InternalRunInfo>;
|
|
5
|
-
declare function runWithContext<R, TArgs extends any[]>(contextData: InternalRunInfo, callback: (...args: TArgs) => R, ...args: TArgs): R;
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import { AsyncLocalStorage } from "node:async_hooks";
|
|
3
|
+
import { Payload, RunInfo } from "../../runtime/export";
|
|
4
|
+
export declare const asyncLocalStorage: AsyncLocalStorage<InternalRunInfo>;
|
|
5
|
+
export declare function runWithContext<R, TArgs extends any[]>(contextData: InternalRunInfo, callback: (...args: TArgs) => R, ...args: TArgs): R;
|
|
6
6
|
interface TimeoutInfo {
|
|
7
7
|
extendTimeoutCallback?: () => Promise<void>;
|
|
8
8
|
}
|
|
9
|
-
interface InternalRunInfo extends RunInfo {
|
|
9
|
+
export interface InternalRunInfo extends RunInfo {
|
|
10
10
|
extendedPayloads: Payload[];
|
|
11
11
|
timeoutInfo?: TimeoutInfo;
|
|
12
12
|
store?: Record<string, any>;
|
|
13
13
|
getAuthSessionParameters?: () => Promise<any>;
|
|
14
14
|
}
|
|
15
|
-
declare function getExecutionContext(): InternalRunInfo | undefined;
|
|
16
|
-
|
|
17
|
-
export { type InternalRunInfo, asyncLocalStorage, getExecutionContext, runWithContext };
|
|
15
|
+
export declare function getExecutionContext(): InternalRunInfo | undefined;
|
|
16
|
+
export {};
|
|
@@ -1,41 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
-
var __export = (target, all) => {
|
|
6
|
-
for (var name in all)
|
|
7
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
-
};
|
|
9
|
-
var __copyProps = (to, from, except, desc) => {
|
|
10
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
-
for (let key of __getOwnPropNames(from))
|
|
12
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
-
}
|
|
15
|
-
return to;
|
|
16
|
-
};
|
|
17
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
1
|
+
"use strict";
|
|
18
2
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
__export(asyncLocalStorage_exports, {
|
|
22
|
-
asyncLocalStorage: () => asyncLocalStorage,
|
|
23
|
-
getExecutionContext: () => getExecutionContext,
|
|
24
|
-
runWithContext: () => runWithContext
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
25
5
|
});
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
6
|
+
exports.asyncLocalStorage = void 0;
|
|
7
|
+
exports.getExecutionContext = getExecutionContext;
|
|
8
|
+
exports.runWithContext = runWithContext;
|
|
9
|
+
var _nodeAsync_hooks = require("node:async_hooks");
|
|
10
|
+
const asyncLocalStorage = exports.asyncLocalStorage = new _nodeAsync_hooks.AsyncLocalStorage();
|
|
29
11
|
function runWithContext(contextData, callback, ...args) {
|
|
30
12
|
return asyncLocalStorage.run(contextData, callback, ...args);
|
|
31
13
|
}
|
|
32
14
|
function getExecutionContext() {
|
|
33
15
|
const contextData = asyncLocalStorage.getStore();
|
|
34
16
|
return contextData;
|
|
35
|
-
}
|
|
36
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
37
|
-
0 && (module.exports = {
|
|
38
|
-
asyncLocalStorage,
|
|
39
|
-
getExecutionContext,
|
|
40
|
-
runWithContext
|
|
41
|
-
});
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function getAuthSessionParameters(): Promise<any>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.getAuthSessionParameters = getAuthSessionParameters;
|
|
7
|
+
var _isNil = _interopRequireDefault(require("lodash/isNil"));
|
|
8
|
+
var _asyncLocalStorage = require("../asyncLocalStorage");
|
|
9
|
+
var _zod = require("zod");
|
|
10
|
+
var _jwtTokenManager = require("../jwtTokenManager");
|
|
11
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
12
|
+
const authSessionParametersResponseSchema = _zod.z.object({
|
|
13
|
+
parameters: _zod.z.any().refine(v => v !== undefined)
|
|
14
|
+
});
|
|
15
|
+
async function getAuthSessionParameters() {
|
|
16
|
+
const context = (0, _asyncLocalStorage.getExecutionContext)();
|
|
17
|
+
if (!context) {
|
|
18
|
+
throw new Error("getAuthSessionParameters failed due to an internal error (context was not found).");
|
|
19
|
+
}
|
|
20
|
+
const authSessionId = context.authSessionId;
|
|
21
|
+
if ((0, _isNil.default)(authSessionId)) {
|
|
22
|
+
throw new Error("AuthSessions are not enabled");
|
|
23
|
+
}
|
|
24
|
+
const response = await (0, _jwtTokenManager.callBackendFunctionWithToken)(`auth-session/${authSessionId}/parameters`, {
|
|
25
|
+
method: "GET"
|
|
26
|
+
});
|
|
27
|
+
const body = await response.text();
|
|
28
|
+
if (!response.ok) {
|
|
29
|
+
throw new Error(`getAuthSessionParameters failed with status ${response.status}: ${body}`);
|
|
30
|
+
}
|
|
31
|
+
let json;
|
|
32
|
+
try {
|
|
33
|
+
json = JSON.parse(body);
|
|
34
|
+
} catch (e) {
|
|
35
|
+
throw new Error(`Expected JSON response, but got ${body}`);
|
|
36
|
+
}
|
|
37
|
+
return authSessionParametersResponseSchema.parse(json).parameters;
|
|
38
|
+
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export { }
|
|
1
|
+
export {};
|