attio 0.0.1-experimental.20240911.2 → 0.0.1-experimental.20240916
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/lib/build/client/create-client-build-config.js +3 -7
- package/lib/build/client/generate-client-entry.js +29 -2
- package/lib/build/server/create-server-build-config.js +3 -7
- package/lib/build/server/generate-server-entry.js +61 -27
- package/lib/client/components/index.d.ts +1 -0
- package/lib/client/components/row.d.ts +7 -0
- package/lib/machines/dev-machine.js +1 -1
- package/lib/machines/js-machine.js +77 -10
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +13 -1
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import globalExternals from "@fal-works/esbuild-plugin-global-externals";
|
|
2
2
|
import { proxyServerModulesPlugin } from "../proxy-server-modules-plugin.js";
|
|
3
|
-
export function createClientBuildConfig({ appDir,
|
|
3
|
+
export function createClientBuildConfig({ appDir, entryPoint, }) {
|
|
4
4
|
return {
|
|
5
|
-
|
|
6
|
-
contents,
|
|
7
|
-
resolveDir: ".",
|
|
8
|
-
loader: "tsx",
|
|
9
|
-
},
|
|
5
|
+
entryPoints: [entryPoint],
|
|
10
6
|
logLevel: "silent",
|
|
11
7
|
bundle: true,
|
|
12
8
|
platform: "browser",
|
|
@@ -14,7 +10,7 @@ export function createClientBuildConfig({ appDir, contents, }) {
|
|
|
14
10
|
plugins: [
|
|
15
11
|
globalExternals({
|
|
16
12
|
"react": "React",
|
|
17
|
-
"
|
|
13
|
+
"attio/client": {
|
|
18
14
|
varName: "ATTIO_CLIENT_EXTENSION_SDK",
|
|
19
15
|
type: "cjs",
|
|
20
16
|
},
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import fs from "fs/promises";
|
|
1
2
|
import { glob } from "glob";
|
|
2
3
|
import path from "path";
|
|
3
4
|
const ROUTE_FILE_EXTENSIONS = ["tsx", "jsx", "ts", "js"];
|
|
4
|
-
|
|
5
|
+
const ASSET_FILE_EXTENSIONS = ["png"];
|
|
6
|
+
export async function generateClientEntry({ filePath, appDir, assetsDir, routes, log, }) {
|
|
5
7
|
log?.(`💥 Found entry point at ${path.resolve(appDir)}`);
|
|
6
8
|
const paths = routes.flatMap((route) => ROUTE_FILE_EXTENSIONS.map((fileExtension) => route + "." + fileExtension));
|
|
7
9
|
const concreteRoutes = (await Promise.all(paths.map(async (path) => {
|
|
@@ -22,11 +24,36 @@ export async function generateClientEntry({ appDir, routes, log, }) {
|
|
|
22
24
|
return [];
|
|
23
25
|
}
|
|
24
26
|
}))).flat();
|
|
27
|
+
let assetFiles;
|
|
28
|
+
try {
|
|
29
|
+
assetFiles = await fs.readdir(assetsDir, { recursive: true });
|
|
30
|
+
}
|
|
31
|
+
catch {
|
|
32
|
+
assetFiles = [];
|
|
33
|
+
}
|
|
34
|
+
const assets = assetFiles
|
|
35
|
+
.filter((relativeAssetPath) => ASSET_FILE_EXTENSIONS.some((extension) => relativeAssetPath.endsWith(extension)))
|
|
36
|
+
.map((relativeAssetPath) => ({
|
|
37
|
+
path: path.join(assetsDir, relativeAssetPath),
|
|
38
|
+
name: relativeAssetPath,
|
|
39
|
+
}));
|
|
25
40
|
return `
|
|
26
41
|
${concreteRoutes
|
|
27
|
-
.map((routeAndPath, index) => `import C${index} from ${JSON.stringify(
|
|
42
|
+
.map((routeAndPath, index) => `import C${index} from ${JSON.stringify(path.relative(filePath, path.join(appDir, routeAndPath.path)))}`)
|
|
28
43
|
.join("\n")}
|
|
29
44
|
|
|
45
|
+
const assets = []
|
|
46
|
+
|
|
47
|
+
${assets
|
|
48
|
+
.map((asset, index) => `
|
|
49
|
+
import A${index} from ${JSON.stringify(path.relative(filePath, asset.path))};
|
|
50
|
+
|
|
51
|
+
assets.push({name: ${JSON.stringify(asset.name)}, data: A${index}})
|
|
52
|
+
`)
|
|
53
|
+
.join("\n")}
|
|
54
|
+
|
|
55
|
+
registerAssets(assets)
|
|
56
|
+
|
|
30
57
|
${concreteRoutes
|
|
31
58
|
.map((routeAndPath, index) => `registerExtensionComponent({route: ${JSON.stringify(routeAndPath.route)}, component: C${index}})`)
|
|
32
59
|
.join("\n")}
|
|
@@ -1,17 +1,13 @@
|
|
|
1
1
|
import globalExternals from "@fal-works/esbuild-plugin-global-externals";
|
|
2
|
-
export function createServerBuildConfig(
|
|
2
|
+
export function createServerBuildConfig(entryPoint) {
|
|
3
3
|
return {
|
|
4
|
-
|
|
5
|
-
contents,
|
|
6
|
-
resolveDir: ".",
|
|
7
|
-
loader: "ts",
|
|
8
|
-
},
|
|
4
|
+
entryPoints: [entryPoint],
|
|
9
5
|
bundle: true,
|
|
10
6
|
platform: "browser",
|
|
11
7
|
format: "esm",
|
|
12
8
|
plugins: [
|
|
13
9
|
globalExternals({
|
|
14
|
-
"
|
|
10
|
+
"attio/client": {
|
|
15
11
|
varName: "ATTIO_CLIENT_EXTENSION_SDK",
|
|
16
12
|
type: "cjs",
|
|
17
13
|
},
|
|
@@ -1,55 +1,89 @@
|
|
|
1
1
|
import { glob } from "glob";
|
|
2
2
|
import path from "path";
|
|
3
3
|
import { getModuleHash } from "../get-module-hash.js";
|
|
4
|
-
export async function generateServerEntry({ appDir, log, }) {
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
export async function generateServerEntry({ appDir, webhooksDir, filePath, log, }) {
|
|
5
|
+
const [serverFunctionConcretePaths, webhookConcretePaths] = await Promise.all([
|
|
6
|
+
Promise.all([
|
|
7
|
+
glob("**/*.server.ts", { nodir: true, cwd: appDir }),
|
|
8
|
+
glob("**/*.server.js", { nodir: true, cwd: appDir }),
|
|
9
|
+
]).then((paths) => paths.flat()),
|
|
10
|
+
Promise.all([
|
|
11
|
+
glob("**/*.webhook.ts", { nodir: true, cwd: webhooksDir }),
|
|
12
|
+
glob("**/*.webhook.js", { nodir: true, cwd: webhooksDir }),
|
|
13
|
+
]).then((paths) => paths.flat()),
|
|
14
|
+
]);
|
|
15
|
+
const serverFunctionModules = serverFunctionConcretePaths.map((path) => ({
|
|
10
16
|
path,
|
|
11
17
|
hash: getModuleHash(path.replace(/\.(js|ts)$/, "")),
|
|
12
18
|
}));
|
|
13
|
-
|
|
19
|
+
const webhookModules = webhookConcretePaths.map((path) => ({
|
|
20
|
+
path,
|
|
21
|
+
id: path.replace(/\.webhook\.(js|ts)$/, ""),
|
|
22
|
+
}));
|
|
23
|
+
for (const module of serverFunctionModules) {
|
|
14
24
|
log?.(`🔎 Found server module "${module.path}"`);
|
|
15
25
|
}
|
|
16
26
|
return `
|
|
17
27
|
|
|
18
28
|
const modules = new Map()
|
|
19
|
-
|
|
29
|
+
const webhookModules = new Map()
|
|
20
30
|
|
|
21
31
|
|
|
22
|
-
${
|
|
23
|
-
.map((module) => `modules.set("${module.hash}", () => import(${JSON.stringify(
|
|
32
|
+
${serverFunctionModules
|
|
33
|
+
.map((module) => `modules.set("${module.hash}", () => import(${JSON.stringify(path.relative(filePath, path.join(appDir, module.path)))}))`)
|
|
24
34
|
.join("\n")}
|
|
25
35
|
|
|
36
|
+
${webhookModules
|
|
37
|
+
.map((module) => `webhookModules.set("${module.id}", () => import(${JSON.stringify(path.relative(filePath, path.join(webhooksDir, module.path)))}))`)
|
|
38
|
+
.join("\n")}
|
|
26
39
|
|
|
27
|
-
var stdin_default;
|
|
28
|
-
|
|
29
|
-
|
|
40
|
+
var stdin_default;
|
|
41
|
+
var stdin_webhooks_default;
|
|
42
|
+
function main() {
|
|
43
|
+
stdin_default = async function(moduleHash, args) {
|
|
44
|
+
const module = modules.get(moduleHash)
|
|
30
45
|
|
|
46
|
+
if (!module) {
|
|
47
|
+
throw new Error(\`Module \${moduleHash} not found\`)
|
|
48
|
+
}
|
|
31
49
|
|
|
32
|
-
|
|
50
|
+
const func = (await module()).default
|
|
33
51
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
52
|
+
if (!func) {
|
|
53
|
+
throw new Error(\`Default export not found in module \${moduleHash}\`)
|
|
54
|
+
}
|
|
37
55
|
|
|
38
|
-
|
|
56
|
+
if (typeof func !== "function") {
|
|
57
|
+
throw new Error(\`\${moduleHash} does not export a function\`)
|
|
58
|
+
}
|
|
39
59
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
60
|
+
return func(...args)
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
stdin_webhooks_default = async function(webhookModuleId, args) {
|
|
64
|
+
const module = webhookModules.get(webhookModuleId)
|
|
43
65
|
|
|
44
|
-
|
|
45
|
-
|
|
66
|
+
if (!module) {
|
|
67
|
+
throw new Error(\`Webhook handler not found: \${webhookModuleId}\`)
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
const func = (await module()).default
|
|
71
|
+
|
|
72
|
+
if (!func) {
|
|
73
|
+
throw new Error(\`Default export not found in module \${webhookModuleId}\`)
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
if (typeof func !== "function") {
|
|
77
|
+
throw new Error(\`\${webhookModuleId} does not export a function\`)
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
return func(...args)
|
|
81
|
+
}
|
|
46
82
|
}
|
|
47
83
|
|
|
48
|
-
return func(...args)
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
84
|
|
|
52
|
-
|
|
85
|
+
|
|
86
|
+
main()
|
|
53
87
|
|
|
54
88
|
`;
|
|
55
89
|
}
|
|
@@ -93,7 +93,7 @@ export const devMachine = setup({
|
|
|
93
93
|
upload().catch((error) => sendBack({ type: "Upload Error", error }));
|
|
94
94
|
}),
|
|
95
95
|
watch: fromCallback(({ sendBack }) => {
|
|
96
|
-
const watcher = chokidar.watch("src/app");
|
|
96
|
+
const watcher = chokidar.watch(["src/app", "src/assets", "src/webhooks"]);
|
|
97
97
|
watcher.on("ready", () => watcher.on("all", () => {
|
|
98
98
|
sendBack({ type: "Change" });
|
|
99
99
|
}));
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import * as esbuild from "esbuild";
|
|
2
|
+
import fs from "fs/promises";
|
|
2
3
|
import path from "path";
|
|
4
|
+
import tmp from "tmp-promise";
|
|
3
5
|
import { assign, setup, fromCallback, sendTo } from "xstate";
|
|
4
6
|
import { ROUTES, errorSchema } from "../build.js";
|
|
5
7
|
import { createClientBuildConfig } from "../build/client/create-client-build-config.js";
|
|
@@ -20,20 +22,85 @@ export const jsMachine = setup({
|
|
|
20
22
|
let buildContexts;
|
|
21
23
|
const prepare = async () => {
|
|
22
24
|
const appDir = "src/app";
|
|
25
|
+
const assetsDir = "src/assets";
|
|
26
|
+
const webhooksDir = "src/webhooks";
|
|
23
27
|
const log = (message) => {
|
|
24
28
|
sendBack({ type: "Log", message });
|
|
25
29
|
};
|
|
26
30
|
buildContexts = (await Promise.all([
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
31
|
+
tmp.file({ postfix: ".js" }).then(async (tempFile) => {
|
|
32
|
+
let lastJS;
|
|
33
|
+
const updateTempFile = async () => {
|
|
34
|
+
const js = await generateClientEntry({
|
|
35
|
+
filePath: tempFile.path,
|
|
36
|
+
appDir,
|
|
37
|
+
assetsDir,
|
|
38
|
+
routes: ROUTES,
|
|
39
|
+
log,
|
|
40
|
+
});
|
|
41
|
+
if (js === lastJS) {
|
|
42
|
+
return;
|
|
43
|
+
}
|
|
44
|
+
lastJS = js;
|
|
45
|
+
await fs.writeFile(tempFile.path, js);
|
|
46
|
+
};
|
|
47
|
+
await updateTempFile();
|
|
48
|
+
const esbuildContext = await esbuild.context({
|
|
49
|
+
...createClientBuildConfig({
|
|
50
|
+
entryPoint: tempFile.path,
|
|
51
|
+
appDir,
|
|
52
|
+
}),
|
|
53
|
+
write,
|
|
54
|
+
outfile: path.resolve("dist", "index.js"),
|
|
55
|
+
loader: { ".png": "dataurl" },
|
|
56
|
+
});
|
|
57
|
+
return {
|
|
58
|
+
rebuild: async () => {
|
|
59
|
+
await updateTempFile();
|
|
60
|
+
return esbuildContext.rebuild();
|
|
61
|
+
},
|
|
62
|
+
dispose: async () => {
|
|
63
|
+
await Promise.all([
|
|
64
|
+
esbuildContext.dispose(),
|
|
65
|
+
tempFile.cleanup(),
|
|
66
|
+
]);
|
|
67
|
+
},
|
|
68
|
+
};
|
|
69
|
+
}),
|
|
70
|
+
tmp.file({ postfix: ".js" }).then(async (tempFile) => {
|
|
71
|
+
let lastJS;
|
|
72
|
+
const updateTempFile = async () => {
|
|
73
|
+
const js = await generateServerEntry({
|
|
74
|
+
filePath: tempFile.path,
|
|
75
|
+
appDir,
|
|
76
|
+
webhooksDir,
|
|
77
|
+
log,
|
|
78
|
+
});
|
|
79
|
+
if (js === lastJS) {
|
|
80
|
+
return;
|
|
81
|
+
}
|
|
82
|
+
lastJS = js;
|
|
83
|
+
await fs.writeFile(tempFile.path, js);
|
|
84
|
+
};
|
|
85
|
+
await updateTempFile();
|
|
86
|
+
const esbuildContext = await esbuild.context({
|
|
87
|
+
...createServerBuildConfig(tempFile.path),
|
|
88
|
+
write,
|
|
89
|
+
outfile: path.resolve("dist", "server.js"),
|
|
90
|
+
});
|
|
91
|
+
return {
|
|
92
|
+
rebuild: async () => {
|
|
93
|
+
await updateTempFile();
|
|
94
|
+
return esbuildContext.rebuild();
|
|
95
|
+
},
|
|
96
|
+
dispose: async () => {
|
|
97
|
+
await Promise.all([
|
|
98
|
+
esbuildContext.dispose(),
|
|
99
|
+
tempFile.cleanup(),
|
|
100
|
+
]);
|
|
101
|
+
},
|
|
102
|
+
};
|
|
103
|
+
}),
|
|
37
104
|
])).flat();
|
|
38
105
|
sendBack({
|
|
39
106
|
type: "Build Contexts Prepared",
|
package/lib/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../client/hooks/use-graphql.ts","../client/hooks/use-loader.ts","../client/hooks/use-query.ts","../client/object-slug.ts","../client/hooks/use-record.ts","../client/hooks/index.ts","../../../../node_modules/@types/react/global.d.ts","../../../../node_modules/csstype/index.d.ts","../../../../node_modules/@types/prop-types/index.d.ts","../../../../node_modules/@types/scheduler/tracing.d.ts","../../../../node_modules/@types/react/index.d.ts","../client/components/action.ts","../client/components/combobox.ts","../client/components/dialog.ts","../client/components/multistep.ts","../client/components/section.ts","../client/components/text-block.ts","../client/components/index.ts","../client/util/prettify.ts","../client/forms/array.ts","../client/forms/number.ts","../client/forms/string.ts","../client/forms/path.ts","../client/forms/build.ts","../client/forms/index.ts","../client/index.ts","../server/index.ts","../global.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.d.ts","../../../../node_modules/undici-types/file.d.ts","../../../../node_modules/undici-types/fetch.d.ts","../../../../node_modules/undici-types/formdata.d.ts","../../../../node_modules/undici-types/connector.d.ts","../../../../node_modules/undici-types/client.d.ts","../../../../node_modules/undici-types/errors.d.ts","../../../../node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/undici-types/global-origin.d.ts","../../../../node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/undici-types/pool.d.ts","../../../../node_modules/undici-types/handlers.d.ts","../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/undici-types/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/undici-types/mock-client.d.ts","../../../../node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/undici-types/api.d.ts","../../../../node_modules/undici-types/cookies.d.ts","../../../../node_modules/undici-types/patch.d.ts","../../../../node_modules/undici-types/filereader.d.ts","../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/undici-types/websocket.d.ts","../../../../node_modules/undici-types/content-type.d.ts","../../../../node_modules/undici-types/cache.d.ts","../../../../node_modules/undici-types/interceptors.d.ts","../../../../node_modules/undici-types/index.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/globals.global.d.ts","../../../../node_modules/@types/node/index.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/fetch.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/utils.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/filter-boolean.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/is-array.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/json-parse.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/array-includes.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/set-has.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/map-has.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/array-index-of.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/recommended.d.ts","../reset.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"8994690f59e9c7140b9d4b4514ca323ce37c29d2bda6c0dee17e1cc0bb71426f","signature":"20350280843ebe69d47659391326187e41bc77551e3ecb05037856feceb2e7ba"},{"version":"cfc31aaf1772487b1088a07de8b42ccaffdc2293ccb252b7520e36c7ba505beb","signature":"6787c69e00391afedaf7b3ab432e56c5dfa02f4def3b2bb7e58647e01d2670ca"},{"version":"c98412ec8dba6ac6c3286bb11d9d6b6587d22ea5601da9c61a767fb120ff5780","signature":"3f3599c79bbd5955b94b71226ba67ece30254eb78f763e50fb07e2d650693d77"},{"version":"111a7bdd0e13f9ba800aea82b496c711b59e988242bad4feb894688845be3eee","signature":"eea233968f029246924644d2a28e1bd4abe4b08b31fa51b00f3738a8e952127b"},{"version":"36fa95c395be998b924620713898173458002fa24e039830840cf4dbbed9a603","signature":"8f3e905197e70fa4396655c202cdac1add46d7c7ec48c0c98faf98b4c0a5ee7c"},{"version":"597b6d38408ed30b05951df2420920668b4fb2739b2bc745df646506380eb9ed","signature":"87d9419ec874f1720efee084e9bd0d98fab229465151dfd525f5a6b80b01b710"},{"version":"0bd5e7096c7bc02bf70b2cc017fc45ef489cb19bd2f32a71af39ff5787f1b56a","affectsGlobalScope":true},"ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"e6f3077b1780226627f76085397d10c77a4d851c7154fd4b3f1eb114f4c2e56d","affectsGlobalScope":true},{"version":"5d213df7e0da1c0445655cb12b472a12caa104cae28a748ab90c4d29752ddfa2","signature":"fccaaa0450ba1e79392cd7f396b716dc68259cc9323c4eb791d53bf273ae6873"},{"version":"817921079e04452de37d0a3e592c8fb99924b1040f191b0bcc149e5b104ce2e4","signature":"4a3fa9ac0ac0af8ae9727194fa28ab15035abbe990e5e4c0fce832213c9f5b06"},{"version":"44add6334aa36c08f1819cd1e744c1ea87667d1e91afb427e64395517b6f4c88","signature":"7eeee0db1896445de62bddd8c5e85ae94233126cb50fe2bb59843fed99b5ac8b"},{"version":"4013f5bf6ad4b01970c84779ac0f5aa7dff45f980b02136871772c719ff0c2ec","signature":"2b8f7172bf3d49cdaf2390babf886138b2b492c0ae60dc7876d566b319a5a44f"},{"version":"94a37269a0052cfa1def2751a7d91f7e6476a394fc08ffcc9f5314154b29646e","signature":"e2fc9b408ad727e8761cf7a85f324da0bb56b7b0b3673b0f647256bf77b050db"},{"version":"8c9717d1c9d28f3289a9b4ec0a9d897d4e2835c2f3e8fe77ac9c7af7d3b540d9","signature":"c929975005c3b0ae0b0a2451f80a8f7c0ea1ed89c072d7d3e914cbf600cdcf30"},{"version":"249447ae26e1b17d030dae0c756443e5fc03854917c905f3ba0e46398524411e","signature":"41a3dfe8567a9b1739a61fa1afbb547ad5437d1e3d7e0086dd9b2a36ea027a41"},{"version":"f3d8b45c64db8e04d5c17a786e0bb3cedf28cf17e5e1cf64ca508dfb9be8b445","signature":"6160ae0bbe477143d1305f9dc83625cd982fb58cf7dfe4adaf8b9d1481a82435"},{"version":"afa57c88f1bea064f16f6dba1206c3863e71d3fb7a00a6398971bcdccbefc593","signature":"141aa96babfcb37a57e9dc74d95393fefb2e92f44cc9425fda5c467e3c7a9a83"},{"version":"1a483af8287923289e2776cb8e8c8d2aa46c0c5909e117bc4c5605d01da05fdb","signature":"042ff16beba5930ece1c186f8de4de8affb2dc6e6b4c33dad8bd32cd5d83573f"},{"version":"7988459a6b99b77e589b9e886e3bbcbab381ebad33a17b4274dd18b2236fdfa8","signature":"f1a904a63fd33d7f89a7f4fef830de331c87465d9bc1ca53528aca7fcec32e48"},{"version":"595f5dc18cd3b0b17c4f8cdb3cf9868bf125025f98c2144279c9eef7b0bb4f0e","signature":"e1d9b456f2c6e7d88345556ed6fe7858fb70cbeb801adfaea1c01cd6fd760fc2"},{"version":"3d185ce77151c51f234135319d2c01295821d3cd7fab08596b243e08dbbed2d3","signature":"0c028f6d03ffca2fca6362acf97afc517694c0e04743e92801e8acd991492849"},{"version":"c5515e046194de07a556f6c6a4f9247a2d15806709d052b9a31031bb6a96863c","signature":"348cc01fe5b4260a561538fc263bab7bf3ef4d841120fa21d6ff699b9ea27d2a"},{"version":"febc0a2f48601e5427212259eebe2d7ecab161cde04b74d73366c3ffecc9d06e","signature":"995a08c1baeafd478764b716af794656983b2e2dc19be123e31069a79f1b5c6a"},{"version":"54138b6046538ae8db229d82eb9007bc8f301644ae033d2c0b2c5f1c38ea848a","signature":"01e16c16729f4a1191623caf447f04bad195e2d470b544ad9ec00687ebc846d4"},{"version":"e0918784966cad929cb82e5d775a213a651269418b511d3c1ca65d740e226176","affectsGlobalScope":true},"efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"7fd7fcbf021a5845bdd9397d4649fcf2fe17152d2098140fc723099a215d19ad","affectsGlobalScope":true},"df3389f71a71a38bc931aaf1ef97a65fada98f0a27f19dd12f8b8de2b0f4e461","d69a3298a197fe5d59edba0ec23b4abf2c8e7b8c6718eac97833633cd664e4c9",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"8b809082dfeffc8cc4f3b9c59f55c0ff52ba12f5ae0766cb5c35deee83b8552e","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","d4f9d3ae2fe1ae199e1c832cca2c44f45e0b305dfa2808afdd51249b6f4a5163","7525257b4aa35efc7a1bbc00f205a9a96c4e4ab791da90db41b77938c4e0c18e","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9c611eff81287837680c1f4496daf9e737d6f3a1ff17752207814b8f8e1265af","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","b5d4e3e524f2eead4519c8e819eaf7fa44a27c22418eff1b7b2d0ebc5fdc510d","afb1701fd4be413a8a5a88df6befdd4510c30a31372c07a4138facf61594c66d","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"c07146dbbbd8b347241b5df250a51e48f2d7bef19b1e187b1a3f20c849988ff1","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"46755a4afc53df75f0bfce72259fb971daac826b0cdd8c4eaccad2755a817403","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7fa32887f8a97909fca35ebba3740f8caf8df146618d8fff957a3f89f67a2f6a","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"94c086dff8dbc5998749326bc69b520e8e4273fb5b7b58b50e0210e0885dfcde","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","21c56c6e8eeacef15f63f373a29fab6a2b36e4705be7a528aae8c51469e2737b",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447",{"version":"98e4a7b236b99d95ba3b38f30392dc9370020002350dab42e78ae1a6353dcdd3","affectsGlobalScope":true},{"version":"dcf299a72c98d55f888980dffe2cd19020cdef6cbb32a0b28ef30b496ef7642d","affectsGlobalScope":true},{"version":"2e707bebde6153d06452cb3d03a9889a922853da46caf00f5fcc358c490bd6b1","affectsGlobalScope":true},{"version":"22f9c4223c59fd47ea5aadee362aec0b1adc9a6e58f58d9d848d71732f676abf","affectsGlobalScope":true},{"version":"8c5c8110577288007799018d817ecec25fe3eb3aefba99fc8720eb7c1bcd306e","affectsGlobalScope":true},{"version":"db41487da1c62b8a2e9aeaba4b79b9e2270452cfca0165bacb22ab50b2fb9bed","affectsGlobalScope":true},{"version":"eb0d8eac52f68a5fd4f4e8119040c907ca182f45f883e29b5e61cb9eeecb068a","affectsGlobalScope":true},{"version":"1bc1de3b1f094ed8f0612239c11d3163c1b1d7e197ecc6c1606051a3be8bfb5d","affectsGlobalScope":true},{"version":"78eebaa895ec3bfc488e0f2a7a05d573604be33f692187381ba8108cfe31b8c4","affectsGlobalScope":true},"5fc07ceecfafaba4308ea6c954298a259294fe3736b1e3cecda45ef626653769","289235dc0bf9e32f655ebd3a49b7992a122c1ddc9ada0a71fd1337cbac17dfe7"],"root":[[46,51],[57,73]],"options":{"allowJs":false,"allowSyntheticDefaultImports":true,"allowUmdGlobalAccess":false,"allowUnreachableCode":false,"allowUnusedLabels":false,"alwaysStrict":true,"composite":true,"declaration":true,"declarationMap":false,"emitDeclarationOnly":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":1,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":false,"outDir":"./","removeComments":false,"sourceMap":false,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":6},"fileIdsList":[[161],[160,162,163,164,165,166,167,168],[74],[109],[110,115,143],[111,122,123,130,140,151],[111,112,122,130],[113,152],[114,115,123,131],[115,140,148],[116,118,122,130],[109,117],[118,119],[122],[120,122],[109,122],[122,123,124,140,151],[122,123,124,137,140,143],[107,110,156],[118,122,125,130,140,151],[122,123,125,126,130,140,148,151],[125,127,140,148,151],[74,75,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158],[122,128],[129,151,156],[118,122,130,140],[131],[132],[109,133],[134,150,156],[135],[136],[122,137,138],[137,139,152,154],[110,122,140,141,142,143],[110,140,142],[140,141],[143],[144],[109,140],[122,146,147],[146,147],[115,130,140,148],[149],[130,150],[110,125,136,151],[115,152],[140,153],[129,154],[155],[110,115,122,124,133,140,151,154,156],[140,157],[52,53,54,55],[84,88,151],[84,140,151],[79],[81,84,148,151],[130,148],[159],[79,159],[81,84,130,151],[76,77,80,83,110,122,140,151],[76,82],[80,84,110,143,151,159],[110,159],[100,110,159],[78,79,159],[84],[78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,101,102,103,104,105,106],[84,91,92],[82,84,92,93],[83],[76,79,84],[84,88,92,93],[88],[82,84,87,151],[76,81,82,84,88,91],[110,140],[79,84,100,110,156,159],[56],[57,58,59,60,61,62],[63,68],[65,66,67,69],[64,65,66,67],[46,47,48,50],[49],[51,63,65,66,67,68,69,70]],"referencedMap":[[165,1],[168,1],[162,1],[167,1],[169,2],[166,1],[74,3],[75,3],[109,4],[110,5],[111,6],[112,7],[113,8],[114,9],[115,10],[116,11],[117,12],[118,13],[119,13],[121,14],[120,15],[122,16],[123,17],[124,18],[108,19],[125,20],[126,21],[127,22],[159,23],[128,24],[129,25],[130,26],[131,27],[132,28],[133,29],[134,30],[135,31],[136,32],[137,33],[138,33],[139,34],[140,35],[142,36],[141,37],[143,38],[144,39],[145,40],[146,41],[147,42],[148,43],[149,44],[150,45],[151,46],[152,47],[153,48],[154,49],[155,50],[156,51],[157,52],[56,53],[91,54],[98,55],[90,54],[105,56],[82,57],[81,58],[104,59],[99,60],[102,61],[84,62],[83,63],[79,64],[78,65],[101,66],[80,67],[85,68],[89,68],[107,69],[106,68],[93,70],[94,71],[96,72],[92,73],[95,74],[100,59],[87,75],[88,76],[97,77],[77,78],[103,79],[57,80],[59,80],[63,81],[60,80],[61,80],[62,80],[69,82],[70,83],[68,84],[51,85],[50,86],[71,87]],"exportedModulesMap":[[165,1],[168,1],[162,1],[167,1],[169,2],[166,1],[74,3],[75,3],[109,4],[110,5],[111,6],[112,7],[113,8],[114,9],[115,10],[116,11],[117,12],[118,13],[119,13],[121,14],[120,15],[122,16],[123,17],[124,18],[108,19],[125,20],[126,21],[127,22],[159,23],[128,24],[129,25],[130,26],[131,27],[132,28],[133,29],[134,30],[135,31],[136,32],[137,33],[138,33],[139,34],[140,35],[142,36],[141,37],[143,38],[144,39],[145,40],[146,41],[147,42],[148,43],[149,44],[150,45],[151,46],[152,47],[153,48],[154,49],[155,50],[156,51],[157,52],[56,53],[91,54],[98,55],[90,54],[105,56],[82,57],[81,58],[104,59],[99,60],[102,61],[84,62],[83,63],[79,64],[78,65],[101,66],[80,67],[85,68],[89,68],[107,69],[106,68],[93,70],[94,71],[96,72],[92,73],[95,74],[100,59],[87,75],[88,76],[97,77],[77,78],[103,79],[57,80],[59,80],[63,81],[60,80],[61,80],[62,80],[69,82],[70,83],[68,84],[51,85],[50,86],[71,87]],"semanticDiagnosticsPerFile":[165,168,160,162,163,164,167,169,166,161,74,75,109,110,111,112,113,114,115,116,117,118,119,121,120,122,123,124,108,158,125,126,127,159,128,129,130,131,132,133,134,135,136,137,138,139,140,142,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,54,52,56,55,53,44,45,9,8,2,10,11,12,13,14,15,16,17,3,18,4,19,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,91,98,90,105,82,81,104,99,102,84,83,79,78,101,80,85,86,89,76,107,106,93,94,96,92,95,100,87,88,97,77,103,57,58,59,63,60,61,62,65,69,70,66,68,67,51,46,47,48,50,71,49,64,73,170,72],"latestChangedDtsFile":"./server/index.d.ts"},"version":"5.4.5"}
|
|
1
|
+
{"program":{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../client/hooks/use-graphql.ts","../client/hooks/use-loader.ts","../client/hooks/use-query.ts","../client/object-slug.ts","../client/hooks/use-record.ts","../client/hooks/index.ts","../../../../node_modules/@types/react/global.d.ts","../../../../node_modules/csstype/index.d.ts","../../../../node_modules/@types/prop-types/index.d.ts","../../../../node_modules/@types/scheduler/tracing.d.ts","../../../../node_modules/@types/react/index.d.ts","../client/components/action.ts","../client/components/combobox.ts","../client/components/dialog.ts","../client/components/multistep.ts","../client/components/section.ts","../client/components/text-block.ts","../client/components/row.ts","../client/components/index.ts","../client/util/prettify.ts","../client/forms/array.ts","../client/forms/number.ts","../client/forms/string.ts","../client/forms/path.ts","../client/forms/build.ts","../client/forms/index.ts","../client/index.ts","../server/index.ts","../global.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.d.ts","../../../../node_modules/undici-types/file.d.ts","../../../../node_modules/undici-types/fetch.d.ts","../../../../node_modules/undici-types/formdata.d.ts","../../../../node_modules/undici-types/connector.d.ts","../../../../node_modules/undici-types/client.d.ts","../../../../node_modules/undici-types/errors.d.ts","../../../../node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/undici-types/global-origin.d.ts","../../../../node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/undici-types/pool.d.ts","../../../../node_modules/undici-types/handlers.d.ts","../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/undici-types/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/undici-types/mock-client.d.ts","../../../../node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/undici-types/api.d.ts","../../../../node_modules/undici-types/cookies.d.ts","../../../../node_modules/undici-types/patch.d.ts","../../../../node_modules/undici-types/filereader.d.ts","../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/undici-types/websocket.d.ts","../../../../node_modules/undici-types/content-type.d.ts","../../../../node_modules/undici-types/cache.d.ts","../../../../node_modules/undici-types/interceptors.d.ts","../../../../node_modules/undici-types/index.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/globals.global.d.ts","../../../../node_modules/@types/node/index.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/fetch.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/utils.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/filter-boolean.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/is-array.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/json-parse.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/array-includes.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/set-has.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/map-has.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/array-index-of.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/recommended.d.ts","../reset.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"8994690f59e9c7140b9d4b4514ca323ce37c29d2bda6c0dee17e1cc0bb71426f","signature":"20350280843ebe69d47659391326187e41bc77551e3ecb05037856feceb2e7ba"},{"version":"cfc31aaf1772487b1088a07de8b42ccaffdc2293ccb252b7520e36c7ba505beb","signature":"6787c69e00391afedaf7b3ab432e56c5dfa02f4def3b2bb7e58647e01d2670ca"},{"version":"c98412ec8dba6ac6c3286bb11d9d6b6587d22ea5601da9c61a767fb120ff5780","signature":"3f3599c79bbd5955b94b71226ba67ece30254eb78f763e50fb07e2d650693d77"},{"version":"111a7bdd0e13f9ba800aea82b496c711b59e988242bad4feb894688845be3eee","signature":"eea233968f029246924644d2a28e1bd4abe4b08b31fa51b00f3738a8e952127b"},{"version":"36fa95c395be998b924620713898173458002fa24e039830840cf4dbbed9a603","signature":"8f3e905197e70fa4396655c202cdac1add46d7c7ec48c0c98faf98b4c0a5ee7c"},{"version":"597b6d38408ed30b05951df2420920668b4fb2739b2bc745df646506380eb9ed","signature":"87d9419ec874f1720efee084e9bd0d98fab229465151dfd525f5a6b80b01b710"},{"version":"0bd5e7096c7bc02bf70b2cc017fc45ef489cb19bd2f32a71af39ff5787f1b56a","affectsGlobalScope":true},"ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"e6f3077b1780226627f76085397d10c77a4d851c7154fd4b3f1eb114f4c2e56d","affectsGlobalScope":true},{"version":"5d213df7e0da1c0445655cb12b472a12caa104cae28a748ab90c4d29752ddfa2","signature":"fccaaa0450ba1e79392cd7f396b716dc68259cc9323c4eb791d53bf273ae6873"},{"version":"817921079e04452de37d0a3e592c8fb99924b1040f191b0bcc149e5b104ce2e4","signature":"4a3fa9ac0ac0af8ae9727194fa28ab15035abbe990e5e4c0fce832213c9f5b06"},{"version":"44add6334aa36c08f1819cd1e744c1ea87667d1e91afb427e64395517b6f4c88","signature":"7eeee0db1896445de62bddd8c5e85ae94233126cb50fe2bb59843fed99b5ac8b"},{"version":"4013f5bf6ad4b01970c84779ac0f5aa7dff45f980b02136871772c719ff0c2ec","signature":"2b8f7172bf3d49cdaf2390babf886138b2b492c0ae60dc7876d566b319a5a44f"},{"version":"94a37269a0052cfa1def2751a7d91f7e6476a394fc08ffcc9f5314154b29646e","signature":"e2fc9b408ad727e8761cf7a85f324da0bb56b7b0b3673b0f647256bf77b050db"},{"version":"8c9717d1c9d28f3289a9b4ec0a9d897d4e2835c2f3e8fe77ac9c7af7d3b540d9","signature":"c929975005c3b0ae0b0a2451f80a8f7c0ea1ed89c072d7d3e914cbf600cdcf30"},{"version":"74a19abbe964a8293dc94743f7edb99aa26e3ef34ac002454a1e192e0132b8c8","signature":"9898e0feb7e652f0017d7c5094fb9ecaa2ba6b6bdab550789d5203194e3cd76b"},{"version":"80aa564b5579acad73cdf0acca2a5e445bd14c1b269729874964fcd83c16a1ff","signature":"7c8759b1835e6b9e689689f6aee5e81149982ed98cafbe2ee0b6db964f0d2d57"},{"version":"f3d8b45c64db8e04d5c17a786e0bb3cedf28cf17e5e1cf64ca508dfb9be8b445","signature":"6160ae0bbe477143d1305f9dc83625cd982fb58cf7dfe4adaf8b9d1481a82435"},{"version":"afa57c88f1bea064f16f6dba1206c3863e71d3fb7a00a6398971bcdccbefc593","signature":"141aa96babfcb37a57e9dc74d95393fefb2e92f44cc9425fda5c467e3c7a9a83"},{"version":"1a483af8287923289e2776cb8e8c8d2aa46c0c5909e117bc4c5605d01da05fdb","signature":"042ff16beba5930ece1c186f8de4de8affb2dc6e6b4c33dad8bd32cd5d83573f"},{"version":"7988459a6b99b77e589b9e886e3bbcbab381ebad33a17b4274dd18b2236fdfa8","signature":"f1a904a63fd33d7f89a7f4fef830de331c87465d9bc1ca53528aca7fcec32e48"},{"version":"595f5dc18cd3b0b17c4f8cdb3cf9868bf125025f98c2144279c9eef7b0bb4f0e","signature":"e1d9b456f2c6e7d88345556ed6fe7858fb70cbeb801adfaea1c01cd6fd760fc2"},{"version":"3d185ce77151c51f234135319d2c01295821d3cd7fab08596b243e08dbbed2d3","signature":"0c028f6d03ffca2fca6362acf97afc517694c0e04743e92801e8acd991492849"},{"version":"c5515e046194de07a556f6c6a4f9247a2d15806709d052b9a31031bb6a96863c","signature":"348cc01fe5b4260a561538fc263bab7bf3ef4d841120fa21d6ff699b9ea27d2a"},{"version":"febc0a2f48601e5427212259eebe2d7ecab161cde04b74d73366c3ffecc9d06e","signature":"995a08c1baeafd478764b716af794656983b2e2dc19be123e31069a79f1b5c6a"},{"version":"54138b6046538ae8db229d82eb9007bc8f301644ae033d2c0b2c5f1c38ea848a","signature":"01e16c16729f4a1191623caf447f04bad195e2d470b544ad9ec00687ebc846d4"},{"version":"e0918784966cad929cb82e5d775a213a651269418b511d3c1ca65d740e226176","affectsGlobalScope":true},"efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"7fd7fcbf021a5845bdd9397d4649fcf2fe17152d2098140fc723099a215d19ad","affectsGlobalScope":true},"df3389f71a71a38bc931aaf1ef97a65fada98f0a27f19dd12f8b8de2b0f4e461","d69a3298a197fe5d59edba0ec23b4abf2c8e7b8c6718eac97833633cd664e4c9",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"8b809082dfeffc8cc4f3b9c59f55c0ff52ba12f5ae0766cb5c35deee83b8552e","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","d4f9d3ae2fe1ae199e1c832cca2c44f45e0b305dfa2808afdd51249b6f4a5163","7525257b4aa35efc7a1bbc00f205a9a96c4e4ab791da90db41b77938c4e0c18e","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9c611eff81287837680c1f4496daf9e737d6f3a1ff17752207814b8f8e1265af","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","b5d4e3e524f2eead4519c8e819eaf7fa44a27c22418eff1b7b2d0ebc5fdc510d","afb1701fd4be413a8a5a88df6befdd4510c30a31372c07a4138facf61594c66d","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"c07146dbbbd8b347241b5df250a51e48f2d7bef19b1e187b1a3f20c849988ff1","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"46755a4afc53df75f0bfce72259fb971daac826b0cdd8c4eaccad2755a817403","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7fa32887f8a97909fca35ebba3740f8caf8df146618d8fff957a3f89f67a2f6a","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"94c086dff8dbc5998749326bc69b520e8e4273fb5b7b58b50e0210e0885dfcde","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","21c56c6e8eeacef15f63f373a29fab6a2b36e4705be7a528aae8c51469e2737b",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447",{"version":"98e4a7b236b99d95ba3b38f30392dc9370020002350dab42e78ae1a6353dcdd3","affectsGlobalScope":true},{"version":"dcf299a72c98d55f888980dffe2cd19020cdef6cbb32a0b28ef30b496ef7642d","affectsGlobalScope":true},{"version":"2e707bebde6153d06452cb3d03a9889a922853da46caf00f5fcc358c490bd6b1","affectsGlobalScope":true},{"version":"22f9c4223c59fd47ea5aadee362aec0b1adc9a6e58f58d9d848d71732f676abf","affectsGlobalScope":true},{"version":"8c5c8110577288007799018d817ecec25fe3eb3aefba99fc8720eb7c1bcd306e","affectsGlobalScope":true},{"version":"db41487da1c62b8a2e9aeaba4b79b9e2270452cfca0165bacb22ab50b2fb9bed","affectsGlobalScope":true},{"version":"eb0d8eac52f68a5fd4f4e8119040c907ca182f45f883e29b5e61cb9eeecb068a","affectsGlobalScope":true},{"version":"1bc1de3b1f094ed8f0612239c11d3163c1b1d7e197ecc6c1606051a3be8bfb5d","affectsGlobalScope":true},{"version":"78eebaa895ec3bfc488e0f2a7a05d573604be33f692187381ba8108cfe31b8c4","affectsGlobalScope":true},"5fc07ceecfafaba4308ea6c954298a259294fe3736b1e3cecda45ef626653769","289235dc0bf9e32f655ebd3a49b7992a122c1ddc9ada0a71fd1337cbac17dfe7"],"root":[[46,51],[57,74]],"options":{"allowJs":false,"allowSyntheticDefaultImports":true,"allowUmdGlobalAccess":false,"allowUnreachableCode":false,"allowUnusedLabels":false,"alwaysStrict":true,"composite":true,"declaration":true,"declarationMap":false,"emitDeclarationOnly":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":1,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":false,"outDir":"./","removeComments":false,"sourceMap":false,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":6},"fileIdsList":[[162],[161,163,164,165,166,167,168,169],[75],[110],[111,116,144],[112,123,124,131,141,152],[112,113,123,131],[114,153],[115,116,124,132],[116,141,149],[117,119,123,131],[110,118],[119,120],[123],[121,123],[110,123],[123,124,125,141,152],[123,124,125,138,141,144],[108,111,157],[119,123,126,131,141,152],[123,124,126,127,131,141,149,152],[126,128,141,149,152],[75,76,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159],[123,129],[130,152,157],[119,123,131,141],[132],[133],[110,134],[135,151,157],[136],[137],[123,138,139],[138,140,153,155],[111,123,141,142,143,144],[111,141,143],[141,142],[144],[145],[110,141],[123,147,148],[147,148],[116,131,141,149],[150],[131,151],[111,126,137,152],[116,153],[141,154],[130,155],[156],[111,116,123,125,134,141,152,155,157],[141,158],[52,53,54,55],[85,89,152],[85,141,152],[80],[82,85,149,152],[131,149],[160],[80,160],[82,85,131,152],[77,78,81,84,111,123,141,152],[77,83],[81,85,111,144,152,160],[111,160],[101,111,160],[79,80,160],[85],[79,80,81,82,83,84,85,86,87,89,90,91,92,93,94,95,96,97,98,99,100,102,103,104,105,106,107],[85,92,93],[83,85,93,94],[84],[77,80,85],[85,89,93,94],[89],[83,85,88,152],[77,82,83,85,89,92],[111,141],[80,85,101,111,157,160],[56],[57,58,59,60,61,62,63],[64,69],[66,67,68,70],[65,66,67,68],[46,47,48,50],[49],[51,64,66,67,68,69,70,71]],"referencedMap":[[166,1],[169,1],[163,1],[168,1],[170,2],[167,1],[75,3],[76,3],[110,4],[111,5],[112,6],[113,7],[114,8],[115,9],[116,10],[117,11],[118,12],[119,13],[120,13],[122,14],[121,15],[123,16],[124,17],[125,18],[109,19],[126,20],[127,21],[128,22],[160,23],[129,24],[130,25],[131,26],[132,27],[133,28],[134,29],[135,30],[136,31],[137,32],[138,33],[139,33],[140,34],[141,35],[143,36],[142,37],[144,38],[145,39],[146,40],[147,41],[148,42],[149,43],[150,44],[151,45],[152,46],[153,47],[154,48],[155,49],[156,50],[157,51],[158,52],[56,53],[92,54],[99,55],[91,54],[106,56],[83,57],[82,58],[105,59],[100,60],[103,61],[85,62],[84,63],[80,64],[79,65],[102,66],[81,67],[86,68],[90,68],[108,69],[107,68],[94,70],[95,71],[97,72],[93,73],[96,74],[101,59],[88,75],[89,76],[98,77],[78,78],[104,79],[57,80],[59,80],[64,81],[60,80],[63,80],[61,80],[62,80],[70,82],[71,83],[69,84],[51,85],[50,86],[72,87]],"exportedModulesMap":[[166,1],[169,1],[163,1],[168,1],[170,2],[167,1],[75,3],[76,3],[110,4],[111,5],[112,6],[113,7],[114,8],[115,9],[116,10],[117,11],[118,12],[119,13],[120,13],[122,14],[121,15],[123,16],[124,17],[125,18],[109,19],[126,20],[127,21],[128,22],[160,23],[129,24],[130,25],[131,26],[132,27],[133,28],[134,29],[135,30],[136,31],[137,32],[138,33],[139,33],[140,34],[141,35],[143,36],[142,37],[144,38],[145,39],[146,40],[147,41],[148,42],[149,43],[150,44],[151,45],[152,46],[153,47],[154,48],[155,49],[156,50],[157,51],[158,52],[56,53],[92,54],[99,55],[91,54],[106,56],[83,57],[82,58],[105,59],[100,60],[103,61],[85,62],[84,63],[80,64],[79,65],[102,66],[81,67],[86,68],[90,68],[108,69],[107,68],[94,70],[95,71],[97,72],[93,73],[96,74],[101,59],[88,75],[89,76],[98,77],[78,78],[104,79],[57,80],[59,80],[64,81],[60,80],[63,80],[61,80],[62,80],[70,82],[71,83],[69,84],[51,85],[50,86],[72,87]],"semanticDiagnosticsPerFile":[166,169,161,163,164,165,168,170,167,162,75,76,110,111,112,113,114,115,116,117,118,119,120,122,121,123,124,125,109,159,126,127,128,160,129,130,131,132,133,134,135,136,137,138,139,140,141,143,142,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,54,52,56,55,53,44,45,9,8,2,10,11,12,13,14,15,16,17,3,18,4,19,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,92,99,91,106,83,82,105,100,103,85,84,80,79,102,81,86,87,90,77,108,107,94,95,97,93,96,101,88,89,98,78,104,57,58,59,64,60,63,61,62,66,70,71,67,69,68,51,46,47,48,50,72,49,65,74,171,73],"latestChangedDtsFile":"./server/index.d.ts"},"version":"5.4.5"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "attio",
|
|
3
|
-
"version": "0.0.1-experimental.
|
|
3
|
+
"version": "0.0.1-experimental.20240916",
|
|
4
|
+
"bin": "lib/attio.js",
|
|
4
5
|
"files": [
|
|
5
6
|
"lib",
|
|
6
7
|
"attio.js",
|
|
@@ -8,6 +9,17 @@
|
|
|
8
9
|
"server.d.ts",
|
|
9
10
|
"global.d.ts"
|
|
10
11
|
],
|
|
12
|
+
"exports": {
|
|
13
|
+
"./client": {
|
|
14
|
+
"types": "./client.d.ts"
|
|
15
|
+
},
|
|
16
|
+
"./global": {
|
|
17
|
+
"types": "./global.d.ts"
|
|
18
|
+
},
|
|
19
|
+
"./server": {
|
|
20
|
+
"types": "./server.d.ts"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
11
23
|
"peerDependencies": {
|
|
12
24
|
"react": "^18"
|
|
13
25
|
}
|