@toa.io/extensions.exposition 1.0.0-alpha.125 → 1.0.0-alpha.127
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/components/identity.basic/operations/tsconfig.tsbuildinfo +1 -1
- package/components/identity.federation/operations/incept.d.ts +2 -3
- package/components/identity.federation/operations/incept.js.map +1 -1
- package/components/identity.federation/operations/tsconfig.tsbuildinfo +1 -1
- package/components/identity.federation/source/incept.ts +5 -5
- package/components/identity.keys/manifest.toa.yaml +3 -0
- package/components/identity.keys/operations/tsconfig.tsbuildinfo +1 -1
- package/components/identity.passkeys/manifest.toa.yaml +263 -0
- package/components/identity.passkeys/operations/authenticate.d.ts +16 -0
- package/components/identity.passkeys/operations/authenticate.js +34 -0
- package/components/identity.passkeys/operations/authenticate.js.map +1 -0
- package/components/identity.passkeys/operations/challenge.d.ts +31 -0
- package/components/identity.passkeys/operations/challenge.js +61 -0
- package/components/identity.passkeys/operations/challenge.js.map +1 -0
- package/components/identity.passkeys/operations/create.d.ts +17 -0
- package/components/identity.passkeys/operations/create.js +52 -0
- package/components/identity.passkeys/operations/create.js.map +1 -0
- package/components/identity.passkeys/operations/delete.d.ts +8 -0
- package/components/identity.passkeys/operations/delete.js +12 -0
- package/components/identity.passkeys/operations/delete.js.map +1 -0
- package/components/identity.passkeys/operations/lib/const.d.ts +1 -0
- package/components/identity.passkeys/operations/lib/const.js +5 -0
- package/components/identity.passkeys/operations/lib/const.js.map +1 -0
- package/components/identity.passkeys/operations/list.d.ts +7 -0
- package/components/identity.passkeys/operations/list.js +15 -0
- package/components/identity.passkeys/operations/list.js.map +1 -0
- package/components/identity.passkeys/operations/tsconfig.tsbuildinfo +1 -0
- package/components/identity.passkeys/operations/types/Configuration.d.ts +6 -0
- package/components/identity.passkeys/operations/types/Configuration.js +3 -0
- package/components/identity.passkeys/operations/types/Configuration.js.map +1 -0
- package/components/identity.passkeys/operations/types/Context.d.ts +16 -0
- package/components/identity.passkeys/operations/types/Context.js +3 -0
- package/components/identity.passkeys/operations/types/Context.js.map +1 -0
- package/components/identity.passkeys/operations/types/Passkey.d.ts +13 -0
- package/components/identity.passkeys/operations/types/Passkey.js +3 -0
- package/components/identity.passkeys/operations/types/Passkey.js.map +1 -0
- package/components/identity.passkeys/operations/types/index.d.ts +2 -0
- package/components/identity.passkeys/operations/types/index.js +3 -0
- package/components/identity.passkeys/operations/types/index.js.map +1 -0
- package/components/identity.passkeys/operations/use.d.ts +14 -0
- package/components/identity.passkeys/operations/use.js +52 -0
- package/components/identity.passkeys/operations/use.js.map +1 -0
- package/components/identity.passkeys/source/authenticate.ts +48 -0
- package/components/identity.passkeys/source/challenge.ts +97 -0
- package/components/identity.passkeys/source/create.ts +71 -0
- package/components/identity.passkeys/source/delete.ts +15 -0
- package/components/identity.passkeys/source/lib/const.ts +1 -0
- package/components/identity.passkeys/source/list.ts +17 -0
- package/components/identity.passkeys/source/types/Configuration.ts +6 -0
- package/components/identity.passkeys/source/types/Context.ts +17 -0
- package/components/identity.passkeys/source/types/Passkey.ts +14 -0
- package/components/identity.passkeys/source/types/index.ts +2 -0
- package/components/identity.passkeys/source/use.ts +70 -0
- package/components/identity.passkeys/tsconfig.json +9 -0
- package/components/identity.roles/operations/tsconfig.tsbuildinfo +1 -1
- package/components/identity.tokens/manifest.toa.yaml +0 -1
- package/components/identity.tokens/operations/issue.d.ts +1 -1
- package/components/identity.tokens/operations/issue.js +4 -3
- package/components/identity.tokens/operations/issue.js.map +1 -1
- package/components/identity.tokens/operations/tsconfig.tsbuildinfo +1 -1
- package/components/identity.tokens/source/issue.ts +6 -4
- package/documentation/identity.md +33 -0
- package/documentation/passkeys.md +4 -0
- package/features/auth.issue.feature +34 -0
- package/features/passkeys.feature +27 -0
- package/features/steps/components/echo/manifest.toa.yaml +3 -0
- package/features/steps/components/echo/operations/echo.js +7 -0
- package/package.json +7 -5
- package/source/Endpoint.ts +2 -1
- package/source/directives/auth/Authorization.ts +3 -0
- package/source/directives/auth/Issue.ts +45 -0
- package/transpiled/Endpoint.js +2 -1
- package/transpiled/Endpoint.js.map +1 -1
- package/transpiled/directives/auth/Authorization.js +3 -1
- package/transpiled/directives/auth/Authorization.js.map +1 -1
- package/transpiled/directives/auth/Issue.d.ts +10 -0
- package/transpiled/directives/auth/Issue.js +38 -0
- package/transpiled/directives/auth/Issue.js.map +1 -0
- package/transpiled/tsconfig.tsbuildinfo +1 -1
|
@@ -13,9 +13,10 @@ class Effect {
|
|
|
13
13
|
this.lifetime = context.configuration.lifetime * 1000;
|
|
14
14
|
}
|
|
15
15
|
async execute(input) {
|
|
16
|
-
const
|
|
16
|
+
const lifetime = input.lifetime ?? this.lifetime;
|
|
17
|
+
const expires = lifetime === 0
|
|
17
18
|
? undefined
|
|
18
|
-
: new Date(Date.now() +
|
|
19
|
+
: new Date(Date.now() + lifetime * 1000).getTime();
|
|
19
20
|
const key = await this.keys.create({
|
|
20
21
|
input: {
|
|
21
22
|
identity: input.identity,
|
|
@@ -33,7 +34,7 @@ class Effect {
|
|
|
33
34
|
id: input.identity,
|
|
34
35
|
roles
|
|
35
36
|
};
|
|
36
|
-
const { authority,
|
|
37
|
+
const { authority, scopes, permissions } = input;
|
|
37
38
|
const token = await this.encrypt({
|
|
38
39
|
input: {
|
|
39
40
|
authority,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"issue.js","sourceRoot":"","sources":["../source/issue.ts"],"names":[],"mappings":";;;AAGA,MAAa,MAAM;IACT,IAAI,CAAwC;IAC5C,KAAK,CAAyC;IAC9C,OAAO,CAA8B;IACrC,QAAQ,CAAS;IAElB,KAAK,CAAE,OAAgB;QAC5B,IAAI,CAAC,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAA;QACxC,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAA;QAC1C,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,KAAK,CAAC,OAAO,CAAA;QACpC,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,aAAa,CAAC,QAAQ,GAAG,IAAI,CAAA;IACvD,CAAC;IAEM,KAAK,CAAC,OAAO,CAAE,KAAY;QAChC,MAAM,
|
|
1
|
+
{"version":3,"file":"issue.js","sourceRoot":"","sources":["../source/issue.ts"],"names":[],"mappings":";;;AAGA,MAAa,MAAM;IACT,IAAI,CAAwC;IAC5C,KAAK,CAAyC;IAC9C,OAAO,CAA8B;IACrC,QAAQ,CAAS;IAElB,KAAK,CAAE,OAAgB;QAC5B,IAAI,CAAC,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAA;QACxC,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAA;QAC1C,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,KAAK,CAAC,OAAO,CAAA;QACpC,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,aAAa,CAAC,QAAQ,GAAG,IAAI,CAAA;IACvD,CAAC;IAEM,KAAK,CAAC,OAAO,CAAE,KAAY;QAChC,MAAM,QAAQ,GAAG,KAAK,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAA;QAEhD,MAAM,OAAO,GAAG,QAAQ,KAAK,CAAC;YAC5B,CAAC,CAAC,SAAS;YACX,CAAC,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,QAAQ,GAAG,IAAI,CAAC,CAAC,OAAO,EAAE,CAAA;QAEpD,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC;YACjC,KAAK,EAAE;gBACL,QAAQ,EAAE,KAAK,CAAC,QAAQ;gBACxB,KAAK,EAAE,KAAK,CAAC,KAAK;gBAClB,OAAO;aACR;SACF,CAAC,CAAA;QAEF,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;YAClC,KAAK,EAAE;gBACL,QAAQ,EAAE,aAAa,KAAK,CAAC,QAAQ,EAAE;gBACvC,KAAK,EAAE,IAAI;aACZ;SACF,CAAC,CAAA;QAEF,MAAM,QAAQ,GAAa;YACzB,EAAE,EAAE,KAAK,CAAC,QAAQ;YAClB,KAAK;SACN,CAAA;QAED,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,WAAW,EAAE,GAAG,KAAK,CAAA;QAEhD,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC;YAC/B,KAAK,EAAE;gBACL,SAAS;gBACT,QAAQ;gBACR,QAAQ;gBACR,MAAM;gBACN,WAAW;gBACX,GAAG;aACJ;SACF,CAAC,CAAA;QAEF,IAAI,KAAK,YAAY,KAAK;YACxB,OAAO,KAAK,CAAA;QAEd,OAAO;YACL,GAAG,EAAE,GAAG,CAAC,EAAE;YACX,iDAAiD;YACjD,GAAG,CAAC,OAAO,KAAK,SAAS,IAAI,EAAE,GAAG,EAAE,OAAO,EAAE,CAAC;YAC9C,KAAK;SACN,CAAA;IACH,CAAC;CACF;AA/DD,wBA+DC"}
|
|
@@ -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.es2021.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../../node_modules/typescript/lib/lib.scripthost.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.date.d.ts","../../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.full.d.ts","../../../../../node_modules/error-value/transpiled/Err.d.ts","../../../../../types/source/call.d.ts","../../../../../types/source/operation.d.ts","../../../../../types/source/index.d.ts","../source/lib/pad.ts","../source/lib/types.ts","../source/lib/index.ts","../source/authenticate.ts","../../../../../node_modules/@types/node/assert.d.ts","../../../../../node_modules/@types/node/assert/strict.d.ts","../../../../../node_modules/buffer/index.d.ts","../../../../../node_modules/undici-types/header.d.ts","../../../../../node_modules/undici-types/readable.d.ts","../../../../../node_modules/undici-types/file.d.ts","../../../../../node_modules/undici-types/fetch.d.ts","../../../../../node_modules/undici-types/formdata.d.ts","../../../../../node_modules/undici-types/connector.d.ts","../../../../../node_modules/undici-types/client.d.ts","../../../../../node_modules/undici-types/errors.d.ts","../../../../../node_modules/undici-types/dispatcher.d.ts","../../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../../node_modules/undici-types/global-origin.d.ts","../../../../../node_modules/undici-types/pool-stats.d.ts","../../../../../node_modules/undici-types/pool.d.ts","../../../../../node_modules/undici-types/handlers.d.ts","../../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../../node_modules/undici-types/agent.d.ts","../../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../../node_modules/undici-types/mock-agent.d.ts","../../../../../node_modules/undici-types/mock-client.d.ts","../../../../../node_modules/undici-types/mock-pool.d.ts","../../../../../node_modules/undici-types/mock-errors.d.ts","../../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../../node_modules/undici-types/api.d.ts","../../../../../node_modules/undici-types/cookies.d.ts","../../../../../node_modules/undici-types/patch.d.ts","../../../../../node_modules/undici-types/filereader.d.ts","../../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../../node_modules/undici-types/websocket.d.ts","../../../../../node_modules/undici-types/content-type.d.ts","../../../../../node_modules/undici-types/cache.d.ts","../../../../../node_modules/undici-types/interceptors.d.ts","../../../../../node_modules/undici-types/index.d.ts","../../../../../node_modules/@types/node/globals.d.ts","../../../../../node_modules/@types/node/async_hooks.d.ts","../../../../../node_modules/@types/node/buffer.d.ts","../../../../../node_modules/@types/node/child_process.d.ts","../../../../../node_modules/@types/node/cluster.d.ts","../../../../../node_modules/@types/node/console.d.ts","../../../../../node_modules/@types/node/constants.d.ts","../../../../../node_modules/@types/node/crypto.d.ts","../../../../../node_modules/@types/node/dgram.d.ts","../../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../../node_modules/@types/node/dns.d.ts","../../../../../node_modules/@types/node/dns/promises.d.ts","../../../../../node_modules/@types/node/domain.d.ts","../../../../../node_modules/@types/node/dom-events.d.ts","../../../../../node_modules/@types/node/events.d.ts","../../../../../node_modules/@types/node/fs.d.ts","../../../../../node_modules/@types/node/fs/promises.d.ts","../../../../../node_modules/@types/node/http.d.ts","../../../../../node_modules/@types/node/http2.d.ts","../../../../../node_modules/@types/node/https.d.ts","../../../../../node_modules/@types/node/inspector.d.ts","../../../../../node_modules/@types/node/module.d.ts","../../../../../node_modules/@types/node/net.d.ts","../../../../../node_modules/@types/node/os.d.ts","../../../../../node_modules/@types/node/path.d.ts","../../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../../node_modules/@types/node/process.d.ts","../../../../../node_modules/@types/node/punycode.d.ts","../../../../../node_modules/@types/node/querystring.d.ts","../../../../../node_modules/@types/node/readline.d.ts","../../../../../node_modules/@types/node/readline/promises.d.ts","../../../../../node_modules/@types/node/repl.d.ts","../../../../../node_modules/@types/node/stream.d.ts","../../../../../node_modules/@types/node/stream/promises.d.ts","../../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../../node_modules/@types/node/stream/web.d.ts","../../../../../node_modules/@types/node/string_decoder.d.ts","../../../../../node_modules/@types/node/test.d.ts","../../../../../node_modules/@types/node/timers.d.ts","../../../../../node_modules/@types/node/timers/promises.d.ts","../../../../../node_modules/@types/node/tls.d.ts","../../../../../node_modules/@types/node/trace_events.d.ts","../../../../../node_modules/@types/node/tty.d.ts","../../../../../node_modules/@types/node/url.d.ts","../../../../../node_modules/@types/node/util.d.ts","../../../../../node_modules/@types/node/v8.d.ts","../../../../../node_modules/@types/node/vm.d.ts","../../../../../node_modules/@types/node/wasi.d.ts","../../../../../node_modules/@types/node/worker_threads.d.ts","../../../../../node_modules/@types/node/zlib.d.ts","../../../../../node_modules/@types/node/globals.global.d.ts","../../../../../node_modules/@types/node/index.d.ts","../../../../../node_modules/paseto/types/index.d.ts","../../../../../node_modules/lru-cache/dist/commonjs/index.d.ts","../source/decrypt.ts","../source/encrypt.ts","../source/issue.ts","../source/revoke.ts","../../../../../node_modules/@babel/types/lib/index.d.ts","../../../../../node_modules/@types/babel__generator/index.d.ts","../../../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../../node_modules/@types/babel__template/index.d.ts","../../../../../node_modules/@types/babel__traverse/index.d.ts","../../../../../node_modules/@types/babel__core/index.d.ts","../../../../../node_modules/@types/bcryptjs/index.d.ts","../../../../../node_modules/@types/caseless/index.d.ts","../../../../../node_modules/@types/conventional-commits-parser/index.d.ts","../../../../../node_modules/@types/cors/index.d.ts","../../../../../node_modules/@types/duplexify/index.d.ts","../../../../../node_modules/@types/graceful-fs/index.d.ts","../../../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../../../node_modules/@types/istanbul-reports/index.d.ts","../../../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../../../node_modules/jest-matcher-utils/node_modules/chalk/index.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/jest-matcher-utils/node_modules/jest-diff/build/index.d.ts","../../../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../../../node_modules/expect/build/index.d.ts","../../../../../node_modules/@types/jest/index.d.ts","../../../../../node_modules/@types/js-yaml/index.d.ts","../../../../../node_modules/@types/json-schema/index.d.ts","../../../../../node_modules/@types/json5/index.d.ts","../../../../../node_modules/@types/long/index.d.ts","../../../../../node_modules/@types/minimatch/index.d.ts","../../../../../node_modules/@types/minimist/index.d.ts","../../../../../node_modules/@types/negotiator/index.d.ts","../../../../../node_modules/@types/normalize-package-data/index.d.ts","../../../../../node_modules/@types/randomstring/index.d.ts","../../../../../node_modules/@types/request/node_modules/form-data/index.d.ts","../../../../../node_modules/@types/tough-cookie/index.d.ts","../../../../../node_modules/@types/request/index.d.ts","../../../../../node_modules/@types/semver/classes/semver.d.ts","../../../../../node_modules/@types/semver/functions/parse.d.ts","../../../../../node_modules/@types/semver/functions/valid.d.ts","../../../../../node_modules/@types/semver/functions/clean.d.ts","../../../../../node_modules/@types/semver/functions/inc.d.ts","../../../../../node_modules/@types/semver/functions/diff.d.ts","../../../../../node_modules/@types/semver/functions/major.d.ts","../../../../../node_modules/@types/semver/functions/minor.d.ts","../../../../../node_modules/@types/semver/functions/patch.d.ts","../../../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../../../node_modules/@types/semver/functions/compare.d.ts","../../../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../../../node_modules/@types/semver/functions/sort.d.ts","../../../../../node_modules/@types/semver/functions/rsort.d.ts","../../../../../node_modules/@types/semver/functions/gt.d.ts","../../../../../node_modules/@types/semver/functions/lt.d.ts","../../../../../node_modules/@types/semver/functions/eq.d.ts","../../../../../node_modules/@types/semver/functions/neq.d.ts","../../../../../node_modules/@types/semver/functions/gte.d.ts","../../../../../node_modules/@types/semver/functions/lte.d.ts","../../../../../node_modules/@types/semver/functions/cmp.d.ts","../../../../../node_modules/@types/semver/functions/coerce.d.ts","../../../../../node_modules/@types/semver/classes/comparator.d.ts","../../../../../node_modules/@types/semver/classes/range.d.ts","../../../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../../../node_modules/@types/semver/ranges/valid.d.ts","../../../../../node_modules/@types/semver/ranges/outside.d.ts","../../../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../../../node_modules/@types/semver/ranges/subset.d.ts","../../../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../../../node_modules/@types/semver/index.d.ts","../../../../../node_modules/@types/ssh2-streams/index.d.ts","../../../../../node_modules/@types/ssh2/index.d.ts","../../../../../node_modules/@types/stack-utils/index.d.ts","../../../../../node_modules/@types/uuid/index.d.ts","../../../../../node_modules/@types/webidl-conversions/index.d.ts","../../../../../node_modules/@types/whatwg-url/index.d.ts","../../../../../node_modules/@types/yargs-parser/index.d.ts","../../../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","bed7b7ba0eb5a160b69af72814b4dde371968e40b6c5e73d3a9f7bee407d158c",{"version":"21e41a76098aa7a191028256e52a726baafd45a925ea5cf0222eb430c96c1d83","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"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":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"62a4966981264d1f04c44eb0f4b5bdc3d81c1a54725608861e44755aa24ad6a5","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"86a34c7a13de9cabc43161348f663624b56871ed80986e41d214932ddd8d6719","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"4350e5922fecd4bedda2964d69c213a1436349d0b8d260dd902795f5b94dc74b","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"fd1adc28ce106d6b5f7204355726a7ec922191ad5a8cc1a01841cbf9df9a7e64","c50d2079e21d1e3695d7e5bcb9fa6e7599ea344e00fe562954faad5b7288922b","32a12f72ca1f60f82e57ee13c731dd3e38190adbcfeeed00933daa75781dbdd0","50ffb91d1ad1e8952b9f9ba82628d988aa6e6c4cd3efecbba968a15350dc3e41","aa7592c03c7a724e3bccea35e7270b4efc2b48ca4f1d709bff1fb52b8fd0affb",{"version":"5ea763a470ca8b0910dabcf302a7303d13c088652c894ddc41d320901b3b2b55","signature":"44b2b3c2f6ea8dfe3e7d4631bda5b231c751323e4d9393474368c17c82b099de"},{"version":"9dbef2e609ebcfb6bc1e8295d0dd4001ada79f1bf053542eebb2adadcce63965","signature":"33aabd9356af7c2c3332befbcee01a2d92142ecc1d1784db2d1c5cb53427ff98"},{"version":"7a92eef7e2ba74599904b2abadd2032dafab1947336e45efc543f034edc58101","signature":"1db6f7ccdce60943287ae50dfda671dd0c40dfe40b77d8cdac2408e62a827079"},{"version":"2a74ccdeeb5424397a08ac5009a83cb65fbd007f409543d374cfaf4437a6b256","signature":"2fa87a075c0116d84e118a9f66c034590d401d288695b5724af495a1680fbb01"},"09df3b4f1c937f02e7fee2836d4c4d7a63e66db70fd4d4e97126f4542cc21d9d","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":"4d719cfab49ae4045d15cb6bed0f38ad3d7d6eb7f277d2603502a0f862ca3182","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"5a856afb15f9dc9983faa391dde989826995a33983c1cccb173e9606688e9709","affectsGlobalScope":true},"546ab07e19116d935ad982e76a223275b53bff7771dab94f433b7ab04652936e","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"aefb5a4a209f756b580eb53ea771cca8aad411603926f307a5e5b8ec6b16dcf6","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","f5a8b7ec4b798c88679194a8ebc25dcb6f5368e6e5811fcda9fe12b0d445b8db","b86e1a45b29437f3a99bad4147cb9fe2357617e8008c0484568e5bb5138d6e13","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","42c431e7965b641106b5e25ab3283aa4865ca7bb9909610a2abfa6226e4348be","0b7e732af0a9599be28c091d6bd1cb22c856ec0d415d4749c087c3881ca07a56","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"8d6138a264ddc6f94f16e99d4e117a2d6eb31b217891cf091b6437a2f114d561","affectsGlobalScope":true},"3b4c85eea12187de9929a76792b98406e8778ce575caca8c574f06da82622c54","f788131a39c81e0c9b9e463645dd7132b5bc1beb609b0e31e5c1ceaea378b4df","0c236069ce7bded4f6774946e928e4b3601894d294054af47a553f7abcafe2c1","21894466693f64957b9bd4c80fa3ec7fdfd4efa9d1861e070aca23f10220c9b2","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"6ec93c745c5e3e25e278fa35451bf18ef857f733de7e57c15e7920ac463baa2a","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","30c2ec6abf6aaa60eb4f32fb1235531506b7961c6d1bdc7430711aec8fd85295","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"308b84e1943ef30015469770e931eb21b795348893b2a6562ca54ea8f0b3c41c","affectsGlobalScope":true},{"version":"d48009cbe8a30a504031cc82e1286f78fed33b7a42abf7602c23b5547b382563","affectsGlobalScope":true},"7aaeb5e62f90e1b2be0fc4844df78cdb1be15c22b427bc6c39d57308785b8f10","3ba30205a029ebc0c91d7b1ab4da73f6277d730ca1fc6692d5a9144c6772c76b","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","458b216959c231df388a5de9dcbcafd4b4ca563bc3784d706d0455467d7d4942","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"24ba151e213906027e2b1f5223d33575a3612b0234a0e2b56119520bbe0e594b","affectsGlobalScope":true},{"version":"cbf046714f3a3ba2544957e1973ac94aa819fa8aa668846fa8de47eb1c41b0b2","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eae74e3d50820f37c72c0679fed959cd1e63c98f6a146a55b8c4361582fa6a52","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"aed89e3c18f4c659ee8153a76560dffda23e2d801e1e60d7a67abd84bc555f8d","affectsGlobalScope":true},{"version":"0ed13c80faeb2b7160bffb4926ff299c468e67a37a645b3ae0917ba0db633c1b","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","2f940651c2f30e6b29f8743fae3f40b7b1c03615184f837132b56ea75edad08b","5749c327c3f789f658072f8340786966c8b05ea124a56c1d8d60e04649495a4d",{"version":"c9d62b2a51b2ff166314d8be84f6881a7fcbccd37612442cf1c70d27d5352f50","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","32d61a332bb5c7ed9fbc4ebd4edf127278236379da8b2284403db670225f594a","623c392f985d35154de5dee5fc4275fbafd281832043a5c5005b032b20ad716a",{"version":"3b1e806b2c6c06e839fb82f7db2f15997afbadd08fc6597df5d042ce71462d95","signature":"e3a3416f58fc23050f23be81eda2449997e3c4687a923669c000caf8ff73bfdf"},{"version":"3208c971f471bcbbd083e1377b76ac1539cf841e3bd1b7a475ccf7c43380b941","signature":"afc48f1a48332393863546ffb9e213cec9f5d7eda5c6b0aeb452b58ba5d52abe"},{"version":"a8d66f6a92dc7dda74d2e83f6d6a37f11c0e7ed1b5fdf48100c580d3a585cc19","signature":"e63144b3a18ccbad9809657b63a8daa44e504c6b2934dd43b397fb8d494c3a1c"},{"version":"c3525dc7407e8d8c05225619df4d430b2e0c8b723d55d777365d3abab3d8b931","signature":"3ce75be518520698888da5251a15a58141dccb46fdfe8a768d6042cf42065c7a"},"7983487d0fbefb9b6ccc94390e8c826328d87e21cd4a62ea5b4c6b8f99f32550","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","5f02abbb1b17e3d1e68c5eea14adf4705696e6255e2982b010c0dc2a5417b606","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","dbe8bd931d343b9804d5398afb6dd6d6728975b2e23a3314bc4911f81c5e5a33","2174e20517788d2a1379fc0aaacd87899a70f9e0197b4295edabfe75c4db03d8","f96f3c445afc7d65d4790386e37c5b57f095f285cc89b8315b209fe0c81837c1","efdced704bd09db6984a2a26e3573bc43cdc2379bdef3bcff6cff77efe8ba82b","f6e4d465828539e051c5c1a40ee835fd954ce5cfc45de8e31ac1561bad5d947b","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","d7dbe0ad36bdca8a6ecf143422a48e72cc8927bab7b23a1a2485c2f78a7022c6","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"b2fdcc3836d425833af10e536ae5491c34e218bc71870f12a401720f874b6ce4","affectsGlobalScope":true},"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","0e60e0cbf2283adfd5a15430ae548cd2f662d581b5da6ecd98220203e7067c70","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318","f4694959db84d3792ca4d4e04c0bc157c4d28627cb0406c9236351f261a3f5e0","22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592",{"version":"4698841dc5a91fe716dd41ec7136867bbde9a274ce21031e5ef6ce2d8a552ceb","affectsGlobalScope":true},"e91ad231af87f864b3f07cd0e39b1cf6c133988156f087c1c3ccb0a5491c9115","03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","319c37263037e8d9481a3dc7eadf6afa6a5f5c002189ebe28776ac1a62a38e15","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4","7abf54763b6709a2b72ecd1247c3cfe96f8c44fe6e7ce3897951ee8f4c394640","85976d1088db28912f61f76fd68103dd3625480f5ad5ba4c98519a81693ef717","ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956","5bba0e6cd8375fd37047e99a080d1bd9a808c95ecb7f3043e3adc125196f6607","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7"],"root":[[73,76],[166,169]],"options":{"allowJs":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99},"fileIdsList":[[69,72,75,156],[69,72,75,156,164,165],[69,72,75,156,164],[72,75,156],[73,74,156],[156],[72,156],[75,156],[156,170],[156,188],[156,170,171,172,173,174],[156,170,172],[144,156,163],[129,156,163],[127,156,163],[156,183],[156,184],[156,190,193],[77,156],[113,156],[114,119,147,156],[115,126,127,134,144,155,156],[115,116,126,134,156],[117,156],[118,119,127,135,156],[119,144,152,156],[120,122,126,134,156],[121,156],[122,123,156],[126,156],[124,126,156],[113,126,156],[126,127,128,144,155,156],[126,127,128,141,144,147,156],[111,156,160],[122,126,129,134,144,155,156],[126,127,129,130,134,144,152,155,156],[129,131,144,152,155,156],[77,78,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162],[126,132,156],[133,155,156,160],[122,126,134,144,156],[135,156],[136,156],[113,137,156],[138,154,156,160],[139,156],[140,156],[126,141,142,156],[141,143,156,158],[114,126,144,145,146,147,156],[114,144,146,156],[144,145,156],[147,156],[148,156],[113,144,156],[126,150,151,156],[150,151,156],[119,134,144,152,156],[153,156],[134,154,156],[114,129,140,155,156],[119,156],[144,156,157],[133,156,158],[156,159],[114,119,126,128,137,144,155,156,158,160],[144,156,161],[127,129,131,134,144,155,156,163,177,204,205],[129,144,156,163],[156,207,246],[156,207,231,246],[156,246],[156,207],[156,207,232,246],[156,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245],[156,232,246],[126,134,144,156,163,247],[156,253],[156,186,192],[156,187,191],[156,190],[119,156,163],[156,189],[88,92,155,156],[88,144,155,156],[83,156],[85,88,152,155,156],[134,152,156],[156,163],[83,156,163],[85,88,134,155,156],[80,81,84,87,114,126,144,155,156],[80,86,156],[84,88,114,147,155,156,163],[114,156,163],[104,114,156,163],[82,83,156,163],[88,156],[82,83,84,85,86,87,88,89,90,92,93,94,95,96,97,98,99,100,101,102,103,105,106,107,108,109,110,156],[88,95,96,156],[86,88,96,97,156],[87,156],[80,83,88,156],[88,92,96,97,156],[92,156],[86,88,91,155,156],[80,85,86,88,92,95,156],[114,144,156],[83,88,104,114,156,160,163],[70,71,156],[72,75],[73,74],[72],[75]],"referencedMap":[[76,1],[166,2],[167,3],[168,4],[75,5],[73,6],[74,7],[169,8],[172,9],[170,6],[186,6],[189,10],[188,6],[175,11],[171,9],[173,12],[174,9],[176,6],[177,6],[178,13],[179,14],[180,13],[181,15],[182,6],[183,6],[184,16],[185,17],[194,18],[195,6],[196,6],[197,6],[198,6],[199,6],[200,6],[201,6],[77,19],[78,19],[113,20],[114,21],[115,22],[116,23],[117,24],[118,25],[119,26],[120,27],[121,28],[122,29],[123,29],[125,30],[124,31],[126,32],[127,33],[128,34],[112,35],[162,6],[129,36],[130,37],[131,38],[163,39],[132,40],[133,41],[134,42],[135,43],[136,44],[137,45],[138,46],[139,47],[140,48],[141,49],[142,49],[143,50],[144,51],[146,52],[145,53],[147,54],[148,55],[149,56],[150,57],[151,58],[152,59],[153,60],[154,61],[155,62],[156,63],[157,64],[158,65],[159,66],[160,67],[161,68],[202,6],[203,6],[206,69],[204,70],[231,71],[232,72],[207,73],[210,73],[229,71],[230,71],[220,71],[219,74],[217,71],[212,71],[225,71],[223,71],[227,71],[211,71],[224,71],[228,71],[213,71],[214,71],[226,71],[208,71],[215,71],[216,71],[218,71],[222,71],[233,75],[221,71],[209,71],[246,76],[245,6],[240,75],[242,77],[241,75],[234,75],[235,75],[237,75],[239,75],[243,77],[244,77],[236,77],[238,77],[247,13],[248,78],[249,6],[205,6],[250,6],[251,6],[252,6],[253,6],[254,79],[79,6],[69,6],[193,80],[192,81],[187,6],[191,82],[165,6],[164,83],[190,84],[66,6],[67,6],[12,6],[13,6],[17,6],[16,6],[2,6],[18,6],[19,6],[20,6],[21,6],[22,6],[23,6],[24,6],[25,6],[3,6],[4,6],[26,6],[30,6],[27,6],[28,6],[29,6],[31,6],[32,6],[33,6],[5,6],[34,6],[35,6],[36,6],[37,6],[6,6],[41,6],[38,6],[39,6],[40,6],[42,6],[7,6],[43,6],[48,6],[49,6],[44,6],[45,6],[46,6],[47,6],[8,6],[53,6],[50,6],[51,6],[52,6],[54,6],[9,6],[55,6],[56,6],[57,6],[60,6],[58,6],[59,6],[61,6],[62,6],[10,6],[1,6],[11,6],[65,6],[64,6],[68,6],[63,6],[15,6],[14,6],[95,85],[102,86],[94,85],[109,87],[86,88],[85,89],[108,90],[103,91],[106,92],[88,93],[87,94],[83,95],[82,96],[105,97],[84,98],[89,99],[90,6],[93,99],[80,6],[111,100],[110,99],[97,101],[98,102],[100,103],[96,104],[99,105],[104,90],[91,106],[92,107],[101,108],[81,109],[107,110],[70,6],[72,111],[71,6]],"exportedModulesMap":[[76,112],[166,112],[167,112],[168,112],[75,113],[74,114],[169,115],[172,9],[170,6],[186,6],[189,10],[188,6],[175,11],[171,9],[173,12],[174,9],[176,6],[177,6],[178,13],[179,14],[180,13],[181,15],[182,6],[183,6],[184,16],[185,17],[194,18],[195,6],[196,6],[197,6],[198,6],[199,6],[200,6],[201,6],[77,19],[78,19],[113,20],[114,21],[115,22],[116,23],[117,24],[118,25],[119,26],[120,27],[121,28],[122,29],[123,29],[125,30],[124,31],[126,32],[127,33],[128,34],[112,35],[162,6],[129,36],[130,37],[131,38],[163,39],[132,40],[133,41],[134,42],[135,43],[136,44],[137,45],[138,46],[139,47],[140,48],[141,49],[142,49],[143,50],[144,51],[146,52],[145,53],[147,54],[148,55],[149,56],[150,57],[151,58],[152,59],[153,60],[154,61],[155,62],[156,63],[157,64],[158,65],[159,66],[160,67],[161,68],[202,6],[203,6],[206,69],[204,70],[231,71],[232,72],[207,73],[210,73],[229,71],[230,71],[220,71],[219,74],[217,71],[212,71],[225,71],[223,71],[227,71],[211,71],[224,71],[228,71],[213,71],[214,71],[226,71],[208,71],[215,71],[216,71],[218,71],[222,71],[233,75],[221,71],[209,71],[246,76],[245,6],[240,75],[242,77],[241,75],[234,75],[235,75],[237,75],[239,75],[243,77],[244,77],[236,77],[238,77],[247,13],[248,78],[249,6],[205,6],[250,6],[251,6],[252,6],[253,6],[254,79],[79,6],[69,6],[193,80],[192,81],[187,6],[191,82],[165,6],[164,83],[190,84],[66,6],[67,6],[12,6],[13,6],[17,6],[16,6],[2,6],[18,6],[19,6],[20,6],[21,6],[22,6],[23,6],[24,6],[25,6],[3,6],[4,6],[26,6],[30,6],[27,6],[28,6],[29,6],[31,6],[32,6],[33,6],[5,6],[34,6],[35,6],[36,6],[37,6],[6,6],[41,6],[38,6],[39,6],[40,6],[42,6],[7,6],[43,6],[48,6],[49,6],[44,6],[45,6],[46,6],[47,6],[8,6],[53,6],[50,6],[51,6],[52,6],[54,6],[9,6],[55,6],[56,6],[57,6],[60,6],[58,6],[59,6],[61,6],[62,6],[10,6],[1,6],[11,6],[65,6],[64,6],[68,6],[63,6],[15,6],[14,6],[95,85],[102,86],[94,85],[109,87],[86,88],[85,89],[108,90],[103,91],[106,92],[88,93],[87,94],[83,95],[82,96],[105,97],[84,98],[89,99],[90,6],[93,99],[80,6],[111,100],[110,99],[97,101],[98,102],[100,103],[96,104],[99,105],[104,90],[91,106],[92,107],[101,108],[81,109],[107,110],[70,6],[72,111],[71,6]],"semanticDiagnosticsPerFile":[76,166,167,168,75,73,74,169,172,170,186,189,188,175,171,173,174,176,177,178,179,180,181,182,183,184,185,194,195,196,197,198,199,200,201,77,78,113,114,115,116,117,118,119,120,121,122,123,125,124,126,127,128,112,162,129,130,131,163,132,133,134,135,136,137,138,139,140,141,142,143,144,146,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,202,203,206,204,231,232,207,210,229,230,220,219,217,212,225,223,227,211,224,228,213,214,226,208,215,216,218,222,233,221,209,246,245,240,242,241,234,235,237,239,243,244,236,238,247,248,249,205,250,251,252,253,254,79,69,193,192,187,191,165,164,190,66,67,12,13,17,16,2,18,19,20,21,22,23,24,25,3,4,26,30,27,28,29,31,32,33,5,34,35,36,37,6,41,38,39,40,42,7,43,48,49,44,45,46,47,8,53,50,51,52,54,9,55,56,57,60,58,59,61,62,10,1,11,65,64,68,63,15,14,95,102,94,109,86,85,108,103,106,88,87,83,82,105,84,89,90,93,80,111,110,97,98,100,96,99,104,91,92,101,81,107,70,72,71]},"version":"5.3.3"}
|
|
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.es2021.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../../node_modules/typescript/lib/lib.scripthost.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.date.d.ts","../../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.full.d.ts","../../../node_modules/error-value/transpiled/Err.d.ts","../../../../../types/source/call.d.ts","../../../../../types/source/operation.d.ts","../../../../../types/source/index.d.ts","../source/lib/pad.ts","../source/lib/types.ts","../source/lib/index.ts","../source/authenticate.ts","../../../../../node_modules/@types/node/assert.d.ts","../../../../../node_modules/@types/node/assert/strict.d.ts","../../../../../node_modules/buffer/index.d.ts","../../../../../node_modules/undici-types/header.d.ts","../../../../../node_modules/undici-types/readable.d.ts","../../../../../node_modules/undici-types/file.d.ts","../../../../../node_modules/undici-types/fetch.d.ts","../../../../../node_modules/undici-types/formdata.d.ts","../../../../../node_modules/undici-types/connector.d.ts","../../../../../node_modules/undici-types/client.d.ts","../../../../../node_modules/undici-types/errors.d.ts","../../../../../node_modules/undici-types/dispatcher.d.ts","../../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../../node_modules/undici-types/global-origin.d.ts","../../../../../node_modules/undici-types/pool-stats.d.ts","../../../../../node_modules/undici-types/pool.d.ts","../../../../../node_modules/undici-types/handlers.d.ts","../../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../../node_modules/undici-types/agent.d.ts","../../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../../node_modules/undici-types/mock-agent.d.ts","../../../../../node_modules/undici-types/mock-client.d.ts","../../../../../node_modules/undici-types/mock-pool.d.ts","../../../../../node_modules/undici-types/mock-errors.d.ts","../../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../../node_modules/undici-types/api.d.ts","../../../../../node_modules/undici-types/cookies.d.ts","../../../../../node_modules/undici-types/patch.d.ts","../../../../../node_modules/undici-types/filereader.d.ts","../../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../../node_modules/undici-types/websocket.d.ts","../../../../../node_modules/undici-types/content-type.d.ts","../../../../../node_modules/undici-types/cache.d.ts","../../../../../node_modules/undici-types/interceptors.d.ts","../../../../../node_modules/undici-types/index.d.ts","../../../../../node_modules/@types/node/globals.d.ts","../../../../../node_modules/@types/node/async_hooks.d.ts","../../../../../node_modules/@types/node/buffer.d.ts","../../../../../node_modules/@types/node/child_process.d.ts","../../../../../node_modules/@types/node/cluster.d.ts","../../../../../node_modules/@types/node/console.d.ts","../../../../../node_modules/@types/node/constants.d.ts","../../../../../node_modules/@types/node/crypto.d.ts","../../../../../node_modules/@types/node/dgram.d.ts","../../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../../node_modules/@types/node/dns.d.ts","../../../../../node_modules/@types/node/dns/promises.d.ts","../../../../../node_modules/@types/node/domain.d.ts","../../../../../node_modules/@types/node/dom-events.d.ts","../../../../../node_modules/@types/node/events.d.ts","../../../../../node_modules/@types/node/fs.d.ts","../../../../../node_modules/@types/node/fs/promises.d.ts","../../../../../node_modules/@types/node/http.d.ts","../../../../../node_modules/@types/node/http2.d.ts","../../../../../node_modules/@types/node/https.d.ts","../../../../../node_modules/@types/node/inspector.d.ts","../../../../../node_modules/@types/node/module.d.ts","../../../../../node_modules/@types/node/net.d.ts","../../../../../node_modules/@types/node/os.d.ts","../../../../../node_modules/@types/node/path.d.ts","../../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../../node_modules/@types/node/process.d.ts","../../../../../node_modules/@types/node/punycode.d.ts","../../../../../node_modules/@types/node/querystring.d.ts","../../../../../node_modules/@types/node/readline.d.ts","../../../../../node_modules/@types/node/readline/promises.d.ts","../../../../../node_modules/@types/node/repl.d.ts","../../../../../node_modules/@types/node/stream.d.ts","../../../../../node_modules/@types/node/stream/promises.d.ts","../../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../../node_modules/@types/node/stream/web.d.ts","../../../../../node_modules/@types/node/string_decoder.d.ts","../../../../../node_modules/@types/node/test.d.ts","../../../../../node_modules/@types/node/timers.d.ts","../../../../../node_modules/@types/node/timers/promises.d.ts","../../../../../node_modules/@types/node/tls.d.ts","../../../../../node_modules/@types/node/trace_events.d.ts","../../../../../node_modules/@types/node/tty.d.ts","../../../../../node_modules/@types/node/url.d.ts","../../../../../node_modules/@types/node/util.d.ts","../../../../../node_modules/@types/node/v8.d.ts","../../../../../node_modules/@types/node/vm.d.ts","../../../../../node_modules/@types/node/wasi.d.ts","../../../../../node_modules/@types/node/worker_threads.d.ts","../../../../../node_modules/@types/node/zlib.d.ts","../../../../../node_modules/@types/node/globals.global.d.ts","../../../../../node_modules/@types/node/index.d.ts","../../../../../node_modules/paseto/types/index.d.ts","../../../../../node_modules/lru-cache/dist/commonjs/index.d.ts","../source/decrypt.ts","../source/encrypt.ts","../source/issue.ts","../source/revoke.ts","../../../../../node_modules/@babel/types/lib/index.d.ts","../../../../../node_modules/@types/babel__generator/index.d.ts","../../../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../../node_modules/@types/babel__template/index.d.ts","../../../../../node_modules/@types/babel__traverse/index.d.ts","../../../../../node_modules/@types/babel__core/index.d.ts","../../../../../node_modules/@types/bcryptjs/index.d.ts","../../../../../node_modules/@types/caseless/index.d.ts","../../../../../node_modules/@types/conventional-commits-parser/index.d.ts","../../../../../node_modules/@types/cors/index.d.ts","../../../../../node_modules/@types/duplexify/index.d.ts","../../../../../node_modules/@types/graceful-fs/index.d.ts","../../../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../../../node_modules/@types/istanbul-reports/index.d.ts","../../../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../../../node_modules/jest-matcher-utils/node_modules/chalk/index.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/jest-matcher-utils/node_modules/jest-diff/build/index.d.ts","../../../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../../../node_modules/expect/build/index.d.ts","../../../../../node_modules/@types/jest/index.d.ts","../../../../../node_modules/@types/js-yaml/index.d.ts","../../../../../node_modules/@types/json-schema/index.d.ts","../../../../../node_modules/@types/json5/index.d.ts","../../../../../node_modules/@types/long/index.d.ts","../../../../../node_modules/@types/minimatch/index.d.ts","../../../../../node_modules/@types/minimist/index.d.ts","../../../../../node_modules/@types/negotiator/index.d.ts","../../../../../node_modules/@types/normalize-package-data/index.d.ts","../../../../../node_modules/@types/randomstring/index.d.ts","../../../../../node_modules/@types/request/node_modules/form-data/index.d.ts","../../../../../node_modules/@types/tough-cookie/index.d.ts","../../../../../node_modules/@types/request/index.d.ts","../../../../../node_modules/@types/semver/classes/semver.d.ts","../../../../../node_modules/@types/semver/functions/parse.d.ts","../../../../../node_modules/@types/semver/functions/valid.d.ts","../../../../../node_modules/@types/semver/functions/clean.d.ts","../../../../../node_modules/@types/semver/functions/inc.d.ts","../../../../../node_modules/@types/semver/functions/diff.d.ts","../../../../../node_modules/@types/semver/functions/major.d.ts","../../../../../node_modules/@types/semver/functions/minor.d.ts","../../../../../node_modules/@types/semver/functions/patch.d.ts","../../../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../../../node_modules/@types/semver/functions/compare.d.ts","../../../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../../../node_modules/@types/semver/functions/sort.d.ts","../../../../../node_modules/@types/semver/functions/rsort.d.ts","../../../../../node_modules/@types/semver/functions/gt.d.ts","../../../../../node_modules/@types/semver/functions/lt.d.ts","../../../../../node_modules/@types/semver/functions/eq.d.ts","../../../../../node_modules/@types/semver/functions/neq.d.ts","../../../../../node_modules/@types/semver/functions/gte.d.ts","../../../../../node_modules/@types/semver/functions/lte.d.ts","../../../../../node_modules/@types/semver/functions/cmp.d.ts","../../../../../node_modules/@types/semver/functions/coerce.d.ts","../../../../../node_modules/@types/semver/classes/comparator.d.ts","../../../../../node_modules/@types/semver/classes/range.d.ts","../../../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../../../node_modules/@types/semver/ranges/valid.d.ts","../../../../../node_modules/@types/semver/ranges/outside.d.ts","../../../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../../../node_modules/@types/semver/ranges/subset.d.ts","../../../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../../../node_modules/@types/semver/index.d.ts","../../../../../node_modules/@types/ssh2-streams/index.d.ts","../../../../../node_modules/@types/ssh2/index.d.ts","../../../../../node_modules/@types/stack-utils/index.d.ts","../../../../../node_modules/@types/uuid/index.d.ts","../../../../../node_modules/@types/webidl-conversions/index.d.ts","../../../../../node_modules/@types/whatwg-url/index.d.ts","../../../../../node_modules/@types/yargs-parser/index.d.ts","../../../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","bed7b7ba0eb5a160b69af72814b4dde371968e40b6c5e73d3a9f7bee407d158c",{"version":"21e41a76098aa7a191028256e52a726baafd45a925ea5cf0222eb430c96c1d83","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"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":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"62a4966981264d1f04c44eb0f4b5bdc3d81c1a54725608861e44755aa24ad6a5","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"86a34c7a13de9cabc43161348f663624b56871ed80986e41d214932ddd8d6719","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"4350e5922fecd4bedda2964d69c213a1436349d0b8d260dd902795f5b94dc74b","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"fd1adc28ce106d6b5f7204355726a7ec922191ad5a8cc1a01841cbf9df9a7e64","619002ac41eae6c4c5ae349c642486cfde91970cc0323f65bc2ddd17f7a467a2","b2b11be7d862c09cfcc06ec64afbc1fd5fbe7daa3b70c097cdefdc1ba5cf238c","50ffb91d1ad1e8952b9f9ba82628d988aa6e6c4cd3efecbba968a15350dc3e41","aa7592c03c7a724e3bccea35e7270b4efc2b48ca4f1d709bff1fb52b8fd0affb",{"version":"5ea763a470ca8b0910dabcf302a7303d13c088652c894ddc41d320901b3b2b55","signature":"44b2b3c2f6ea8dfe3e7d4631bda5b231c751323e4d9393474368c17c82b099de"},{"version":"9dbef2e609ebcfb6bc1e8295d0dd4001ada79f1bf053542eebb2adadcce63965","signature":"33aabd9356af7c2c3332befbcee01a2d92142ecc1d1784db2d1c5cb53427ff98"},{"version":"7a92eef7e2ba74599904b2abadd2032dafab1947336e45efc543f034edc58101","signature":"1db6f7ccdce60943287ae50dfda671dd0c40dfe40b77d8cdac2408e62a827079"},{"version":"2a74ccdeeb5424397a08ac5009a83cb65fbd007f409543d374cfaf4437a6b256","signature":"2fa87a075c0116d84e118a9f66c034590d401d288695b5724af495a1680fbb01"},"09df3b4f1c937f02e7fee2836d4c4d7a63e66db70fd4d4e97126f4542cc21d9d","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":"4d719cfab49ae4045d15cb6bed0f38ad3d7d6eb7f277d2603502a0f862ca3182","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"5a856afb15f9dc9983faa391dde989826995a33983c1cccb173e9606688e9709","affectsGlobalScope":true},"546ab07e19116d935ad982e76a223275b53bff7771dab94f433b7ab04652936e","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"aefb5a4a209f756b580eb53ea771cca8aad411603926f307a5e5b8ec6b16dcf6","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","f5a8b7ec4b798c88679194a8ebc25dcb6f5368e6e5811fcda9fe12b0d445b8db","b86e1a45b29437f3a99bad4147cb9fe2357617e8008c0484568e5bb5138d6e13","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","42c431e7965b641106b5e25ab3283aa4865ca7bb9909610a2abfa6226e4348be","0b7e732af0a9599be28c091d6bd1cb22c856ec0d415d4749c087c3881ca07a56","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"8d6138a264ddc6f94f16e99d4e117a2d6eb31b217891cf091b6437a2f114d561","affectsGlobalScope":true},"3b4c85eea12187de9929a76792b98406e8778ce575caca8c574f06da82622c54","f788131a39c81e0c9b9e463645dd7132b5bc1beb609b0e31e5c1ceaea378b4df","0c236069ce7bded4f6774946e928e4b3601894d294054af47a553f7abcafe2c1","21894466693f64957b9bd4c80fa3ec7fdfd4efa9d1861e070aca23f10220c9b2","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"6ec93c745c5e3e25e278fa35451bf18ef857f733de7e57c15e7920ac463baa2a","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","30c2ec6abf6aaa60eb4f32fb1235531506b7961c6d1bdc7430711aec8fd85295","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"308b84e1943ef30015469770e931eb21b795348893b2a6562ca54ea8f0b3c41c","affectsGlobalScope":true},{"version":"d48009cbe8a30a504031cc82e1286f78fed33b7a42abf7602c23b5547b382563","affectsGlobalScope":true},"7aaeb5e62f90e1b2be0fc4844df78cdb1be15c22b427bc6c39d57308785b8f10","3ba30205a029ebc0c91d7b1ab4da73f6277d730ca1fc6692d5a9144c6772c76b","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","458b216959c231df388a5de9dcbcafd4b4ca563bc3784d706d0455467d7d4942","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"24ba151e213906027e2b1f5223d33575a3612b0234a0e2b56119520bbe0e594b","affectsGlobalScope":true},{"version":"cbf046714f3a3ba2544957e1973ac94aa819fa8aa668846fa8de47eb1c41b0b2","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eae74e3d50820f37c72c0679fed959cd1e63c98f6a146a55b8c4361582fa6a52","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"aed89e3c18f4c659ee8153a76560dffda23e2d801e1e60d7a67abd84bc555f8d","affectsGlobalScope":true},{"version":"0ed13c80faeb2b7160bffb4926ff299c468e67a37a645b3ae0917ba0db633c1b","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","2f940651c2f30e6b29f8743fae3f40b7b1c03615184f837132b56ea75edad08b","5749c327c3f789f658072f8340786966c8b05ea124a56c1d8d60e04649495a4d",{"version":"c9d62b2a51b2ff166314d8be84f6881a7fcbccd37612442cf1c70d27d5352f50","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","32d61a332bb5c7ed9fbc4ebd4edf127278236379da8b2284403db670225f594a","623c392f985d35154de5dee5fc4275fbafd281832043a5c5005b032b20ad716a",{"version":"3b1e806b2c6c06e839fb82f7db2f15997afbadd08fc6597df5d042ce71462d95","signature":"e3a3416f58fc23050f23be81eda2449997e3c4687a923669c000caf8ff73bfdf"},{"version":"3208c971f471bcbbd083e1377b76ac1539cf841e3bd1b7a475ccf7c43380b941","signature":"afc48f1a48332393863546ffb9e213cec9f5d7eda5c6b0aeb452b58ba5d52abe"},{"version":"a63db5a672368bf34418b90207ccde87b56ffd137d17011d27d0042457283ec6","signature":"bb9e050456aa3aeb39915d328384acb53e197aab9e0063a3725556265df5d9d6"},{"version":"c3525dc7407e8d8c05225619df4d430b2e0c8b723d55d777365d3abab3d8b931","signature":"3ce75be518520698888da5251a15a58141dccb46fdfe8a768d6042cf42065c7a"},"7983487d0fbefb9b6ccc94390e8c826328d87e21cd4a62ea5b4c6b8f99f32550","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","5f02abbb1b17e3d1e68c5eea14adf4705696e6255e2982b010c0dc2a5417b606","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","dbe8bd931d343b9804d5398afb6dd6d6728975b2e23a3314bc4911f81c5e5a33","2174e20517788d2a1379fc0aaacd87899a70f9e0197b4295edabfe75c4db03d8","f96f3c445afc7d65d4790386e37c5b57f095f285cc89b8315b209fe0c81837c1","efdced704bd09db6984a2a26e3573bc43cdc2379bdef3bcff6cff77efe8ba82b","f6e4d465828539e051c5c1a40ee835fd954ce5cfc45de8e31ac1561bad5d947b","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","d7dbe0ad36bdca8a6ecf143422a48e72cc8927bab7b23a1a2485c2f78a7022c6","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"b2fdcc3836d425833af10e536ae5491c34e218bc71870f12a401720f874b6ce4","affectsGlobalScope":true},"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","0e60e0cbf2283adfd5a15430ae548cd2f662d581b5da6ecd98220203e7067c70","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318","f4694959db84d3792ca4d4e04c0bc157c4d28627cb0406c9236351f261a3f5e0","22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592",{"version":"4698841dc5a91fe716dd41ec7136867bbde9a274ce21031e5ef6ce2d8a552ceb","affectsGlobalScope":true},"e91ad231af87f864b3f07cd0e39b1cf6c133988156f087c1c3ccb0a5491c9115","03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","319c37263037e8d9481a3dc7eadf6afa6a5f5c002189ebe28776ac1a62a38e15","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4","7abf54763b6709a2b72ecd1247c3cfe96f8c44fe6e7ce3897951ee8f4c394640","85976d1088db28912f61f76fd68103dd3625480f5ad5ba4c98519a81693ef717","ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956","5bba0e6cd8375fd37047e99a080d1bd9a808c95ecb7f3043e3adc125196f6607","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7"],"root":[[73,76],[166,169]],"options":{"allowJs":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99},"fileIdsList":[[69,72,75,156],[69,72,75,156,164,165],[69,72,75,156,164],[72,75,156],[73,74,156],[156],[72,156],[75,156],[156,170],[156,188],[156,170,171,172,173,174],[156,170,172],[144,156,163],[129,156,163],[127,156,163],[156,183],[156,184],[156,190,193],[77,156],[113,156],[114,119,147,156],[115,126,127,134,144,155,156],[115,116,126,134,156],[117,156],[118,119,127,135,156],[119,144,152,156],[120,122,126,134,156],[121,156],[122,123,156],[126,156],[124,126,156],[113,126,156],[126,127,128,144,155,156],[126,127,128,141,144,147,156],[111,156,160],[122,126,129,134,144,155,156],[126,127,129,130,134,144,152,155,156],[129,131,144,152,155,156],[77,78,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162],[126,132,156],[133,155,156,160],[122,126,134,144,156],[135,156],[136,156],[113,137,156],[138,154,156,160],[139,156],[140,156],[126,141,142,156],[141,143,156,158],[114,126,144,145,146,147,156],[114,144,146,156],[144,145,156],[147,156],[148,156],[113,144,156],[126,150,151,156],[150,151,156],[119,134,144,152,156],[153,156],[134,154,156],[114,129,140,155,156],[119,156],[144,156,157],[133,156,158],[156,159],[114,119,126,128,137,144,155,156,158,160],[144,156,161],[127,129,131,134,144,155,156,163,177,204,205],[129,144,156,163],[156,207,246],[156,207,231,246],[156,246],[156,207],[156,207,232,246],[156,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245],[156,232,246],[126,134,144,156,163,247],[156,253],[156,186,192],[156,187,191],[156,190],[119,156,163],[156,189],[88,92,155,156],[88,144,155,156],[83,156],[85,88,152,155,156],[134,152,156],[156,163],[83,156,163],[85,88,134,155,156],[80,81,84,87,114,126,144,155,156],[80,86,156],[84,88,114,147,155,156,163],[114,156,163],[104,114,156,163],[82,83,156,163],[88,156],[82,83,84,85,86,87,88,89,90,92,93,94,95,96,97,98,99,100,101,102,103,105,106,107,108,109,110,156],[88,95,96,156],[86,88,96,97,156],[87,156],[80,83,88,156],[88,92,96,97,156],[92,156],[86,88,91,155,156],[80,85,86,88,92,95,156],[114,144,156],[83,88,104,114,156,160,163],[70,71,156],[72,75],[73,74],[72],[75]],"referencedMap":[[76,1],[166,2],[167,3],[168,4],[75,5],[73,6],[74,7],[169,8],[69,6],[172,9],[170,6],[186,6],[189,10],[188,6],[175,11],[171,9],[173,12],[174,9],[176,6],[177,6],[178,13],[179,14],[180,13],[181,15],[182,6],[183,6],[184,16],[185,17],[194,18],[195,6],[196,6],[197,6],[198,6],[199,6],[200,6],[201,6],[77,19],[78,19],[113,20],[114,21],[115,22],[116,23],[117,24],[118,25],[119,26],[120,27],[121,28],[122,29],[123,29],[125,30],[124,31],[126,32],[127,33],[128,34],[112,35],[162,6],[129,36],[130,37],[131,38],[163,39],[132,40],[133,41],[134,42],[135,43],[136,44],[137,45],[138,46],[139,47],[140,48],[141,49],[142,49],[143,50],[144,51],[146,52],[145,53],[147,54],[148,55],[149,56],[150,57],[151,58],[152,59],[153,60],[154,61],[155,62],[156,63],[157,64],[158,65],[159,66],[160,67],[161,68],[202,6],[203,6],[206,69],[204,70],[231,71],[232,72],[207,73],[210,73],[229,71],[230,71],[220,71],[219,74],[217,71],[212,71],[225,71],[223,71],[227,71],[211,71],[224,71],[228,71],[213,71],[214,71],[226,71],[208,71],[215,71],[216,71],[218,71],[222,71],[233,75],[221,71],[209,71],[246,76],[245,6],[240,75],[242,77],[241,75],[234,75],[235,75],[237,75],[239,75],[243,77],[244,77],[236,77],[238,77],[247,13],[248,78],[249,6],[205,6],[250,6],[251,6],[252,6],[253,6],[254,79],[79,6],[193,80],[192,81],[187,6],[191,82],[165,6],[164,83],[190,84],[66,6],[67,6],[12,6],[13,6],[17,6],[16,6],[2,6],[18,6],[19,6],[20,6],[21,6],[22,6],[23,6],[24,6],[25,6],[3,6],[4,6],[26,6],[30,6],[27,6],[28,6],[29,6],[31,6],[32,6],[33,6],[5,6],[34,6],[35,6],[36,6],[37,6],[6,6],[41,6],[38,6],[39,6],[40,6],[42,6],[7,6],[43,6],[48,6],[49,6],[44,6],[45,6],[46,6],[47,6],[8,6],[53,6],[50,6],[51,6],[52,6],[54,6],[9,6],[55,6],[56,6],[57,6],[60,6],[58,6],[59,6],[61,6],[62,6],[10,6],[1,6],[11,6],[65,6],[64,6],[68,6],[63,6],[15,6],[14,6],[95,85],[102,86],[94,85],[109,87],[86,88],[85,89],[108,90],[103,91],[106,92],[88,93],[87,94],[83,95],[82,96],[105,97],[84,98],[89,99],[90,6],[93,99],[80,6],[111,100],[110,99],[97,101],[98,102],[100,103],[96,104],[99,105],[104,90],[91,106],[92,107],[101,108],[81,109],[107,110],[70,6],[72,111],[71,6]],"exportedModulesMap":[[76,112],[166,112],[167,112],[168,112],[75,113],[74,114],[169,115],[69,6],[172,9],[170,6],[186,6],[189,10],[188,6],[175,11],[171,9],[173,12],[174,9],[176,6],[177,6],[178,13],[179,14],[180,13],[181,15],[182,6],[183,6],[184,16],[185,17],[194,18],[195,6],[196,6],[197,6],[198,6],[199,6],[200,6],[201,6],[77,19],[78,19],[113,20],[114,21],[115,22],[116,23],[117,24],[118,25],[119,26],[120,27],[121,28],[122,29],[123,29],[125,30],[124,31],[126,32],[127,33],[128,34],[112,35],[162,6],[129,36],[130,37],[131,38],[163,39],[132,40],[133,41],[134,42],[135,43],[136,44],[137,45],[138,46],[139,47],[140,48],[141,49],[142,49],[143,50],[144,51],[146,52],[145,53],[147,54],[148,55],[149,56],[150,57],[151,58],[152,59],[153,60],[154,61],[155,62],[156,63],[157,64],[158,65],[159,66],[160,67],[161,68],[202,6],[203,6],[206,69],[204,70],[231,71],[232,72],[207,73],[210,73],[229,71],[230,71],[220,71],[219,74],[217,71],[212,71],[225,71],[223,71],[227,71],[211,71],[224,71],[228,71],[213,71],[214,71],[226,71],[208,71],[215,71],[216,71],[218,71],[222,71],[233,75],[221,71],[209,71],[246,76],[245,6],[240,75],[242,77],[241,75],[234,75],[235,75],[237,75],[239,75],[243,77],[244,77],[236,77],[238,77],[247,13],[248,78],[249,6],[205,6],[250,6],[251,6],[252,6],[253,6],[254,79],[79,6],[193,80],[192,81],[187,6],[191,82],[165,6],[164,83],[190,84],[66,6],[67,6],[12,6],[13,6],[17,6],[16,6],[2,6],[18,6],[19,6],[20,6],[21,6],[22,6],[23,6],[24,6],[25,6],[3,6],[4,6],[26,6],[30,6],[27,6],[28,6],[29,6],[31,6],[32,6],[33,6],[5,6],[34,6],[35,6],[36,6],[37,6],[6,6],[41,6],[38,6],[39,6],[40,6],[42,6],[7,6],[43,6],[48,6],[49,6],[44,6],[45,6],[46,6],[47,6],[8,6],[53,6],[50,6],[51,6],[52,6],[54,6],[9,6],[55,6],[56,6],[57,6],[60,6],[58,6],[59,6],[61,6],[62,6],[10,6],[1,6],[11,6],[65,6],[64,6],[68,6],[63,6],[15,6],[14,6],[95,85],[102,86],[94,85],[109,87],[86,88],[85,89],[108,90],[103,91],[106,92],[88,93],[87,94],[83,95],[82,96],[105,97],[84,98],[89,99],[90,6],[93,99],[80,6],[111,100],[110,99],[97,101],[98,102],[100,103],[96,104],[99,105],[104,90],[91,106],[92,107],[101,108],[81,109],[107,110],[70,6],[72,111],[71,6]],"semanticDiagnosticsPerFile":[76,166,167,168,75,73,74,169,69,172,170,186,189,188,175,171,173,174,176,177,178,179,180,181,182,183,184,185,194,195,196,197,198,199,200,201,77,78,113,114,115,116,117,118,119,120,121,122,123,125,124,126,127,128,112,162,129,130,131,163,132,133,134,135,136,137,138,139,140,141,142,143,144,146,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,202,203,206,204,231,232,207,210,229,230,220,219,217,212,225,223,227,211,224,228,213,214,226,208,215,216,218,222,233,221,209,246,245,240,242,241,234,235,237,239,243,244,236,238,247,248,249,205,250,251,252,253,254,79,193,192,187,191,165,164,190,66,67,12,13,17,16,2,18,19,20,21,22,23,24,25,3,4,26,30,27,28,29,31,32,33,5,34,35,36,37,6,41,38,39,40,42,7,43,48,49,44,45,46,47,8,53,50,51,52,54,9,55,56,57,60,58,59,61,62,10,1,11,65,64,68,63,15,14,95,102,94,109,86,85,108,103,106,88,87,83,82,105,84,89,90,93,80,111,110,97,98,100,96,99,104,91,92,101,81,107,70,72,71]},"version":"5.3.3"}
|
|
@@ -15,9 +15,11 @@ export class Effect implements Operation {
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
public async execute (input: Input): Promise<Maybe<Output>> {
|
|
18
|
-
const
|
|
18
|
+
const lifetime = input.lifetime ?? this.lifetime
|
|
19
|
+
|
|
20
|
+
const expires = lifetime === 0
|
|
19
21
|
? undefined
|
|
20
|
-
: new Date(Date.now() +
|
|
22
|
+
: new Date(Date.now() + lifetime * 1000).getTime()
|
|
21
23
|
|
|
22
24
|
const key = await this.keys.create({
|
|
23
25
|
input: {
|
|
@@ -39,7 +41,7 @@ export class Effect implements Operation {
|
|
|
39
41
|
roles
|
|
40
42
|
}
|
|
41
43
|
|
|
42
|
-
const { authority,
|
|
44
|
+
const { authority, scopes, permissions } = input
|
|
43
45
|
|
|
44
46
|
const token = await this.encrypt({
|
|
45
47
|
input: {
|
|
@@ -67,8 +69,8 @@ export class Effect implements Operation {
|
|
|
67
69
|
interface Input {
|
|
68
70
|
authority: string
|
|
69
71
|
identity: string
|
|
70
|
-
lifetime: number
|
|
71
72
|
label: string
|
|
73
|
+
lifetime?: number
|
|
72
74
|
scopes?: string[]
|
|
73
75
|
permissions?: Record<string, string[]>
|
|
74
76
|
}
|
|
@@ -144,6 +144,39 @@ Identity `2428c31ecb6e4a51a24ef52f0c4181b9` are created.
|
|
|
144
144
|
> `auth:incept` directive may have a `null` value, which means that the Identity will be created
|
|
145
145
|
> without any associated entity.
|
|
146
146
|
|
|
147
|
+
## Issuing tokens for a response
|
|
148
|
+
|
|
149
|
+
Token can be issued for a response using the `auth:issue` directive, which specifies the name of the
|
|
150
|
+
response property that contain Identity identifier (string).
|
|
151
|
+
This property will be replaced with the Identity object, and `Authorization` header will be added to
|
|
152
|
+
the response.
|
|
153
|
+
|
|
154
|
+
Request must not be authenticated.
|
|
155
|
+
|
|
156
|
+
```yaml
|
|
157
|
+
/users/:
|
|
158
|
+
POST:
|
|
159
|
+
auth:issue: identity
|
|
160
|
+
endpoint: create
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
Assuming `create` operation returns an object with the `identity` property:
|
|
164
|
+
|
|
165
|
+
```
|
|
166
|
+
POST /users/
|
|
167
|
+
|
|
168
|
+
name: User
|
|
169
|
+
|
|
170
|
+
---
|
|
171
|
+
|
|
172
|
+
201 Created
|
|
173
|
+
authorization: Token v4.local.eyJzdWIiOiJqb2hu...
|
|
174
|
+
|
|
175
|
+
identity:
|
|
176
|
+
id: 2428c31ecb6e4a51a24ef52f0c4181b9
|
|
177
|
+
roles: []
|
|
178
|
+
```
|
|
179
|
+
|
|
147
180
|
## FAQ
|
|
148
181
|
|
|
149
182
|
<dl>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Feature: Issue authentication token for a response
|
|
2
|
+
|
|
3
|
+
Scenario: Issue token
|
|
4
|
+
Given the `echo` is running with the following manifest:
|
|
5
|
+
"""yaml
|
|
6
|
+
exposition:
|
|
7
|
+
/:
|
|
8
|
+
POST:
|
|
9
|
+
auth:issue: identity
|
|
10
|
+
io:output: true
|
|
11
|
+
query: ~
|
|
12
|
+
endpoint: echo
|
|
13
|
+
"""
|
|
14
|
+
And transient identity
|
|
15
|
+
When the following request is received:
|
|
16
|
+
"""
|
|
17
|
+
POST /echo/ HTTP/1.1
|
|
18
|
+
host: nex.toa.io
|
|
19
|
+
accept: application/yaml
|
|
20
|
+
content-type: application/yaml
|
|
21
|
+
|
|
22
|
+
identity: ${{ identity.id }}
|
|
23
|
+
foo: bar
|
|
24
|
+
"""
|
|
25
|
+
Then the following reply is sent:
|
|
26
|
+
"""
|
|
27
|
+
201 Created
|
|
28
|
+
authorization: Token ${{ token }}
|
|
29
|
+
|
|
30
|
+
identity:
|
|
31
|
+
id: ${{ identity.id }}
|
|
32
|
+
roles: []
|
|
33
|
+
foo: bar
|
|
34
|
+
"""
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Feature: Web Authentication
|
|
2
|
+
|
|
3
|
+
Scenario: Create a challenge to add a new passkey to existing identity
|
|
4
|
+
Given the `identity.passkeys` configuration:
|
|
5
|
+
"""yaml
|
|
6
|
+
name: Nex
|
|
7
|
+
"""
|
|
8
|
+
And transient identity
|
|
9
|
+
When the following request is received:
|
|
10
|
+
"""
|
|
11
|
+
POST /identity/passkeys/challenges/${{ identity.id }}/ HTTP/1.1
|
|
12
|
+
host: nex.toa.io
|
|
13
|
+
authorization: Token ${{ identity.token }}
|
|
14
|
+
accept: application/yaml
|
|
15
|
+
"""
|
|
16
|
+
Then the following reply is sent:
|
|
17
|
+
"""
|
|
18
|
+
201 Created
|
|
19
|
+
|
|
20
|
+
challenge: ${{ challenge }}
|
|
21
|
+
timeout: 60000
|
|
22
|
+
pubKeyCredParams:
|
|
23
|
+
- type: public-key
|
|
24
|
+
alg: -7
|
|
25
|
+
- type: public-key
|
|
26
|
+
alg: -257
|
|
27
|
+
"""
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toa.io/extensions.exposition",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.127",
|
|
4
4
|
"description": "Toa Exposition",
|
|
5
5
|
"author": "temich <tema.gurtovoy@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/toa-io/toa#readme",
|
|
@@ -18,11 +18,12 @@
|
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@isaacs/ttlcache": "1.4.1",
|
|
21
|
-
"@
|
|
21
|
+
"@simplewebauthn/server": "13.1.1",
|
|
22
|
+
"@toa.io/core": "1.0.0-alpha.126",
|
|
22
23
|
"@toa.io/generic": "1.0.0-alpha.93",
|
|
23
24
|
"@toa.io/schemas": "1.0.0-alpha.125",
|
|
24
25
|
"bcryptjs": "2.4.3",
|
|
25
|
-
"error-value": "0.4.
|
|
26
|
+
"error-value": "0.4.2",
|
|
26
27
|
"http-cache-semantics": "4.1.1",
|
|
27
28
|
"js-yaml": "4.1.0",
|
|
28
29
|
"lru-cache": "11.0.1",
|
|
@@ -41,13 +42,14 @@
|
|
|
41
42
|
},
|
|
42
43
|
"scripts": {
|
|
43
44
|
"test": "jest",
|
|
44
|
-
"transpile": "tsc && npm run transpile:bans && npm run transpile:basic && npm run transpile:tokens && npm run transpile:roles && npm run transpile:federation && npm run transpile:keys",
|
|
45
|
+
"transpile": "tsc && npm run transpile:bans && npm run transpile:basic && npm run transpile:tokens && npm run transpile:roles && npm run transpile:federation && npm run transpile:keys && npm run transpile:passkeys",
|
|
45
46
|
"transpile:bans": "tsc -p ./components/identity.bans",
|
|
46
47
|
"transpile:basic": "tsc -p ./components/identity.basic",
|
|
47
48
|
"transpile:tokens": "tsc -p ./components/identity.tokens",
|
|
48
49
|
"transpile:roles": "tsc -p ./components/identity.roles",
|
|
49
50
|
"transpile:federation": "tsc -p ./components/identity.federation",
|
|
50
51
|
"transpile:keys": "tsc -p ./components/identity.keys",
|
|
52
|
+
"transpile:passkeys": "tsc -p ./components/identity.passkeys",
|
|
51
53
|
"features": "cucumber-js",
|
|
52
54
|
"features:security": "cucumber-js --tags @security",
|
|
53
55
|
"features:octets": "cucumber-js features/octets.*"
|
|
@@ -61,5 +63,5 @@
|
|
|
61
63
|
"@types/negotiator": "0.6.1",
|
|
62
64
|
"jest-esbuild": "0.3.0"
|
|
63
65
|
},
|
|
64
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "2afd624a29ef27a073470da05871a50be6d697e8"
|
|
65
67
|
}
|
package/source/Endpoint.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Readable } from 'node:stream'
|
|
1
2
|
import { console } from 'openspan'
|
|
2
3
|
import { Mapping } from './Mapping'
|
|
3
4
|
import * as http from './HTTP'
|
|
@@ -32,7 +33,7 @@ export class Endpoint implements RTD.Endpoint {
|
|
|
32
33
|
|
|
33
34
|
const reply = await this.remote.invoke(this.endpoint, request)
|
|
34
35
|
|
|
35
|
-
console.debug('Received reply', { endpoint, reply })
|
|
36
|
+
console.debug('Received reply', { endpoint, reply: reply instanceof Readable ? '[Readable stream]' : reply })
|
|
36
37
|
|
|
37
38
|
if (reply instanceof Error)
|
|
38
39
|
throw new http.UnprocessableEntity(reply)
|
|
@@ -8,6 +8,7 @@ import { Id } from './Id'
|
|
|
8
8
|
import { Role } from './Role'
|
|
9
9
|
import { Rule } from './Rule'
|
|
10
10
|
import { Incept } from './Incept'
|
|
11
|
+
import { Issue } from './Issue'
|
|
11
12
|
import { Echo } from './Echo'
|
|
12
13
|
import { Scheme } from './Scheme'
|
|
13
14
|
import { Delegate } from './Delegate'
|
|
@@ -56,6 +57,7 @@ export class Authorization implements DirectiveFamily<Directive, Extension> {
|
|
|
56
57
|
Rule, () => new Rule(value as Record<string, string>, this.create.bind(this)),
|
|
57
58
|
Input, () => new Input(value as Declaration[], this.create.bind(this)),
|
|
58
59
|
Incept, () => new Incept(value as string, this.discovery),
|
|
60
|
+
Issue, () => new Issue(value as string, this.discovery),
|
|
59
61
|
Delegate, () => new Delegate(value as string, this.discovery.roles),
|
|
60
62
|
() => new Class(value))
|
|
61
63
|
}
|
|
@@ -177,6 +179,7 @@ const constructors: Record<string, new (value: any, argument?: any) => Directive
|
|
|
177
179
|
role: Role,
|
|
178
180
|
rule: Rule,
|
|
179
181
|
incept: Incept,
|
|
182
|
+
issue: Issue,
|
|
180
183
|
scheme: Scheme,
|
|
181
184
|
echo: Echo,
|
|
182
185
|
delegate: Delegate,
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import assert from 'node:assert'
|
|
2
|
+
import { Role } from './Role'
|
|
3
|
+
import type * as http from '../../HTTP'
|
|
4
|
+
import type { Component } from '@toa.io/core'
|
|
5
|
+
import type { Context, Discovery, Identity } from './types'
|
|
6
|
+
|
|
7
|
+
export class Issue {
|
|
8
|
+
private readonly property: string
|
|
9
|
+
private readonly discovery: Discovery
|
|
10
|
+
private tokens!: Component
|
|
11
|
+
|
|
12
|
+
public constructor (property: string, discovery: Discovery) {
|
|
13
|
+
this.property = property
|
|
14
|
+
this.discovery = discovery
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
public async authorize (_: unknown, context: Context): Promise<boolean> {
|
|
18
|
+
return !('authorization' in context.request.headers)
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
public async settle (context: Context, response: http.OutgoingMessage): Promise<void> {
|
|
22
|
+
assert(response.body?.constructor === Object.prototype.constructor, 'Response body expected to be an object')
|
|
23
|
+
|
|
24
|
+
const id = response.body[this.property]
|
|
25
|
+
|
|
26
|
+
assert(typeof id === 'string', `Response body property "${this.property}" expected to be a string`)
|
|
27
|
+
|
|
28
|
+
const identity: Identity = { id, scheme: null, refresh: false }
|
|
29
|
+
|
|
30
|
+
identity.roles = await Role.get(identity, this.discovery.roles)
|
|
31
|
+
|
|
32
|
+
this.tokens ??= await this.discovery.tokens
|
|
33
|
+
|
|
34
|
+
const token = await this.tokens.invoke<string>('encrypt', {
|
|
35
|
+
input: { authority: context.authority, identity }
|
|
36
|
+
})
|
|
37
|
+
|
|
38
|
+
const authorization = `Token ${token}`
|
|
39
|
+
|
|
40
|
+
response.headers ??= new Headers()
|
|
41
|
+
response.headers.set('authorization', authorization)
|
|
42
|
+
response.headers.set('cache-control', 'no-store')
|
|
43
|
+
response.body.identity = identity
|
|
44
|
+
}
|
|
45
|
+
}
|
package/transpiled/Endpoint.js
CHANGED
|
@@ -24,6 +24,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.EndpointsFactory = exports.Endpoint = void 0;
|
|
27
|
+
const node_stream_1 = require("node:stream");
|
|
27
28
|
const openspan_1 = require("openspan");
|
|
28
29
|
const Mapping_1 = require("./Mapping");
|
|
29
30
|
const http = __importStar(require("./HTTP"));
|
|
@@ -45,7 +46,7 @@ class Endpoint {
|
|
|
45
46
|
const endpoint = this.remote.locator.id + '.' + this.endpoint;
|
|
46
47
|
openspan_1.console.debug('Calling operation', { endpoint, request });
|
|
47
48
|
const reply = await this.remote.invoke(this.endpoint, request);
|
|
48
|
-
openspan_1.console.debug('Received reply', { endpoint, reply });
|
|
49
|
+
openspan_1.console.debug('Received reply', { endpoint, reply: reply instanceof node_stream_1.Readable ? '[Readable stream]' : reply });
|
|
49
50
|
if (reply instanceof Error)
|
|
50
51
|
throw new http.UnprocessableEntity(reply);
|
|
51
52
|
const message = {};
|