@auto-engineer/information-architect 0.1.1
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/.turbo/turbo-build.log +5 -0
- package/CHANGELOG.md +11 -0
- package/LICENSE +10 -0
- package/dist/auto-ux-schema.json +269 -0
- package/dist/commands/generate-ia.d.ts +18 -0
- package/dist/commands/generate-ia.d.ts.map +1 -0
- package/dist/commands/generate-ia.js +115 -0
- package/dist/commands/generate-ia.js.map +1 -0
- package/dist/generate-ia-schema.d.ts +2 -0
- package/dist/generate-ia-schema.d.ts.map +1 -0
- package/dist/generate-ia-schema.js +70 -0
- package/dist/generate-ia-schema.js.map +1 -0
- package/dist/index.d.ts +23 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +122 -0
- package/dist/index.js.map +1 -0
- package/dist/types.d.ts +20 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/package.json +37 -0
- package/src/auto-ux-schema.json +269 -0
- package/src/commands/generate-ia.ts +162 -0
- package/src/generate-ia-schema.ts +81 -0
- package/src/index.ts +144 -0
- package/src/types.ts +21 -0
- package/tsconfig.json +11 -0
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { processFlowsWithAI } from './index';
|
|
2
|
+
import uxSchema from './auto-ux-schema.json';
|
|
3
|
+
import * as fs from 'fs/promises';
|
|
4
|
+
import * as path from 'path';
|
|
5
|
+
|
|
6
|
+
async function getAtomsFromMarkdown(designSystemDir: string): Promise<string[]> {
|
|
7
|
+
const mdPath = path.join(designSystemDir, 'design-system.md');
|
|
8
|
+
let content: string;
|
|
9
|
+
try {
|
|
10
|
+
content = await fs.readFile(mdPath, 'utf-8');
|
|
11
|
+
} catch {
|
|
12
|
+
return [];
|
|
13
|
+
}
|
|
14
|
+
// Find all lines that start with '### ' and extract the component name
|
|
15
|
+
const lines = content.split('\n');
|
|
16
|
+
const components: string[] = [];
|
|
17
|
+
for (const line of lines) {
|
|
18
|
+
const match = line.match(/^###\s+(.+)/);
|
|
19
|
+
if (match) {
|
|
20
|
+
components.push(match[1].trim());
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
return components;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
async function getUniqueSchemaPath(
|
|
27
|
+
outputDir: string,
|
|
28
|
+
): Promise<{ filePath: string; existingSchema: object | undefined }> {
|
|
29
|
+
await fs.mkdir(outputDir, { recursive: true });
|
|
30
|
+
const baseFileName = 'auto-ia-scheme';
|
|
31
|
+
const basePath = path.join(outputDir, baseFileName);
|
|
32
|
+
let existingSchema: object | undefined = undefined;
|
|
33
|
+
|
|
34
|
+
try {
|
|
35
|
+
existingSchema = JSON.parse(await fs.readFile(`${basePath}.json`, 'utf-8')) as object;
|
|
36
|
+
console.log('Existing IA schema found and will be taken into account.');
|
|
37
|
+
} catch (err: unknown) {
|
|
38
|
+
if (typeof err === 'object' && err !== null && 'code' in err && (err as { code?: string }).code !== 'ENOENT') {
|
|
39
|
+
console.error('Error reading existing IA schema:', err);
|
|
40
|
+
process.exit(1);
|
|
41
|
+
}
|
|
42
|
+
// If file does not exist or is invalid, continue with existingSchema as undefined
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
let filePath = `${basePath}.json`;
|
|
46
|
+
let counter = 1;
|
|
47
|
+
while (
|
|
48
|
+
await fs
|
|
49
|
+
.access(filePath)
|
|
50
|
+
.then(() => true)
|
|
51
|
+
.catch(() => false)
|
|
52
|
+
) {
|
|
53
|
+
filePath = `${basePath}-${counter}.json`;
|
|
54
|
+
counter++;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
return { filePath, existingSchema };
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
async function main() {
|
|
61
|
+
const [, , outputDir, ...flowFiles] = process.argv;
|
|
62
|
+
if (!outputDir) {
|
|
63
|
+
console.error('Usage: tsx src/generate-ia-schema.ts <output-dir> <flow-file-1> <flow-file-2> ...');
|
|
64
|
+
process.exit(1);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
const flows: string[] = await Promise.all(flowFiles.map((flow) => fs.readFile(flow, 'utf-8')));
|
|
68
|
+
const { filePath, existingSchema } = await getUniqueSchemaPath(outputDir);
|
|
69
|
+
const atomNames = await getAtomsFromMarkdown(outputDir);
|
|
70
|
+
const atoms = atomNames.map((name) => ({ name, props: [] }));
|
|
71
|
+
|
|
72
|
+
const iaSchema = await processFlowsWithAI(flows, uxSchema, existingSchema, atoms);
|
|
73
|
+
|
|
74
|
+
await fs.writeFile(filePath, JSON.stringify(iaSchema, null, 2));
|
|
75
|
+
console.log(`Generated IA schema written to ${filePath}`);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
main().catch((err) => {
|
|
79
|
+
console.error('Failed to generate IA schema:', err);
|
|
80
|
+
process.exit(1);
|
|
81
|
+
});
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
import { generateTextWithAI, AIProvider } from '@auto-engineer/ai-gateway';
|
|
2
|
+
import { type UXSchema, type AIAgentOutput } from './types';
|
|
3
|
+
|
|
4
|
+
function extractJsonFromMarkdown(text: string): string {
|
|
5
|
+
return text.replace(/```(?:json)?\s*([\s\S]*?)\s*```/, '$1').trim();
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
function isJsonString(str: string): boolean {
|
|
9
|
+
try {
|
|
10
|
+
JSON.parse(str);
|
|
11
|
+
return true;
|
|
12
|
+
} catch {
|
|
13
|
+
return false;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export class InformationArchitectAgent {
|
|
18
|
+
private provider: AIProvider;
|
|
19
|
+
|
|
20
|
+
constructor(provider: AIProvider = AIProvider.Anthropic) {
|
|
21
|
+
this.provider = provider;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
async generateUXComponents(
|
|
25
|
+
flows: string[],
|
|
26
|
+
uxSchema: UXSchema,
|
|
27
|
+
existingSchema?: object,
|
|
28
|
+
atoms?: { name: string; props: { name: string; type: string }[] }[],
|
|
29
|
+
): Promise<AIAgentOutput> {
|
|
30
|
+
const prompt = this.constructPrompt(flows, uxSchema, existingSchema, atoms);
|
|
31
|
+
try {
|
|
32
|
+
const response = await generateTextWithAI(prompt, this.provider, { temperature: 0.7, maxTokens: 4096 });
|
|
33
|
+
if (!response) {
|
|
34
|
+
throw new Error('No response from AI agent');
|
|
35
|
+
}
|
|
36
|
+
const clean = extractJsonFromMarkdown(response);
|
|
37
|
+
if (!isJsonString(clean)) {
|
|
38
|
+
throw new Error('AI did not return valid JSON. Got: ' + clean.slice(0, 100));
|
|
39
|
+
}
|
|
40
|
+
return JSON.parse(clean) as AIAgentOutput;
|
|
41
|
+
} catch (error) {
|
|
42
|
+
console.error('Error calling AI integration:', error);
|
|
43
|
+
throw error;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
private constructPrompt(
|
|
48
|
+
flows: string[],
|
|
49
|
+
uxSchema: UXSchema,
|
|
50
|
+
existingSchema?: object,
|
|
51
|
+
atoms?: { name: string; props: { name: string; type: string }[] }[],
|
|
52
|
+
): string {
|
|
53
|
+
return `
|
|
54
|
+
You are an expert UI architect and product designer. Given the following flows and UX schema, generate a detailed JSON specification for the application's UI components and pages.
|
|
55
|
+
|
|
56
|
+
IMPORTANT: Only generate pages and components that are directly referenced in the provided flows. Do NOT add any extra pages or components, and do NOT make assumptions outside the flows. If something is not mentioned in the flows, it should NOT appear in the output.
|
|
57
|
+
|
|
58
|
+
$${atoms ? `Here is a list of available atomic components (atoms) from the design system. Use these atoms and their props as much as possible. Only create new atoms if absolutely necessary. And only put the new atoms created into the schema. \n\nAtoms:\n${JSON.stringify(atoms, null, 2)}\n` : ''}
|
|
59
|
+
Flows:
|
|
60
|
+
${JSON.stringify(flows, null, 2)}
|
|
61
|
+
|
|
62
|
+
UX Schema:
|
|
63
|
+
${JSON.stringify(uxSchema, null, 2)}
|
|
64
|
+
|
|
65
|
+
${existingSchema ? `Here is the current IA schema. Only add, update, or remove what is necessary based on the new flows and UX schema. Preserve what is still relevant and do not make unnecessary changes.\n\nCurrent IA Schema:\n${JSON.stringify(existingSchema, null, 2)}\n` : ''}
|
|
66
|
+
Instructions:
|
|
67
|
+
|
|
68
|
+
- Respond ONLY with a JSON object, no explanation, no markdown, no text before or after.
|
|
69
|
+
- The JSON should have two main sections: "components" and "pages".
|
|
70
|
+
- In "components", define composite UI elements (atoms, molecules, organisms) with:
|
|
71
|
+
- A description
|
|
72
|
+
- A "composition" field listing the building blocks used, grouped by type:
|
|
73
|
+
- "atoms": for atomic UI primitives (e.g., Button, Text, InputField)
|
|
74
|
+
- "molecules": for reusable, mid-level components (composed of atoms)
|
|
75
|
+
- "organisms": for larger, smart UI components (composed of molecules)
|
|
76
|
+
- Example:
|
|
77
|
+
"composition": {
|
|
78
|
+
"atoms": ["Button", "Text"],
|
|
79
|
+
"molecules": ["SearchBar"],
|
|
80
|
+
"organisms": ["TopNavBar"]
|
|
81
|
+
}
|
|
82
|
+
- In "pages", define each page as a key, with:
|
|
83
|
+
- route (URL path)
|
|
84
|
+
- description
|
|
85
|
+
- layout (listing the organisms used)
|
|
86
|
+
- navigation (array of navigation actions, e.g., { "on": "Click Listing Card", "to": "ListingDetailPage" })
|
|
87
|
+
- data_requirements (array, as above, for page-level data fetching)
|
|
88
|
+
- For each component or page, if there are any specs defined in the flows using specs('ComponentOrPageName', ...), extract all should(...) statements from .client(() => { ... }) blocks and assign them as an array of strings to a 'specs' field for the corrosponding component/page.
|
|
89
|
+
- Only include specs from .client(() => { ... }) blocks, not from server() or other blocks.
|
|
90
|
+
- If no specs are found for a component/page, omit the 'specs' field.
|
|
91
|
+
|
|
92
|
+
Use the following structure as a template for your response:
|
|
93
|
+
----
|
|
94
|
+
{
|
|
95
|
+
"components": {
|
|
96
|
+
"ComponentName": {
|
|
97
|
+
"description": "What this component does.",
|
|
98
|
+
"composition": { "primitives": ["Primitive1", "Primitive2"] },
|
|
99
|
+
"data_requirements": [
|
|
100
|
+
{
|
|
101
|
+
"type": "query",
|
|
102
|
+
"description": "What data is fetched.",
|
|
103
|
+
"trigger": "When the query runs.",
|
|
104
|
+
"details": {
|
|
105
|
+
"source": "Where the data comes from.",
|
|
106
|
+
"gql": "GraphQL query or subscription"
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
]
|
|
110
|
+
}
|
|
111
|
+
// ... more components
|
|
112
|
+
},
|
|
113
|
+
"pages": {
|
|
114
|
+
"PageName": {
|
|
115
|
+
"route": "/route",
|
|
116
|
+
"description": "What this page does.",
|
|
117
|
+
"layout": { "organisms": ["Organism1", "Organism2"] },
|
|
118
|
+
"navigation": [{ "on": "Event", "to": "TargetPage" }],
|
|
119
|
+
"data_requirements": [
|
|
120
|
+
// ... as above
|
|
121
|
+
]
|
|
122
|
+
}
|
|
123
|
+
// ... more pages
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
----
|
|
127
|
+
|
|
128
|
+
Be concise but thorough. Use the flows and UX schema to infer the necessary components, their composition, and data requirements.
|
|
129
|
+
Do not include any text, explanation, or markdown—only the JSON object as described.
|
|
130
|
+
`;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
export async function processFlowsWithAI(
|
|
135
|
+
flows: string[],
|
|
136
|
+
uxSchema: UXSchema,
|
|
137
|
+
existingSchema?: object,
|
|
138
|
+
atoms?: { name: string; props: { name: string; type: string }[] }[],
|
|
139
|
+
): Promise<AIAgentOutput> {
|
|
140
|
+
const agent = new InformationArchitectAgent();
|
|
141
|
+
return agent.generateUXComponents(flows, uxSchema, existingSchema, atoms);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export * from './commands/generate-ia';
|
package/src/types.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export interface Flow {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
steps: unknown[];
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export interface UXSchema {
|
|
8
|
+
$schema: string;
|
|
9
|
+
title: string;
|
|
10
|
+
description: string;
|
|
11
|
+
type: string;
|
|
12
|
+
properties: {
|
|
13
|
+
[key: string]: unknown;
|
|
14
|
+
};
|
|
15
|
+
required?: string[];
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export interface AIAgentOutput {
|
|
19
|
+
generatedComponents: unknown[];
|
|
20
|
+
layout: unknown;
|
|
21
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../tsconfig.base.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"composite": true,
|
|
5
|
+
"outDir": "./dist",
|
|
6
|
+
"rootDir": "./src"
|
|
7
|
+
},
|
|
8
|
+
"include": ["src/**/*.ts", "src/**/*.json"],
|
|
9
|
+
"exclude": ["node_modules", "dist"],
|
|
10
|
+
"references": [{ "path": "../ai-gateway" }, { "path": "../message-bus" }]
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/typeAliases.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/util.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/index.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/ZodError.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/locales/en.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/errors.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/parseUtil.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/enumUtil.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/errorUtil.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/partialUtil.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/standard-schema.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/types.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/external.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/index.d.cts","../../node_modules/.pnpm/@modelcontextprotocol+sdk@1.17.3/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.d.ts","../../node_modules/.pnpm/@modelcontextprotocol+sdk@1.17.3/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts","../../node_modules/.pnpm/@modelcontextprotocol+sdk@1.17.3/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.d.ts","../../node_modules/.pnpm/@modelcontextprotocol+sdk@1.17.3/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.d.ts","../../node_modules/.pnpm/@modelcontextprotocol+sdk@1.17.3/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.d.ts","../../node_modules/.pnpm/@modelcontextprotocol+sdk@1.17.3/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.d.ts","../../node_modules/.pnpm/@modelcontextprotocol+sdk@1.17.3/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.d.ts","../ai-gateway/dist/mcp-server.d.ts","../ai-gateway/dist/index.d.ts","./src/types.ts","../message-bus/dist/types.d.ts","../message-bus/dist/message-bus.d.ts","../message-bus/dist/index.d.ts","./src/commands/generate-ia.ts","./src/index.ts","./src/auto-ux-schema.json","./src/generate-ia-schema.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/ts5.6/index.d.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","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":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","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":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","833e92c058d033cde3f29a6c7603f517001d1ddd8020bc94d2067a3bc69b2a8e","08b2fae7b0f553ad9f79faec864b179fc58bc172e295a70943e8585dd85f600c","f12edf1672a94c578eca32216839604f1e1c16b40a1896198deabf99c882b340","e3498cf5e428e6c6b9e97bd88736f26d6cf147dedbfa5a8ad3ed8e05e059af8a","dba3f34531fd9b1b6e072928b6f885aa4d28dd6789cbd0e93563d43f4b62da53","f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","2329d90062487e1eaca87b5e06abcbbeeecf80a82f65f949fd332cfcf824b87b","25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","4fdb529707247a1a917a4626bfb6a293d52cd8ee57ccf03830ec91d39d606d6d","a9ebb67d6bbead6044b43714b50dcb77b8f7541ffe803046fdec1714c1eba206","5780b706cece027f0d4444fbb4e1af62dc51e19da7c3d3719f67b22b033859b9","4749a5d10b6e3b0bd6c8d90f9ba68a91a97aa0c2c9a340dd83306b2f349d6d34","dd1729e568bbd92727b6703f2340096d07476d29085b3ee2f49e78e6f2029d20","efdb6c1c0e195ea378a0b7cd0e808f65176bea14396dc8bdccda80551e66d73f","de328e8fd327cf362e090965057fbbf14f2085c78b70eb31b61ceeca8d6da01c","7747f4b6daf0968301794ba95e1242f5d195fb176592d1f43fc5a3926f0f7de8","d691e546590145171d00d78b341bd3ca4844c96eb34f870be84058a1cab585c3","605cafb12f4bbed8d56d27c00483f6ea0b1bc9b68e5b2fe869036e0e562b6e51","1410ca2f64bc0705df76b5404ac2a188a983fbf7809f676d99d5b59a95f09185","7ca1f7e905aafb44a73b9bedfce0ae3d156affd0459052bc74c3ceea7954fe8d",{"version":"12d0b4f12fa4bdb81cc318c12d31bfaf85acfdc59fbf12f649c94b19c3e90348","signature":"c68b81405b808925eb3083530b9a882f09ae09e1b242de595b181c115dcd9534"},"df47fd9f3376361bd3c95f8ed682e93f17975341bc48971fdcd1becfd7126bf3","7b4016a0a25c81c83f90dc80f0d71245d7f9a196ea33473bcddc5d90fa8e41bf","0049beb632aa48dd202a8fbedbd05ccef5c8eb51614ee73d7bb9bdcecb5076d7",{"version":"71dadfe3e0705886abbcd0181729eb2460ec8944a9ea1fdac7ea602b8c52b60f","signature":"2c3431e25363111a10993cb11ae4057cac31338e38dfd16a4b407f6f696b5634"},{"version":"e681fd45e436707a4ffc3873fab762d606102a56e5a2c4ae5151a06822d88165","signature":"debe4e0689f2119a8760192392538d2cde3e377c03bbfe072bf726388139104d"},"4d0692c465bad5512271b6671d5e4fcf8ad2dc7757c07601a41b6d7ec8a414ea",{"version":"b03fb3db73690c203009c21d79b8ce64bd867f7fa50a0b2c8bf4ab0f936f3239","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true},"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a",{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true},{"version":"109b9c280e8848c08bf4a78fff1fed0750a6ca1735671b5cf08b71bae5448c03","affectsGlobalScope":true},"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"1ca84b44ad1d8e4576f24904d8b95dd23b94ea67e1575f89614ac90062fc67f4","affectsGlobalScope":true},"6d586db0a09a9495ebb5dece28f54df9684bfbd6e1f568426ca153126dac4a40","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f",{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true},"823f9c08700a30e2920a063891df4e357c64333fdba6889522acc5b7ae13fc08","84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef",{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true},"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a",{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true},"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","2bf469abae4cc9c0f340d4e05d9d26e37f936f9c8ca8f007a6534f109dcc77e4","4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45",{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true},"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","b5895e6353a5d708f55d8685c38a235c3a6d8138e374dee8ceb8ffde5aa8002a","54c4f21f578864961efc94e8f42bc893a53509e886370ec7dd602e0151b9266c","de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86",{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true},"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5",{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true},"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093",{"version":"0225ecb9ed86bdb7a2c7fd01f1556906902929377b44483dc4b83e03b3ef227d","affectsGlobalScope":true},"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","461e54289e6287e8494a0178ba18182acce51a02bca8dea219149bf2cf96f105",{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true},"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9",{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true},"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"e56eb632f0281c9f8210eb8c86cc4839a427a4ffffcfd2a5e40b956050b3e042","affectsGlobalScope":true},"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","9091e564b81e7b4c382a33c62de704a699e10508190547d4f7c1c3e039d2db2b"],"root":[68,[72,75]],"options":{"allowJs":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"inlineSources":false,"module":99,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":7},"fileIdsList":[[81,124],[58,60,62,81,124],[58,60,61,62,63,64,81,124],[58,59,60,61,81,124],[60,81,124],[58,59,81,124],[81,121,124],[81,123,124],[81,124,129,158],[81,124,125,130,136,144,155,166],[81,124,125,126,136,144],[76,77,78,81,124],[81,124,127,167],[81,124,128,129,137,145],[81,124,129,155,163],[81,124,130,132,136,144],[81,123,124,131],[81,124,132,133],[81,124,134,136],[81,123,124,136],[81,124,136,137,138,155,166],[81,124,136,137,138,151,155,158],[81,119,124],[81,124,132,136,139,144,155,166],[81,124,136,137,139,140,144,155,163,166],[81,124,139,141,155,163,166],[81,124,136,142],[81,124,143,166,171],[81,124,132,136,144,155],[81,124,145],[81,124,146],[81,123,124,147],[81,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172],[81,124,149],[81,124,150],[81,124,136,151,152],[81,124,151,153,167,169],[81,124,136,155,156,158],[81,124,157,158],[81,124,155,156],[81,124,158],[81,124,159],[81,121,124,155,160],[81,124,136,161,162],[81,124,161,162],[81,124,129,144,155,163],[81,124,164],[124],[79,80,81,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,160,161,162,163,164,165,166,167,168,169,170,171,172],[81,124,144,165],[81,124,139,150,166],[81,124,129,167],[81,124,155,168],[81,124,143,169],[81,124,170],[81,124,136,138,147,155,158,166,169,171],[81,124,155,172],[81,91,95,124,166],[81,91,124,155,166],[81,86,124],[81,88,91,124,163,166],[81,124,144,163],[81,124,173],[81,86,124,173],[81,88,91,124,144,166],[81,83,84,87,90,124,136,155,166],[81,91,98,124],[81,83,89,124],[81,91,112,113,124],[81,87,91,124,158,166,173],[81,112,124,173],[81,85,86,124,173],[81,91,124],[81,85,86,87,88,89,90,91,92,93,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,114,115,116,117,118,124],[81,91,106,124],[81,91,98,99,124],[81,89,91,99,100,124],[81,90,124],[81,83,86,91,124],[81,91,95,99,100,124],[81,95,124],[81,89,91,94,124,166],[81,83,88,91,98,124],[81,124,155],[81,86,91,112,124,171,173],[57,81,124],[45,46,47,81,124],[48,49,81,124],[45,46,48,50,51,56,81,124],[46,48,81,124],[56,81,124],[48,81,124],[45,46,48,51,52,53,54,55,81,124],[58,66,81,124],[58,65,81,124],[68,71,73,81,124,137,146,166],[73,74,81,124,138,146],[67,68,72,81,124],[69,70,81,124],[69,81,124]],"referencedMap":[[59,1],[63,2],[65,3],[62,4],[61,5],[64,1],[60,6],[121,7],[122,7],[123,8],[124,9],[125,10],[126,11],[76,1],[79,12],[77,1],[78,1],[127,13],[128,14],[129,15],[130,16],[131,17],[132,18],[133,18],[135,1],[134,19],[136,20],[137,21],[138,22],[120,23],[139,24],[140,25],[141,26],[142,27],[143,28],[144,29],[145,30],[146,31],[147,32],[148,33],[149,34],[150,35],[151,36],[152,36],[153,37],[154,1],[155,38],[157,39],[156,40],[158,41],[159,42],[160,43],[161,44],[162,45],[163,46],[164,47],[81,48],[80,1],[173,49],[165,50],[166,51],[167,52],[168,53],[169,54],[170,55],[171,56],[172,57],[82,1],[43,1],[44,1],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[18,1],[4,1],[19,1],[23,1],[20,1],[21,1],[22,1],[24,1],[25,1],[26,1],[5,1],[27,1],[28,1],[29,1],[30,1],[6,1],[34,1],[31,1],[32,1],[33,1],[35,1],[7,1],[36,1],[41,1],[42,1],[37,1],[38,1],[39,1],[40,1],[1,1],[98,58],[108,59],[97,58],[118,60],[89,61],[88,62],[117,63],[111,64],[116,65],[91,66],[105,67],[90,68],[114,69],[86,70],[85,63],[115,71],[87,72],[92,73],[93,1],[96,73],[83,1],[119,74],[109,75],[100,76],[101,77],[103,78],[99,79],[102,80],[112,63],[94,81],[95,82],[104,83],[84,84],[107,75],[106,73],[110,1],[113,85],[58,86],[48,87],[50,88],[57,89],[52,1],[53,1],[51,90],[54,91],[45,1],[46,1],[47,86],[49,92],[55,1],[56,93],[67,94],[66,95],[74,1],[72,96],[75,97],[73,98],[68,1],[71,99],[70,100],[69,1]],"latestChangedDtsFile":"./dist/generate-ia-schema.d.ts"},"version":"5.5.4"}
|