azureauth 0.4.5 → 0.4.7
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/.prettierrc +2 -2
- package/CHANGELOG.json +20 -0
- package/CHANGELOG.md +13 -0
- package/LICENSE.txt +21 -0
- package/README.md +39 -39
- package/cli.js +15 -15
- package/examples/pat.js +13 -13
- package/lib/.tsbuildinfo +1 -1
- package/lib/{azureAuthCommand.d.ts → azure-auth-command.d.ts} +1 -1
- package/lib/azure-auth-command.d.ts.map +1 -0
- package/lib/{azureAuthCommand.js → azure-auth-command.js} +1 -1
- package/lib/azure-auth-command.js.map +1 -0
- package/lib/pat.d.ts.map +1 -1
- package/lib/pat.js +1 -1
- package/lib/pat.js.map +1 -1
- package/lib/pat.test.js +1 -1
- package/lib/pat.test.js.map +1 -1
- package/package.json +41 -38
- package/scripts/install.js +135 -135
- package/tsconfig.json +29 -29
- package/lib/azureAuthCommand.d.ts.map +0 -1
- package/lib/azureAuthCommand.js.map +0 -1
package/.prettierrc
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
{
|
|
2
|
-
"tabWidth": 2
|
|
1
|
+
{
|
|
2
|
+
"tabWidth": 2
|
|
3
3
|
}
|
package/CHANGELOG.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "azureauth",
|
|
3
|
+
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"date": "Fri, 06 Sep 2024 20:51:24 GMT",
|
|
6
|
+
"version": "0.4.7",
|
|
7
|
+
"tag": "azureauth_v0.4.7",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "dannyvv@microsoft.com",
|
|
12
|
+
"package": "azureauth",
|
|
13
|
+
"commit": "bb5431e37d0b40ace73c9f06e736219c5412f32c",
|
|
14
|
+
"comment": "Initial official release"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Change Log - azureauth
|
|
2
|
+
|
|
3
|
+
This log was last generated on Fri, 06 Sep 2024 20:51:24 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
<!-- Start content -->
|
|
6
|
+
|
|
7
|
+
## 0.4.7
|
|
8
|
+
|
|
9
|
+
Fri, 06 Sep 2024 20:51:24 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- Initial official release (dannyvv@microsoft.com)
|
package/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Microsoft Corporation.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE
|
package/README.md
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
# node-azureauth
|
|
2
|
-
|
|
3
|
-
This package wraps the https://github.com/AzureAD/microsoft-authentication-cli with a node.js exec wrapper.
|
|
4
|
-
|
|
5
|
-
That way the `azureauth` CLI can be downloaded automatically, and therefore scoped to the `./node_modules/.bin` allowing for multiple versions of the AzureAuth CLI
|
|
6
|
-
to exist on one machine at once.
|
|
7
|
-
|
|
8
|
-
## Usage
|
|
9
|
-
|
|
10
|
-
Install the package wiwth
|
|
11
|
-
|
|
12
|
-
```bash
|
|
13
|
-
> npm i azureauth
|
|
14
|
-
```
|
|
15
|
-
|
|
16
|
-
Use the `azureauth` CLI by calling it from NPM scripts.
|
|
17
|
-
|
|
18
|
-
```json
|
|
19
|
-
"scripts": {
|
|
20
|
-
"authcli": "azureauth --version"
|
|
21
|
-
}
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
```bash
|
|
25
|
-
> npm run authcli
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
Use it as a node module by importing azureauth.
|
|
29
|
-
|
|
30
|
-
```js
|
|
31
|
-
import { adoPat } from "azureauth";
|
|
32
|
-
|
|
33
|
-
const pat = await adoPat({
|
|
34
|
-
displayName: "test",
|
|
35
|
-
organization: "test",
|
|
36
|
-
promptHint: "test",
|
|
37
|
-
scope: ["test"],
|
|
38
|
-
});
|
|
39
|
-
```
|
|
1
|
+
# node-azureauth
|
|
2
|
+
|
|
3
|
+
This package wraps the https://github.com/AzureAD/microsoft-authentication-cli with a node.js exec wrapper.
|
|
4
|
+
|
|
5
|
+
That way the `azureauth` CLI can be downloaded automatically, and therefore scoped to the `./node_modules/.bin` allowing for multiple versions of the AzureAuth CLI
|
|
6
|
+
to exist on one machine at once.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
|
|
10
|
+
Install the package wiwth
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
> npm i azureauth
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Use the `azureauth` CLI by calling it from NPM scripts.
|
|
17
|
+
|
|
18
|
+
```json
|
|
19
|
+
"scripts": {
|
|
20
|
+
"authcli": "azureauth --version"
|
|
21
|
+
}
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
> npm run authcli
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Use it as a node module by importing azureauth.
|
|
29
|
+
|
|
30
|
+
```js
|
|
31
|
+
import { adoPat } from "azureauth";
|
|
32
|
+
|
|
33
|
+
const pat = await adoPat({
|
|
34
|
+
displayName: "test",
|
|
35
|
+
organization: "test",
|
|
36
|
+
promptHint: "test",
|
|
37
|
+
scope: ["test"],
|
|
38
|
+
});
|
|
39
|
+
```
|
package/cli.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
import path from "node:path";
|
|
3
|
-
import process from "node:process";
|
|
4
|
-
import { execa } from "execa";
|
|
5
|
-
import { fileURLToPath } from "url";
|
|
6
|
-
|
|
7
|
-
const __dirname = fileURLToPath(new URL(".", import.meta.url));
|
|
8
|
-
|
|
9
|
-
let azureauth = path.join(__dirname, "bin", "azureauth", "azureauth");
|
|
10
|
-
|
|
11
|
-
if (process.platform === "win32") {
|
|
12
|
-
azureauth = azureauth + ".exe";
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
execa(azureauth, process.argv.slice(2), { stdio: "inherit" });
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import path from "node:path";
|
|
3
|
+
import process from "node:process";
|
|
4
|
+
import { execa } from "execa";
|
|
5
|
+
import { fileURLToPath } from "url";
|
|
6
|
+
|
|
7
|
+
const __dirname = fileURLToPath(new URL(".", import.meta.url));
|
|
8
|
+
|
|
9
|
+
let azureauth = path.join(__dirname, "bin", "azureauth", "azureauth");
|
|
10
|
+
|
|
11
|
+
if (process.platform === "win32") {
|
|
12
|
+
azureauth = azureauth + ".exe";
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
execa(azureauth, process.argv.slice(2), { stdio: "inherit" });
|
package/examples/pat.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { adoPat } from "../lib/index.js";
|
|
2
|
-
|
|
3
|
-
const name = "feed-name";
|
|
4
|
-
|
|
5
|
-
const pat = await adoPat({
|
|
6
|
-
promptHint: `${name} .npmrc PAT`,
|
|
7
|
-
organization: "your-organization-name-here",
|
|
8
|
-
displayName: `${name}-npmrc-pat`,
|
|
9
|
-
scope: ["vso.packaging"],
|
|
10
|
-
timeout: "30",
|
|
11
|
-
output: "json",
|
|
12
|
-
});
|
|
13
|
-
|
|
1
|
+
import { adoPat } from "../lib/index.js";
|
|
2
|
+
|
|
3
|
+
const name = "feed-name";
|
|
4
|
+
|
|
5
|
+
const pat = await adoPat({
|
|
6
|
+
promptHint: `${name} .npmrc PAT`,
|
|
7
|
+
organization: "your-organization-name-here",
|
|
8
|
+
displayName: `${name}-npmrc-pat`,
|
|
9
|
+
scope: ["vso.packaging"],
|
|
10
|
+
timeout: "30",
|
|
11
|
+
output: "json",
|
|
12
|
+
});
|
|
13
|
+
|
|
14
14
|
console.log(pat);
|
package/lib/.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.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.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/azureauthcommand.ts","../node_modules/execa/index.d.ts","../src/pat.ts","../src/index.ts","../node_modules/@vitest/utils/dist/types.d.ts","../node_modules/@vitest/utils/dist/helpers.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/@vitest/utils/dist/index.d.ts","../node_modules/@vitest/runner/dist/tasks-abce80cc.d.ts","../node_modules/@vitest/runner/dist/types.d.ts","../node_modules/@vitest/runner/dist/index.d.ts","../node_modules/@vitest/snapshot/dist/environment-38cdead3.d.ts","../node_modules/@vitest/snapshot/dist/index-6461367c.d.ts","../node_modules/@vitest/snapshot/dist/index.d.ts","../node_modules/@types/chai/index.d.ts","../node_modules/@vitest/utils/dist/diff.d.ts","../node_modules/@vitest/utils/diff.d.ts","../node_modules/@vitest/expect/dist/index.d.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","../node_modules/esbuild/lib/main.d.ts","../node_modules/vite/types/metadata.d.ts","../node_modules/vite/types/hmrpayload.d.ts","../node_modules/vite/types/customevent.d.ts","../node_modules/rollup/dist/rollup.d.ts","../node_modules/vite/types/importglob.d.ts","../node_modules/source-map-js/source-map.d.ts","../node_modules/postcss/lib/previous-map.d.ts","../node_modules/postcss/lib/input.d.ts","../node_modules/postcss/lib/css-syntax-error.d.ts","../node_modules/postcss/lib/declaration.d.ts","../node_modules/postcss/lib/root.d.ts","../node_modules/postcss/lib/warning.d.ts","../node_modules/postcss/lib/lazy-result.d.ts","../node_modules/postcss/lib/no-work-result.d.ts","../node_modules/postcss/lib/processor.d.ts","../node_modules/postcss/lib/result.d.ts","../node_modules/postcss/lib/document.d.ts","../node_modules/postcss/lib/rule.d.ts","../node_modules/postcss/lib/node.d.ts","../node_modules/postcss/lib/comment.d.ts","../node_modules/postcss/lib/container.d.ts","../node_modules/postcss/lib/at-rule.d.ts","../node_modules/postcss/lib/list.d.ts","../node_modules/postcss/lib/postcss.d.ts","../node_modules/vite/dist/node/index.d.ts","../node_modules/vite/types/hot.d.ts","../node_modules/vite-node/dist/types.d-7442d07f.d.ts","../node_modules/vite-node/dist/types-e8623e9c.d.ts","../node_modules/vite-node/dist/index.d.ts","../node_modules/@vitest/runner/dist/utils.d.ts","../node_modules/@vitest/runner/utils.d.ts","../node_modules/tinybench/dist/index.d.ts","../node_modules/vite-node/dist/client.d.ts","../node_modules/@vitest/snapshot/dist/manager.d.ts","../node_modules/@vitest/snapshot/manager.d.ts","../node_modules/vite-node/dist/server.d.ts","../node_modules/vitest/dist/types-3c7dbfa5.d.ts","../node_modules/tinyspy/dist/index.d.ts","../node_modules/@vitest/spy/dist/index.d.ts","../node_modules/@vitest/snapshot/dist/environment.d.ts","../node_modules/@vitest/snapshot/environment.d.ts","../node_modules/vitest/dist/config.d.ts","../node_modules/vitest/dist/index.d.ts","../src/pat.test.ts","../node_modules/@types/chai-subset/index.d.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"72b3e2515cd7ab4e9cf2480bb878c1d81f0f97506f5c79c391943e4e834acb3a","signature":"37592db11ccfa8e0dccb0762d138bcc73be92fba63dc13d6888c63adf61f863d"},"3521d628608a950d73ab0551183c301364f3604f7813e0704d271f4463c4dbb9",{"version":"25b41be519da2d3295a8961cc23278ffc43f4ed7fb0b16b67b1db248c056a56b","signature":"7697cebe89f5844986ae3c2416e31ea2fc7bf22ba20b23a95dea26e5694508d1"},{"version":"b43878830aafa77a7818544e949896874d58c9ad459c73fd89c626edada081ff","signature":"0d37be08cd27aa4c649eea3a407ff84f05d16fa80d9789371336acc20eeb9d52"},"19ce9ec982b542ef6d04d29ce678aad2fa52a67d8087e9c6cd95a4d6d98784c8","75d3b70589f5e14016a629feef0cd8deb55cab794e8c14bdbd5794c3b08a957e","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","64c9980a5c0f4627b7189eeece6816bb68e1c5c62a06d59ce6742f3328cfe854","acf1068cf9f861280669578ced81d6f6701609b6e8c46c983fd1c3b62ca1c129","5599d7a8727ecc5c463176c284c76b4a93ed79df3cc617548998d2d5c4b57c12","866223f4c6921da309cafb3441ff835d787ab52747825e2371b404458b1bd7b9","73b67d2e87ac7d7baaca64ca33fd1523c0b3c850cb7db5b9c014f1be7996bed1","5d5ae61fce1581fd6424269790a9071e3f8e69b029f5d0fcb46ce618c5dbc565","38a0ccc7106312a9f60e034e7cd8ac218774d8aa65f832cee3363a7e65f99325",{"version":"c3bc5d095c3c22fd20b5a6550b9c9a6d56c3ffbb87ef057ccce7764b6bed4428","affectsGlobalScope":true},"bff48cd8ff6b53727de810bd00a11e04975b1bc9c7677f3fe839159565ad1546","05c7aef6a4e496b93c2e682cced8903c0dfe6340d04f3fe616176e2782193435",{"version":"47c8c25482eb4844ac9c11758f9a6c0112ecb1c7216f91e3463772e73f989a63","affectsGlobalScope":true},"587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"d32f90e6cf32e99c86009b5f79fa50bc750fe54e17137d9bb029c377a2822ee2","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"c81c51f43e343b6d89114b17341fb9d381c4ccbb25e0ee77532376052c801ba7","affectsGlobalScope":true},"3dd49afd822c82b63b3905a13e22240f34cf367aea4f4dd0e6564f4bddcb8370","57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","f302f3a47d7758f67f2afc753b9375d6504dde05d2e6ecdb1df50abbb131fc89","93db4c949a785a3dbef7f5e08523be538e468c580dd276178b818e761b3b68cd","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"6e335a70826a634c5a1a1fa36a2dacbf3712ef2be7a517540ae1de8a1e8ea4f6","affectsGlobalScope":true},"7a2ba0c9af860ac3e77b35ed01fd96d15986f17aa22fe40f188ae556fb1070df","df8529626079d6f9d5d3cd7b6fb7db9cda5a3118d383d8cd46c52aadb59593e7","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","3122a3f1136508a27a229e0e4e2848299028300ffa11d0cdfe99df90c492fe20","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"ac0c77cd7db52b3c278bdd1452ce754014835493d05b84535f46854fdc2063b2","affectsGlobalScope":true},"fe6dba0e8c69f2b244e3da38e53dd2cc9e51b2543e647e805396af73006613f7","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"5810080a0da989a944d3b691b7b479a4a13c75947fb538abb8070710baa5ccee","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","8bbe7e6c5844e38754c041b52e3d90f7bbd5a0d60739daf30805c92e4f0c65c6","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270",{"version":"99822adc2defda34dc1b28b727577ec7c098d878d713157dbe90d212c6bf5e58","affectsGlobalScope":true},{"version":"8a985c7d30aea82342d5017730b546bb2b734fe37a2684ca55d4734deb019d58","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","5bc85813bfcb6907cc3a960fec8734a29d7884e0e372515147720c5991b8bc22","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"4d06f3abc2a6aae86f1be39e397372f74fb6e7964f594d645926b4a3419cc15d","affectsGlobalScope":true},{"version":"0e08c360c9b5961ecb0537b703e253842b3ded53151ee07024148219b61a8baf","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"4905d61a3e1e9b12e12dbf8660fc8d2f085734da6da8d725f395bf41a04853d6","850040826cfa77593d44f44487133af21917f4f21507258bd4269501b80d32f0","8f07f2b6514744ac96e51d7cb8518c0f4de319471237ea10cf688b8d0e9d0225","bcb6ea18f23dae2c48459d7b86d3adccd6898f824fcbf9da08b935f559896580","1363ba7d52f2353d0c4306d0ecdaf171bf4509c0148842f9fd8d3986c098a2eb","11e1ca6d427a2d9472ca610ef12698684e2809ca463c5518cc9f883e96288caf","739c2c46edc112421fc023c24b4898b1f413f792bb6a02b40ba182c648e56c2f","858d0d831826c6eb563df02f7db71c90e26deadd0938652096bea3cc14899700","8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","e4de16da5082cd440c0e19bcf219c5c4a7f3c3104d97db3bb6ee5b9c2a9a1bdd","5e92a2e8ba5cbcdfd9e51428f94f7bd0ab6e45c9805b1c9552b64abaffad3ce3","53ca39fe70232633759dd3006fc5f467ecda540252c0c819ab53e9f6ad97b226","e7174a839d4732630d904a8b488f22380e5bcf1d6405d1f59614e10795eca17d","7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","1fa3342736ff551848cdcd8edeece95b2016448364b3e9ad1cb70e86e28f42a1","5ca9f5cc0104446228a0c6c1f353d49a9b92d40fa7096479595d62061e8279c9","4c1eed2b08adb0d98eb9551d426c43e3426282aa544559d30e05e5998e46321b","436598e80d4957d007b84bd7255394057848ab310895e2dcaebc5debb932fdbc","74f2815d9e1b8530120dcad409ed5f706df8513c4d93e99fc6213997aa4dd60e","9d1f36ccd354f2e286b909bf01d626a3a28dd6590770303a18afa7796fe50db9","c4bc6a572f9d763ac7fa0d839be3de80273a67660e2002e3225e00ef716b4f37","106e607866d6c3e9a497a696ac949c3e2ec46b6e7dda35aabe76100bf740833b","83e9c7cbe3bc85e21727c77eb6fe91c44d2076c6458729ff137eb95feebc2c10","d4514d11e7d11c53da7d43b948654d6e608a3d93d666a36f8d01e18ece04c9bd","3d65182eff7bbb16de1a69e17651c51083f740af11a1a92359be6dab939e8bcf","78537f1b16692afdddef1b5c8981cea4a1be030eaca482bd5566b44cffa5192b","5af924defa85825aa63f023b562727d5bc7f91e71363e3f7ae24392bede17066","4d5fb5d6b35f731b2ae4d9d7c592d48e91d6de531dd130628edf4eba16add893","d12ab69ace581804d4f264eabc71094ca8dadfa70ae2bf5ccd54a8d6105ab84b","d757ef86e18b87094ad733c2a1ed7acc21878f5feb931bea64643f40a84e688c","6cb8dc4e3d4357c8badd567bd090aceedcd0d2afa4987f46471ba602956af034","8b0943864dafdf38b7c8cfbc736c04c5e65653837d85177aebde0732f34be8be","e666e31d323fef5642f87db0da48a83e58f0aaf9e3823e87eabd8ec7e0441a36","caeae351358d6c5b8da971c4ba7973987cbbbe4766081d07394e51c5544c8727","a23dd1a2177fda8e2d0e79874f4a150353d10e60ea3e9c690d7ca05b4775e542","e72396ce544667ab49df38ffb91cb3f80ff17d2ad3df903ec30b1d2ca8ea68de","b7e28e06011460436d5c2ec2996846ac0c451e135357fc5a7269e5665a32fbd7","647550b021976e287be83dd5c1a0919d2d99c47ffc470c80880f670ca4f395ab","d979524749bd1873e4e7a63b9551381711855a1bd5fc4be394b64568de6adc6d","9a82b3cd322d6b46c2407c162bbfd0b13edc9d23dced719a751a481b985690a0","13446337b269b3a8fdac668f9cf831b313529aea23f26621ecf5097c3e53bb25","f63e23230f3960b712450cf08f0f31e56acdae3ce65e0bf31bfdd6442b29d115","f2d1a59a658165341b0e2b7879aa2e19ea6a709146b2d3f70ee8a07159d3d08e","46e1ed17157235f8bf123517f691d1f93c6bffda998f6cd9fee470f2968b58c9","ba88974db5ce05013d08e521d5d1c2266ed5bfafac02763d18e15b3ced925c88",{"version":"95e4683d875e99cb5a0a4d6d7a2d5ccf19780d0ec6fe6771d8fe1b7512f9fc50","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"f4c0db3a49cea9babd5d224ba14243a6a6119bf65a65198994033aaea3a60a71","affectsGlobalScope":true}],"root":[45,47,48,163],"options":{"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"jsx":2,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","sourceMap":true,"strict":true,"target":6,"tsBuildInfoFile":"./.tsbuildinfo"},"fileIdsList":[[51,111],[111],[61,111],[65,111],[68,111],[69,74,102,111],[70,81,82,89,99,110,111],[70,71,81,89,111],[72,111],[73,74,82,90,111],[74,99,107,111],[75,77,81,89,111],[76,111],[77,78,111],[81,111],[79,81,111],[81,82,83,99,110,111],[81,82,83,96,99,102,111],[111,115],[77,81,84,89,99,110,111],[81,82,84,85,89,99,107,110,111],[84,86,99,107,110,111],[65,66,67,68,69,70,71,72,73,74,75,76,77,78,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],[81,87,111],[88,110,111],[77,81,89,99,111],[90,111],[91,111],[68,92,111],[93,109,111,115],[94,111],[95,111],[81,96,97,111],[96,98,111,113],[69,81,99,100,101,102,111],[69,99,101,111],[99,100,111],[102,111],[103,111],[68,99,111],[81,105,106,111],[105,106,111],[74,89,99,107,111],[108,111],[89,109,111],[69,84,95,110,111],[74,111],[99,111,112],[111,113],[111,114],[69,74,81,83,92,99,110,111,113,115],[99,111,116],[54,61,63,111],[54,55,56,111],[54,111],[54,55,111],[111,149],[58,111],[53,58,111],[53,58,59,111],[111,159],[111,153],[111,157],[62,111],[53,111],[49,111],[49,50,53,111],[69,70,99,111],[111,140],[111,138,140],[111,129,137,138,139,141],[111,127],[111,130,135,140,143],[111,126,143],[111,130,131,134,135,143],[111,130,131,132,134,135,143],[111,127,128,129,130,131,135,136,137,139,140,141,143],[111,125,127,128,129,130,131,132,134,135,136,137,138,139,140,141,142],[111,125,143],[111,130,132,133,135,143],[111,134,143],[111,135,136,140,143],[111,128,138],[52,111],[111,125],[111,145,146,147],[111,144,145,146,147,156],[111,145,146],[81,82,84,86,89,99,107,110,111,116,118,119,120,121,122,123,124,143],[111,121],[111,122],[111,123],[54,57,60,61,64,82,111,115,120,123,144,148,150,151,152,154,155,156],[54,57,60,61,64,82,111,115,120,123,144,148,150,151,152,154,155,156,158,160,161],[91,93,111],[47,111],[47,111,162],[45,46,111],[47]],"referencedMap":[[52,1],[51,2],[164,3],[61,2],[65,4],[66,4],[68,5],[69,6],[70,7],[71,8],[72,9],[73,10],[74,11],[75,12],[76,13],[77,14],[78,14],[80,15],[79,16],[81,15],[82,17],[83,18],[67,19],[117,2],[84,20],[85,21],[86,22],[118,23],[87,24],[88,25],[89,26],[90,27],[91,28],[92,29],[93,30],[94,31],[95,32],[96,33],[97,33],[98,34],[99,35],[101,36],[100,37],[102,38],[103,39],[104,40],[105,41],[106,42],[107,43],[108,44],[109,45],[110,46],[111,47],[112,48],[113,49],[114,50],[115,51],[116,52],[64,53],[57,54],[55,55],[56,56],[149,56],[150,57],[58,2],[159,58],[59,59],[60,60],[153,60],[160,61],[154,62],[158,63],[63,64],[62,65],[50,66],[54,67],[49,2],[119,2],[46,68],[141,69],[139,70],[140,71],[128,72],[129,70],[136,73],[127,74],[132,75],[142,2],[133,76],[138,77],[143,78],[126,79],[134,80],[135,81],[130,82],[137,69],[131,83],[53,84],[123,2],[125,85],[151,2],[157,2],[43,2],[44,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[33,2],[30,2],[31,2],[32,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[1,2],[42,2],[152,86],[148,86],[155,87],[147,88],[146,2],[144,89],[122,90],[121,2],[145,91],[124,2],[120,92],[161,93],[162,94],[156,93],[45,95],[48,96],[163,97],[47,98]],"exportedModulesMap":[[52,1],[51,2],[164,3],[61,2],[65,4],[66,4],[68,5],[69,6],[70,7],[71,8],[72,9],[73,10],[74,11],[75,12],[76,13],[77,14],[78,14],[80,15],[79,16],[81,15],[82,17],[83,18],[67,19],[117,2],[84,20],[85,21],[86,22],[118,23],[87,24],[88,25],[89,26],[90,27],[91,28],[92,29],[93,30],[94,31],[95,32],[96,33],[97,33],[98,34],[99,35],[101,36],[100,37],[102,38],[103,39],[104,40],[105,41],[106,42],[107,43],[108,44],[109,45],[110,46],[111,47],[112,48],[113,49],[114,50],[115,51],[116,52],[64,53],[57,54],[55,55],[56,56],[149,56],[150,57],[58,2],[159,58],[59,59],[60,60],[153,60],[160,61],[154,62],[158,63],[63,64],[62,65],[50,66],[54,67],[49,2],[119,2],[46,68],[141,69],[139,70],[140,71],[128,72],[129,70],[136,73],[127,74],[132,75],[142,2],[133,76],[138,77],[143,78],[126,79],[134,80],[135,81],[130,82],[137,69],[131,83],[53,84],[123,2],[125,85],[151,2],[157,2],[43,2],[44,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[33,2],[30,2],[31,2],[32,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[1,2],[42,2],[152,86],[148,86],[155,87],[147,88],[146,2],[144,89],[122,90],[121,2],[145,91],[124,2],[120,92],[161,93],[162,94],[156,93],[48,99]],"semanticDiagnosticsPerFile":[52,51,164,61,65,66,68,69,70,71,72,73,74,75,76,77,78,80,79,81,82,83,67,117,84,85,86,118,87,88,89,90,91,92,93,94,95,96,97,98,99,101,100,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,64,57,55,56,149,150,58,159,59,60,153,160,154,158,63,62,50,54,49,119,46,141,139,140,128,129,136,127,132,142,133,138,143,126,134,135,130,137,131,53,123,125,151,157,43,44,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,7,35,40,41,36,37,38,39,1,42,152,148,155,147,146,144,122,121,145,124,120,161,162,156,45,48,163,47],"latestChangedDtsFile":"./index.d.ts"},"version":"5.1.6"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.5.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/azure-auth-command.ts","../../../node_modules/.pnpm/execa@7.2.0/node_modules/execa/index.d.ts","../src/pat.ts","../src/index.ts","../../../node_modules/.pnpm/@vitest+utils@2.0.5/node_modules/@vitest/utils/dist/types.d.ts","../../../node_modules/.pnpm/@vitest+utils@2.0.5/node_modules/@vitest/utils/dist/helpers.d.ts","../../../node_modules/.pnpm/@vitest+pretty-format@2.0.5/node_modules/@vitest/pretty-format/dist/index.d.ts","../../../node_modules/.pnpm/tinyrainbow@1.2.0/node_modules/tinyrainbow/dist/index-c1cfc5e9.d.ts","../../../node_modules/.pnpm/tinyrainbow@1.2.0/node_modules/tinyrainbow/dist/node.d.ts","../../../node_modules/.pnpm/@vitest+utils@2.0.5/node_modules/@vitest/utils/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+runner@2.0.5/node_modules/@vitest/runner/dist/tasks-zB5uPauP.d.ts","../../../node_modules/.pnpm/@vitest+utils@2.0.5/node_modules/@vitest/utils/dist/types-Bxe-2Udy.d.ts","../../../node_modules/.pnpm/@vitest+utils@2.0.5/node_modules/@vitest/utils/dist/diff.d.ts","../../../node_modules/.pnpm/@vitest+runner@2.0.5/node_modules/@vitest/runner/dist/types.d.ts","../../../node_modules/.pnpm/@vitest+utils@2.0.5/node_modules/@vitest/utils/dist/error.d.ts","../../../node_modules/.pnpm/@vitest+runner@2.0.5/node_modules/@vitest/runner/dist/index.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@types+estree@1.0.5/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/rollup@4.18.1/node_modules/rollup/dist/rollup.d.ts","../../../node_modules/.pnpm/rollup@4.18.1/node_modules/rollup/dist/parseAst.d.ts","../../../node_modules/.pnpm/vite@5.3.4_@types+node@20.14.11/node_modules/vite/types/hmrPayload.d.ts","../../../node_modules/.pnpm/vite@5.3.4_@types+node@20.14.11/node_modules/vite/types/customEvent.d.ts","../../../node_modules/.pnpm/vite@5.3.4_@types+node@20.14.11/node_modules/vite/types/hot.d.ts","../../../node_modules/.pnpm/vite@5.3.4_@types+node@20.14.11/node_modules/vite/dist/node/types.d-aGj9QkWt.d.ts","../../../node_modules/.pnpm/esbuild@0.21.5/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/source-map-js@1.2.0/node_modules/source-map-js/source-map.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/input.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/declaration.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/root.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/warning.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/no-work-result.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/processor.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/result.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/document.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/rule.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/node.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/comment.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/container.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/list.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/postcss.d.ts","../../../node_modules/.pnpm/postcss@8.4.39/node_modules/postcss/lib/postcss.d.mts","../../../node_modules/.pnpm/vite@5.3.4_@types+node@20.14.11/node_modules/vite/dist/node/runtime.d.ts","../../../node_modules/.pnpm/vite@5.3.4_@types+node@20.14.11/node_modules/vite/types/importGlob.d.ts","../../../node_modules/.pnpm/vite@5.3.4_@types+node@20.14.11/node_modules/vite/types/metadata.d.ts","../../../node_modules/.pnpm/vite@5.3.4_@types+node@20.14.11/node_modules/vite/dist/node/index.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@2.0.5/node_modules/@vitest/snapshot/dist/environment-Ddx0EDtY.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@2.0.5/node_modules/@vitest/snapshot/dist/index-Y6kQUiCB.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@2.0.5/node_modules/@vitest/snapshot/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@2.0.5/node_modules/@vitest/snapshot/dist/environment.d.ts","../../../node_modules/.pnpm/vitest@2.0.5_@types+node@20.14.11/node_modules/vitest/dist/chunks/config.DCnyCTbs.d.ts","../../../node_modules/.pnpm/vite-node@2.0.5_@types+node@20.14.11/node_modules/vite-node/dist/trace-mapping.d-DLVdEqOp.d.ts","../../../node_modules/.pnpm/vite-node@2.0.5_@types+node@20.14.11/node_modules/vite-node/dist/index-CCsqCcr7.d.ts","../../../node_modules/.pnpm/vite-node@2.0.5_@types+node@20.14.11/node_modules/vite-node/dist/index.d.ts","../../../node_modules/.pnpm/vitest@2.0.5_@types+node@20.14.11/node_modules/vitest/dist/chunks/environment.0M5R1SX_.d.ts","../../../node_modules/.pnpm/vite-node@2.0.5_@types+node@20.14.11/node_modules/vite-node/dist/client.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@2.0.5/node_modules/@vitest/snapshot/dist/manager.d.ts","../../../node_modules/.pnpm/vite-node@2.0.5_@types+node@20.14.11/node_modules/vite-node/dist/server.d.ts","../../../node_modules/.pnpm/@vitest+utils@2.0.5/node_modules/@vitest/utils/dist/source-map.d.ts","../../../node_modules/.pnpm/@vitest+runner@2.0.5/node_modules/@vitest/runner/dist/utils.d.ts","../../../node_modules/.pnpm/tinybench@2.8.0/node_modules/tinybench/dist/index.d.ts","../../../node_modules/.pnpm/vitest@2.0.5_@types+node@20.14.11/node_modules/vitest/dist/chunks/benchmark.puBFxyfE.d.ts","../../../node_modules/.pnpm/vitest@2.0.5_@types+node@20.14.11/node_modules/vitest/dist/chunks/reporters.C_zwCd4j.d.ts","../../../node_modules/.pnpm/@vitest+expect@2.0.5/node_modules/@vitest/expect/dist/chai.d.cts","../../../node_modules/.pnpm/@vitest+expect@2.0.5/node_modules/@vitest/expect/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+expect@2.0.5/node_modules/@vitest/expect/index.d.ts","../../../node_modules/.pnpm/vitest@2.0.5_@types+node@20.14.11/node_modules/vitest/dist/chunks/suite.CcK46U-P.d.ts","../../../node_modules/.pnpm/vitest@2.0.5_@types+node@20.14.11/node_modules/vitest/dist/chunks/worker.C5iHKIaJ.d.ts","../../../node_modules/.pnpm/@vitest+spy@2.0.5/node_modules/@vitest/spy/dist/index.d.ts","../../../node_modules/.pnpm/vitest@2.0.5_@types+node@20.14.11/node_modules/vitest/dist/chunks/worker.DKkAC4Qw.d.ts","../../../node_modules/.pnpm/vitest@2.0.5_@types+node@20.14.11/node_modules/vitest/dist/index.d.ts","../src/pat.test.ts","../../../node_modules/.pnpm/@types+eslint@8.56.10/node_modules/@types/eslint/helpers.d.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema/index.d.ts","../../../node_modules/.pnpm/@types+eslint@8.56.10/node_modules/@types/eslint/index.d.ts","../../../node_modules/.pnpm/@types+eslint-scope@3.7.7/node_modules/@types/eslint-scope/index.d.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"4af6b0c727b7a2896463d512fafd23634229adf69ac7c00e2ae15a09cb084fad","affectsGlobalScope":true},{"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":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"301031261d996f37c8a65d4e16f84076618635776b41244bb746d2f8c2674a42","signature":"37592db11ccfa8e0dccb0762d138bcc73be92fba63dc13d6888c63adf61f863d"},"3521d628608a950d73ab0551183c301364f3604f7813e0704d271f4463c4dbb9",{"version":"5e9d78aed8e0b2c15f5531f608208977b1871991d052ef5a0a940330a6c458ff","signature":"7697cebe89f5844986ae3c2416e31ea2fc7bf22ba20b23a95dea26e5694508d1"},"0d37be08cd27aa4c649eea3a407ff84f05d16fa80d9789371336acc20eeb9d52","369ba5259e66ca8c7d35e3234f7a2a0863a770fdb8266505747c65cf346a0804","86ecd6bc8313be39460480af6e8eed773e411781a606b1ac4354d4d16a32ed69","d2e64a6f25013b099e83bfadb2c388d7bef3e8f3fdb25528225bbc841e7e7e3a","f147b6710441cf3ec3234adf63b0593ce5e8c9b692959d21d3babc8454bcf743","e96d5373a66c2cfbbc7e6642cf274055aa2c7ff6bd37be7480c66faf9804db6d","dfda5e1e9f066a9e33c802a1c4d0be8fcc0277893e74b85170554f6edd502cac","14695440f2506778155bef183cd5d75d0d87104cb03855bfa59d015efdd85ede","7c553fc9e34773ddbaabe0fa1367d4b109101d0868a008f11042bee24b5a925d","9962ce696fbdce2421d883ca4b062a54f982496625437ae4d3633376c5ad4a80","22cf1eaa4ed331dfc145048a77cbcd837dbd035f8490020a749aee4c2cf43cab","4c17183a07a63bea2653fbfc0a942b027160ddbee823024789a415f9589de327","c3d14a5afa2061f29ed1463b0e1eb6bba028c0d64b9509cb10e1ccdf908dfa58","2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"e7be367719c613d580d4b27fdf8fe64c9736f48217f4b322c0d63b2971460918","affectsGlobalScope":true},"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36",{"version":"392eadc2af403dd10b4debfbc655c089a7fa6a9750caeb770cfb30051e55e848","affectsGlobalScope":true},"62f1c00d3d246e0e3cf0224f91e122d560428ec1ccc36bb51d4574a84f1dbad0","53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6",{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"f85c06e750743acf31f0cfd3be284a364d469761649e29547d0dd6be48875150","affectsGlobalScope":true},"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","0364f8bb461d6e84252412d4e5590feda4eb582f77d47f7a024a7a9ff105dfdc","5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9a30b7fefd7f8abbca4828d481c61c18e40fe5ff107e113b1c1fcd2c8dcf2743","affectsGlobalScope":true},"173b6275a81ebdb283b180654890f46516c21199734fed01a773b1c168b8c45c","304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","1b9adafe8a7fefaeaf9099a0e06f602903f6268438147b843a33a5233ac71745","98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","c933f7ba4b201c98b14275fd11a14abb950178afd2074703250fe3654fc10cd2","2eaa31492906bc8525aff3c3ec2236e22d90b0dfeee77089f196cd0adf0b3e3b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"8f5814f29dbaf8bacd1764aebdf1c8a6eb86381f6a188ddbac0fcbaab855ce52","a63d03de72adfb91777784015bd3b4125abd2f5ef867fc5a13920b5649e8f52b","d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900",{"version":"1d4d78c8b23c9ddaaaa49485e6adc2ec01086dfe5d8d4d36ca4cdc98d2f7e74a","affectsGlobalScope":true},{"version":"44fc16356b81c0463cc7d7b2b35dcf324d8144136f5bc5ce73ced86f2b3475b5","affectsGlobalScope":true},"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","7b166975fdbd3b37afb64707b98bca88e46577bbc6c59871f9383a7df2daacd1","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927",{"version":"7da97d603bf3dd0000f56467c56cb6efaf5f94692980474925fae6c33412b12a","affectsGlobalScope":true},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0",{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true},{"version":"7245af181218216bacb01fbdf51095617a51661f20d77178c69a377e16fb69ed","affectsGlobalScope":true},"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"8704423bf338bff381ebc951ed819935d0252d90cd6de7dffe5b0a5debb65d07","affectsGlobalScope":true},"7c6929fd7cbf38499b6a600b91c3b603d1d78395046dc3499b2b92d01418b94b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea",{"version":"574de9322239fc2f136769dd4726fdeea6f379a44691759ffe3a941f9022e5b9","affectsGlobalScope":true},"a660aa95476042d3fdcc1343cf6bb8fdf24772d31712b1db321c5a4dcc325434","282f98006ed7fa9bb2cd9bdbe2524595cfc4bcd58a0bb3232e4519f2138df811","6222e987b58abfe92597e1273ad7233626285bc2d78409d4a7b113d81a83496b","cbe726263ae9a7bf32352380f7e8ab66ee25b3457137e316929269c19e18a2be","8b96046bf5fb0a815cba6b0880d9f97b7f3a93cf187e8dcfe8e2792e97f38f87",{"version":"bacf2c84cf448b2cd02c717ad46c3d7fd530e0c91282888c923ad64810a4d511","affectsGlobalScope":true},"858d0d831826c6eb563df02f7db71c90e26deadd0938652096bea3cc14899700","8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","18c04c22baee54d13b505fa6e8bcd4223f8ba32beee80ec70e6cac972d1cc9a6","e61df3640a38d535fd4bc9f4a53aef17c296b58dc4b6394fd576b808dd2fe5e6","44fe135be91bc8edc495350f79cd7a2e5a8b7a7108b10b2599a321b9248657dc","1d51250438f2071d2803053d9aec7973ef22dfffd80685a9ec5fb3fa082f4347","7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","b9261ac3e9944d3d72c5ee4cf888ad35d9743a5563405c6963c4e43ee3708ca4","c84fd54e8400def0d1ef1569cafd02e9f39a622df9fa69b57ccc82128856b916","c7a38c1ef8d6ae4bf252be67bd9a8b012b2cdea65bd6225a3d1a726c4f0d52b6","e773630f8772a06e82d97046fc92da59ada8414c61689894fff0155dd08f102c","edf7cf322a3f3e6ebca77217a96ed4480f5a7d8d0084f8b82f1c281c92780f3a","e97321edbef59b6f68839bcdfd5ae1949fe80d554d2546e35484a8d044a04444","96aed8ec4d342ec6ac69f0dcdfb064fd17b10cb13825580451c2cebbd556e965","106e607866d6c3e9a497a696ac949c3e2ec46b6e7dda35aabe76100bf740833b","28ffc4e76ad54f4b34933d78ff3f95b763accf074e8630a6d926f3fd5bbd8908","304af95fcace2300674c969700b39bc0ee05be536880daa844c64dc8f90ef482","3d65182eff7bbb16de1a69e17651c51083f740af11a1a92359be6dab939e8bcf","670ddaf1f1b881abaa1cc28236430d86b691affbeaefd66b3ee1db31fdfb8dba","77926a706478940016e826b162f95f8e4077b1ad3184b2592dc03bd8b33e0384","82e687ebd99518bc63ea04b0c3810fb6e50aa6942decd0ca6f7a56d9b9a212a6","7f698624bbbb060ece7c0e51b7236520ebada74b747d7523c7df376453ed6fea","8f07f2b6514744ac96e51d7cb8518c0f4de319471237ea10cf688b8d0e9d0225","5f826a7741bae0481f962be65537ac78460171934577728286e01b6eb48cc234","e01ea380015ed698c3c0e2ccd0db72f3fc3ef1abc4519f122aa1c1a8d419a505","9e2534be8a9338e750d24acc6076680d49b1643ae993c74510776a92af0c1604","09033524cc0d7429e7bbbcd04bb37614bfc4a5a060c742c6c2b2980794a98090","e3225dc0bec183183509d290f641786245e6652bc3dce755f7ef404060693c35","515a66150b58eeef4bf3a71be4a61b75ae31f694b520162f78ec93b59117413b","e6233e1c976265e85aa8ad76c3881febe6264cb06ae3136f0257e1eab4a6cc5a","3a07ebaeb3b96c1e7a5fc0588364a8e58c74efd63b62f64b34c33b01907dc320","b1e92c7f8608744a7e40c636f7096e98d0dafe2c36aa6ba31b5f5a6c22794e37","95d3e2ebf53761edfec9c112a515b29bc1439adb6562c4b8d0d93eb93b2ff824","7f8ea3140f0c2d102ff2d92ce2ce7fb33d1d209a851032332658a0dd081b0b8e","a0e40a10412a69609cbd9b157169c3011b080e66ef46a6370cd1d069a53eb52b","9a690435fa5e89ac3a0105d793c1ae21e1751ac2a912847de925107aabb9c9c0","9f3e99401b5bfdcb2ff75be940e02402b5c23cf8b4f8d0ba552c7d2d97c36568","0a8e4560349bb64da02e19e14b229d2daf82e5a5da5c4d33368d70d6876500bd","470227f0dbf6cfa642fc74d2049924a91c0358ecd6a07ea9701bd945d0b306ae","56c7d0f2c2e2d0c44f047db69846d41936a8706c4163bb2641505ff9c5656881","616ed39d373b24d4312cb915716d0e453081ba440f14da06f67394256905d06d",{"version":"48c411efce1848d1ed55de41d7deb93cbf7c04080912fd87aa517ed25ef42639","affectsGlobalScope":true},{"version":"439e490ee71c0dd2b4cb3240bb1f8b125bc006ca32f0e2a51a0fee038fe1cf10","affectsGlobalScope":true},"fe2d63fcfdde197391b6b70daf7be8c02a60afa90754a5f4a04bdc367f62793d","79ccd7091b71f299f2ca9c7eb085af231b010f88fb968e72faea46c4890761a5","de73dfd10ea0958b0176797963735ffd7b25a036314086cd67b51691a4334a94","83d63d0ede869e5c7e5659f678f6ae7082f2246e62b4640318da47e343137feb","c27b2e936643803a0bfe770db80987c2aecc4da566f4709524ffd84ff71c7ff8",{"version":"559ebd46e6cf5fcc7ff16bc0a8f01251acffb75d47fc6586aa1b1a500227471e","affectsGlobalScope":true},{"version":"81122a526ac3c1501347292e8a89af49f8d3305fe7911c1626ccfb3d9f1603d0","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","7852500a7dc3f9cb6b73d619f6e0249119211ea662fd5e16c59ee5aba3deeb80","1f68ab0e055994eb337b67aa87d2a15e0200951e9664959b3866ee6f6b11a0fe"],"root":[47,49,50,208],"options":{"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"jsx":2,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","sourceMap":true,"strict":true,"target":6,"tsBuildInfoFile":"./.tsbuildinfo"},"fileIdsList":[[151,211],[151,209,210],[63],[99],[100,105,134],[101,106,112,113,120,131,142],[101,102,112,120],[103,143],[104,105,113,121],[105,131,139],[106,108,112,120],[99,107],[108,109],[112],[110,112],[99,112],[112,113,114,131,142],[112,113,114,127,131,134],[97,100,147],[108,112,115,120,131,142],[112,113,115,116,120,131,139,142],[115,117,131,139,142],[63,64,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],[112,118],[119,142,147],[108,112,120,131],[121],[122],[99,123],[120,121,124,141,147],[125],[126],[112,127,128],[127,129,143,145],[100,112,131,132,133,134],[100,131,133],[131,132],[134],[135],[99,131],[112,137,138],[137,138],[105,120,131,139],[140],[120,141],[100,115,126,142],[105,143],[131,144],[119,145],[146],[100,105,112,114,123,131,142,145,147],[131,148],[55,56,59],[201],[56,57,59,60,61],[56],[56,57,59],[56,57],[183],[53,183],[53,183,184],[53,58],[51],[51,52,53,55],[53],[100,101,131],[174],[172,174],[163,171,172,173,175],[161],[164,169,174,177],[160,177],[164,165,168,169,170,177],[164,165,166,168,169,177],[161,162,163,164,165,169,170,171,173,174,175,177],[177],[159,161,162,163,164,165,166,168,169,170,171,172,173,174,175,176],[159,177],[164,166,167,169,170,177],[168,177],[169,170,174,177],[162,172],[152,181],[151],[159],[54],[74,78,142],[74,131,142],[69],[71,74,139,142],[120,139],[150],[69,150],[71,74,120,142],[66,67,70,73,100,112,131,142],[66,72],[70,74,100,134,142,150],[100,150],[90,100,150],[68,69,150],[74],[68,69,70,71,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,89,91,92,93,94,95,96],[74,81,82],[72,74,82,83],[73],[66,69,74],[74,78,82,83],[78],[72,74,77,142],[66,71,72,74,78,81],[100,131],[69,74,90,100,147,150],[188,189],[188],[182,188,189,199],[112,113,115,116,117,120,131,139,142,148,150,152,153,154,155,156,157,158,178,179,180,181],[154,155,156,157],[154,155,156],[154],[155],[152],[62,196,197,207],[53,62,185,186,207],[53,56,62,113,131,182,185,187,190,191,192,193,194,195,198,199,200,207],[62,196,197,198,207],[62,185,187,190,191,207],[147,204],[53,56,59,62,113,131,147,182,185,186,187,190,191,192,193,194,195,196,197,198,199,200,202,203,204,205,206,207],[122,124],[49],[49,207],[47,48]],"referencedMap":[[212,1],[211,2],[63,3],[64,3],[99,4],[100,5],[101,6],[102,7],[103,8],[104,9],[105,10],[106,11],[107,12],[108,13],[109,13],[111,14],[110,15],[112,16],[113,17],[114,18],[98,19],[115,20],[116,21],[117,22],[150,23],[118,24],[119,25],[120,26],[121,27],[122,28],[123,29],[124,30],[125,31],[126,32],[127,33],[128,33],[129,34],[131,35],[133,36],[132,37],[134,38],[135,39],[136,40],[137,41],[138,42],[139,43],[140,44],[141,45],[142,46],[143,47],[144,48],[145,49],[146,50],[147,51],[148,52],[201,53],[202,54],[62,55],[57,56],[60,57],[196,58],[186,59],[184,60],[185,61],[193,61],[59,62],[61,62],[52,63],[56,64],[195,63],[58,65],[48,66],[175,67],[173,68],[174,69],[162,70],[163,68],[170,71],[161,72],[166,73],[167,74],[172,75],[178,76],[177,77],[160,78],[168,79],[169,80],[164,81],[171,67],[165,82],[153,83],[152,84],[159,85],[55,86],[81,87],[88,88],[80,87],[95,89],[72,90],[71,91],[94,92],[89,93],[92,94],[74,95],[73,96],[69,97],[68,98],[91,99],[70,100],[75,101],[79,101],[97,102],[96,101],[83,103],[84,104],[86,105],[82,106],[85,107],[90,92],[77,108],[78,109],[87,110],[67,111],[93,112],[192,113],[189,114],[190,113],[194,115],[182,116],[179,117],[157,118],[155,119],[156,120],[181,121],[198,122],[187,123],[199,124],[203,125],[204,126],[206,127],[207,128],[47,129],[50,130],[208,131],[49,132]],"latestChangedDtsFile":"./pat.test.d.ts"},"version":"5.5.3"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const azureAuthCommand: () => string;
|
|
2
|
-
//# sourceMappingURL=
|
|
2
|
+
//# sourceMappingURL=azure-auth-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"azure-auth-command.d.ts","sourceRoot":"","sources":["../src/azure-auth-command.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,gBAAgB,cAQ5B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"azure-auth-command.js","sourceRoot":"","sources":["../src/azure-auth-command.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,WAAW,CAAC;AAC7B,OAAO,OAAO,MAAM,cAAc,CAAC;AAEnC,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;AAE/E,MAAM,CAAC,MAAM,gBAAgB,GAAG,GAAG,EAAE;IACnC,IAAI,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,EAAE,KAAK,EAAE,WAAW,EAAE,WAAW,CAAC,CAAC;IAE5E,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE,CAAC;QACjC,SAAS,GAAG,SAAS,GAAG,MAAM,CAAC;IACjC,CAAC;IAED,OAAO,SAAS,CAAC;AACnB,CAAC,CAAC"}
|
package/lib/pat.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pat.d.ts","sourceRoot":"","sources":["../src/pat.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,aAAa,GAAG;IAC1B,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG;IAC3B,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,cAAc,EAAE,MAAM,EAAE,CAAC;IACzB,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,EAAE,MAAM,CAAC;IACxB,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,eAAO,MAAM,IAAI,YAAa,aAAa,aA6B1C,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,GAAG,YACL,aAAa,KACrB,
|
|
1
|
+
{"version":3,"file":"pat.d.ts","sourceRoot":"","sources":["../src/pat.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,aAAa,GAAG;IAC1B,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG;IAC3B,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,cAAc,EAAE,MAAM,EAAE,CAAC;IACzB,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,EAAE,MAAM,CAAC;IACxB,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,eAAO,MAAM,IAAI,YAAa,aAAa,aA6B1C,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,GAAG,YACL,aAAa,KACrB,OAAO,CAAC,cAAc,GAAG,MAAM,CAcjC,CAAC"}
|
package/lib/pat.js
CHANGED
package/lib/pat.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pat.js","sourceRoot":"","sources":["../src/pat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAC;AAC9B,OAAO,EAAE,gBAAgB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"pat.js","sourceRoot":"","sources":["../src/pat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAC;AAC9B,OAAO,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAuB3D,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,OAAsB,EAAE,EAAE;IAC7C,MAAM,IAAI,GAAG;QACX,KAAK;QACL,KAAK;QACL,kBAAkB,OAAO,CAAC,UAAU,GAAG;QACvC,mBAAmB,OAAO,CAAC,YAAY,GAAG;QAC1C,mBAAmB,OAAO,CAAC,WAAW,GAAG;QACzC,GAAG,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,WAAW,KAAK,EAAE,CAAC;KACpD,CAAC;IAEF,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;QACnB,IAAI,CAAC,IAAI,CAAC,YAAY,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC;IAC1C,CAAC;SAAM,CAAC;QACN,IAAI,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;IAC7B,CAAC;IAED,IAAI,OAAO,CAAC,IAAI,EAAE,CAAC;QACjB,IAAI,CAAC,IAAI,CAAC,WAAW,OAAO,CAAC,IAAI,GAAG,CAAC,CAAC;IACxC,CAAC;IAED,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;QACnB,IAAI,CAAC,IAAI,CAAC,aAAa,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC;IAC5C,CAAC;IAED,IAAI,OAAO,CAAC,OAAO,EAAE,CAAC;QACpB,IAAI,CAAC,IAAI,CAAC,aAAa,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC;IAC5C,CAAC;IAED,OAAO,IAAI,CAAC;AACd,CAAC,CAAC;AAEF;;;;GAIG;AACH,MAAM,CAAC,MAAM,GAAG,GAAG,KAAK,EACtB,OAAsB,EACY,EAAE;IACpC,MAAM,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC;IAElC,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,KAAK,CAAC,gBAAgB,EAAE,EAAE,WAAW,CAAC,CAAC;QAE5D,IAAI,OAAO,CAAC,MAAM,KAAK,MAAM,EAAE,CAAC;YAC9B,OAAO,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,MAAM,CAAmB,CAAC;QACrD,CAAC;QAED,OAAO,MAAM,CAAC,MAAM,CAAC;IACvB,CAAC;IAAC,OAAO,KAAU,EAAE,CAAC;QACpB,MAAM,IAAI,KAAK,CAAC,yBAAyB,GAAG,KAAK,CAAC,OAAO,CAAC,CAAC;IAC7D,CAAC;AACH,CAAC,CAAC"}
|
package/lib/pat.test.js
CHANGED
package/lib/pat.test.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pat.test.js","sourceRoot":"","sources":["../src/pat.test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,UAAU,CAAC;AACrC,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,EAAE,EAAE,MAAM,QAAQ,CAAC;AAE1C,IAAI,CAAC,QAAQ,EAAE,KAAK,IAAI,EAAE;IACxB,EAAE,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,EAAE;QACpB,OAAO;YACL,KAAK,EAAE,GAAG,EAAE;gBACV,OAAO,OAAO,CAAC,OAAO,CAAC;oBACrB,MAAM,EAAE,SAAS;iBAClB,CAAC,CAAC;YACL,CAAC;SACF,CAAC;IACJ,CAAC,CAAC,CAAC;IAEH,MAAM,GAAG,GAAG,MAAM,GAAG,CAAC;QACpB,WAAW,EAAE,MAAM;QACnB,YAAY,EAAE,MAAM;QACpB,UAAU,EAAE,MAAM;QAClB,KAAK,EAAE,CAAC,MAAM,CAAC;KAChB,CAAC,CAAC;IAEH,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;AAC9B,CAAC,CAAC,CAAC;AAEH,IAAI,CAAC,aAAa,EAAE,GAAG,EAAE;IACvB,MAAM,WAAW,GAAG,IAAI,CAAC;QACvB,WAAW,EAAE,MAAM;QACnB,YAAY,EAAE,MAAM;QACpB,UAAU,EAAE,MAAM;QAClB,KAAK,EAAE,CAAC,MAAM,CAAC;KAChB,CAAC,CAAC;IAEH,MAAM,CAAC,WAAW,CAAC,CAAC,OAAO,CAAC;QAC1B,KAAK;QACL,KAAK;QACL,sBAAsB;QACtB,uBAAuB;QACvB,uBAAuB;QACvB,
|
|
1
|
+
{"version":3,"file":"pat.test.js","sourceRoot":"","sources":["../src/pat.test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,UAAU,CAAC;AACrC,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,EAAE,EAAE,MAAM,QAAQ,CAAC;AAE1C,IAAI,CAAC,QAAQ,EAAE,KAAK,IAAI,EAAE;IACxB,EAAE,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,EAAE;QACpB,OAAO;YACL,KAAK,EAAE,GAAG,EAAE;gBACV,OAAO,OAAO,CAAC,OAAO,CAAC;oBACrB,MAAM,EAAE,SAAS;iBAClB,CAAC,CAAC;YACL,CAAC;SACF,CAAC;IACJ,CAAC,CAAC,CAAC;IAEH,MAAM,GAAG,GAAG,MAAM,GAAG,CAAC;QACpB,WAAW,EAAE,MAAM;QACnB,YAAY,EAAE,MAAM;QACpB,UAAU,EAAE,MAAM;QAClB,KAAK,EAAE,CAAC,MAAM,CAAC;KAChB,CAAC,CAAC;IAEH,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;AAC9B,CAAC,CAAC,CAAC;AAEH,IAAI,CAAC,aAAa,EAAE,GAAG,EAAE;IACvB,MAAM,WAAW,GAAG,IAAI,CAAC;QACvB,WAAW,EAAE,MAAM;QACnB,YAAY,EAAE,MAAM;QACpB,UAAU,EAAE,MAAM;QAClB,KAAK,EAAE,CAAC,MAAM,CAAC;KAChB,CAAC,CAAC;IAEH,MAAM,CAAC,WAAW,CAAC,CAAC,OAAO,CAAC;QAC1B,KAAK;QACL,KAAK;QACL,sBAAsB;QACtB,uBAAuB;QACvB,uBAAuB;QACvB,cAAc;QACd,eAAe;KAChB,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,38 +1,41 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "azureauth",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"description": "node-azure auth wrapps the AzureAuth CLI wrapper for performing AAD Authentication",
|
|
5
|
-
"bin": {
|
|
6
|
-
"azureauth": "./cli.js"
|
|
7
|
-
},
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"node"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "azureauth",
|
|
3
|
+
"version": "0.4.7",
|
|
4
|
+
"description": "node-azure auth wrapps the AzureAuth CLI wrapper for performing AAD Authentication",
|
|
5
|
+
"bin": {
|
|
6
|
+
"azureauth": "./cli.js"
|
|
7
|
+
},
|
|
8
|
+
"repository": {
|
|
9
|
+
"url": "https://github.com/microsoft/ado-npm-auth"
|
|
10
|
+
},
|
|
11
|
+
"main": "lib/index.js",
|
|
12
|
+
"type": "module",
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "tsc",
|
|
15
|
+
"lint": "prettier --check src/**/*.ts ./cli.js",
|
|
16
|
+
"start": "tsc --watch",
|
|
17
|
+
"test": "vitest run src",
|
|
18
|
+
"postinstall": "node ./scripts/install.js"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"node",
|
|
22
|
+
"azureauth",
|
|
23
|
+
"aad",
|
|
24
|
+
"azure active directory",
|
|
25
|
+
"authentication"
|
|
26
|
+
],
|
|
27
|
+
"author": "Jonathan Creamer",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"decompress": "^4.2.1",
|
|
31
|
+
"execa": "^7.2.0",
|
|
32
|
+
"node-downloader-helper": "^2.1.9"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@types/node": "^20.12.7",
|
|
36
|
+
"prettier": "^3.2.5",
|
|
37
|
+
"typescript": "^5.4.5",
|
|
38
|
+
"vitest": "^2.0.5",
|
|
39
|
+
"vite": "^5.2.8"
|
|
40
|
+
}
|
|
41
|
+
}
|
package/scripts/install.js
CHANGED
|
@@ -1,135 +1,135 @@
|
|
|
1
|
-
import path from "path";
|
|
2
|
-
import fs from "fs";
|
|
3
|
-
import { DownloaderHelper } from "node-downloader-helper";
|
|
4
|
-
import decompress from "decompress";
|
|
5
|
-
import { fileURLToPath } from "url";
|
|
6
|
-
|
|
7
|
-
const __dirname = fileURLToPath(new URL(".", import.meta.url));
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
downloader.on("
|
|
14
|
-
downloader.on("
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
const
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
// https://github.com/AzureAD/microsoft-authentication-cli/releases/download
|
|
32
|
-
// https://github.com/AzureAD/microsoft-authentication-cli/releases/download
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
const
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
x64:
|
|
72
|
-
},
|
|
73
|
-
darwin: {
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
//
|
|
79
|
-
//
|
|
80
|
-
//
|
|
81
|
-
//
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
const url = `${AZUREAUTH_INFO.url}${AZUREAUTH_INFO.version}/${filename}`;
|
|
92
|
-
const distPath = path.join(OUTPUT_DIR, "azureauth");
|
|
93
|
-
const archivePath = path.join(OUTPUT_DIR, filename);
|
|
94
|
-
|
|
95
|
-
console.log(`Downloading azureauth from ${url}`);
|
|
96
|
-
try {
|
|
97
|
-
await download(url, OUTPUT_DIR);
|
|
98
|
-
} catch (err) {
|
|
99
|
-
throw new Error(`Download failed: ${err.message}`);
|
|
100
|
-
}
|
|
101
|
-
console.log(`Downloaded in ${OUTPUT_DIR}`);
|
|
102
|
-
|
|
103
|
-
// Make a dir to uncompress the zip or tar into
|
|
104
|
-
fs.mkdirSync(distPath, {
|
|
105
|
-
recursive: true,
|
|
106
|
-
});
|
|
107
|
-
|
|
108
|
-
const binaryPath = path.join(distPath, AZUREAUTH_NAME);
|
|
109
|
-
|
|
110
|
-
await decompress(archivePath, distPath);
|
|
111
|
-
|
|
112
|
-
if (fileExist(binaryPath)) {
|
|
113
|
-
fs.chmodSync(binaryPath, fs.constants.S_IXUSR || 0o100);
|
|
114
|
-
// Huan(202111): we need the read permission so that the build system can pack the node_modules/ folder,
|
|
115
|
-
// i.e. build with Heroku CI/CD, docker build, etc.
|
|
116
|
-
fs.chmodSync(binaryPath, 0o755);
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
console.log(`Unzipped in ${archivePath}`);
|
|
120
|
-
fs.unlinkSync(archivePath);
|
|
121
|
-
}
|
|
122
|
-
};
|
|
123
|
-
|
|
124
|
-
const MAX_RETRIES = 3;
|
|
125
|
-
for (let i = 0; i < MAX_RETRIES; i++) {
|
|
126
|
-
try {
|
|
127
|
-
await install();
|
|
128
|
-
break; // success, so exit the loop
|
|
129
|
-
} catch (err) {
|
|
130
|
-
console.log(`Install failed: ${err.message}`);
|
|
131
|
-
}
|
|
132
|
-
if (i === MAX_RETRIES - 1) {
|
|
133
|
-
throw new Error(`Install failed after ${MAX_RETRIES} attempts`);
|
|
134
|
-
}
|
|
135
|
-
}
|
|
1
|
+
import path from "path";
|
|
2
|
+
import fs from "fs";
|
|
3
|
+
import { DownloaderHelper } from "node-downloader-helper";
|
|
4
|
+
import decompress from "decompress";
|
|
5
|
+
import { fileURLToPath } from "url";
|
|
6
|
+
|
|
7
|
+
const __dirname = fileURLToPath(new URL(".", import.meta.url));
|
|
8
|
+
const AZURE_AUTH_VERSION = "0.8.4";
|
|
9
|
+
|
|
10
|
+
async function download(url, saveDirectory) {
|
|
11
|
+
const downloader = new DownloaderHelper(url, saveDirectory);
|
|
12
|
+
return new Promise((resolve, reject) => {
|
|
13
|
+
downloader.on("end", () => resolve());
|
|
14
|
+
downloader.on("error", (err) => reject(err));
|
|
15
|
+
downloader.on("progress.throttled", (downloadEvents) => {
|
|
16
|
+
const percentageComplete =
|
|
17
|
+
downloadEvents.progress < 100
|
|
18
|
+
? downloadEvents.progress.toPrecision(2)
|
|
19
|
+
: 100;
|
|
20
|
+
console.info(`Downloaded: ${percentageComplete}%`);
|
|
21
|
+
});
|
|
22
|
+
downloader.start();
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
const platform = process.platform;
|
|
27
|
+
const arch = process.arch;
|
|
28
|
+
|
|
29
|
+
const AZUREAUTH_INFO = {
|
|
30
|
+
name: "azureauth",
|
|
31
|
+
// https://github.com/AzureAD/microsoft-authentication-cli/releases/download/${AZUREAUTH_INFO.version}/azureauth-${AZUREAUTH_INFO.version}-osx-arm64.tar.gz
|
|
32
|
+
// https://github.com/AzureAD/microsoft-authentication-cli/releases/download/${AZUREAUTH_INFO.version}/azureauth-${AZUREAUTH_INFO.version}-osx-x64.tar.gz
|
|
33
|
+
// https://github.com/AzureAD/microsoft-authentication-cli/releases/download/${AZUREAUTH_INFO.version}/azureauth-${AZUREAUTH_INFO.version}-win10-x64.zip
|
|
34
|
+
url: "https://github.com/AzureAD/microsoft-authentication-cli/releases/download/",
|
|
35
|
+
version: AZURE_AUTH_VERSION,
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
const AZUREAUTH_NAME_MAP = {
|
|
39
|
+
def: "azureauth",
|
|
40
|
+
win32: "azureauth.exe",
|
|
41
|
+
linux: "azureauth.exe",
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
export const AZUREAUTH_NAME =
|
|
45
|
+
platform in AZUREAUTH_NAME_MAP
|
|
46
|
+
? AZUREAUTH_NAME_MAP[platform]
|
|
47
|
+
: AZUREAUTH_NAME_MAP.def;
|
|
48
|
+
|
|
49
|
+
export const install = async () => {
|
|
50
|
+
const OUTPUT_DIR = path.join(__dirname, "..", "bin");
|
|
51
|
+
const fileExist = (path) => {
|
|
52
|
+
try {
|
|
53
|
+
return fs.existsSync(path);
|
|
54
|
+
} catch (err) {
|
|
55
|
+
return false;
|
|
56
|
+
}
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
if (!fs.existsSync(OUTPUT_DIR)) {
|
|
60
|
+
fs.mkdirSync(OUTPUT_DIR, { recursive: true });
|
|
61
|
+
console.info(`${OUTPUT_DIR} directory was created`);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
if (fileExist(path.join(OUTPUT_DIR, "azureauth", AZUREAUTH_NAME))) {
|
|
65
|
+
console.log("azureauth is already installed");
|
|
66
|
+
return;
|
|
67
|
+
}
|
|
68
|
+
// if platform is missing, download source instead of executable
|
|
69
|
+
const DOWNLOAD_MAP = {
|
|
70
|
+
win32: {
|
|
71
|
+
x64: `azureauth-${AZUREAUTH_INFO.version}-win10-x64.zip`,
|
|
72
|
+
},
|
|
73
|
+
darwin: {
|
|
74
|
+
x64: `azureauth-${AZUREAUTH_INFO.version}-osx-x64.tar.gz`,
|
|
75
|
+
arm64: `azureauth-${AZUREAUTH_INFO.version}-osx-arm64.tar.gz`,
|
|
76
|
+
},
|
|
77
|
+
// TODO: support linux when the binaries are available
|
|
78
|
+
// linux: {
|
|
79
|
+
// def: "azureauth.exe",
|
|
80
|
+
// x64: "azureauth-${AZUREAUTH_INFO.version}-win10-x64.zip",
|
|
81
|
+
// },
|
|
82
|
+
};
|
|
83
|
+
if (platform in DOWNLOAD_MAP) {
|
|
84
|
+
// download the executable
|
|
85
|
+
let filename = "";
|
|
86
|
+
if (arch in DOWNLOAD_MAP[platform]) {
|
|
87
|
+
filename = DOWNLOAD_MAP[platform][arch];
|
|
88
|
+
} else {
|
|
89
|
+
throw new Error("Arch is not supported in azureauth");
|
|
90
|
+
}
|
|
91
|
+
const url = `${AZUREAUTH_INFO.url}${AZUREAUTH_INFO.version}/${filename}`;
|
|
92
|
+
const distPath = path.join(OUTPUT_DIR, "azureauth");
|
|
93
|
+
const archivePath = path.join(OUTPUT_DIR, filename);
|
|
94
|
+
|
|
95
|
+
console.log(`Downloading azureauth from ${url}`);
|
|
96
|
+
try {
|
|
97
|
+
await download(url, OUTPUT_DIR);
|
|
98
|
+
} catch (err) {
|
|
99
|
+
throw new Error(`Download failed: ${err.message}`);
|
|
100
|
+
}
|
|
101
|
+
console.log(`Downloaded in ${OUTPUT_DIR}`);
|
|
102
|
+
|
|
103
|
+
// Make a dir to uncompress the zip or tar into
|
|
104
|
+
fs.mkdirSync(distPath, {
|
|
105
|
+
recursive: true,
|
|
106
|
+
});
|
|
107
|
+
|
|
108
|
+
const binaryPath = path.join(distPath, AZUREAUTH_NAME);
|
|
109
|
+
|
|
110
|
+
await decompress(archivePath, distPath);
|
|
111
|
+
|
|
112
|
+
if (fileExist(binaryPath)) {
|
|
113
|
+
fs.chmodSync(binaryPath, fs.constants.S_IXUSR || 0o100);
|
|
114
|
+
// Huan(202111): we need the read permission so that the build system can pack the node_modules/ folder,
|
|
115
|
+
// i.e. build with Heroku CI/CD, docker build, etc.
|
|
116
|
+
fs.chmodSync(binaryPath, 0o755);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
console.log(`Unzipped in ${archivePath}`);
|
|
120
|
+
fs.unlinkSync(archivePath);
|
|
121
|
+
}
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
const MAX_RETRIES = 3;
|
|
125
|
+
for (let i = 0; i < MAX_RETRIES; i++) {
|
|
126
|
+
try {
|
|
127
|
+
await install();
|
|
128
|
+
break; // success, so exit the loop
|
|
129
|
+
} catch (err) {
|
|
130
|
+
console.log(`Install failed: ${err.message}`);
|
|
131
|
+
}
|
|
132
|
+
if (i === MAX_RETRIES - 1) {
|
|
133
|
+
throw new Error(`Install failed after ${MAX_RETRIES} attempts`);
|
|
134
|
+
}
|
|
135
|
+
}
|
package/tsconfig.json
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"module": "ESNext",
|
|
4
|
-
"composite": true,
|
|
5
|
-
"target": "ES2019",
|
|
6
|
-
"rootDir": "src",
|
|
7
|
-
"outDir": "lib",
|
|
8
|
-
"incremental": true,
|
|
9
|
-
"tsBuildInfoFile": "lib/.tsbuildinfo",
|
|
10
|
-
"lib": ["ES2019", "dom"],
|
|
11
|
-
"jsx": "react",
|
|
12
|
-
"declaration": true,
|
|
13
|
-
"declarationMap": true,
|
|
14
|
-
"sourceMap": true,
|
|
15
|
-
"experimentalDecorators": true,
|
|
16
|
-
"moduleResolution": "
|
|
17
|
-
"strict": true,
|
|
18
|
-
"noFallthroughCasesInSwitch": true,
|
|
19
|
-
"noImplicitReturns": true,
|
|
20
|
-
"noUnusedLocals": true,
|
|
21
|
-
"noUnusedParameters": true,
|
|
22
|
-
"forceConsistentCasingInFileNames": true,
|
|
23
|
-
"importHelpers": true,
|
|
24
|
-
"esModuleInterop": true,
|
|
25
|
-
"downlevelIteration": true
|
|
26
|
-
},
|
|
27
|
-
"include": ["./src"],
|
|
28
|
-
"references": []
|
|
29
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"module": "ESNext",
|
|
4
|
+
"composite": true,
|
|
5
|
+
"target": "ES2019",
|
|
6
|
+
"rootDir": "src",
|
|
7
|
+
"outDir": "lib",
|
|
8
|
+
"incremental": true,
|
|
9
|
+
"tsBuildInfoFile": "lib/.tsbuildinfo",
|
|
10
|
+
"lib": ["ES2019", "dom"],
|
|
11
|
+
"jsx": "react",
|
|
12
|
+
"declaration": true,
|
|
13
|
+
"declarationMap": true,
|
|
14
|
+
"sourceMap": true,
|
|
15
|
+
"experimentalDecorators": true,
|
|
16
|
+
"moduleResolution": "bundler",
|
|
17
|
+
"strict": true,
|
|
18
|
+
"noFallthroughCasesInSwitch": true,
|
|
19
|
+
"noImplicitReturns": true,
|
|
20
|
+
"noUnusedLocals": true,
|
|
21
|
+
"noUnusedParameters": true,
|
|
22
|
+
"forceConsistentCasingInFileNames": true,
|
|
23
|
+
"importHelpers": true,
|
|
24
|
+
"esModuleInterop": true,
|
|
25
|
+
"downlevelIteration": true
|
|
26
|
+
},
|
|
27
|
+
"include": ["./src"],
|
|
28
|
+
"references": []
|
|
29
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"azureAuthCommand.d.ts","sourceRoot":"","sources":["../src/azureAuthCommand.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,gBAAgB,cAQ5B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"azureAuthCommand.js","sourceRoot":"","sources":["../src/azureAuthCommand.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,WAAW,CAAC;AAC7B,OAAO,OAAO,MAAM,cAAc,CAAC;AAEnC,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;AAE/E,MAAM,CAAC,MAAM,gBAAgB,GAAG,GAAG,EAAE;IACnC,IAAI,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,EAAE,KAAK,EAAE,WAAW,EAAE,WAAW,CAAC,CAAC;IAE5E,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;QAChC,SAAS,GAAG,SAAS,GAAG,MAAM,CAAC;KAChC;IAED,OAAO,SAAS,CAAC;AACnB,CAAC,CAAC"}
|