@react-native-harness/config 1.0.0-alpha.17 → 1.0.0-alpha.18
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/LICENSE +20 -0
- package/dist/errors.d.ts +4 -3
- package/dist/errors.d.ts.map +1 -1
- package/dist/errors.js +43 -6
- package/dist/index.d.ts +1 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/dist/types.d.ts +10 -326
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +2 -77
- package/package.json +4 -3
- package/src/errors.ts +69 -6
- package/src/index.ts +1 -20
- package/src/types.ts +2 -127
- package/tsconfig.json +3 -0
- package/tsconfig.lib.json +5 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Callstack
|
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
6
|
+
in the Software without restriction, including without limitation the rights
|
|
7
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
9
|
+
furnished to do so, subject to the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
20
|
+
SOFTWARE.
|
package/dist/errors.d.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
import { HarnessError } from '@react-native-harness/tools';
|
|
2
|
+
export declare class ConfigValidationError extends HarnessError {
|
|
2
3
|
readonly filePath: string;
|
|
3
4
|
readonly validationErrors: string[];
|
|
4
5
|
constructor(filePath: string, validationErrors: string[]);
|
|
5
6
|
}
|
|
6
|
-
export declare class ConfigNotFoundError extends
|
|
7
|
+
export declare class ConfigNotFoundError extends HarnessError {
|
|
7
8
|
readonly searchPath: string;
|
|
8
9
|
constructor(searchPath: string);
|
|
9
10
|
}
|
|
10
|
-
export declare class ConfigLoadError extends
|
|
11
|
+
export declare class ConfigLoadError extends HarnessError {
|
|
11
12
|
readonly filePath: string;
|
|
12
13
|
readonly cause?: Error;
|
|
13
14
|
constructor(filePath: string, cause?: Error);
|
package/dist/errors.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["../src/errors.ts"],"names":[],"mappings":"AAAA,qBAAa,qBAAsB,SAAQ,
|
|
1
|
+
{"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["../src/errors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAE3D,qBAAa,qBAAsB,SAAQ,YAAY;aAEnC,QAAQ,EAAE,MAAM;aAChB,gBAAgB,EAAE,MAAM,EAAE;gBAD1B,QAAQ,EAAE,MAAM,EAChB,gBAAgB,EAAE,MAAM,EAAE;CAsB7C;AAED,qBAAa,mBAAoB,SAAQ,YAAY;aACvB,UAAU,EAAE,MAAM;gBAAlB,UAAU,EAAE,MAAM;CAmB/C;AAED,qBAAa,eAAgB,SAAQ,YAAY;aAGnB,QAAQ,EAAE,MAAM;IAF5C,SAAyB,KAAK,CAAC,EAAE,KAAK,CAAC;gBAEX,QAAQ,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,KAAK;CAkC5D"}
|
package/dist/errors.js
CHANGED
|
@@ -1,26 +1,63 @@
|
|
|
1
|
-
|
|
1
|
+
import { HarnessError } from '@react-native-harness/tools';
|
|
2
|
+
export class ConfigValidationError extends HarnessError {
|
|
2
3
|
filePath;
|
|
3
4
|
validationErrors;
|
|
4
5
|
constructor(filePath, validationErrors) {
|
|
5
|
-
|
|
6
|
+
const lines = [
|
|
7
|
+
`Configuration validation failed in ${filePath}`,
|
|
8
|
+
'',
|
|
9
|
+
'The following issues were found:',
|
|
10
|
+
'',
|
|
11
|
+
];
|
|
12
|
+
validationErrors.forEach((error, index) => {
|
|
13
|
+
lines.push(` ${index + 1}. ${error}`);
|
|
14
|
+
});
|
|
15
|
+
lines.push('', 'Please fix these issues and try again.', 'For more information, visit: https://react-native-harness.dev/docs/configuration');
|
|
16
|
+
super(lines.join('\n'));
|
|
6
17
|
this.filePath = filePath;
|
|
7
18
|
this.validationErrors = validationErrors;
|
|
8
19
|
this.name = 'ConfigValidationError';
|
|
9
20
|
}
|
|
10
21
|
}
|
|
11
|
-
export class ConfigNotFoundError extends
|
|
22
|
+
export class ConfigNotFoundError extends HarnessError {
|
|
12
23
|
searchPath;
|
|
13
24
|
constructor(searchPath) {
|
|
14
|
-
|
|
25
|
+
const lines = [
|
|
26
|
+
'Configuration file not found',
|
|
27
|
+
'',
|
|
28
|
+
`Searched for configuration files in: ${searchPath}`,
|
|
29
|
+
'and all parent directories.',
|
|
30
|
+
'',
|
|
31
|
+
'React Native Harness looks for one of these files:',
|
|
32
|
+
' • rn-harness.config.js',
|
|
33
|
+
' • rn-harness.config.mjs',
|
|
34
|
+
' • rn-harness.config.cjs',
|
|
35
|
+
' • rn-harness.config.json',
|
|
36
|
+
'',
|
|
37
|
+
'For more information, visit: https://www.react-native-harness.dev/docs/getting-started/configuration',
|
|
38
|
+
];
|
|
39
|
+
super(lines.join('\n'));
|
|
15
40
|
this.searchPath = searchPath;
|
|
16
41
|
this.name = 'ConfigNotFoundError';
|
|
17
42
|
}
|
|
18
43
|
}
|
|
19
|
-
export class ConfigLoadError extends
|
|
44
|
+
export class ConfigLoadError extends HarnessError {
|
|
20
45
|
filePath;
|
|
21
46
|
cause;
|
|
22
47
|
constructor(filePath, cause) {
|
|
23
|
-
|
|
48
|
+
const lines = [
|
|
49
|
+
'Failed to load configuration file',
|
|
50
|
+
'',
|
|
51
|
+
`File: ${filePath}`,
|
|
52
|
+
'',
|
|
53
|
+
];
|
|
54
|
+
if (cause) {
|
|
55
|
+
lines.push('Error details:');
|
|
56
|
+
lines.push(` ${cause.message}`);
|
|
57
|
+
lines.push('');
|
|
58
|
+
}
|
|
59
|
+
lines.push('This could be due to:', ' • Syntax errors in your configuration file', ' • Missing dependencies or modules', ' • Invalid file format or encoding', ' • File permissions issues', '', 'Troubleshooting steps:', ' 1. Check the file syntax and format', ' 2. Ensure all required dependencies are installed', ' 3. Verify file permissions', ' 4. Try creating a new configuration file', '', 'For more help, visit: https://www.react-native-harness.dev/docs/getting-started/configuration');
|
|
60
|
+
super(lines.join('\n'));
|
|
24
61
|
this.filePath = filePath;
|
|
25
62
|
this.name = 'ConfigLoadError';
|
|
26
63
|
this.cause = cause;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export { getConfig } from './reader.js';
|
|
2
|
-
export type { Config
|
|
2
|
+
export type { Config } from './types.js';
|
|
3
3
|
export { ConfigValidationError, ConfigNotFoundError, ConfigLoadError, } from './errors.js';
|
|
4
|
-
export { isAndroidRunnerConfig, isIOSRunnerConfig, isWebRunnerConfig, isVegaRunnerConfig, assertAndroidRunnerConfig, assertIOSRunnerConfig, assertWebRunnerConfig, assertVegaRunnerConfig, } from './types.js';
|
|
5
4
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,YAAY,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,YAAY,EAAE,MAAM,EAAE,MAAM,YAAY,CAAC;AACzC,OAAO,EACL,qBAAqB,EACrB,mBAAmB,EACnB,eAAe,GAChB,MAAM,aAAa,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
1
|
export { getConfig } from './reader.js';
|
|
2
2
|
export { ConfigValidationError, ConfigNotFoundError, ConfigLoadError, } from './errors.js';
|
|
3
|
-
export { isAndroidRunnerConfig, isIOSRunnerConfig, isWebRunnerConfig, isVegaRunnerConfig, assertAndroidRunnerConfig, assertIOSRunnerConfig, assertWebRunnerConfig, assertVegaRunnerConfig, } from './types.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"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.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.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.arraybuffer.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.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.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","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/tslib/modules/index.d.ts","../src/errors.ts","../../../node_modules/zod/dist/types/v3/helpers/typealiases.d.ts","../../../node_modules/zod/dist/types/v3/helpers/util.d.ts","../../../node_modules/zod/dist/types/v3/zoderror.d.ts","../../../node_modules/zod/dist/types/v3/locales/en.d.ts","../../../node_modules/zod/dist/types/v3/errors.d.ts","../../../node_modules/zod/dist/types/v3/helpers/parseutil.d.ts","../../../node_modules/zod/dist/types/v3/helpers/enumutil.d.ts","../../../node_modules/zod/dist/types/v3/helpers/errorutil.d.ts","../../../node_modules/zod/dist/types/v3/helpers/partialutil.d.ts","../../../node_modules/zod/dist/types/v3/standard-schema.d.ts","../../../node_modules/zod/dist/types/v3/types.d.ts","../../../node_modules/zod/dist/types/v3/external.d.ts","../../../node_modules/zod/dist/types/v3/index.d.ts","../../../node_modules/zod/dist/types/index.d.ts","../src/types.ts","../src/reader.ts","../src/index.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.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"],"fileIdsList":[[79,125],[82,125],[83,88,116,125],[84,95,96,103,113,124,125],[84,85,95,103,125],[86,125],[87,88,96,104,125],[88,113,121,125],[89,91,95,103,125],[90,125],[91,92,125],[95,125],[93,95,125],[95,96,97,113,124,125],[95,96,97,110,113,116,125],[125,129],[125],[91,95,98,103,113,124,125],[95,96,98,99,103,113,121,124,125],[98,100,113,121,124,125],[79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,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],[95,101,125],[102,124,125],[91,95,103,113,125],[104,125],[105,125],[82,106,125],[107,123,125,129],[108,125],[109,125],[95,110,111,125],[110,112,125,127],[83,95,113,114,115,116,125],[83,113,115,125],[113,114,125],[116,125],[117,125],[95,119,120,125],[119,120,125],[88,103,113,121,125],[122,125],[103,123,125],[83,98,109,124,125],[88,125],[113,125,126],[125,127],[125,128],[83,88,95,97,106,113,124,125,127,129],[113,125,130],[59,125],[74,125],[64,65,125],[62,63,64,66,67,72,125],[63,64,125],[72,125],[73,125],[64,125],[62,63,64,67,68,69,70,71,125],[62,63,74,125],[60,125],[60,61,76,77,125],[60,61,75,76,96,102,105,125],[60,75,125]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},{"version":"61fe93c656ad5c1394f08079c7991f5768f1416a82fbacc34f99f2832a0ec3e4","signature":"ab21498cc9c3434e5d72dede3ec195c94b992f2c37b2e8458e06503ae428d626","impliedFormat":99},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","impliedFormat":1},{"version":"54f6ec6ea75acea6eb23635617252d249145edbc7bcd9d53f2d70280d2aef953","impliedFormat":1},{"version":"c25ce98cca43a3bfa885862044be0d59557be4ecd06989b2001a83dcf69620fd","impliedFormat":1},{"version":"8e71e53b02c152a38af6aec45e288cc65bede077b92b9b43b3cb54a37978bb33","impliedFormat":1},{"version":"754a9396b14ca3a4241591afb4edc644b293ccc8a3397f49be4dfd520c08acb3","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","impliedFormat":1},{"version":"de2316e90fc6d379d83002f04ad9698bc1e5285b4d52779778f454dd12ce9f44","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"2da997a01a6aa5c5c09de5d28f0f4407b597c5e1aecfd32f1815809c532650a2","impliedFormat":1},{"version":"5d26d2e47e2352def36f89a3e8bf8581da22b7f857e07ef3114cd52cf4813445","impliedFormat":1},{"version":"3db2efd285e7328d8014b54a7fce3f4861ebcdc655df40517092ed0050983617","impliedFormat":1},{"version":"d5d39a24c759df40480a4bfc0daffd364489702fdbcbdfc1711cde34f8739995","impliedFormat":1},{"version":"df9f6f0cf6d5cd644d70b8fa9a2f063f15a95e1ff926bce605d54ca31570ba45","signature":"cd67cca29604144996d44c38742053be3b2ed86da7885ed67f9e84baa9d46e18","impliedFormat":99},{"version":"825460a47b77a86f7f95499a321bd9de3accd188d8e0a50858cbb9d9f0363c7d","signature":"a4156e0a34cc733d97b5ef192a1bc8c985337c100dcf0e9dba3421f887ba7531","impliedFormat":99},{"version":"077738b2c813727b60ad587dfddba21fa56839e045dc8f257b2a036f06138888","signature":"e7bff27324835403fa674a8df14e088793756d05b9d726ededcb1d04c5e18cd8","impliedFormat":99},{"version":"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7d2e3fea24c712c99c03ad8f556abedbfe105f87f1be10b95dbd409d24bc05a3","impliedFormat":1},{"version":"211e3f15fbced4ab4be19f49ffa990b9ff20d749d33b65ff753be691e7616239","affectsGlobalScope":true,"impliedFormat":1},{"version":"3719525a8f6ab731e3dfd585d9f87df55ec7d50d461df84f74eb4d68bb165244","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","impliedFormat":1},{"version":"4eaff3d8e10676fd7913d8c108890e71c688e1e7d52f6d1d55c39514f493dc47","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"00dee7cdca8b8420c47ea4a31a34b8e8294013ebc4f463fd941e867e7bf05029","affectsGlobalScope":true,"impliedFormat":1},{"version":"3256f3cccd578f9e7fe3a28096c505634bebcee8afb738ffa99368e536ca3a0b","impliedFormat":1},{"version":"1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","impliedFormat":1},{"version":"7f138842074d0a40681775af008c8452093b68c383c94de31759e853c6d06b5c","impliedFormat":1},{"version":"a3d541d303ee505053f5dcbf9fafb65cac3d5631037501cd616195863a6c5740","impliedFormat":1},{"version":"8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true,"impliedFormat":1},{"version":"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","impliedFormat":1},{"version":"7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"4f3fdeba4e28e21aa719c081b8dc8f91d47e12e773389b9d35679c08151c9d37","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"f69ff39996a61a0dd10f4bce73272b52e8024a4d58b13ab32bf4712909d0a2b7","impliedFormat":1},{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true,"impliedFormat":1},{"version":"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","impliedFormat":1},{"version":"1422cd9e705adcc09088fda85a900c2b70e3ad36ea85846f68bd1a884cdf4e2b","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"a73ae8c0e62103bb9e21bb6538700881bf135b9a8b125b857ec68edfa0da4ed3","affectsGlobalScope":true,"impliedFormat":1},{"version":"e1c1b2fbe236bf7ee3e342eeae7e20efb8988a0ac7da1cbbfa2c1f66b76c3423","affectsGlobalScope":true,"impliedFormat":1},{"version":"868831cab82b65dfe1d68180e898af1f2101e89ba9b754d1db6fb8cc2fac1921","impliedFormat":1},{"version":"0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"52120bb7e4583612225bdf08e7c12559548170f11e660d33a33623bae9bbdbba","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6dd3dba8e665ac43d279e0fdf5219edda0eed69b5e9a5061f46cd6a65c4f7a1","impliedFormat":1}],"root":[61,[76,78]],"options":{"composite":true,"declarationMap":true,"emitDeclarationOnly":false,"importHelpers":true,"module":199,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./tsconfig.lib.tsbuildinfo"},"referencedMap":[[79,1],[80,1],[82,2],[83,3],[84,4],[85,5],[86,6],[87,7],[88,8],[89,9],[90,10],[91,11],[92,11],[94,12],[93,13],[95,12],[96,14],[97,15],[81,16],[131,17],[98,18],[99,19],[100,20],[132,21],[101,22],[102,23],[103,24],[104,25],[105,26],[106,27],[107,28],[108,29],[109,30],[110,31],[111,31],[112,32],[113,33],[115,34],[114,35],[116,36],[117,37],[118,17],[119,38],[120,39],[121,40],[122,41],[123,42],[124,43],[125,44],[126,45],[127,46],[128,47],[129,48],[130,49],[60,50],[59,17],[57,17],[58,17],[11,17],[10,17],[2,17],[12,17],[13,17],[14,17],[15,17],[16,17],[17,17],[18,17],[19,17],[3,17],[20,17],[21,17],[4,17],[22,17],[26,17],[23,17],[24,17],[25,17],[27,17],[28,17],[29,17],[5,17],[30,17],[31,17],[32,17],[33,17],[6,17],[37,17],[34,17],[35,17],[36,17],[38,17],[7,17],[39,17],[44,17],[45,17],[40,17],[41,17],[42,17],[43,17],[8,17],[49,17],[46,17],[47,17],[48,17],[50,17],[9,17],[51,17],[52,17],[53,17],[55,17],[54,17],[1,17],[56,17],[75,51],[66,52],[73,53],[68,17],[69,17],[67,54],[70,55],[62,17],[63,17],[74,56],[65,57],[71,17],[72,58],[64,59],[61,60],[78,61],[77,62],[76,63]],"latestChangedDtsFile":"./types.d.ts","version":"5.8.3"}
|
|
1
|
+
{"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.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.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.arraybuffer.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.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.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","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/tslib/modules/index.d.ts","../../tools/dist/abort.d.ts","../../../node_modules/picocolors/types.d.ts","../../../node_modules/picocolors/picocolors.d.ts","../../tools/dist/color.d.ts","../../tools/dist/logger.d.ts","../../../node_modules/@clack/core/dist/index.d.mts","../../../node_modules/@clack/prompts/dist/index.d.mts","../../tools/dist/prompts.d.ts","../../../node_modules/nano-spawn/source/index.d.ts","../../tools/dist/spawn.d.ts","../../tools/dist/react-native.d.ts","../../tools/dist/error.d.ts","../../tools/dist/index.d.ts","../src/errors.ts","../../../node_modules/zod/dist/types/v3/helpers/typealiases.d.ts","../../../node_modules/zod/dist/types/v3/helpers/util.d.ts","../../../node_modules/zod/dist/types/v3/zoderror.d.ts","../../../node_modules/zod/dist/types/v3/locales/en.d.ts","../../../node_modules/zod/dist/types/v3/errors.d.ts","../../../node_modules/zod/dist/types/v3/helpers/parseutil.d.ts","../../../node_modules/zod/dist/types/v3/helpers/enumutil.d.ts","../../../node_modules/zod/dist/types/v3/helpers/errorutil.d.ts","../../../node_modules/zod/dist/types/v3/helpers/partialutil.d.ts","../../../node_modules/zod/dist/types/v3/standard-schema.d.ts","../../../node_modules/zod/dist/types/v3/types.d.ts","../../../node_modules/zod/dist/types/v3/external.d.ts","../../../node_modules/zod/dist/types/v3/index.d.ts","../../../node_modules/zod/dist/types/index.d.ts","../src/types.ts","../src/reader.ts","../src/index.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.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"],"fileIdsList":[[123,126,138],[66,126,138],[92,138],[95,138],[96,101,129,138],[97,108,109,116,126,137,138],[97,98,108,116,138],[99,138],[100,101,109,117,138],[101,126,134,138],[102,104,108,116,138],[103,138],[104,105,138],[108,138],[106,108,138],[108,109,110,126,137,138],[108,109,110,123,126,129,138],[138,142],[138],[104,108,111,116,126,137,138],[108,109,111,112,116,126,134,137,138],[111,113,126,134,137,138],[92,93,94,95,96,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],[108,114,138],[115,137,138],[104,108,116,126,138],[117,138],[118,138],[95,119,138],[120,136,138,142],[121,138],[122,138],[108,123,124,138],[123,125,138,140],[96,108,126,127,128,129,138],[96,126,128,138],[126,127,138],[129,138],[130,138],[108,132,133,138],[132,133,138],[101,116,126,134,138],[135,138],[116,136,138],[96,111,122,137,138],[101,138],[126,138,139],[138,140],[138,141],[96,101,108,110,119,126,137,138,140,142],[126,138,143],[97,138],[62,138],[59,138],[87,138],[77,78,138],[75,76,77,79,80,85,138],[76,77,138],[85,138],[86,138],[77,138],[75,76,77,80,81,82,83,84,138],[75,76,87,138],[60,73,138],[60,74,89,90,138],[60,74,88,89,109,115,118,138],[60,88,138],[63,138],[61,64,65,68,70,71,72,138],[67,138],[69,138]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},{"version":"3e442c402123b264ccdf7123c1366e1473d9c39f5db69373e938284fc01c49ce","impliedFormat":99},{"version":"590595c1230ebb7c43ebac51b2b2da956a719b213355b4358e2a6b16a8b5936c","impliedFormat":1},{"version":"8c5f0739f00f89f89b03a1fe6658c6d78000d7ebd7f556f0f8d6908fa679de35","impliedFormat":1},{"version":"a15c0df1ac9b2a4d833490522614fc57ae97d70a07bf4964a4d6bb73f3f56399","impliedFormat":99},{"version":"e4cead4a8596a6f051c36ef184f5fb6f117232eefdc1f98ef9847c9efc2c8911","impliedFormat":99},{"version":"df7225806785ade68c6cf2b1cf3ba0d1c7fed1ee7605f34e37d4a901f1d29fd2","impliedFormat":99},{"version":"6bf8a7596880ff1b8f8fd52ee8de8000df00c0c98adacb0b0af0e6a3f16cabe6","impliedFormat":99},{"version":"8af66ec621033f41ccb2bcee775e883c2649fa0db71192fe863185b0281082a6","impliedFormat":99},{"version":"9d4af7bde3e345d3071b5fefbece2d3482971aae89ded50f302c8cb246e81581","impliedFormat":99},{"version":"f3eb748185038bca941a02994b1b0b5803c0a2ce818b8a7d72a24a6b814f5d3e","impliedFormat":99},{"version":"2ba26b5ab00dd3495eeb733cdb46d939a8eb755a395a91169158cdf962aff6c3","impliedFormat":99},{"version":"d6fe58ebff353af75db3986d9ab2b4b57258ad5af3f4b65cdb2100fd47df5425","impliedFormat":99},{"version":"299207f09ec026435d722d979effd6556f7facc6c16256c3c00f797648eed0cb","impliedFormat":99},{"version":"47bbd85e387bed18b30e594b0d132fa1ec536bb64970075e394755ae9b022834","signature":"b5d2e178f379f486e813177f03858be392c1e25070b455e642701a0a3f9ac8b3","impliedFormat":99},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","impliedFormat":1},{"version":"54f6ec6ea75acea6eb23635617252d249145edbc7bcd9d53f2d70280d2aef953","impliedFormat":1},{"version":"c25ce98cca43a3bfa885862044be0d59557be4ecd06989b2001a83dcf69620fd","impliedFormat":1},{"version":"8e71e53b02c152a38af6aec45e288cc65bede077b92b9b43b3cb54a37978bb33","impliedFormat":1},{"version":"754a9396b14ca3a4241591afb4edc644b293ccc8a3397f49be4dfd520c08acb3","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","impliedFormat":1},{"version":"de2316e90fc6d379d83002f04ad9698bc1e5285b4d52779778f454dd12ce9f44","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"2da997a01a6aa5c5c09de5d28f0f4407b597c5e1aecfd32f1815809c532650a2","impliedFormat":1},{"version":"5d26d2e47e2352def36f89a3e8bf8581da22b7f857e07ef3114cd52cf4813445","impliedFormat":1},{"version":"3db2efd285e7328d8014b54a7fce3f4861ebcdc655df40517092ed0050983617","impliedFormat":1},{"version":"d5d39a24c759df40480a4bfc0daffd364489702fdbcbdfc1711cde34f8739995","impliedFormat":1},{"version":"feef803ea2648567ac9dc5661eea52e4b7fc98a56de2d3d63422e59431113a75","signature":"273238ad759ccf0475d8ff3bb37e1d920561c207031c8eee6074f2b644de21c0","impliedFormat":99},{"version":"825460a47b77a86f7f95499a321bd9de3accd188d8e0a50858cbb9d9f0363c7d","signature":"a4156e0a34cc733d97b5ef192a1bc8c985337c100dcf0e9dba3421f887ba7531","impliedFormat":99},{"version":"cd8ce64fc4fe35d60c928a04159953be9d9ad5533b40f9b31ff6e8741964ebef","signature":"f8192f771ab6310556c0a8e7c8d683b20b0844641291fca5f42b338d558fea53","impliedFormat":99},{"version":"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7d2e3fea24c712c99c03ad8f556abedbfe105f87f1be10b95dbd409d24bc05a3","impliedFormat":1},{"version":"211e3f15fbced4ab4be19f49ffa990b9ff20d749d33b65ff753be691e7616239","affectsGlobalScope":true,"impliedFormat":1},{"version":"3719525a8f6ab731e3dfd585d9f87df55ec7d50d461df84f74eb4d68bb165244","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","impliedFormat":1},{"version":"4eaff3d8e10676fd7913d8c108890e71c688e1e7d52f6d1d55c39514f493dc47","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"00dee7cdca8b8420c47ea4a31a34b8e8294013ebc4f463fd941e867e7bf05029","affectsGlobalScope":true,"impliedFormat":1},{"version":"3256f3cccd578f9e7fe3a28096c505634bebcee8afb738ffa99368e536ca3a0b","impliedFormat":1},{"version":"1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","impliedFormat":1},{"version":"7f138842074d0a40681775af008c8452093b68c383c94de31759e853c6d06b5c","impliedFormat":1},{"version":"a3d541d303ee505053f5dcbf9fafb65cac3d5631037501cd616195863a6c5740","impliedFormat":1},{"version":"8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true,"impliedFormat":1},{"version":"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","impliedFormat":1},{"version":"7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"4f3fdeba4e28e21aa719c081b8dc8f91d47e12e773389b9d35679c08151c9d37","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"f69ff39996a61a0dd10f4bce73272b52e8024a4d58b13ab32bf4712909d0a2b7","impliedFormat":1},{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true,"impliedFormat":1},{"version":"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","impliedFormat":1},{"version":"1422cd9e705adcc09088fda85a900c2b70e3ad36ea85846f68bd1a884cdf4e2b","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"a73ae8c0e62103bb9e21bb6538700881bf135b9a8b125b857ec68edfa0da4ed3","affectsGlobalScope":true,"impliedFormat":1},{"version":"e1c1b2fbe236bf7ee3e342eeae7e20efb8988a0ac7da1cbbfa2c1f66b76c3423","affectsGlobalScope":true,"impliedFormat":1},{"version":"868831cab82b65dfe1d68180e898af1f2101e89ba9b754d1db6fb8cc2fac1921","impliedFormat":1},{"version":"0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"52120bb7e4583612225bdf08e7c12559548170f11e660d33a33623bae9bbdbba","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6dd3dba8e665ac43d279e0fdf5219edda0eed69b5e9a5061f46cd6a65c4f7a1","impliedFormat":1}],"root":[74,[89,91]],"options":{"composite":true,"declarationMap":true,"emitDeclarationOnly":false,"importHelpers":true,"module":199,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./tsconfig.lib.tsbuildinfo"},"referencedMap":[[66,1],[67,2],[92,3],[93,3],[95,4],[96,5],[97,6],[98,7],[99,8],[100,9],[101,10],[102,11],[103,12],[104,13],[105,13],[107,14],[106,15],[108,14],[109,16],[110,17],[94,18],[144,19],[111,20],[112,21],[113,22],[145,23],[114,24],[115,25],[116,26],[117,27],[118,28],[119,29],[120,30],[121,31],[122,32],[123,33],[124,33],[125,34],[126,35],[128,36],[127,37],[129,38],[130,39],[131,19],[132,40],[133,41],[134,42],[135,43],[136,44],[137,45],[138,46],[139,47],[140,48],[141,49],[142,50],[143,51],[69,52],[63,53],[62,19],[60,54],[59,19],[57,19],[58,19],[11,19],[10,19],[2,19],[12,19],[13,19],[14,19],[15,19],[16,19],[17,19],[18,19],[19,19],[3,19],[20,19],[21,19],[4,19],[22,19],[26,19],[23,19],[24,19],[25,19],[27,19],[28,19],[29,19],[5,19],[30,19],[31,19],[32,19],[33,19],[6,19],[37,19],[34,19],[35,19],[36,19],[38,19],[7,19],[39,19],[44,19],[45,19],[40,19],[41,19],[42,19],[43,19],[8,19],[49,19],[46,19],[47,19],[48,19],[50,19],[9,19],[51,19],[52,19],[53,19],[55,19],[54,19],[1,19],[56,19],[88,55],[79,56],[86,57],[81,19],[82,19],[80,58],[83,59],[75,19],[76,19],[87,60],[78,61],[84,19],[85,62],[77,63],[74,64],[91,65],[90,66],[89,67],[61,19],[64,68],[72,19],[73,69],[65,19],[68,70],[71,19],[70,71]],"latestChangedDtsFile":"./types.d.ts","version":"5.8.3"}
|
package/dist/types.d.ts
CHANGED
|
@@ -1,370 +1,54 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const PlatformSchema: z.ZodEnum<["ios", "android", "web", "vega"]>;
|
|
3
|
-
export declare const BrowserTypeSchema: z.ZodEnum<["chrome", "firefox", "safari"]>;
|
|
4
|
-
export declare const AndroidTestRunnerConfigSchema: z.ZodObject<{
|
|
5
|
-
name: z.ZodString;
|
|
6
|
-
platform: z.ZodLiteral<"android">;
|
|
7
|
-
deviceId: z.ZodString;
|
|
8
|
-
bundleId: z.ZodString;
|
|
9
|
-
activityName: z.ZodDefault<z.ZodString>;
|
|
10
|
-
}, "strip", z.ZodTypeAny, {
|
|
11
|
-
name: string;
|
|
12
|
-
platform: "android";
|
|
13
|
-
deviceId: string;
|
|
14
|
-
bundleId: string;
|
|
15
|
-
activityName: string;
|
|
16
|
-
}, {
|
|
17
|
-
name: string;
|
|
18
|
-
platform: "android";
|
|
19
|
-
deviceId: string;
|
|
20
|
-
bundleId: string;
|
|
21
|
-
activityName?: string | undefined;
|
|
22
|
-
}>;
|
|
23
|
-
export declare const iOSTestRunnerConfigSchema: z.ZodObject<{
|
|
24
|
-
name: z.ZodString;
|
|
25
|
-
platform: z.ZodLiteral<"ios">;
|
|
26
|
-
deviceId: z.ZodString;
|
|
27
|
-
bundleId: z.ZodString;
|
|
28
|
-
systemVersion: z.ZodString;
|
|
29
|
-
}, "strip", z.ZodTypeAny, {
|
|
30
|
-
name: string;
|
|
31
|
-
platform: "ios";
|
|
32
|
-
deviceId: string;
|
|
33
|
-
bundleId: string;
|
|
34
|
-
systemVersion: string;
|
|
35
|
-
}, {
|
|
36
|
-
name: string;
|
|
37
|
-
platform: "ios";
|
|
38
|
-
deviceId: string;
|
|
39
|
-
bundleId: string;
|
|
40
|
-
systemVersion: string;
|
|
41
|
-
}>;
|
|
42
|
-
export declare const WebTestRunnerConfigSchema: z.ZodObject<{
|
|
43
|
-
name: z.ZodString;
|
|
44
|
-
platform: z.ZodLiteral<"web">;
|
|
45
|
-
browser: z.ZodEnum<["chrome", "firefox", "safari"]>;
|
|
46
|
-
}, "strip", z.ZodTypeAny, {
|
|
47
|
-
name: string;
|
|
48
|
-
platform: "web";
|
|
49
|
-
browser: "chrome" | "firefox" | "safari";
|
|
50
|
-
}, {
|
|
51
|
-
name: string;
|
|
52
|
-
platform: "web";
|
|
53
|
-
browser: "chrome" | "firefox" | "safari";
|
|
54
|
-
}>;
|
|
55
|
-
export declare const VegaTestRunnerConfigSchema: z.ZodObject<{
|
|
56
|
-
name: z.ZodString;
|
|
57
|
-
platform: z.ZodLiteral<"vega">;
|
|
58
|
-
deviceId: z.ZodString;
|
|
59
|
-
bundleId: z.ZodString;
|
|
60
|
-
buildType: z.ZodDefault<z.ZodEnum<["Debug", "Release"]>>;
|
|
61
|
-
target: z.ZodDefault<z.ZodEnum<["sim_tv_x86_64", "sim_tv_aarch64"]>>;
|
|
62
|
-
}, "strip", z.ZodTypeAny, {
|
|
63
|
-
name: string;
|
|
64
|
-
platform: "vega";
|
|
65
|
-
deviceId: string;
|
|
66
|
-
bundleId: string;
|
|
67
|
-
buildType: "Debug" | "Release";
|
|
68
|
-
target: "sim_tv_x86_64" | "sim_tv_aarch64";
|
|
69
|
-
}, {
|
|
70
|
-
name: string;
|
|
71
|
-
platform: "vega";
|
|
72
|
-
deviceId: string;
|
|
73
|
-
bundleId: string;
|
|
74
|
-
buildType?: "Debug" | "Release" | undefined;
|
|
75
|
-
target?: "sim_tv_x86_64" | "sim_tv_aarch64" | undefined;
|
|
76
|
-
}>;
|
|
77
|
-
export declare const TestRunnerConfigSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObject<{
|
|
78
|
-
name: z.ZodString;
|
|
79
|
-
platform: z.ZodLiteral<"android">;
|
|
80
|
-
deviceId: z.ZodString;
|
|
81
|
-
bundleId: z.ZodString;
|
|
82
|
-
activityName: z.ZodDefault<z.ZodString>;
|
|
83
|
-
}, "strip", z.ZodTypeAny, {
|
|
84
|
-
name: string;
|
|
85
|
-
platform: "android";
|
|
86
|
-
deviceId: string;
|
|
87
|
-
bundleId: string;
|
|
88
|
-
activityName: string;
|
|
89
|
-
}, {
|
|
90
|
-
name: string;
|
|
91
|
-
platform: "android";
|
|
92
|
-
deviceId: string;
|
|
93
|
-
bundleId: string;
|
|
94
|
-
activityName?: string | undefined;
|
|
95
|
-
}>, z.ZodObject<{
|
|
96
|
-
name: z.ZodString;
|
|
97
|
-
platform: z.ZodLiteral<"ios">;
|
|
98
|
-
deviceId: z.ZodString;
|
|
99
|
-
bundleId: z.ZodString;
|
|
100
|
-
systemVersion: z.ZodString;
|
|
101
|
-
}, "strip", z.ZodTypeAny, {
|
|
102
|
-
name: string;
|
|
103
|
-
platform: "ios";
|
|
104
|
-
deviceId: string;
|
|
105
|
-
bundleId: string;
|
|
106
|
-
systemVersion: string;
|
|
107
|
-
}, {
|
|
108
|
-
name: string;
|
|
109
|
-
platform: "ios";
|
|
110
|
-
deviceId: string;
|
|
111
|
-
bundleId: string;
|
|
112
|
-
systemVersion: string;
|
|
113
|
-
}>, z.ZodObject<{
|
|
114
|
-
name: z.ZodString;
|
|
115
|
-
platform: z.ZodLiteral<"web">;
|
|
116
|
-
browser: z.ZodEnum<["chrome", "firefox", "safari"]>;
|
|
117
|
-
}, "strip", z.ZodTypeAny, {
|
|
118
|
-
name: string;
|
|
119
|
-
platform: "web";
|
|
120
|
-
browser: "chrome" | "firefox" | "safari";
|
|
121
|
-
}, {
|
|
122
|
-
name: string;
|
|
123
|
-
platform: "web";
|
|
124
|
-
browser: "chrome" | "firefox" | "safari";
|
|
125
|
-
}>, z.ZodObject<{
|
|
126
|
-
name: z.ZodString;
|
|
127
|
-
platform: z.ZodLiteral<"vega">;
|
|
128
|
-
deviceId: z.ZodString;
|
|
129
|
-
bundleId: z.ZodString;
|
|
130
|
-
buildType: z.ZodDefault<z.ZodEnum<["Debug", "Release"]>>;
|
|
131
|
-
target: z.ZodDefault<z.ZodEnum<["sim_tv_x86_64", "sim_tv_aarch64"]>>;
|
|
132
|
-
}, "strip", z.ZodTypeAny, {
|
|
133
|
-
name: string;
|
|
134
|
-
platform: "vega";
|
|
135
|
-
deviceId: string;
|
|
136
|
-
bundleId: string;
|
|
137
|
-
buildType: "Debug" | "Release";
|
|
138
|
-
target: "sim_tv_x86_64" | "sim_tv_aarch64";
|
|
139
|
-
}, {
|
|
140
|
-
name: string;
|
|
141
|
-
platform: "vega";
|
|
142
|
-
deviceId: string;
|
|
143
|
-
bundleId: string;
|
|
144
|
-
buildType?: "Debug" | "Release" | undefined;
|
|
145
|
-
target?: "sim_tv_x86_64" | "sim_tv_aarch64" | undefined;
|
|
146
|
-
}>]>;
|
|
147
2
|
export declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
148
3
|
entryPoint: z.ZodString;
|
|
149
4
|
appRegistryComponentName: z.ZodString;
|
|
150
|
-
runners: z.ZodArray<z.
|
|
151
|
-
name: z.ZodString;
|
|
152
|
-
platform: z.ZodLiteral<"android">;
|
|
153
|
-
deviceId: z.ZodString;
|
|
154
|
-
bundleId: z.ZodString;
|
|
155
|
-
activityName: z.ZodDefault<z.ZodString>;
|
|
156
|
-
}, "strip", z.ZodTypeAny, {
|
|
157
|
-
name: string;
|
|
158
|
-
platform: "android";
|
|
159
|
-
deviceId: string;
|
|
160
|
-
bundleId: string;
|
|
161
|
-
activityName: string;
|
|
162
|
-
}, {
|
|
163
|
-
name: string;
|
|
164
|
-
platform: "android";
|
|
165
|
-
deviceId: string;
|
|
166
|
-
bundleId: string;
|
|
167
|
-
activityName?: string | undefined;
|
|
168
|
-
}>, z.ZodObject<{
|
|
169
|
-
name: z.ZodString;
|
|
170
|
-
platform: z.ZodLiteral<"ios">;
|
|
171
|
-
deviceId: z.ZodString;
|
|
172
|
-
bundleId: z.ZodString;
|
|
173
|
-
systemVersion: z.ZodString;
|
|
174
|
-
}, "strip", z.ZodTypeAny, {
|
|
175
|
-
name: string;
|
|
176
|
-
platform: "ios";
|
|
177
|
-
deviceId: string;
|
|
178
|
-
bundleId: string;
|
|
179
|
-
systemVersion: string;
|
|
180
|
-
}, {
|
|
181
|
-
name: string;
|
|
182
|
-
platform: "ios";
|
|
183
|
-
deviceId: string;
|
|
184
|
-
bundleId: string;
|
|
185
|
-
systemVersion: string;
|
|
186
|
-
}>, z.ZodObject<{
|
|
187
|
-
name: z.ZodString;
|
|
188
|
-
platform: z.ZodLiteral<"web">;
|
|
189
|
-
browser: z.ZodEnum<["chrome", "firefox", "safari"]>;
|
|
190
|
-
}, "strip", z.ZodTypeAny, {
|
|
191
|
-
name: string;
|
|
192
|
-
platform: "web";
|
|
193
|
-
browser: "chrome" | "firefox" | "safari";
|
|
194
|
-
}, {
|
|
195
|
-
name: string;
|
|
196
|
-
platform: "web";
|
|
197
|
-
browser: "chrome" | "firefox" | "safari";
|
|
198
|
-
}>, z.ZodObject<{
|
|
199
|
-
name: z.ZodString;
|
|
200
|
-
platform: z.ZodLiteral<"vega">;
|
|
201
|
-
deviceId: z.ZodString;
|
|
202
|
-
bundleId: z.ZodString;
|
|
203
|
-
buildType: z.ZodDefault<z.ZodEnum<["Debug", "Release"]>>;
|
|
204
|
-
target: z.ZodDefault<z.ZodEnum<["sim_tv_x86_64", "sim_tv_aarch64"]>>;
|
|
205
|
-
}, "strip", z.ZodTypeAny, {
|
|
206
|
-
name: string;
|
|
207
|
-
platform: "vega";
|
|
208
|
-
deviceId: string;
|
|
209
|
-
bundleId: string;
|
|
210
|
-
buildType: "Debug" | "Release";
|
|
211
|
-
target: "sim_tv_x86_64" | "sim_tv_aarch64";
|
|
212
|
-
}, {
|
|
213
|
-
name: string;
|
|
214
|
-
platform: "vega";
|
|
215
|
-
deviceId: string;
|
|
216
|
-
bundleId: string;
|
|
217
|
-
buildType?: "Debug" | "Release" | undefined;
|
|
218
|
-
target?: "sim_tv_x86_64" | "sim_tv_aarch64" | undefined;
|
|
219
|
-
}>]>, "many">;
|
|
5
|
+
runners: z.ZodArray<z.ZodAny, "many">;
|
|
220
6
|
defaultRunner: z.ZodOptional<z.ZodString>;
|
|
221
7
|
bridgeTimeout: z.ZodDefault<z.ZodNumber>;
|
|
222
8
|
resetEnvironmentBetweenTestFiles: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
223
9
|
unstable__skipAlreadyIncludedModules: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10
|
+
unstable__enableMetroCache: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
224
11
|
include: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
225
12
|
}, "strip", z.ZodTypeAny, {
|
|
226
13
|
entryPoint: string;
|
|
227
14
|
appRegistryComponentName: string;
|
|
228
|
-
runners:
|
|
229
|
-
name: string;
|
|
230
|
-
platform: "android";
|
|
231
|
-
deviceId: string;
|
|
232
|
-
bundleId: string;
|
|
233
|
-
activityName: string;
|
|
234
|
-
} | {
|
|
235
|
-
name: string;
|
|
236
|
-
platform: "ios";
|
|
237
|
-
deviceId: string;
|
|
238
|
-
bundleId: string;
|
|
239
|
-
systemVersion: string;
|
|
240
|
-
} | {
|
|
241
|
-
name: string;
|
|
242
|
-
platform: "web";
|
|
243
|
-
browser: "chrome" | "firefox" | "safari";
|
|
244
|
-
} | {
|
|
245
|
-
name: string;
|
|
246
|
-
platform: "vega";
|
|
247
|
-
deviceId: string;
|
|
248
|
-
bundleId: string;
|
|
249
|
-
buildType: "Debug" | "Release";
|
|
250
|
-
target: "sim_tv_x86_64" | "sim_tv_aarch64";
|
|
251
|
-
})[];
|
|
15
|
+
runners: any[];
|
|
252
16
|
bridgeTimeout: number;
|
|
253
17
|
resetEnvironmentBetweenTestFiles: boolean;
|
|
254
18
|
unstable__skipAlreadyIncludedModules: boolean;
|
|
19
|
+
unstable__enableMetroCache: boolean;
|
|
255
20
|
defaultRunner?: string | undefined;
|
|
256
21
|
include?: string[] | undefined;
|
|
257
22
|
}, {
|
|
258
23
|
entryPoint: string;
|
|
259
24
|
appRegistryComponentName: string;
|
|
260
|
-
runners:
|
|
261
|
-
name: string;
|
|
262
|
-
platform: "android";
|
|
263
|
-
deviceId: string;
|
|
264
|
-
bundleId: string;
|
|
265
|
-
activityName?: string | undefined;
|
|
266
|
-
} | {
|
|
267
|
-
name: string;
|
|
268
|
-
platform: "ios";
|
|
269
|
-
deviceId: string;
|
|
270
|
-
bundleId: string;
|
|
271
|
-
systemVersion: string;
|
|
272
|
-
} | {
|
|
273
|
-
name: string;
|
|
274
|
-
platform: "web";
|
|
275
|
-
browser: "chrome" | "firefox" | "safari";
|
|
276
|
-
} | {
|
|
277
|
-
name: string;
|
|
278
|
-
platform: "vega";
|
|
279
|
-
deviceId: string;
|
|
280
|
-
bundleId: string;
|
|
281
|
-
buildType?: "Debug" | "Release" | undefined;
|
|
282
|
-
target?: "sim_tv_x86_64" | "sim_tv_aarch64" | undefined;
|
|
283
|
-
})[];
|
|
25
|
+
runners: any[];
|
|
284
26
|
defaultRunner?: string | undefined;
|
|
285
27
|
bridgeTimeout?: number | undefined;
|
|
286
28
|
resetEnvironmentBetweenTestFiles?: boolean | undefined;
|
|
287
29
|
unstable__skipAlreadyIncludedModules?: boolean | undefined;
|
|
30
|
+
unstable__enableMetroCache?: boolean | undefined;
|
|
288
31
|
include?: string[] | undefined;
|
|
289
32
|
}>, {
|
|
290
33
|
entryPoint: string;
|
|
291
34
|
appRegistryComponentName: string;
|
|
292
|
-
runners:
|
|
293
|
-
name: string;
|
|
294
|
-
platform: "android";
|
|
295
|
-
deviceId: string;
|
|
296
|
-
bundleId: string;
|
|
297
|
-
activityName: string;
|
|
298
|
-
} | {
|
|
299
|
-
name: string;
|
|
300
|
-
platform: "ios";
|
|
301
|
-
deviceId: string;
|
|
302
|
-
bundleId: string;
|
|
303
|
-
systemVersion: string;
|
|
304
|
-
} | {
|
|
305
|
-
name: string;
|
|
306
|
-
platform: "web";
|
|
307
|
-
browser: "chrome" | "firefox" | "safari";
|
|
308
|
-
} | {
|
|
309
|
-
name: string;
|
|
310
|
-
platform: "vega";
|
|
311
|
-
deviceId: string;
|
|
312
|
-
bundleId: string;
|
|
313
|
-
buildType: "Debug" | "Release";
|
|
314
|
-
target: "sim_tv_x86_64" | "sim_tv_aarch64";
|
|
315
|
-
})[];
|
|
35
|
+
runners: any[];
|
|
316
36
|
bridgeTimeout: number;
|
|
317
37
|
resetEnvironmentBetweenTestFiles: boolean;
|
|
318
38
|
unstable__skipAlreadyIncludedModules: boolean;
|
|
39
|
+
unstable__enableMetroCache: boolean;
|
|
319
40
|
defaultRunner?: string | undefined;
|
|
320
41
|
include?: string[] | undefined;
|
|
321
42
|
}, {
|
|
322
43
|
entryPoint: string;
|
|
323
44
|
appRegistryComponentName: string;
|
|
324
|
-
runners:
|
|
325
|
-
name: string;
|
|
326
|
-
platform: "android";
|
|
327
|
-
deviceId: string;
|
|
328
|
-
bundleId: string;
|
|
329
|
-
activityName?: string | undefined;
|
|
330
|
-
} | {
|
|
331
|
-
name: string;
|
|
332
|
-
platform: "ios";
|
|
333
|
-
deviceId: string;
|
|
334
|
-
bundleId: string;
|
|
335
|
-
systemVersion: string;
|
|
336
|
-
} | {
|
|
337
|
-
name: string;
|
|
338
|
-
platform: "web";
|
|
339
|
-
browser: "chrome" | "firefox" | "safari";
|
|
340
|
-
} | {
|
|
341
|
-
name: string;
|
|
342
|
-
platform: "vega";
|
|
343
|
-
deviceId: string;
|
|
344
|
-
bundleId: string;
|
|
345
|
-
buildType?: "Debug" | "Release" | undefined;
|
|
346
|
-
target?: "sim_tv_x86_64" | "sim_tv_aarch64" | undefined;
|
|
347
|
-
})[];
|
|
45
|
+
runners: any[];
|
|
348
46
|
defaultRunner?: string | undefined;
|
|
349
47
|
bridgeTimeout?: number | undefined;
|
|
350
48
|
resetEnvironmentBetweenTestFiles?: boolean | undefined;
|
|
351
49
|
unstable__skipAlreadyIncludedModules?: boolean | undefined;
|
|
50
|
+
unstable__enableMetroCache?: boolean | undefined;
|
|
352
51
|
include?: string[] | undefined;
|
|
353
52
|
}>;
|
|
354
|
-
export type Platform = z.infer<typeof PlatformSchema>;
|
|
355
|
-
export type BrowserType = z.infer<typeof BrowserTypeSchema>;
|
|
356
|
-
export type AndroidTestRunnerConfig = z.infer<typeof AndroidTestRunnerConfigSchema>;
|
|
357
|
-
export type iOSTestRunnerConfig = z.infer<typeof iOSTestRunnerConfigSchema>;
|
|
358
|
-
export type WebTestRunnerConfig = z.infer<typeof WebTestRunnerConfigSchema>;
|
|
359
|
-
export type VegaTestRunnerConfig = z.infer<typeof VegaTestRunnerConfigSchema>;
|
|
360
|
-
export type TestRunnerConfig = z.infer<typeof TestRunnerConfigSchema>;
|
|
361
53
|
export type Config = z.infer<typeof ConfigSchema>;
|
|
362
|
-
export declare function isIOSRunnerConfig(config: TestRunnerConfig): config is iOSTestRunnerConfig;
|
|
363
|
-
export declare function isAndroidRunnerConfig(config: TestRunnerConfig): config is AndroidTestRunnerConfig;
|
|
364
|
-
export declare function isWebRunnerConfig(config: TestRunnerConfig): config is WebTestRunnerConfig;
|
|
365
|
-
export declare function isVegaRunnerConfig(config: TestRunnerConfig): config is VegaTestRunnerConfig;
|
|
366
|
-
export declare function assertAndroidRunnerConfig(config: TestRunnerConfig): asserts config is AndroidTestRunnerConfig;
|
|
367
|
-
export declare function assertIOSRunnerConfig(config: TestRunnerConfig): asserts config is iOSTestRunnerConfig;
|
|
368
|
-
export declare function assertWebRunnerConfig(config: TestRunnerConfig): asserts config is WebTestRunnerConfig;
|
|
369
|
-
export declare function assertVegaRunnerConfig(config: TestRunnerConfig): asserts config is VegaTestRunnerConfig;
|
|
370
54
|
//# sourceMappingURL=types.d.ts.map
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiCtB,CAAC;AAEJ,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC"}
|
package/dist/types.js
CHANGED
|
@@ -1,55 +1,11 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export const PlatformSchema = z.enum(['ios', 'android', 'web', 'vega']);
|
|
3
|
-
export const BrowserTypeSchema = z.enum(['chrome', 'firefox', 'safari']);
|
|
4
|
-
export const AndroidTestRunnerConfigSchema = z.object({
|
|
5
|
-
name: z.string().min(1, 'Runner name is required'),
|
|
6
|
-
platform: z.literal('android'),
|
|
7
|
-
deviceId: z.string().min(1, 'Device ID is required'),
|
|
8
|
-
bundleId: z.string().min(1, 'Bundle ID is required'),
|
|
9
|
-
activityName: z
|
|
10
|
-
.string()
|
|
11
|
-
.min(1, 'Activity name is required')
|
|
12
|
-
.default('.MainActivity'),
|
|
13
|
-
});
|
|
14
|
-
export const iOSTestRunnerConfigSchema = z.object({
|
|
15
|
-
name: z.string().min(1, 'Runner name is required'),
|
|
16
|
-
platform: z.literal('ios'),
|
|
17
|
-
deviceId: z.string().min(1, 'Device ID is required'),
|
|
18
|
-
bundleId: z.string().min(1, 'Bundle ID is required'),
|
|
19
|
-
systemVersion: z.string().min(1, 'System version is required'),
|
|
20
|
-
});
|
|
21
|
-
export const WebTestRunnerConfigSchema = z.object({
|
|
22
|
-
name: z.string().min(1, 'Runner name is required'),
|
|
23
|
-
platform: z.literal('web'),
|
|
24
|
-
browser: BrowserTypeSchema,
|
|
25
|
-
});
|
|
26
|
-
export const VegaTestRunnerConfigSchema = z.object({
|
|
27
|
-
name: z.string().min(1, 'Runner name is required'),
|
|
28
|
-
platform: z.literal('vega'),
|
|
29
|
-
deviceId: z
|
|
30
|
-
.string()
|
|
31
|
-
.min(1, 'Virtual device instance name is required (e.g., "VegaTV_1", "VegaTV_Debug")'),
|
|
32
|
-
bundleId: z
|
|
33
|
-
.string()
|
|
34
|
-
.min(1, 'Bundle ID is required (package identifier from manifest.toml)'),
|
|
35
|
-
buildType: z.enum(['Debug', 'Release']).default('Release'),
|
|
36
|
-
target: z.enum(['sim_tv_x86_64', 'sim_tv_aarch64']).default('sim_tv_x86_64'),
|
|
37
|
-
});
|
|
38
|
-
export const TestRunnerConfigSchema = z.discriminatedUnion('platform', [
|
|
39
|
-
AndroidTestRunnerConfigSchema,
|
|
40
|
-
iOSTestRunnerConfigSchema,
|
|
41
|
-
WebTestRunnerConfigSchema,
|
|
42
|
-
VegaTestRunnerConfigSchema,
|
|
43
|
-
]);
|
|
44
2
|
export const ConfigSchema = z
|
|
45
3
|
.object({
|
|
46
4
|
entryPoint: z.string().min(1, 'Entry point is required'),
|
|
47
5
|
appRegistryComponentName: z
|
|
48
6
|
.string()
|
|
49
7
|
.min(1, 'App registry component name is required'),
|
|
50
|
-
runners: z
|
|
51
|
-
.array(TestRunnerConfigSchema)
|
|
52
|
-
.min(1, 'At least one runner is required'),
|
|
8
|
+
runners: z.array(z.any()).min(1, 'At least one runner is required'),
|
|
53
9
|
defaultRunner: z.string().optional(),
|
|
54
10
|
bridgeTimeout: z
|
|
55
11
|
.number()
|
|
@@ -57,6 +13,7 @@ export const ConfigSchema = z
|
|
|
57
13
|
.default(60000),
|
|
58
14
|
resetEnvironmentBetweenTestFiles: z.boolean().optional().default(true),
|
|
59
15
|
unstable__skipAlreadyIncludedModules: z.boolean().optional().default(false),
|
|
16
|
+
unstable__enableMetroCache: z.boolean().optional().default(false),
|
|
60
17
|
// Deprecated property - used for migration detection
|
|
61
18
|
include: z.array(z.string()).optional(),
|
|
62
19
|
})
|
|
@@ -69,35 +26,3 @@ export const ConfigSchema = z
|
|
|
69
26
|
message: 'Default runner must match one of the configured runner names',
|
|
70
27
|
path: ['defaultRunner'],
|
|
71
28
|
});
|
|
72
|
-
export function isIOSRunnerConfig(config) {
|
|
73
|
-
return config.platform === 'ios';
|
|
74
|
-
}
|
|
75
|
-
export function isAndroidRunnerConfig(config) {
|
|
76
|
-
return config.platform === 'android';
|
|
77
|
-
}
|
|
78
|
-
export function isWebRunnerConfig(config) {
|
|
79
|
-
return config.platform === 'web';
|
|
80
|
-
}
|
|
81
|
-
export function isVegaRunnerConfig(config) {
|
|
82
|
-
return config.platform === 'vega';
|
|
83
|
-
}
|
|
84
|
-
export function assertAndroidRunnerConfig(config) {
|
|
85
|
-
if (!isAndroidRunnerConfig(config)) {
|
|
86
|
-
throw new Error(`Expected Android runner config but got platform: ${config.platform}`);
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
export function assertIOSRunnerConfig(config) {
|
|
90
|
-
if (!isIOSRunnerConfig(config)) {
|
|
91
|
-
throw new Error(`Expected iOS runner config but got platform: ${config.platform}`);
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
export function assertWebRunnerConfig(config) {
|
|
95
|
-
if (!isWebRunnerConfig(config)) {
|
|
96
|
-
throw new Error(`Expected web runner config but got platform: ${config.platform}`);
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
export function assertVegaRunnerConfig(config) {
|
|
100
|
-
if (!isVegaRunnerConfig(config)) {
|
|
101
|
-
throw new Error(`Expected Vega runner config but got platform: ${config.platform}`);
|
|
102
|
-
}
|
|
103
|
-
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-harness/config",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.18",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"tslib": "^2.3.0",
|
|
19
|
-
"zod": "^3.25.67"
|
|
19
|
+
"zod": "^3.25.67",
|
|
20
|
+
"@react-native-harness/tools": "1.0.0-alpha.18"
|
|
20
21
|
},
|
|
21
22
|
"license": "MIT"
|
|
22
|
-
}
|
|
23
|
+
}
|
package/src/errors.ts
CHANGED
|
@@ -1,25 +1,88 @@
|
|
|
1
|
-
|
|
1
|
+
import { HarnessError } from '@react-native-harness/tools';
|
|
2
|
+
|
|
3
|
+
export class ConfigValidationError extends HarnessError {
|
|
2
4
|
constructor(
|
|
3
5
|
public readonly filePath: string,
|
|
4
6
|
public readonly validationErrors: string[]
|
|
5
7
|
) {
|
|
6
|
-
|
|
8
|
+
const lines = [
|
|
9
|
+
`Configuration validation failed in ${filePath}`,
|
|
10
|
+
'',
|
|
11
|
+
'The following issues were found:',
|
|
12
|
+
'',
|
|
13
|
+
];
|
|
14
|
+
|
|
15
|
+
validationErrors.forEach((error, index) => {
|
|
16
|
+
lines.push(` ${index + 1}. ${error}`);
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
lines.push(
|
|
20
|
+
'',
|
|
21
|
+
'Please fix these issues and try again.',
|
|
22
|
+
'For more information, visit: https://react-native-harness.dev/docs/configuration'
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
super(lines.join('\n'));
|
|
7
26
|
this.name = 'ConfigValidationError';
|
|
8
27
|
}
|
|
9
28
|
}
|
|
10
29
|
|
|
11
|
-
export class ConfigNotFoundError extends
|
|
30
|
+
export class ConfigNotFoundError extends HarnessError {
|
|
12
31
|
constructor(public readonly searchPath: string) {
|
|
13
|
-
|
|
32
|
+
const lines = [
|
|
33
|
+
'Configuration file not found',
|
|
34
|
+
'',
|
|
35
|
+
`Searched for configuration files in: ${searchPath}`,
|
|
36
|
+
'and all parent directories.',
|
|
37
|
+
'',
|
|
38
|
+
'React Native Harness looks for one of these files:',
|
|
39
|
+
' • rn-harness.config.js',
|
|
40
|
+
' • rn-harness.config.mjs',
|
|
41
|
+
' • rn-harness.config.cjs',
|
|
42
|
+
' • rn-harness.config.json',
|
|
43
|
+
'',
|
|
44
|
+
'For more information, visit: https://www.react-native-harness.dev/docs/getting-started/configuration',
|
|
45
|
+
];
|
|
46
|
+
|
|
47
|
+
super(lines.join('\n'));
|
|
14
48
|
this.name = 'ConfigNotFoundError';
|
|
15
49
|
}
|
|
16
50
|
}
|
|
17
51
|
|
|
18
|
-
export class ConfigLoadError extends
|
|
52
|
+
export class ConfigLoadError extends HarnessError {
|
|
19
53
|
public override readonly cause?: Error;
|
|
20
54
|
|
|
21
55
|
constructor(public readonly filePath: string, cause?: Error) {
|
|
22
|
-
|
|
56
|
+
const lines = [
|
|
57
|
+
'Failed to load configuration file',
|
|
58
|
+
'',
|
|
59
|
+
`File: ${filePath}`,
|
|
60
|
+
'',
|
|
61
|
+
];
|
|
62
|
+
|
|
63
|
+
if (cause) {
|
|
64
|
+
lines.push('Error details:');
|
|
65
|
+
lines.push(` ${cause.message}`);
|
|
66
|
+
lines.push('');
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
lines.push(
|
|
70
|
+
'This could be due to:',
|
|
71
|
+
' • Syntax errors in your configuration file',
|
|
72
|
+
' • Missing dependencies or modules',
|
|
73
|
+
' • Invalid file format or encoding',
|
|
74
|
+
' • File permissions issues',
|
|
75
|
+
'',
|
|
76
|
+
'Troubleshooting steps:',
|
|
77
|
+
' 1. Check the file syntax and format',
|
|
78
|
+
' 2. Ensure all required dependencies are installed',
|
|
79
|
+
' 3. Verify file permissions',
|
|
80
|
+
' 4. Try creating a new configuration file',
|
|
81
|
+
'',
|
|
82
|
+
'For more help, visit: https://www.react-native-harness.dev/docs/getting-started/configuration'
|
|
83
|
+
);
|
|
84
|
+
|
|
85
|
+
super(lines.join('\n'));
|
|
23
86
|
this.name = 'ConfigLoadError';
|
|
24
87
|
this.cause = cause;
|
|
25
88
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,26 +1,7 @@
|
|
|
1
1
|
export { getConfig } from './reader.js';
|
|
2
|
-
export type {
|
|
3
|
-
Config,
|
|
4
|
-
TestRunnerConfig,
|
|
5
|
-
Platform,
|
|
6
|
-
BrowserType,
|
|
7
|
-
AndroidTestRunnerConfig,
|
|
8
|
-
iOSTestRunnerConfig,
|
|
9
|
-
WebTestRunnerConfig,
|
|
10
|
-
VegaTestRunnerConfig,
|
|
11
|
-
} from './types.js';
|
|
2
|
+
export type { Config } from './types.js';
|
|
12
3
|
export {
|
|
13
4
|
ConfigValidationError,
|
|
14
5
|
ConfigNotFoundError,
|
|
15
6
|
ConfigLoadError,
|
|
16
7
|
} from './errors.js';
|
|
17
|
-
export {
|
|
18
|
-
isAndroidRunnerConfig,
|
|
19
|
-
isIOSRunnerConfig,
|
|
20
|
-
isWebRunnerConfig,
|
|
21
|
-
isVegaRunnerConfig,
|
|
22
|
-
assertAndroidRunnerConfig,
|
|
23
|
-
assertIOSRunnerConfig,
|
|
24
|
-
assertWebRunnerConfig,
|
|
25
|
-
assertVegaRunnerConfig,
|
|
26
|
-
} from './types.js';
|
package/src/types.ts
CHANGED
|
@@ -1,66 +1,12 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
|
|
3
|
-
export const PlatformSchema = z.enum(['ios', 'android', 'web', 'vega']);
|
|
4
|
-
|
|
5
|
-
export const BrowserTypeSchema = z.enum(['chrome', 'firefox', 'safari']);
|
|
6
|
-
|
|
7
|
-
export const AndroidTestRunnerConfigSchema = z.object({
|
|
8
|
-
name: z.string().min(1, 'Runner name is required'),
|
|
9
|
-
platform: z.literal('android'),
|
|
10
|
-
deviceId: z.string().min(1, 'Device ID is required'),
|
|
11
|
-
bundleId: z.string().min(1, 'Bundle ID is required'),
|
|
12
|
-
activityName: z
|
|
13
|
-
.string()
|
|
14
|
-
.min(1, 'Activity name is required')
|
|
15
|
-
.default('.MainActivity'),
|
|
16
|
-
});
|
|
17
|
-
|
|
18
|
-
export const iOSTestRunnerConfigSchema = z.object({
|
|
19
|
-
name: z.string().min(1, 'Runner name is required'),
|
|
20
|
-
platform: z.literal('ios'),
|
|
21
|
-
deviceId: z.string().min(1, 'Device ID is required'),
|
|
22
|
-
bundleId: z.string().min(1, 'Bundle ID is required'),
|
|
23
|
-
systemVersion: z.string().min(1, 'System version is required'),
|
|
24
|
-
});
|
|
25
|
-
|
|
26
|
-
export const WebTestRunnerConfigSchema = z.object({
|
|
27
|
-
name: z.string().min(1, 'Runner name is required'),
|
|
28
|
-
platform: z.literal('web'),
|
|
29
|
-
browser: BrowserTypeSchema,
|
|
30
|
-
});
|
|
31
|
-
|
|
32
|
-
export const VegaTestRunnerConfigSchema = z.object({
|
|
33
|
-
name: z.string().min(1, 'Runner name is required'),
|
|
34
|
-
platform: z.literal('vega'),
|
|
35
|
-
deviceId: z
|
|
36
|
-
.string()
|
|
37
|
-
.min(
|
|
38
|
-
1,
|
|
39
|
-
'Virtual device instance name is required (e.g., "VegaTV_1", "VegaTV_Debug")'
|
|
40
|
-
),
|
|
41
|
-
bundleId: z
|
|
42
|
-
.string()
|
|
43
|
-
.min(1, 'Bundle ID is required (package identifier from manifest.toml)'),
|
|
44
|
-
buildType: z.enum(['Debug', 'Release']).default('Release'),
|
|
45
|
-
target: z.enum(['sim_tv_x86_64', 'sim_tv_aarch64']).default('sim_tv_x86_64'),
|
|
46
|
-
});
|
|
47
|
-
|
|
48
|
-
export const TestRunnerConfigSchema = z.discriminatedUnion('platform', [
|
|
49
|
-
AndroidTestRunnerConfigSchema,
|
|
50
|
-
iOSTestRunnerConfigSchema,
|
|
51
|
-
WebTestRunnerConfigSchema,
|
|
52
|
-
VegaTestRunnerConfigSchema,
|
|
53
|
-
]);
|
|
54
|
-
|
|
55
3
|
export const ConfigSchema = z
|
|
56
4
|
.object({
|
|
57
5
|
entryPoint: z.string().min(1, 'Entry point is required'),
|
|
58
6
|
appRegistryComponentName: z
|
|
59
7
|
.string()
|
|
60
8
|
.min(1, 'App registry component name is required'),
|
|
61
|
-
runners: z
|
|
62
|
-
.array(TestRunnerConfigSchema)
|
|
63
|
-
.min(1, 'At least one runner is required'),
|
|
9
|
+
runners: z.array(z.any()).min(1, 'At least one runner is required'),
|
|
64
10
|
defaultRunner: z.string().optional(),
|
|
65
11
|
bridgeTimeout: z
|
|
66
12
|
.number()
|
|
@@ -69,6 +15,7 @@ export const ConfigSchema = z
|
|
|
69
15
|
|
|
70
16
|
resetEnvironmentBetweenTestFiles: z.boolean().optional().default(true),
|
|
71
17
|
unstable__skipAlreadyIncludedModules: z.boolean().optional().default(false),
|
|
18
|
+
unstable__enableMetroCache: z.boolean().optional().default(false),
|
|
72
19
|
|
|
73
20
|
// Deprecated property - used for migration detection
|
|
74
21
|
include: z.array(z.string()).optional(),
|
|
@@ -88,76 +35,4 @@ export const ConfigSchema = z
|
|
|
88
35
|
}
|
|
89
36
|
);
|
|
90
37
|
|
|
91
|
-
export type Platform = z.infer<typeof PlatformSchema>;
|
|
92
|
-
export type BrowserType = z.infer<typeof BrowserTypeSchema>;
|
|
93
|
-
export type AndroidTestRunnerConfig = z.infer<
|
|
94
|
-
typeof AndroidTestRunnerConfigSchema
|
|
95
|
-
>;
|
|
96
|
-
export type iOSTestRunnerConfig = z.infer<typeof iOSTestRunnerConfigSchema>;
|
|
97
|
-
export type WebTestRunnerConfig = z.infer<typeof WebTestRunnerConfigSchema>;
|
|
98
|
-
export type VegaTestRunnerConfig = z.infer<typeof VegaTestRunnerConfigSchema>;
|
|
99
|
-
export type TestRunnerConfig = z.infer<typeof TestRunnerConfigSchema>;
|
|
100
38
|
export type Config = z.infer<typeof ConfigSchema>;
|
|
101
|
-
|
|
102
|
-
export function isIOSRunnerConfig(
|
|
103
|
-
config: TestRunnerConfig
|
|
104
|
-
): config is iOSTestRunnerConfig {
|
|
105
|
-
return config.platform === 'ios';
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
export function isAndroidRunnerConfig(
|
|
109
|
-
config: TestRunnerConfig
|
|
110
|
-
): config is AndroidTestRunnerConfig {
|
|
111
|
-
return config.platform === 'android';
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
export function isWebRunnerConfig(
|
|
115
|
-
config: TestRunnerConfig
|
|
116
|
-
): config is WebTestRunnerConfig {
|
|
117
|
-
return config.platform === 'web';
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
export function isVegaRunnerConfig(
|
|
121
|
-
config: TestRunnerConfig
|
|
122
|
-
): config is VegaTestRunnerConfig {
|
|
123
|
-
return config.platform === 'vega';
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
export function assertAndroidRunnerConfig(
|
|
127
|
-
config: TestRunnerConfig
|
|
128
|
-
): asserts config is AndroidTestRunnerConfig {
|
|
129
|
-
if (!isAndroidRunnerConfig(config)) {
|
|
130
|
-
throw new Error(
|
|
131
|
-
`Expected Android runner config but got platform: ${config.platform}`
|
|
132
|
-
);
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
export function assertIOSRunnerConfig(
|
|
137
|
-
config: TestRunnerConfig
|
|
138
|
-
): asserts config is iOSTestRunnerConfig {
|
|
139
|
-
if (!isIOSRunnerConfig(config)) {
|
|
140
|
-
throw new Error(
|
|
141
|
-
`Expected iOS runner config but got platform: ${config.platform}`
|
|
142
|
-
);
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
export function assertWebRunnerConfig(
|
|
146
|
-
config: TestRunnerConfig
|
|
147
|
-
): asserts config is WebTestRunnerConfig {
|
|
148
|
-
if (!isWebRunnerConfig(config)) {
|
|
149
|
-
throw new Error(
|
|
150
|
-
`Expected web runner config but got platform: ${config.platform}`
|
|
151
|
-
);
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
export function assertVegaRunnerConfig(
|
|
156
|
-
config: TestRunnerConfig
|
|
157
|
-
): asserts config is VegaTestRunnerConfig {
|
|
158
|
-
if (!isVegaRunnerConfig(config)) {
|
|
159
|
-
throw new Error(
|
|
160
|
-
`Expected Vega runner config but got platform: ${config.platform}`
|
|
161
|
-
);
|
|
162
|
-
}
|
|
163
|
-
}
|
package/tsconfig.json
CHANGED