@auto-engineer/frontend-checks 0.4.3 → 0.4.6

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @auto-engineer/frontend-checks
2
2
 
3
+ ## 0.4.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Add debug logging throughout packages for better debugging and issue tracking. Fix MCP server hanging issue in frontend-implementation by ensuring it only starts when run directly, not when imported as a module. The debug logs can be enabled by setting DEBUG environment variable (e.g., DEBUG=frontend-checks:_,frontend-impl:_)
8
+
9
+ ## 0.4.5
10
+
11
+ ### Patch Changes
12
+
13
+ - Fix Playwright browser auto-installation to make the package self-contained. The package now automatically installs Chromium browser when needed using npx, eliminating the need for manual browser installation.
14
+
3
15
  ## 0.4.3
4
16
 
5
17
  ### Patch Changes
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AA+BA,wBAAsB,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAgBrE;AAED,wBAAsB,YAAY,IAAI,OAAO,CAAC,IAAI,CAAC,CAGlD;AAED,wBAAgB,WAAW,CAAC,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAkBlE;AAED,wBAAgB,cAAc,CAAC,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAarE;AAED,wBAAsB,iBAAiB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAYpE"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAqFA,wBAAsB,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAoBrE;AAED,wBAAsB,YAAY,IAAI,OAAO,CAAC,IAAI,CAAC,CAIlD;AAED,wBAAgB,WAAW,CAAC,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAqBlE;AAED,wBAAgB,cAAc,CAAC,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAgBrE;AAED,wBAAsB,iBAAiB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAiBpE"}
package/dist/index.js CHANGED
@@ -1,49 +1,110 @@
1
1
  import { chromium } from 'playwright';
2
- import { exec } from 'child_process';
2
+ import { exec, execSync } from 'child_process';
3
+ import createDebug from 'debug';
4
+ const debug = createDebug('frontend-checks:browser');
5
+ const debugInstall = createDebug('frontend-checks:install');
6
+ const debugScreenshot = createDebug('frontend-checks:screenshot');
7
+ const debugErrors = createDebug('frontend-checks:errors');
3
8
  class BrowserManager {
4
9
  constructor() {
5
10
  this.browser = null;
11
+ this.browserInstalled = false;
6
12
  }
7
13
  static getInstance() {
8
14
  if (BrowserManager.instance === null) {
15
+ debug('Creating new BrowserManager instance');
9
16
  BrowserManager.instance = new BrowserManager();
10
17
  }
11
18
  return BrowserManager.instance;
12
19
  }
20
+ async ensureBrowserInstalled() {
21
+ if (this.browserInstalled) {
22
+ debugInstall('Browser already marked as installed');
23
+ return;
24
+ }
25
+ try {
26
+ // Try to launch to see if browser is already installed
27
+ debugInstall('Testing if Chromium is already installed...');
28
+ const testBrowser = await chromium.launch();
29
+ await testBrowser.close();
30
+ this.browserInstalled = true;
31
+ debugInstall('Chromium is already installed');
32
+ }
33
+ catch (error) {
34
+ // Browser not installed, install it
35
+ console.log('Playwright Chromium not found. Installing...');
36
+ debugInstall('Chromium not found, attempting automatic installation');
37
+ try {
38
+ // Try to install using npx (works in most environments)
39
+ debugInstall('Running: npx playwright install chromium');
40
+ execSync('npx playwright install chromium', {
41
+ stdio: 'inherit',
42
+ env: { ...process.env, PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '0' },
43
+ });
44
+ this.browserInstalled = true;
45
+ console.log('Playwright Chromium installed successfully.');
46
+ debugInstall('Chromium installation completed successfully');
47
+ }
48
+ catch (installError) {
49
+ debugInstall('Failed to install Chromium: %O', installError);
50
+ console.error('Failed to install Playwright Chromium automatically.');
51
+ console.error('Please run: npx playwright install chromium');
52
+ throw new Error('Playwright Chromium browser is not installed. Please run: npx playwright install chromium');
53
+ }
54
+ }
55
+ }
13
56
  async getBrowser() {
14
57
  if (!this.browser) {
58
+ debug('Browser not initialized, ensuring installation and launching');
59
+ await this.ensureBrowserInstalled();
60
+ debug('Launching Chromium browser');
15
61
  this.browser = await chromium.launch();
62
+ debug('Browser launched successfully');
63
+ }
64
+ else {
65
+ debug('Reusing existing browser instance');
16
66
  }
17
67
  return this.browser;
18
68
  }
19
69
  async closeBrowser() {
20
70
  if (this.browser) {
71
+ debug('Closing browser instance');
21
72
  await this.browser.close();
22
73
  this.browser = null;
74
+ debug('Browser closed successfully');
75
+ }
76
+ else {
77
+ debug('No browser instance to close');
23
78
  }
24
79
  }
25
80
  }
26
81
  BrowserManager.instance = null;
27
82
  export async function getConsoleErrors(url) {
83
+ debugErrors('Getting console errors for URL: %s', url);
28
84
  const errors = [];
29
85
  const browserManager = BrowserManager.getInstance();
30
86
  const browser = await browserManager.getBrowser();
31
87
  const page = await browser.newPage();
32
88
  page.on('console', (msg) => {
33
89
  if (msg.type() === 'error') {
90
+ debugErrors('Console error captured: %s', msg.text());
34
91
  errors.push(msg.text());
35
92
  }
36
93
  });
94
+ debugErrors('Navigating to URL: %s', url);
37
95
  await page.goto(url, { waitUntil: 'networkidle' });
38
96
  await page.close();
97
+ debugErrors('Found %d console errors', errors.length);
39
98
  return errors;
40
99
  }
41
100
  export async function closeBrowser() {
101
+ debug('Closing browser via exported function');
42
102
  const browserManager = BrowserManager.getInstance();
43
103
  await browserManager.closeBrowser();
44
104
  }
45
105
  export function getTsErrors(projectPath) {
46
106
  return new Promise((resolve) => {
107
+ debugErrors('Checking TypeScript errors in: %s', projectPath);
47
108
  // Using `pnpm exec tsc` is more robust as it uses the workspace's typescript compiler
48
109
  // and correctly resolves dependencies within the monorepo.
49
110
  const command = `tsc --noEmit`;
@@ -52,10 +113,12 @@ export function getTsErrors(projectPath) {
52
113
  // tsc exits with an error code if there are any type errors.
53
114
  // The errors are in stdout, not stderr.
54
115
  const errors = stdout.split('\n').filter((line) => line.trim().length > 0);
116
+ debugErrors('Found %d TypeScript errors', errors.length);
55
117
  resolve(errors);
56
118
  }
57
119
  else {
58
120
  // No errors
121
+ debugErrors('No TypeScript errors found');
59
122
  resolve([]);
60
123
  }
61
124
  });
@@ -63,26 +126,34 @@ export function getTsErrors(projectPath) {
63
126
  }
64
127
  export function getBuildErrors(projectPath) {
65
128
  return new Promise((resolve) => {
129
+ debugErrors('Checking build errors in: %s', projectPath);
66
130
  const command = `pnpm exec vite build`;
67
131
  exec(command, { cwd: projectPath }, (error, _stdout, stderr) => {
68
132
  if (error) {
69
133
  // Vite build errors are usually in stderr
70
134
  const errors = stderr.split('\n').filter((line) => line.trim().length > 0);
135
+ debugErrors('Found %d build errors', errors.length);
71
136
  resolve(errors);
72
137
  }
73
138
  else {
139
+ debugErrors('No build errors found');
74
140
  resolve([]);
75
141
  }
76
142
  });
77
143
  });
78
144
  }
79
145
  export async function getPageScreenshot(url) {
146
+ debugScreenshot('Taking screenshot of URL: %s', url);
80
147
  const browserManager = BrowserManager.getInstance();
81
148
  const browser = await browserManager.getBrowser();
82
149
  const page = await browser.newPage();
150
+ debugScreenshot('New page created, navigating to URL');
83
151
  await page.goto(url, { waitUntil: 'networkidle' });
152
+ debugScreenshot('Page loaded, taking screenshot');
84
153
  const buffer = await page.screenshot();
154
+ debugScreenshot('Screenshot captured, size: %d bytes', buffer.length);
85
155
  await page.close();
156
+ debugScreenshot('Page closed');
86
157
  return buffer.toString('base64');
87
158
  }
88
159
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,10 +1,16 @@
1
1
  {
2
2
  "name": "@auto-engineer/frontend-checks",
3
- "version": "0.4.3",
3
+ "version": "0.4.6",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
+ "files": [
8
+ "dist",
9
+ "README.md",
10
+ "CHANGELOG.md"
11
+ ],
7
12
  "dependencies": {
13
+ "debug": "^4.4.1",
8
14
  "playwright": "^1.54.1",
9
15
  "typescript": "^5.4.5"
10
16
  },
@@ -16,7 +22,6 @@
16
22
  "dev": "tsc --watch",
17
23
  "test": "vitest run",
18
24
  "lint": "eslint 'src/**/*.ts' --max-warnings 0 --config ../../eslint.config.ts",
19
- "postinstall": "npx playwright install chromium",
20
25
  "type-check": "tsc --noEmit",
21
26
  "format": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore",
22
27
  "lint:fix": "eslint 'src/**/*.ts' --fix --config ../../eslint.config.ts",
@@ -1,4 +0,0 @@
1
-
2
- > @auto-engineer/frontend-checks@0.4.3 build /Users/sam/WebstormProjects/top/auto-engineer/packages/frontend-checks
3
- > tsc
4
-
@@ -1,9 +0,0 @@
1
-
2
- 
3
- > @auto-engineer/frontend-checks@0.4.2 format /Users/sam/WebstormProjects/top/auto-engineer/packages/frontend-checks
4
- > prettier --write "**/*.{js,ts,json,md,yml,yaml}" --ignore-path ../../.prettierignore
5
-
6
- CHANGELOG.mdCHANGELOG.md 41ms (unchanged)
7
- package.jsonpackage.json 16ms (unchanged)
8
- src/index.tssrc/index.ts 82ms (unchanged)
9
- tsconfig.jsontsconfig.json 2ms (unchanged)
@@ -1,5 +0,0 @@
1
-
2
- 
3
- > @auto-engineer/frontend-checks@0.4.2 lint /Users/sam/WebstormProjects/top/auto-engineer/packages/frontend-checks
4
- > eslint 'src/**/*.ts' --max-warnings 0 --config ../../eslint.config.ts
5
-
@@ -1,12 +0,0 @@
1
-
2
- > @auto-engineer/frontend-checks@0.4.3 test /Users/sam/WebstormProjects/top/auto-engineer/packages/frontend-checks
3
- > vitest run
4
-
5
-
6
- RUN v3.2.4 /Users/sam/WebstormProjects/top/auto-engineer/packages/frontend-checks
7
-
8
- No test files found, exiting with code 0
9
-
10
- include: **/*.specs.{js,ts}
11
- exclude: **/.tmp/**, **/node_modules/**, **/dist/**
12
-
@@ -1,4 +0,0 @@
1
-
2
- > @auto-engineer/frontend-checks@0.4.3 type-check /Users/sam/WebstormProjects/top/auto-engineer/packages/frontend-checks
3
- > tsc --noEmit
4
-
package/src/index.ts DELETED
@@ -1,102 +0,0 @@
1
- import { chromium, Browser } from 'playwright';
2
- import { exec } from 'child_process';
3
-
4
- class BrowserManager {
5
- private static instance: BrowserManager | null = null;
6
- private browser: Browser | null = null;
7
-
8
- private constructor() {}
9
-
10
- public static getInstance(): BrowserManager {
11
- if (BrowserManager.instance === null) {
12
- BrowserManager.instance = new BrowserManager();
13
- }
14
- return BrowserManager.instance;
15
- }
16
-
17
- public async getBrowser(): Promise<Browser> {
18
- if (!this.browser) {
19
- this.browser = await chromium.launch();
20
- }
21
- return this.browser;
22
- }
23
-
24
- public async closeBrowser(): Promise<void> {
25
- if (this.browser) {
26
- await this.browser.close();
27
- this.browser = null;
28
- }
29
- }
30
- }
31
-
32
- export async function getConsoleErrors(url: string): Promise<string[]> {
33
- const errors: string[] = [];
34
- const browserManager = BrowserManager.getInstance();
35
- const browser = await browserManager.getBrowser();
36
- const page = await browser.newPage();
37
-
38
- page.on('console', (msg) => {
39
- if (msg.type() === 'error') {
40
- errors.push(msg.text());
41
- }
42
- });
43
-
44
- await page.goto(url, { waitUntil: 'networkidle' });
45
- await page.close();
46
-
47
- return errors;
48
- }
49
-
50
- export async function closeBrowser(): Promise<void> {
51
- const browserManager = BrowserManager.getInstance();
52
- await browserManager.closeBrowser();
53
- }
54
-
55
- export function getTsErrors(projectPath: string): Promise<string[]> {
56
- return new Promise((resolve) => {
57
- // Using `pnpm exec tsc` is more robust as it uses the workspace's typescript compiler
58
- // and correctly resolves dependencies within the monorepo.
59
- const command = `tsc --noEmit`;
60
-
61
- exec(command, { cwd: projectPath }, (error, stdout, _stderr) => {
62
- if (error) {
63
- // tsc exits with an error code if there are any type errors.
64
- // The errors are in stdout, not stderr.
65
- const errors = stdout.split('\n').filter((line) => line.trim().length > 0);
66
- resolve(errors);
67
- } else {
68
- // No errors
69
- resolve([]);
70
- }
71
- });
72
- });
73
- }
74
-
75
- export function getBuildErrors(projectPath: string): Promise<string[]> {
76
- return new Promise((resolve) => {
77
- const command = `pnpm exec vite build`;
78
- exec(command, { cwd: projectPath }, (error, _stdout, stderr) => {
79
- if (error) {
80
- // Vite build errors are usually in stderr
81
- const errors = stderr.split('\n').filter((line) => line.trim().length > 0);
82
- resolve(errors);
83
- } else {
84
- resolve([]);
85
- }
86
- });
87
- });
88
- }
89
-
90
- export async function getPageScreenshot(url: string): Promise<string> {
91
- const browserManager = BrowserManager.getInstance();
92
- const browser = await browserManager.getBrowser();
93
- const page = await browser.newPage();
94
-
95
- await page.goto(url, { waitUntil: 'networkidle' });
96
-
97
- const buffer = await page.screenshot();
98
-
99
- await page.close();
100
-
101
- return buffer.toString('base64');
102
- }
package/tsconfig.json DELETED
@@ -1,10 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.base.json",
3
- "compilerOptions": {
4
- "composite": true,
5
- "outDir": "./dist",
6
- "rootDir": "./src"
7
- },
8
- "include": ["src/**/*"],
9
- "exclude": ["node_modules", "dist"]
10
- }
@@ -1 +0,0 @@
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/playwright-core@1.54.1/node_modules/playwright-core/types/protocol.d.ts","../../node_modules/.pnpm/playwright-core@1.54.1/node_modules/playwright-core/types/structs.d.ts","../../node_modules/.pnpm/playwright-core@1.54.1/node_modules/playwright-core/types/types.d.ts","../../node_modules/.pnpm/playwright-core@1.54.1/node_modules/playwright-core/index.d.ts","../../node_modules/.pnpm/playwright@1.54.1/node_modules/playwright/index.d.ts","./src/index.ts","../../node_modules/.pnpm/@types+ms@2.1.0/node_modules/@types/ms/index.d.ts","../../node_modules/.pnpm/@types+debug@4.1.12/node_modules/@types/debug/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/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.8/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/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},"4e197213bcb33cc8bb1b018c504280c2b96438ddf3b9118705ffbb0c529fe940","32727845ab5bd8a9ef3e4844c567c09f6d418fcf0f90d381c00652a6f23e7f6e","bfe983b83684d7cf87147b9e94d4e77bd3ec348a3c76e209937f5f764f7d313d","7a8ec10b0834eb7183e4bfcd929838ac77583828e343211bb73676d1e47f6f01","b07f64ff6ec710998a62b07377fbda0ab4c313ba1f0055bfe9faa22cffedd47c",{"version":"64350d6420ae522aa84b7631fc68be89a810f0d2ac9dabb6f18d535d2e290024","signature":"a3e3367b4f950f0c67071a0339478af97f0d5e8b22e34cb5ab1c8c35506f2d0e"},"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1",{"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},"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","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","4ec3c48b7d89091aafb4e0452e4c971f34cf1615b490b5201044f31ac07f4b16","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":"0dbcebe2126d03936c70545e96a6e41007cf065be38a1ce4d32a39fcedefead4","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":[50],"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":[[51,58,101],[58,101],[58,98,101],[58,100,101],[58,101,106,135],[58,101,102,107,113,114,121,132,143],[58,101,102,103,113,121],[53,54,55,58,101],[58,101,104,144],[58,101,105,106,114,122],[58,101,106,132,140],[58,101,107,109,113,121],[58,100,101,108],[58,101,109,110],[58,101,111,113],[58,100,101,113],[58,101,113,114,115,132,143],[58,101,113,114,115,128,132,135],[58,96,101],[58,101,109,113,116,121,132,143],[58,101,113,114,116,117,121,132,140,143],[58,101,116,118,132,140,143],[58,101,113,119],[58,101,120,143,148],[58,101,109,113,121,132],[58,101,122],[58,101,123],[58,100,101,124],[58,98,99,100,101,102,103,104,105,106,107,108,109,110,111,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],[58,101,126],[58,101,127],[58,101,113,128,129],[58,101,128,130,144,146],[58,101,113,132,133,135],[58,101,134,135],[58,101,132,133],[58,101,135],[58,101,136],[58,98,101,132,137],[58,101,113,138,139],[58,101,138,139],[58,101,106,121,132,140],[58,101,141],[101],[56,57,58,97,98,99,100,101,102,103,104,105,106,107,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],[58,101,121,142],[58,101,116,127,143],[58,101,106,144],[58,101,132,145],[58,101,120,146],[58,101,147],[58,101,113,115,124,132,135,143,146,148],[58,101,132,149],[47,58,101],[45,46,58,101,102,114,132],[48,58,101],[58,68,72,101,143],[58,68,101,132,143],[58,63,101],[58,65,68,101,140,143],[58,101,121,140],[58,101,150],[58,63,101,150],[58,65,68,101,121,143],[58,60,61,64,67,101,113,132,143],[58,68,75,101],[58,60,66,101],[58,68,89,90,101],[58,64,68,101,135,143,150],[58,89,101,150],[58,62,63,101,150],[58,68,101],[58,62,63,64,65,66,67,68,69,70,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,90,91,92,93,94,95,101],[58,68,83,101],[58,68,75,76,101],[58,66,68,76,77,101],[58,67,101],[58,60,63,68,101],[58,68,72,76,77,101],[58,72,101],[58,66,68,71,101,143],[58,60,65,68,75,101],[58,101,132],[58,63,68,89,101,148,150],[49,58,101,102]],"referencedMap":[[52,1],[51,2],[98,3],[99,3],[100,4],[101,5],[102,6],[103,7],[53,2],[56,8],[54,2],[55,2],[104,9],[105,10],[106,11],[107,12],[108,13],[109,14],[110,14],[112,2],[111,15],[113,16],[114,17],[115,18],[97,19],[116,20],[117,21],[118,22],[119,23],[120,24],[121,25],[122,26],[123,27],[124,28],[125,29],[126,30],[127,31],[128,32],[129,32],[130,33],[131,2],[132,34],[134,35],[133,36],[135,37],[136,38],[137,39],[138,40],[139,41],[140,42],[141,43],[58,44],[57,2],[150,45],[142,46],[143,47],[144,48],[145,49],[146,50],[147,51],[148,52],[149,53],[59,2],[48,54],[45,2],[46,54],[47,55],[49,56],[43,2],[44,2],[9,2],[8,2],[2,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[3,2],[18,2],[4,2],[19,2],[23,2],[20,2],[21,2],[22,2],[24,2],[25,2],[26,2],[5,2],[27,2],[28,2],[29,2],[30,2],[6,2],[34,2],[31,2],[32,2],[33,2],[35,2],[7,2],[36,2],[41,2],[42,2],[37,2],[38,2],[39,2],[40,2],[1,2],[75,57],[85,58],[74,57],[95,59],[66,60],[65,61],[94,62],[88,63],[93,64],[68,65],[82,66],[67,67],[91,68],[63,69],[62,62],[92,70],[64,71],[69,72],[70,2],[73,72],[60,2],[96,73],[86,74],[77,75],[78,76],[80,77],[76,78],[79,79],[89,62],[71,80],[72,81],[81,82],[61,83],[84,74],[83,72],[87,2],[90,84],[50,85]],"latestChangedDtsFile":"./dist/index.d.ts"},"version":"5.5.4"}