diff --git a/.changeset/afraid-bugs-press.md b/.changeset/afraid-bugs-press.md new file mode 100644 index 00000000000..f8812233a8e --- /dev/null +++ b/.changeset/afraid-bugs-press.md @@ -0,0 +1,5 @@ +--- +'@shopify/app': patch +--- + +Fix installing function dependencies when using npm with workspaces diff --git a/.changeset/blue-carpets-sin.md b/.changeset/blue-carpets-sin.md new file mode 100644 index 00000000000..3ac57d9122b --- /dev/null +++ b/.changeset/blue-carpets-sin.md @@ -0,0 +1,6 @@ +--- +'@shopify/cli-kit': patch +'@shopify/theme': patch +--- + +Fix an issue in `shopify theme dev` and `shopify app dev` that was affecting image loading on local servers diff --git a/.changeset/dull-houses-taste.md b/.changeset/dull-houses-taste.md new file mode 100644 index 00000000000..6a428fdd06c --- /dev/null +++ b/.changeset/dull-houses-taste.md @@ -0,0 +1,5 @@ +--- +'@shopify/app': patch +--- + +Display dev command footer when using no-update or/and no-tunnel diff --git a/.changeset/giant-emus-lie.md b/.changeset/giant-emus-lie.md new file mode 100644 index 00000000000..98a6c329145 --- /dev/null +++ b/.changeset/giant-emus-lie.md @@ -0,0 +1,6 @@ +--- +'@shopify/cli-kit': patch +'@shopify/theme': patch +--- + +Remove image proxying through local server to enable proper functioning of Liquid filters diff --git a/.changeset/hot-schools-give.md b/.changeset/hot-schools-give.md new file mode 100644 index 00000000000..37d193dada6 --- /dev/null +++ b/.changeset/hot-schools-give.md @@ -0,0 +1,6 @@ +--- +'@shopify/cli-kit': patch +'@shopify/theme': patch +--- + +Fix theme dev re-authentication diff --git a/.changeset/orange-sloths-collect.md b/.changeset/orange-sloths-collect.md new file mode 100644 index 00000000000..50cddd4f83c --- /dev/null +++ b/.changeset/orange-sloths-collect.md @@ -0,0 +1,6 @@ +--- +'@shopify/cli-kit': patch +'@shopify/app': patch +--- + +Show extensions as disabled during generation when they have reached their limit diff --git a/.changeset/pink-wasps-marry.md b/.changeset/pink-wasps-marry.md new file mode 100644 index 00000000000..0b6ba3af93e --- /dev/null +++ b/.changeset/pink-wasps-marry.md @@ -0,0 +1,6 @@ +--- +'@shopify/cli-kit': patch +'@shopify/theme': patch +--- + +Fix an issue in `shopify theme dev` that was affecting asset loading on local servers, in some shops diff --git a/.changeset/pre.json b/.changeset/pre.json index 05591c01ad8..2b00dd53df8 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -17,5 +17,15 @@ "@shopify/ui-extensions-test-utils": "3.25.0", "@shopify/workspace": "0.1.0" }, - "changesets": [] + "changesets": [ + "afraid-bugs-press", + "blue-carpets-sin", + "cold-cooks-tease", + "dull-houses-taste", + "hot-schools-give", + "kind-melons-swim", + "orange-sloths-collect", + "small-fishes-sleep", + "tall-cycles-think" + ] } diff --git a/.changeset/small-fishes-sleep.md b/.changeset/small-fishes-sleep.md new file mode 100644 index 00000000000..ebdbabd4551 --- /dev/null +++ b/.changeset/small-fishes-sleep.md @@ -0,0 +1,5 @@ +--- +'@shopify/app': patch +--- + +Fix app loader error message when not specification is found diff --git a/.changeset/three-students-whisper.md b/.changeset/three-students-whisper.md new file mode 100644 index 00000000000..205da11073a --- /dev/null +++ b/.changeset/three-students-whisper.md @@ -0,0 +1,5 @@ +--- +'@shopify/theme': minor +--- + +Fix `shopify theme dev` command to show valid URLs when `--theme` flag is used with a theme name diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 96af1ad1ced..1363aa4f8af 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -9,7 +9,7 @@ env: DEBUG: '1' SHOPIFY_CLI_ENV: development SHOPIFY_CONFIG: debug - PNPM_VERSION: '8.5.1' + PNPM_VERSION: '8.6.1' RUBY_VERSION: '3.1.2' BUNDLER_VERSION: '2.3.18' diff --git a/.github/workflows/combine-prs.yml b/.github/workflows/combine-prs.yml new file mode 100644 index 00000000000..af9963db228 --- /dev/null +++ b/.github/workflows/combine-prs.yml @@ -0,0 +1,152 @@ +name: 'Combine PRs' +# Source: https://github.com/hrvey/combine-prs-workflow +# Controls when the action will run - in this case triggered manually +on: + workflow_dispatch: + inputs: + branchPrefix: + description: 'Branch prefix to find combinable PRs based on' + required: true + default: 'dependabot' + mustBeGreen: + description: 'Only combine PRs that are green (status is success). Set to false if repo does not run checks' + type: boolean + required: true + default: true + combineBranchName: + description: 'Name of the branch to combine PRs into' + required: true + default: 'combine-prs-branch' + ignoreLabel: + description: 'Exclude PRs with this label' + required: true + default: 'nocombine' + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "combine-prs" + combine-prs: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + - uses: actions/github-script@v6 + id: create-combined-pr + name: Create Combined PR + with: + github-token: ${{secrets.GITHUB_TOKEN}} + script: | + const pulls = await github.paginate('GET /repos/:owner/:repo/pulls', { + owner: context.repo.owner, + repo: context.repo.repo + }); + let branchesAndPRStrings = []; + let baseBranch = null; + let baseBranchSHA = null; + for (const pull of pulls) { + const branch = pull['head']['ref']; + console.log('Pull for branch: ' + branch); + if (branch.startsWith('${{ github.event.inputs.branchPrefix }}')) { + console.log('Branch matched prefix: ' + branch); + let statusOK = true; + if(${{ github.event.inputs.mustBeGreen }}) { + console.log('Checking green status: ' + branch); + const stateQuery = `query($owner: String!, $repo: String!, $pull_number: Int!) { + repository(owner: $owner, name: $repo) { + pullRequest(number:$pull_number) { + commits(last: 1) { + nodes { + commit { + statusCheckRollup { + state + } + } + } + } + } + } + }` + const vars = { + owner: context.repo.owner, + repo: context.repo.repo, + pull_number: pull['number'] + }; + const result = await github.graphql(stateQuery, vars); + const [{ commit }] = result.repository.pullRequest.commits.nodes; + const state = commit.statusCheckRollup.state + console.log('Validating status: ' + state); + if(state != 'SUCCESS') { + console.log('Discarding ' + branch + ' with status ' + state); + statusOK = false; + } + } + console.log('Checking labels: ' + branch); + const labels = pull['labels']; + for(const label of labels) { + const labelName = label['name']; + console.log('Checking label: ' + labelName); + if(labelName == '${{ github.event.inputs.ignoreLabel }}') { + console.log('Discarding ' + branch + ' with label ' + labelName); + statusOK = false; + } + } + if (statusOK) { + console.log('Adding branch to array: ' + branch); + const prString = '#' + pull['number'] + ' ' + pull['title']; + branchesAndPRStrings.push({ branch, prString }); + baseBranch = pull['base']['ref']; + baseBranchSHA = pull['base']['sha']; + } + } + } + if (branchesAndPRStrings.length == 0) { + core.setFailed('No PRs/branches matched criteria'); + return; + } + try { + await github.rest.git.createRef({ + owner: context.repo.owner, + repo: context.repo.repo, + ref: 'refs/heads/' + '${{ github.event.inputs.combineBranchName }}', + sha: baseBranchSHA + }); + } catch (error) { + console.log(error); + core.setFailed('Failed to create combined branch - maybe a branch by that name already exists?'); + return; + } + + let combinedPRs = []; + let mergeFailedPRs = []; + for(const { branch, prString } of branchesAndPRStrings) { + try { + await github.rest.repos.merge({ + owner: context.repo.owner, + repo: context.repo.repo, + base: '${{ github.event.inputs.combineBranchName }}', + head: branch, + }); + console.log('Merged branch ' + branch); + combinedPRs.push(prString); + } catch (error) { + console.log('Failed to merge branch ' + branch); + mergeFailedPRs.push(prString); + } + } + + console.log('Creating combined PR'); + const combinedPRsString = combinedPRs.join('\n'); + let body = 'โœ… This PR was created by the Combine PRs action by combining the following PRs:\n' + combinedPRsString; + if(mergeFailedPRs.length > 0) { + const mergeFailedPRsString = mergeFailedPRs.join('\n'); + body += '\n\nโš ๏ธ The following PRs were left out due to merge conflicts:\n' + mergeFailedPRsString + } + await github.rest.pulls.create({ + owner: context.repo.owner, + repo: context.repo.repo, + title: 'Dependabot - Combined updates PR', + head: '${{ github.event.inputs.combineBranchName }}', + base: baseBranch, + body: body + }); diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b96ac9ea821..d0668a17f75 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ concurrency: cancel-in-progress: true env: - PNPM_VERSION: '8.5.1' + PNPM_VERSION: '8.6.1' GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} jobs: diff --git a/.github/workflows/shopify-cli.yml b/.github/workflows/shopify-cli.yml index 04fa418e246..5f03bb284de 100644 --- a/.github/workflows/shopify-cli.yml +++ b/.github/workflows/shopify-cli.yml @@ -50,7 +50,7 @@ env: SHOPIFY_CONFIG: debug RUBY_VERSION: '3.1.2' BUNDLER_VERSION: '2.3.18' - PNPM_VERSION: '8.5.1' + PNPM_VERSION: '8.6.1' BUNDLE_GEMFILE: ${{ github.workspace }}/packages/cli-kit/assets/cli-ruby/Gemfile BUNDLE_WITHOUT: 'test:development' diff --git a/bin/create-test-app.js b/bin/create-test-app.js index 2e723136a80..eb6443aa5f1 100755 --- a/bin/create-test-app.js +++ b/bin/create-test-app.js @@ -1,25 +1,26 @@ #! /usr/bin/env node -import * as readline from 'node:readline/promises' -import { stdin as input, stdout as output } from 'node:process' -import { createRequire } from "module" -import { fileURLToPath } from "url" -import { Readable } from "stream" -import execa from "execa" -import path from "path" -import os from "os" -import fs from "fs" - -const require = createRequire(import.meta.url) -const { program } = require("commander") - -const __filename = fileURLToPath(import.meta.url) -const __dirname = path.dirname(__filename) -const homeDir = os.homedir() -const today = new Date().toISOString().split("T")[0] - -const installationTypes = ["local", "nightly"] -const extensionTypes = ["ui", "theme", "function"] +import * as readline from "node:readline/promises"; +import { stdin as input, stdout as output } from "node:process"; +import { createRequire } from "module"; +import { fileURLToPath } from "url"; +import { Readable } from "stream"; +import execa, { node } from "execa"; +import path from "path"; +import os from "os"; +import fs from "fs"; + +const require = createRequire(import.meta.url); +const { program } = require("commander"); + +const __filename = fileURLToPath(import.meta.url); +const __dirname = path.dirname(__filename); +const homeDir = os.homedir(); +const today = new Date().toISOString().split("T")[0]; + +const installationTypes = ["local", "nightly"]; +const extensionTypes = ["ui", "theme", "function"]; +const packageManagers = ["npm", "yarn", "pnpm"]; program .description("Creates a test app.") @@ -44,159 +45,237 @@ program `nightly-app-${today}` ) .option( - "--cleanup", - "delete temp app afterwards", - false - ) - .option( - "--deploy", - "deploy the app to Shopify", - false + "-p, --package-manager ", + `package manager to be used: ${packageManagers.join(", ")}` ) + .option("--cleanup", "delete temp app afterwards", false) + .option("--deploy", "deploy the app to Shopify", false) .action(async (options) => { // helpers const log = (message) => { - console.log(`\r\n๐Ÿงช ${message}`) + console.log(`\r\n๐Ÿงช ${message}`); + }; + + // main + let shopifyExec; + let nodePackageManager; + let defaultOpts = { stdio: "inherit" }; + let extensions = options.bare + ? new Set() + : new Set(options.extensions.split(",")); + + const appName = options.name; + const appPath = path.join(homeDir, "Desktop", appName); + + switch (options.packageManager) { + case "npm": + case "yarn": + case "pnpm": + nodePackageManager = options.packageManager; + break; + case undefined: + if (options.install === "local") { + nodePackageManager = "pnpm"; + } else if (options.install === "nightly") { + nodePackageManager = "npm"; + } + break; + default: + log( + `Invalid package manager: ${ + options.packageManager + }. Must be one of ${packageManagers.join(", ")}.` + ); + process.exit(1); } + const nodeExec = async (commands, args = [], options = {}) => { + switch (nodePackageManager) { + case "yarn": + case "pnpm": + return execa( + nodePackageManager, + ["run", ...commands, ...args], + options + ); + break; + case "npm": + return execa("npm", ["run", ...commands, "--", ...args], options); + } + }; + const appExec = async (command, args, options = {}) => { - const defaults = { cwd: appPath, stdio: "inherit" } - await execa(command, args, { ...defaults, ...options }) - } + const defaults = { cwd: appPath, stdio: "inherit" }; + log(`Running \`${command} ${args.join(" ")}\``); + await execa(command, args, { ...defaults, ...options }); + }; + + const appNodeExec = async (commands, args = [], options = {}) => { + const defaults = { cwd: appPath, stdio: "inherit" }; + log(`Running '${commands.join(" ")}' with args '${args.join(" ")}'`); + await nodeExec(commands, args, { ...defaults, ...options }); + }; - const pnpmDev = async () => { + const appDev = async () => { try { - await appExec("pnpm", ["run", "dev"]) + await appExec(nodePackageManager, ["run", "dev"]); } catch (error) {} - } + }; - // main - let shopifyExec - let defaultOpts = { stdio: "inherit" } - let extensions = options.bare ? new Set() : new Set(options.extensions.split(",")) + const generateExtension = async (args, options = {}) => { + await appNodeExec(["generate", "extension"], args, options); + }; - const appName = options.name - const appPath = path.join(homeDir, "Desktop", appName) + if (fs.existsSync(appPath)) { + const rl = readline.createInterface({ input, output }); + const answer = await rl.question( + `\r\n๐Ÿ™‹ I've found an app in '${appPath}'. Should I remove it and keep going? (Y/n)` + ); + rl.close(); + + if (answer.toLowerCase() === "y" || answer === "") { + log(`Removing app in '${appPath}'...`); + fs.rmSync(appPath, { recursive: true }); + } else { + process.exit(0); + } + } switch (options.install) { case "local": - log("Building latest release...") - await execa("pnpm", ["build"]) - - if (fs.existsSync(appPath)) { - const rl = readline.createInterface({ input, output }) - const answer = await rl.question(`\r\n๐Ÿ™‹โ€โ™€๏ธ I've found an app in ${appPath}. Should I remove it and keep going? (Y/n)`); - rl.close(); - - if (answer.toLowerCase() === 'y' || answer === '') { - log(`Removing app in '${appPath}'...`) - fs.rmSync(appPath, { recursive: true }) - } else { - process.exit(0) - } - } + log("Building latest release..."); + await nodeExec(["build"]); - log(`Creating new app in ${appPath}...`) - await execa( - "pnpm", + log(`Creating new app in '${appPath}'...`); + await nodeExec( + ["create-app"], [ - "create-app", "--local", "--template=node", `--name=${appName}`, `--path=${path.join(homeDir, "Desktop")}`, ], defaultOpts - ) + ); - // there is a bug with pnpm and local references on windows: - // https://github.com/pnpm/pnpm/issues/5510 - if (os.platform() == "win32") { - fs.rmSync(path.join(appPath, "pnpm-lock.yaml")) - } + // there are some bugs with lockfiles and local references + ["package-lock.json", "pnpm-lock.yaml", "yarn.lock"].forEach((lockFile) => { + let lockFilePath = path.join(appPath, lockFile); + if (fs.existsSync(lockFilePath)) { + fs.rmSync(lockFilePath); + } + }); - break + break; case "nightly": - log(`Creating new app in ${appPath}...`) - await execa( - "pnpm", - [ - "create", - "@shopify/app@nightly", - "--template=node", - `--name=${appName}`, - `--path=${path.join(homeDir, "Desktop")}`, - ], - defaultOpts - ) + log(`Creating new app in '${appPath}'...`); + let initArgs = ["--template=node", `--name=${appName}`, `--path=${path.join(homeDir, "Desktop")}`]; + switch (nodePackageManager) { + case "yarn": + // yarn doesn't support 'create @shopify/app@nightly' syntax + await execa( + "npm", + [ + "init", + "@shopify/app@nightly", + "--package-manager=yarn", + "--", + ...initArgs + ], + defaultOpts + ); + break; + case "pnpm": + await execa( + nodePackageManager, + [ + "create", + "@shopify/app@nightly", + ...initArgs + ], + defaultOpts + ); + break; + case "npm": + await execa( + "npm", + [ + "init", + "@shopify/app@nightly", + "--", + ...initArgs + ], + defaultOpts + ); + } - break + break; default: - log(`Invalid installation type: ${options.install}. Must be one of ${installationTypes.join(", ")}.`) - process.exit(1) + log( + `Invalid installation type: ${ + options.install + }. Must be one of ${installationTypes.join(", ")}.` + ); + process.exit(1); } // on windows pnpm sets the wrong paths, rerunning install fixes it - log("Making sure pnpm is setup correctly") - await appExec("pnpm", ["install"]) + log("Making sure node is setup correctly..."); + await appExec(nodePackageManager, ["install"]); if (extensions.has("ui")) { - log("Generating UI extension...") - await appExec("pnpm", [ - "generate", - "extension", + log("Generating UI extension..."); + await generateExtension([ "--type=subscription_ui", "--name=sub-ui-ext", "--template=vanilla-js", - ]) - await pnpmDev() + ]); + await appDev(); } if (extensions.has("theme")) { // set Ruby version inside app or CLI2 will complain - fs.writeFileSync(path.join(appPath, ".ruby-version"), "3.2.1") + fs.writeFileSync(path.join(appPath, ".ruby-version"), "3.2.1"); - log("Generating Theme App extension...") - await appExec("pnpm", [ - "generate", - "extension", + log("Generating Theme App extension..."); + await generateExtension([ "--type=theme_app_extension", "--name=theme-app-ext", - ]) - await pnpmDev() + ]); + await appDev(); } if (extensions.has("function")) { - log("Generating JS function...") - const functionDir = path.join(appPath, "extensions", "prod-discount-fun") - await appExec("pnpm", [ - "generate", - "extension", + log("Generating JS function..."); + const functionDir = path.join(appPath, "extensions", "prod-discount-fun"); + await generateExtension([ "--type=product_discounts", "--name=prod-discount-fun", "--template=typescript", - ]) - await appExec("pnpm", ["build"], { cwd: functionDir }) - const previewProcess = execa("pnpm", ["preview"], { + ]); + await appExec(nodePackageManager, ["run", "build"], { cwd: functionDir }); + const previewProcess = execa(nodePackageManager, ["run", "preview"], { cwd: functionDir, stdout: "inherit", - }) - Readable.from(['{"discountNode":{"metafield":null}}']).pipe(previewProcess.stdin) - await previewProcess + }); + Readable.from(['{"discountNode":{"metafield":null}}']).pipe( + previewProcess.stdin + ); + await previewProcess; } if (options.deploy) { - log("Deploying your app...") - await appExec("pnpm", ["shopify", "app", "deploy", "-f"]) + log("Deploying your app..."); + await appNodeExec(["shopify", "app", "deploy"], ["-f"]); } if (options.cleanup) { - log(`Removing app in '${appPath}'...`) - fs.rmSync(appPath, { recursive: true }) + log(`Removing app in '${appPath}'...`); + fs.rmSync(appPath, { recursive: true }); } - log("All done! ๐ŸŽ‰") - }) + log("All done! ๐ŸŽ‰"); + }); // run it -program.parse() +program.parse(); diff --git a/bin/shadowenv/yarn b/bin/shadowenv/yarn index 39b3528ff8f..fc92d48b7d1 100755 --- a/bin/shadowenv/yarn +++ b/bin/shadowenv/yarn @@ -1,6 +1,7 @@ #!/usr/bin/env bash -printf "\033[1;32myarn \033[0;32mhas been superseded by \033[1;32mpnpm \033[0;32mso use that instead.\n\033[0m" +printf "\033[1;32myarn \033[0;32mhas been superseded by \033[1;32mpnpm \033[0;32mso please use that instead.\n\033[0m" printf "\033[0;30mCheck out https://github.com/Shopify/cli/pull/870 to understand the rationale behind the move.\n" -exit 1 +"$(brew --prefix)/bin/yarn" "$@" + diff --git a/dev.yml b/dev.yml index 1b557c4f560..6f710dbc66d 100644 --- a/dev.yml +++ b/dev.yml @@ -12,7 +12,7 @@ up: - jq - delve - pnpm: - version: 8.5.1 + version: 8.6.1 - custom: name: 'Install PNPM dependencies' # we flip these two conditions to always run `pnpm install` diff --git a/docs/api/cli-kit/assets/highlight.css b/docs/api/cli-kit/assets/highlight.css index e12ea9f4a61..00ef6102ecd 100644 --- a/docs/api/cli-kit/assets/highlight.css +++ b/docs/api/cli-kit/assets/highlight.css @@ -9,14 +9,14 @@ --dark-hl-3: #9CDCFE; --light-hl-4: #A31515; --dark-hl-4: #CE9178; - --light-hl-5: #098658; - --dark-hl-5: #B5CEA8; - --light-hl-6: #000000; - --dark-hl-6: #C8C8C8; - --light-hl-7: #008000; - --dark-hl-7: #6A9955; - --light-hl-8: #795E26; - --dark-hl-8: #DCDCAA; + --light-hl-5: #795E26; + --dark-hl-5: #DCDCAA; + --light-hl-6: #098658; + --dark-hl-6: #B5CEA8; + --light-hl-7: #000000; + --dark-hl-7: #C8C8C8; + --light-hl-8: #008000; + --dark-hl-8: #6A9955; --light-hl-9: #0070C1; --dark-hl-9: #4FC1FF; --light-code-background: #FFFFFF; diff --git a/docs/api/cli-kit/assets/search.js b/docs/api/cli-kit/assets/search.js index 7e84591d2f3..145575db7b3 100644 --- a/docs/api/cli-kit/assets/search.js +++ b/docs/api/cli-kit/assets/search.js @@ -1 +1 @@ -window.searchData = JSON.parse("{\"kinds\":{\"2\":\"Module\",\"8\":\"Enumeration\",\"16\":\"Enumeration Member\",\"32\":\"Variable\",\"64\":\"Function\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"262144\":\"Accessor\",\"4194304\":\"Type alias\",\"8388608\":\"Reference\"},\"rows\":[{\"kind\":2,\"name\":\"common/array\",\"url\":\"modules/common_array.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"takeRandomFromArray\",\"url\":\"functions/common_array.takeRandomFromArray.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/array\"},{\"kind\":64,\"name\":\"getArrayRejectingUndefined\",\"url\":\"functions/common_array.getArrayRejectingUndefined.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/array\"},{\"kind\":64,\"name\":\"getArrayContainsDuplicates\",\"url\":\"functions/common_array.getArrayContainsDuplicates.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/array\"},{\"kind\":64,\"name\":\"uniqBy\",\"url\":\"functions/common_array.uniqBy.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/array\"},{\"kind\":64,\"name\":\"difference\",\"url\":\"functions/common_array.difference.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/array\"},{\"kind\":2,\"name\":\"common/collection\",\"url\":\"modules/common_collection.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"groupBy\",\"url\":\"functions/common_collection.groupBy.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/common_collection.groupBy.html#groupBy.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"common/collection.groupBy.groupBy\"},{\"kind\":64,\"name\":\"partition\",\"url\":\"functions/common_collection.partition.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/collection\"},{\"kind\":2,\"name\":\"common/function\",\"url\":\"modules/common_function.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"memoize\",\"url\":\"functions/common_function.memoize.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/function\"},{\"kind\":64,\"name\":\"debounce\",\"url\":\"functions/common_function.debounce.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/function\"},{\"kind\":2,\"name\":\"common/lang\",\"url\":\"modules/common_lang.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isEqual\",\"url\":\"functions/common_lang.isEqual.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/lang\"},{\"kind\":2,\"name\":\"common/object\",\"url\":\"modules/common_object.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"deepMergeObjects\",\"url\":\"functions/common_object.deepMergeObjects.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/object\"},{\"kind\":64,\"name\":\"pickBy\",\"url\":\"functions/common_object.pickBy.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/object\"},{\"kind\":64,\"name\":\"mapValues\",\"url\":\"functions/common_object.mapValues.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/object\"},{\"kind\":2,\"name\":\"common/string\",\"url\":\"modules/common_string.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getRandomName\",\"url\":\"functions/common_string.getRandomName.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"capitalize\",\"url\":\"functions/common_string.capitalize.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"pluralize\",\"url\":\"functions/common_string.pluralize.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"tryParseInt\",\"url\":\"functions/common_string.tryParseInt.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"linesToColumns\",\"url\":\"functions/common_string.linesToColumns.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"slugify\",\"url\":\"functions/common_string.slugify.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"escapeRegExp\",\"url\":\"functions/common_string.escapeRegExp.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"camelize\",\"url\":\"functions/common_string.camelize.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"hyphenate\",\"url\":\"functions/common_string.hyphenate.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"underscore\",\"url\":\"functions/common_string.underscore.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"constantize\",\"url\":\"functions/common_string.constantize.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":4194304,\"name\":\"RandomNameFamily\",\"url\":\"types/common_string.RandomNameFamily.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":2,\"name\":\"common/url\",\"url\":\"modules/common_url.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isValidURL\",\"url\":\"functions/common_url.isValidURL.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/url\"},{\"kind\":2,\"name\":\"common/version\",\"url\":\"modules/common_version.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":32,\"name\":\"CLI_KIT_VERSION\",\"url\":\"variables/common_version.CLI_KIT_VERSION.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"common/version\"},{\"kind\":2,\"name\":\"node/abort\",\"url\":\"modules/node_abort.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"AbortController\",\"url\":\"classes/node_abort.AbortController.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/abort\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_abort.AbortController.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/abort.AbortController\"},{\"kind\":128,\"name\":\"AbortSignal\",\"url\":\"classes/node_abort.AbortSignal.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/abort\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_abort.AbortSignal.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/abort.AbortSignal\"},{\"kind\":2,\"name\":\"node/analytics\",\"url\":\"modules/node_analytics.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"reportAnalyticsEvent\",\"url\":\"functions/node_analytics.reportAnalyticsEvent.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/analytics\"},{\"kind\":2,\"name\":\"node/archiver\",\"url\":\"modules/node_archiver.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"zip\",\"url\":\"functions/node_archiver.zip.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/archiver\"},{\"kind\":2,\"name\":\"node/base-command\",\"url\":\"modules/node_base_command.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"addFromParsedFlags\",\"url\":\"functions/node_base_command.addFromParsedFlags.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/base-command\"},{\"kind\":128,\"name\":\"default\",\"url\":\"classes/node_base_command.default.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/base-command\"},{\"kind\":2048,\"name\":\"analyticsNameOverride\",\"url\":\"classes/node_base_command.default.html#analyticsNameOverride\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/base-command.default\"},{\"kind\":2048,\"name\":\"catch\",\"url\":\"classes/node_base_command.default.html#catch\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/base-command.default\"},{\"kind\":2048,\"name\":\"init\",\"url\":\"classes/node_base_command.default.html#init\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/base-command.default\"},{\"kind\":2048,\"name\":\"exitWithTimestampWhenEnvVariablePresent\",\"url\":\"classes/node_base_command.default.html#exitWithTimestampWhenEnvVariablePresent\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/base-command.default\"},{\"kind\":2048,\"name\":\"parse\",\"url\":\"classes/node_base_command.default.html#parse\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/base-command.default\"},{\"kind\":2048,\"name\":\"resultWithEnvironment\",\"url\":\"classes/node_base_command.default.html#resultWithEnvironment\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/base-command.default\"},{\"kind\":2048,\"name\":\"environmentsFilename\",\"url\":\"classes/node_base_command.default.html#environmentsFilename\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/base-command.default\"},{\"kind\":2,\"name\":\"node/cli\",\"url\":\"modules/node_cli.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"runCLI\",\"url\":\"functions/node_cli.runCLI.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/cli\"},{\"kind\":64,\"name\":\"runCreateCLI\",\"url\":\"functions/node_cli.runCreateCLI.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/cli\"},{\"kind\":64,\"name\":\"useLocalCLIIfDetected\",\"url\":\"functions/node_cli.useLocalCLIIfDetected.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/cli\"},{\"kind\":64,\"name\":\"localCliPackage\",\"url\":\"functions/node_cli.localCliPackage.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/cli\"},{\"kind\":32,\"name\":\"globalFlags\",\"url\":\"variables/node_cli.globalFlags.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/cli\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/node_cli.globalFlags.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"node/cli.globalFlags\"},{\"kind\":1024,\"name\":\"no-color\",\"url\":\"variables/node_cli.globalFlags.html#__type.no_color\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/cli.globalFlags.__type\"},{\"kind\":1024,\"name\":\"verbose\",\"url\":\"variables/node_cli.globalFlags.html#__type.verbose\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/cli.globalFlags.__type\"},{\"kind\":8388608,\"name\":\"default\",\"url\":\"modules/node_cli.html#default\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"node/cli\"},{\"kind\":2,\"name\":\"node/colors\",\"url\":\"modules/node_colors.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"node/crypto\",\"url\":\"modules/node_crypto.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"randomHex\",\"url\":\"functions/node_crypto.randomHex.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/crypto\"},{\"kind\":64,\"name\":\"base64URLEncode\",\"url\":\"functions/node_crypto.base64URLEncode.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/crypto\"},{\"kind\":64,\"name\":\"sha256\",\"url\":\"functions/node_crypto.sha256.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/crypto\"},{\"kind\":64,\"name\":\"hashString\",\"url\":\"functions/node_crypto.hashString.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/crypto\"},{\"kind\":64,\"name\":\"fileHash\",\"url\":\"functions/node_crypto.fileHash.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/crypto\"},{\"kind\":64,\"name\":\"randomBytes\",\"url\":\"functions/node_crypto.randomBytes.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/crypto\"},{\"kind\":64,\"name\":\"randomUUID\",\"url\":\"functions/node_crypto.randomUUID.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/crypto\"},{\"kind\":2,\"name\":\"node/dot-env\",\"url\":\"modules/node_dot_env.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"readAndParseDotEnv\",\"url\":\"functions/node_dot_env.readAndParseDotEnv.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/dot-env\"},{\"kind\":64,\"name\":\"writeDotEnv\",\"url\":\"functions/node_dot_env.writeDotEnv.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/dot-env\"},{\"kind\":64,\"name\":\"patchEnvFile\",\"url\":\"functions/node_dot_env.patchEnvFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/dot-env\"},{\"kind\":64,\"name\":\"DotEnvNotFoundError\",\"url\":\"functions/node_dot_env.DotEnvNotFoundError.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/dot-env\"},{\"kind\":256,\"name\":\"DotEnvFile\",\"url\":\"interfaces/node_dot_env.DotEnvFile.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/dot-env\"},{\"kind\":1024,\"name\":\"path\",\"url\":\"interfaces/node_dot_env.DotEnvFile.html#path\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/dot-env.DotEnvFile\"},{\"kind\":1024,\"name\":\"variables\",\"url\":\"interfaces/node_dot_env.DotEnvFile.html#variables\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/dot-env.DotEnvFile\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_dot_env.DotEnvFile.html#variables.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/dot-env.DotEnvFile.variables\"},{\"kind\":2,\"name\":\"node/environment\",\"url\":\"modules/node_environment.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getEnvironmentVariables\",\"url\":\"functions/node_environment.getEnvironmentVariables.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/environment\"},{\"kind\":64,\"name\":\"getPartnersToken\",\"url\":\"functions/node_environment.getPartnersToken.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/environment\"},{\"kind\":64,\"name\":\"usePartnersToken\",\"url\":\"functions/node_environment.usePartnersToken.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/environment\"},{\"kind\":64,\"name\":\"getOrganization\",\"url\":\"functions/node_environment.getOrganization.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/environment\"},{\"kind\":64,\"name\":\"getBackendPort\",\"url\":\"functions/node_environment.getBackendPort.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/environment\"},{\"kind\":64,\"name\":\"getIdentityTokenInformation\",\"url\":\"functions/node_environment.getIdentityTokenInformation.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/environment\"},{\"kind\":2,\"name\":\"node/environments\",\"url\":\"modules/node_environments.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"loadEnvironment\",\"url\":\"functions/node_environments.loadEnvironment.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/environments\"},{\"kind\":256,\"name\":\"Environments\",\"url\":\"interfaces/node_environments.Environments.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/environments\"},{\"kind\":2,\"name\":\"node/error-handler\",\"url\":\"modules/node_error_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"errorHandler\",\"url\":\"functions/node_error_handler.errorHandler.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/error-handler\"},{\"kind\":64,\"name\":\"sendErrorToBugsnag\",\"url\":\"functions/node_error_handler.sendErrorToBugsnag.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/error-handler\"},{\"kind\":64,\"name\":\"cleanStackFrameFilePath\",\"url\":\"functions/node_error_handler.cleanStackFrameFilePath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/error-handler\"},{\"kind\":64,\"name\":\"registerCleanBugsnagErrorsFromWithinPlugins\",\"url\":\"functions/node_error_handler.registerCleanBugsnagErrorsFromWithinPlugins.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/error-handler\"},{\"kind\":64,\"name\":\"addBugsnagMetadata\",\"url\":\"functions/node_error_handler.addBugsnagMetadata.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/error-handler\"},{\"kind\":2,\"name\":\"node/error\",\"url\":\"modules/node_error.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"handler\",\"url\":\"functions/node_error.handler.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":64,\"name\":\"errorMapper\",\"url\":\"functions/node_error.errorMapper.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":64,\"name\":\"shouldReportError\",\"url\":\"functions/node_error.shouldReportError.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":64,\"name\":\"cleanSingleStackTracePath\",\"url\":\"functions/node_error.cleanSingleStackTracePath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":8,\"name\":\"FatalErrorType\",\"url\":\"enums/node_error.FatalErrorType.html\",\"classes\":\"tsd-kind-enum tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":16,\"name\":\"Abort\",\"url\":\"enums/node_error.FatalErrorType.html#Abort\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"node/error.FatalErrorType\"},{\"kind\":16,\"name\":\"AbortSilent\",\"url\":\"enums/node_error.FatalErrorType.html#AbortSilent\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"node/error.FatalErrorType\"},{\"kind\":16,\"name\":\"Bug\",\"url\":\"enums/node_error.FatalErrorType.html#Bug\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"node/error.FatalErrorType\"},{\"kind\":128,\"name\":\"CancelExecution\",\"url\":\"classes/node_error.CancelExecution.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":128,\"name\":\"FatalError\",\"url\":\"classes/node_error.FatalError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_error.FatalError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/error.FatalError\"},{\"kind\":1024,\"name\":\"tryMessage\",\"url\":\"classes/node_error.FatalError.html#tryMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/error.FatalError\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/node_error.FatalError.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/error.FatalError\"},{\"kind\":1024,\"name\":\"nextSteps\",\"url\":\"classes/node_error.FatalError.html#nextSteps\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/error.FatalError\"},{\"kind\":1024,\"name\":\"formattedMessage\",\"url\":\"classes/node_error.FatalError.html#formattedMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/error.FatalError\"},{\"kind\":1024,\"name\":\"customSections\",\"url\":\"classes/node_error.FatalError.html#customSections\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/error.FatalError\"},{\"kind\":128,\"name\":\"AbortError\",\"url\":\"classes/node_error.AbortError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_error.AbortError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/error.AbortError\"},{\"kind\":1024,\"name\":\"nextSteps\",\"url\":\"classes/node_error.AbortError.html#nextSteps\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/error.AbortError\"},{\"kind\":1024,\"name\":\"customSections\",\"url\":\"classes/node_error.AbortError.html#customSections\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/error.AbortError\"},{\"kind\":1024,\"name\":\"tryMessage\",\"url\":\"classes/node_error.AbortError.html#tryMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.AbortError\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/node_error.AbortError.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.AbortError\"},{\"kind\":1024,\"name\":\"formattedMessage\",\"url\":\"classes/node_error.AbortError.html#formattedMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.AbortError\"},{\"kind\":128,\"name\":\"ExternalError\",\"url\":\"classes/node_error.ExternalError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_error.ExternalError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/error.ExternalError\"},{\"kind\":1024,\"name\":\"command\",\"url\":\"classes/node_error.ExternalError.html#command\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/error.ExternalError\"},{\"kind\":1024,\"name\":\"args\",\"url\":\"classes/node_error.ExternalError.html#args\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/error.ExternalError\"},{\"kind\":1024,\"name\":\"tryMessage\",\"url\":\"classes/node_error.ExternalError.html#tryMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.ExternalError\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/node_error.ExternalError.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.ExternalError\"},{\"kind\":1024,\"name\":\"nextSteps\",\"url\":\"classes/node_error.ExternalError.html#nextSteps\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.ExternalError\"},{\"kind\":1024,\"name\":\"formattedMessage\",\"url\":\"classes/node_error.ExternalError.html#formattedMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.ExternalError\"},{\"kind\":1024,\"name\":\"customSections\",\"url\":\"classes/node_error.ExternalError.html#customSections\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.ExternalError\"},{\"kind\":128,\"name\":\"AbortSilentError\",\"url\":\"classes/node_error.AbortSilentError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_error.AbortSilentError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/error.AbortSilentError\"},{\"kind\":1024,\"name\":\"tryMessage\",\"url\":\"classes/node_error.AbortSilentError.html#tryMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.AbortSilentError\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/node_error.AbortSilentError.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.AbortSilentError\"},{\"kind\":1024,\"name\":\"nextSteps\",\"url\":\"classes/node_error.AbortSilentError.html#nextSteps\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.AbortSilentError\"},{\"kind\":1024,\"name\":\"formattedMessage\",\"url\":\"classes/node_error.AbortSilentError.html#formattedMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.AbortSilentError\"},{\"kind\":1024,\"name\":\"customSections\",\"url\":\"classes/node_error.AbortSilentError.html#customSections\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.AbortSilentError\"},{\"kind\":128,\"name\":\"BugError\",\"url\":\"classes/node_error.BugError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_error.BugError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/error.BugError\"},{\"kind\":1024,\"name\":\"tryMessage\",\"url\":\"classes/node_error.BugError.html#tryMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.BugError\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/node_error.BugError.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.BugError\"},{\"kind\":1024,\"name\":\"nextSteps\",\"url\":\"classes/node_error.BugError.html#nextSteps\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.BugError\"},{\"kind\":1024,\"name\":\"formattedMessage\",\"url\":\"classes/node_error.BugError.html#formattedMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.BugError\"},{\"kind\":1024,\"name\":\"customSections\",\"url\":\"classes/node_error.BugError.html#customSections\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.BugError\"},{\"kind\":2,\"name\":\"node/framework\",\"url\":\"modules/node_framework.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"resolveFramework\",\"url\":\"functions/node_framework.resolveFramework.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/framework\"},{\"kind\":2,\"name\":\"node/fs\",\"url\":\"modules/node_fs.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"stripUpPath\",\"url\":\"functions/node_fs.stripUpPath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"inTemporaryDirectory\",\"url\":\"functions/node_fs.inTemporaryDirectory.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"readFile\",\"url\":\"functions/node_fs.readFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"readFileSync\",\"url\":\"functions/node_fs.readFileSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"fileRealPath\",\"url\":\"functions/node_fs.fileRealPath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"copyFile\",\"url\":\"functions/node_fs.copyFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"touchFile\",\"url\":\"functions/node_fs.touchFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"touchFileSync\",\"url\":\"functions/node_fs.touchFileSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"appendFile\",\"url\":\"functions/node_fs.appendFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"appendFileSync\",\"url\":\"functions/node_fs.appendFileSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"writeFile\",\"url\":\"functions/node_fs.writeFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"writeFileSync\",\"url\":\"functions/node_fs.writeFileSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"mkdir\",\"url\":\"functions/node_fs.mkdir.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"mkdirSync\",\"url\":\"functions/node_fs.mkdirSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"removeFile\",\"url\":\"functions/node_fs.removeFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"renameFile\",\"url\":\"functions/node_fs.renameFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"removeFileSync\",\"url\":\"functions/node_fs.removeFileSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"rmdir\",\"url\":\"functions/node_fs.rmdir.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"mkTmpDir\",\"url\":\"functions/node_fs.mkTmpDir.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"isDirectory\",\"url\":\"functions/node_fs.isDirectory.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"fileSize\",\"url\":\"functions/node_fs.fileSize.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"fileSizeSync\",\"url\":\"functions/node_fs.fileSizeSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"unlinkFileSync\",\"url\":\"functions/node_fs.unlinkFileSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"createFileReadStream\",\"url\":\"functions/node_fs.createFileReadStream.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"createFileWriteStream\",\"url\":\"functions/node_fs.createFileWriteStream.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"fileLastUpdated\",\"url\":\"functions/node_fs.fileLastUpdated.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"fileLastUpdatedTimestamp\",\"url\":\"functions/node_fs.fileLastUpdatedTimestamp.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"moveFile\",\"url\":\"functions/node_fs.moveFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"chmod\",\"url\":\"functions/node_fs.chmod.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"fileHasExecutablePermissions\",\"url\":\"functions/node_fs.fileHasExecutablePermissions.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"fileExists\",\"url\":\"functions/node_fs.fileExists.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"fileExistsSync\",\"url\":\"functions/node_fs.fileExistsSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"generateRandomNameForSubdirectory\",\"url\":\"functions/node_fs.generateRandomNameForSubdirectory.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"glob\",\"url\":\"functions/node_fs.glob.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"pathToFileURL\",\"url\":\"functions/node_fs.pathToFileURL.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"findPathUp\",\"url\":\"functions/node_fs.findPathUp.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":4194304,\"name\":\"ReadOptions\",\"url\":\"types/node_fs.ReadOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":2,\"name\":\"node/git\",\"url\":\"modules/node_git.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"initializeGitRepository\",\"url\":\"functions/node_git.initializeGitRepository.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"checkIfIgnoredInGitRepository\",\"url\":\"functions/node_git.checkIfIgnoredInGitRepository.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"createGitIgnore\",\"url\":\"functions/node_git.createGitIgnore.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"downloadGitRepository\",\"url\":\"functions/node_git.downloadGitRepository.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"getLatestGitCommit\",\"url\":\"functions/node_git.getLatestGitCommit.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"addAllToGitFromDirectory\",\"url\":\"functions/node_git.addAllToGitFromDirectory.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"createGitCommit\",\"url\":\"functions/node_git.createGitCommit.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"getHeadSymbolicRef\",\"url\":\"functions/node_git.getHeadSymbolicRef.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"ensureGitIsPresentOrAbort\",\"url\":\"functions/node_git.ensureGitIsPresentOrAbort.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"ensureInsideGitDirectory\",\"url\":\"functions/node_git.ensureInsideGitDirectory.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"ensureIsClean\",\"url\":\"functions/node_git.ensureIsClean.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"isClean\",\"url\":\"functions/node_git.isClean.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":256,\"name\":\"GitIgnoreTemplate\",\"url\":\"interfaces/node_git.GitIgnoreTemplate.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":256,\"name\":\"GitCloneOptions\",\"url\":\"interfaces/node_git.GitCloneOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":1024,\"name\":\"repoUrl\",\"url\":\"interfaces/node_git.GitCloneOptions.html#repoUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/git.GitCloneOptions\"},{\"kind\":1024,\"name\":\"destination\",\"url\":\"interfaces/node_git.GitCloneOptions.html#destination\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/git.GitCloneOptions\"},{\"kind\":1024,\"name\":\"progressUpdater\",\"url\":\"interfaces/node_git.GitCloneOptions.html#progressUpdater\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/git.GitCloneOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_git.GitCloneOptions.html#progressUpdater.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/git.GitCloneOptions.progressUpdater\"},{\"kind\":1024,\"name\":\"shallow\",\"url\":\"interfaces/node_git.GitCloneOptions.html#shallow\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/git.GitCloneOptions\"},{\"kind\":1024,\"name\":\"latestTag\",\"url\":\"interfaces/node_git.GitCloneOptions.html#latestTag\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/git.GitCloneOptions\"},{\"kind\":256,\"name\":\"CreateGitCommitOptions\",\"url\":\"interfaces/node_git.CreateGitCommitOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":1024,\"name\":\"directory\",\"url\":\"interfaces/node_git.CreateGitCommitOptions.html#directory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/git.CreateGitCommitOptions\"},{\"kind\":1024,\"name\":\"author\",\"url\":\"interfaces/node_git.CreateGitCommitOptions.html#author\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/git.CreateGitCommitOptions\"},{\"kind\":128,\"name\":\"OutsideGitDirectoryError\",\"url\":\"classes/node_git.OutsideGitDirectoryError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_git.OutsideGitDirectoryError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.OutsideGitDirectoryError\"},{\"kind\":1024,\"name\":\"nextSteps\",\"url\":\"classes/node_git.OutsideGitDirectoryError.html#nextSteps\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.OutsideGitDirectoryError\"},{\"kind\":1024,\"name\":\"customSections\",\"url\":\"classes/node_git.OutsideGitDirectoryError.html#customSections\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.OutsideGitDirectoryError\"},{\"kind\":1024,\"name\":\"tryMessage\",\"url\":\"classes/node_git.OutsideGitDirectoryError.html#tryMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.OutsideGitDirectoryError\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/node_git.OutsideGitDirectoryError.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.OutsideGitDirectoryError\"},{\"kind\":1024,\"name\":\"formattedMessage\",\"url\":\"classes/node_git.OutsideGitDirectoryError.html#formattedMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.OutsideGitDirectoryError\"},{\"kind\":128,\"name\":\"GitDirectoryNotCleanError\",\"url\":\"classes/node_git.GitDirectoryNotCleanError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_git.GitDirectoryNotCleanError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.GitDirectoryNotCleanError\"},{\"kind\":1024,\"name\":\"nextSteps\",\"url\":\"classes/node_git.GitDirectoryNotCleanError.html#nextSteps\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.GitDirectoryNotCleanError\"},{\"kind\":1024,\"name\":\"customSections\",\"url\":\"classes/node_git.GitDirectoryNotCleanError.html#customSections\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.GitDirectoryNotCleanError\"},{\"kind\":1024,\"name\":\"tryMessage\",\"url\":\"classes/node_git.GitDirectoryNotCleanError.html#tryMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.GitDirectoryNotCleanError\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/node_git.GitDirectoryNotCleanError.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.GitDirectoryNotCleanError\"},{\"kind\":1024,\"name\":\"formattedMessage\",\"url\":\"classes/node_git.GitDirectoryNotCleanError.html#formattedMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.GitDirectoryNotCleanError\"},{\"kind\":2,\"name\":\"node/github\",\"url\":\"modules/node_github.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getLatestGitHubRelease\",\"url\":\"functions/node_github.getLatestGitHubRelease.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/github\"},{\"kind\":64,\"name\":\"parseGitHubRepositoryURL\",\"url\":\"functions/node_github.parseGitHubRepositoryURL.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/github\"},{\"kind\":64,\"name\":\"parseGitHubRepositoryReference\",\"url\":\"functions/node_github.parseGitHubRepositoryReference.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/github\"},{\"kind\":256,\"name\":\"GithubRelease\",\"url\":\"interfaces/node_github.GithubRelease.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/github\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/node_github.GithubRelease.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/node_github.GithubRelease.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":1024,\"name\":\"tag_name\",\"url\":\"interfaces/node_github.GithubRelease.html#tag_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/node_github.GithubRelease.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":1024,\"name\":\"body\",\"url\":\"interfaces/node_github.GithubRelease.html#body\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":1024,\"name\":\"draft\",\"url\":\"interfaces/node_github.GithubRelease.html#draft\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":1024,\"name\":\"prerelease\",\"url\":\"interfaces/node_github.GithubRelease.html#prerelease\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":1024,\"name\":\"created_at\",\"url\":\"interfaces/node_github.GithubRelease.html#created_at\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":1024,\"name\":\"published_at\",\"url\":\"interfaces/node_github.GithubRelease.html#published_at\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":1024,\"name\":\"tarball_url\",\"url\":\"interfaces/node_github.GithubRelease.html#tarball_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":256,\"name\":\"GithubRepositoryReference\",\"url\":\"interfaces/node_github.GithubRepositoryReference.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/github\"},{\"kind\":1024,\"name\":\"baseURL\",\"url\":\"interfaces/node_github.GithubRepositoryReference.html#baseURL\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRepositoryReference\"},{\"kind\":1024,\"name\":\"branch\",\"url\":\"interfaces/node_github.GithubRepositoryReference.html#branch\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRepositoryReference\"},{\"kind\":1024,\"name\":\"filePath\",\"url\":\"interfaces/node_github.GithubRepositoryReference.html#filePath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRepositoryReference\"},{\"kind\":2,\"name\":\"node/http\",\"url\":\"modules/node_http.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"formData\",\"url\":\"functions/node_http.formData.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/http\"},{\"kind\":64,\"name\":\"fetch\",\"url\":\"functions/node_http.fetch.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/http\"},{\"kind\":64,\"name\":\"shopifyFetch\",\"url\":\"functions/node_http.shopifyFetch.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/http\"},{\"kind\":64,\"name\":\"downloadFile\",\"url\":\"functions/node_http.downloadFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/http\"},{\"kind\":4194304,\"name\":\"Response\",\"url\":\"types/node_http.Response.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/http\"},{\"kind\":2,\"name\":\"node/liquid\",\"url\":\"modules/node_liquid.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"renderLiquidTemplate\",\"url\":\"functions/node_liquid.renderLiquidTemplate.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/liquid\"},{\"kind\":64,\"name\":\"recursiveLiquidTemplateCopy\",\"url\":\"functions/node_liquid.recursiveLiquidTemplateCopy.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/liquid\"},{\"kind\":2,\"name\":\"node/local-storage\",\"url\":\"modules/node_local_storage.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"LocalStorage\",\"url\":\"classes/node_local_storage.LocalStorage.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/local-storage\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_local_storage.LocalStorage.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/local-storage.LocalStorage\"},{\"kind\":1024,\"name\":\"config\",\"url\":\"classes/node_local_storage.LocalStorage.html#config\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"node/local-storage.LocalStorage\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/node_local_storage.LocalStorage.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/local-storage.LocalStorage\"},{\"kind\":2048,\"name\":\"set\",\"url\":\"classes/node_local_storage.LocalStorage.html#set\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/local-storage.LocalStorage\"},{\"kind\":2048,\"name\":\"delete\",\"url\":\"classes/node_local_storage.LocalStorage.html#delete\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/local-storage.LocalStorage\"},{\"kind\":2048,\"name\":\"clear\",\"url\":\"classes/node_local_storage.LocalStorage.html#clear\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/local-storage.LocalStorage\"},{\"kind\":2,\"name\":\"node/metadata\",\"url\":\"modules/node_metadata.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"createRuntimeMetadataContainer\",\"url\":\"functions/node_metadata.createRuntimeMetadataContainer.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":256,\"name\":\"RuntimeMetadataManager\",\"url\":\"interfaces/node_metadata.RuntimeMetadataManager.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":1024,\"name\":\"addPublicMetadata\",\"url\":\"interfaces/node_metadata.RuntimeMetadataManager.html#addPublicMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/metadata.RuntimeMetadataManager\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_metadata.RuntimeMetadataManager.html#addPublicMetadata.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/metadata.RuntimeMetadataManager.addPublicMetadata\"},{\"kind\":1024,\"name\":\"addSensitiveMetadata\",\"url\":\"interfaces/node_metadata.RuntimeMetadataManager.html#addSensitiveMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/metadata.RuntimeMetadataManager\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_metadata.RuntimeMetadataManager.html#addSensitiveMetadata.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/metadata.RuntimeMetadataManager.addSensitiveMetadata\"},{\"kind\":1024,\"name\":\"getAllPublicMetadata\",\"url\":\"interfaces/node_metadata.RuntimeMetadataManager.html#getAllPublicMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/metadata.RuntimeMetadataManager\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_metadata.RuntimeMetadataManager.html#getAllPublicMetadata.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/metadata.RuntimeMetadataManager.getAllPublicMetadata\"},{\"kind\":1024,\"name\":\"getAllSensitiveMetadata\",\"url\":\"interfaces/node_metadata.RuntimeMetadataManager.html#getAllSensitiveMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/metadata.RuntimeMetadataManager\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_metadata.RuntimeMetadataManager.html#getAllSensitiveMetadata.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/metadata.RuntimeMetadataManager.getAllSensitiveMetadata\"},{\"kind\":4194304,\"name\":\"PublicSchema\",\"url\":\"types/node_metadata.PublicSchema.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":4194304,\"name\":\"SensitiveSchema\",\"url\":\"types/node_metadata.SensitiveSchema.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":64,\"name\":\"getAllPublicMetadata\",\"url\":\"functions/node_metadata.getAllPublicMetadata.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":64,\"name\":\"getAllSensitiveMetadata\",\"url\":\"functions/node_metadata.getAllSensitiveMetadata.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":64,\"name\":\"addPublicMetadata\",\"url\":\"functions/node_metadata.addPublicMetadata.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":64,\"name\":\"addSensitiveMetadata\",\"url\":\"functions/node_metadata.addSensitiveMetadata.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":4194304,\"name\":\"Public\",\"url\":\"types/node_metadata.Public.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":4194304,\"name\":\"Sensitive\",\"url\":\"types/node_metadata.Sensitive.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":2,\"name\":\"node/mimes\",\"url\":\"modules/node_mimes.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"lookupMimeType\",\"url\":\"functions/node_mimes.lookupMimeType.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/mimes\"},{\"kind\":64,\"name\":\"setMimeTypes\",\"url\":\"functions/node_mimes.setMimeTypes.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/mimes\"},{\"kind\":2,\"name\":\"node/monorail\",\"url\":\"modules/node_monorail.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"publishMonorailEvent\",\"url\":\"functions/node_monorail.publishMonorailEvent.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/monorail\"},{\"kind\":32,\"name\":\"MONORAIL_COMMAND_TOPIC\",\"url\":\"variables/node_monorail.MONORAIL_COMMAND_TOPIC.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/monorail\"},{\"kind\":256,\"name\":\"Schemas\",\"url\":\"interfaces/node_monorail.Schemas.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/monorail\"},{\"kind\":1024,\"name\":\"app_cli3_command/1.3\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/monorail.Schemas\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3\"},{\"kind\":1024,\"name\":\"sensitive\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.sensitive-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.sensitive-1.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.sensitive\"},{\"kind\":1024,\"name\":\"args\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.sensitive-1.__type-3.args\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.sensitive.__type\"},{\"kind\":1024,\"name\":\"error_message\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.sensitive-1.__type-3.error_message\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.sensitive.__type\"},{\"kind\":1024,\"name\":\"app_name\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.sensitive-1.__type-3.app_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.sensitive.__type\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.sensitive-1.__type-3.metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.sensitive.__type\"},{\"kind\":1024,\"name\":\"store_fqdn\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.sensitive-1.__type-3.store_fqdn\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.sensitive.__type\"},{\"kind\":1024,\"name\":\"cmd_all_environment_flags\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.sensitive-1.__type-3.cmd_all_environment_flags\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.sensitive.__type\"},{\"kind\":1024,\"name\":\"cmd_dev_tunnel_custom\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.sensitive-1.__type-3.cmd_dev_tunnel_custom\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.sensitive.__type\"},{\"kind\":1024,\"name\":\"env_plugin_installed_all\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.sensitive-1.__type-3.env_plugin_installed_all\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.sensitive.__type\"},{\"kind\":1024,\"name\":\"public\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public\"},{\"kind\":1024,\"name\":\"partner_id\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.partner_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"command\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.command\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"project_type\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.project_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"time_start\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.time_start\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"time_end\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.time_end\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"total_time\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.total_time\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"success\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.success\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"api_key\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.api_key\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cli_version\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cli_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"uname\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.uname\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"ruby_version\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.ruby_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"node_version\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.node_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"is_employee\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.is_employee\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"store_fqdn_hash\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.store_fqdn_hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_all_alias_used\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_all_alias_used\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_all_launcher\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_all_launcher\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_all_path_override\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_all_path_override\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_all_path_override_hash\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_all_path_override_hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_all_plugin\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_all_plugin\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_all_topic\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_all_topic\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_all_verbose\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_all_verbose\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_extensions_binary_from_source\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_extensions_binary_from_source\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_scaffold_required_auth\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_scaffold_required_auth\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_scaffold_template_custom\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_scaffold_template_custom\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_scaffold_template_flavor\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_scaffold_template_flavor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_scaffold_type\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_scaffold_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_scaffold_type_category\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_scaffold_type_category\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_scaffold_type_gated\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_scaffold_type_gated\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_scaffold_type_owner\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_scaffold_type_owner\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_scaffold_used_prompts_for_type\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_scaffold_used_prompts_for_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_app_dependency_installation_skipped\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_app_dependency_installation_skipped\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_app_reset_used\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_app_reset_used\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_dev_tunnel_type\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_dev_tunnel_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_dev_tunnel_custom_hash\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_dev_tunnel_custom_hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_dev_urls_updated\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.cmd_dev_urls_updated\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_any\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_extensions_any\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_breakdown\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_extensions_breakdown\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_count\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_extensions_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_custom_layout\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_extensions_custom_layout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_function_any\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_extensions_function_any\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_function_count\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_extensions_function_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_function_custom_layout\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_extensions_function_custom_layout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_theme_any\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_extensions_theme_any\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_theme_count\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_extensions_theme_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_theme_custom_layout\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_extensions_theme_custom_layout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_ui_any\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_extensions_ui_any\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_ui_count\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_extensions_ui_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_ui_custom_layout\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_extensions_ui_custom_layout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_name_hash\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_name_hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_path_hash\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_path_hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_scopes\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_scopes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_web_backend_any\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_web_backend_any\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_web_backend_count\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_web_backend_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_web_custom_layout\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_web_custom_layout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_web_framework\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_web_framework\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_web_frontend_any\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_web_frontend_any\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_web_frontend_count\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.app_web_frontend_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_ci\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.env_ci\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_ci_platform\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.env_ci_platform\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_device_id\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.env_device_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_package_manager\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.env_package_manager\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_package_manager_workspaces\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.env_package_manager_workspaces\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_plugin_installed_any_custom\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.env_plugin_installed_any_custom\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_plugin_installed_shopify\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.env_plugin_installed_shopify\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_shell\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.env_shell\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_web_ide\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.env_web_ide\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_cloud\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_3.__type-1.public-1.__type-2.env_cloud\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.3.__type.public.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_monorail.Schemas.html#__index.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"node/monorail.Schemas.__index\"},{\"kind\":1024,\"name\":\"sensitive\",\"url\":\"interfaces/node_monorail.Schemas.html#__index.__type.sensitive\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.__index.__type\"},{\"kind\":1024,\"name\":\"public\",\"url\":\"interfaces/node_monorail.Schemas.html#__index.__type.public\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.__index.__type\"},{\"kind\":4194304,\"name\":\"MonorailEventPublic\",\"url\":\"types/node_monorail.MonorailEventPublic.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/monorail\"},{\"kind\":4194304,\"name\":\"MonorailEventSensitive\",\"url\":\"types/node_monorail.MonorailEventSensitive.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/monorail\"},{\"kind\":2,\"name\":\"node/node-package-manager\",\"url\":\"modules/node_node_package_manager.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"packageManagerUsedForCreating\",\"url\":\"functions/node_node_package_manager.packageManagerUsedForCreating.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"getPackageManager\",\"url\":\"functions/node_node_package_manager.getPackageManager.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"installNPMDependenciesRecursively\",\"url\":\"functions/node_node_package_manager.installNPMDependenciesRecursively.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"installNodeModules\",\"url\":\"functions/node_node_package_manager.installNodeModules.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"getPackageName\",\"url\":\"functions/node_node_package_manager.getPackageName.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"getDependencies\",\"url\":\"functions/node_node_package_manager.getDependencies.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"usesWorkspaces\",\"url\":\"functions/node_node_package_manager.usesWorkspaces.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"checkForNewVersion\",\"url\":\"functions/node_node_package_manager.checkForNewVersion.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"readAndParsePackageJson\",\"url\":\"functions/node_node_package_manager.readAndParsePackageJson.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"addNPMDependenciesIfNeeded\",\"url\":\"functions/node_node_package_manager.addNPMDependenciesIfNeeded.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"addNPMDependencies\",\"url\":\"functions/node_node_package_manager.addNPMDependencies.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"addNPMDependenciesWithoutVersionIfNeeded\",\"url\":\"functions/node_node_package_manager.addNPMDependenciesWithoutVersionIfNeeded.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"findUpAndReadPackageJson\",\"url\":\"functions/node_node_package_manager.findUpAndReadPackageJson.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"addResolutionOrOverride\",\"url\":\"functions/node_node_package_manager.addResolutionOrOverride.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"writePackageJSON\",\"url\":\"functions/node_node_package_manager.writePackageJSON.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":32,\"name\":\"yarnLockfile\",\"url\":\"variables/node_node_package_manager.yarnLockfile.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":32,\"name\":\"npmLockfile\",\"url\":\"variables/node_node_package_manager.npmLockfile.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":32,\"name\":\"pnpmLockfile\",\"url\":\"variables/node_node_package_manager.pnpmLockfile.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":32,\"name\":\"pnpmWorkspaceFile\",\"url\":\"variables/node_node_package_manager.pnpmWorkspaceFile.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":32,\"name\":\"lockfiles\",\"url\":\"variables/node_node_package_manager.lockfiles.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":4194304,\"name\":\"Lockfile\",\"url\":\"types/node_node_package_manager.Lockfile.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":4194304,\"name\":\"DependencyType\",\"url\":\"types/node_node_package_manager.DependencyType.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":32,\"name\":\"packageManager\",\"url\":\"variables/node_node_package_manager.packageManager-1.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":4194304,\"name\":\"PackageManager\",\"url\":\"types/node_node_package_manager.PackageManager.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"PackageJsonNotFoundError\",\"url\":\"functions/node_node_package_manager.PackageJsonNotFoundError.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"FindUpAndReadPackageJsonNotFoundError\",\"url\":\"functions/node_node_package_manager.FindUpAndReadPackageJsonNotFoundError.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":256,\"name\":\"PackageJson\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":1024,\"name\":\"author\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#author\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":1024,\"name\":\"scripts\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#scripts\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#scripts.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/node-package-manager.PackageJson.scripts\"},{\"kind\":1024,\"name\":\"dependencies\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#dependencies\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#dependencies.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/node-package-manager.PackageJson.dependencies\"},{\"kind\":1024,\"name\":\"devDependencies\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#devDependencies\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#devDependencies.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/node-package-manager.PackageJson.devDependencies\"},{\"kind\":1024,\"name\":\"peerDependencies\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#peerDependencies\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#peerDependencies.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/node-package-manager.PackageJson.peerDependencies\"},{\"kind\":1024,\"name\":\"oclif\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#oclif\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#oclif.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/node-package-manager.PackageJson.oclif\"},{\"kind\":1024,\"name\":\"plugins\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#oclif.__type-2.plugins\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/node-package-manager.PackageJson.oclif.__type\"},{\"kind\":1024,\"name\":\"workspaces\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#workspaces\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":1024,\"name\":\"resolutions\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#resolutions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#resolutions.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/node-package-manager.PackageJson.resolutions\"},{\"kind\":1024,\"name\":\"overrides\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#overrides\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#overrides.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/node-package-manager.PackageJson.overrides\"},{\"kind\":1024,\"name\":\"prettier\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#prettier\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":1024,\"name\":\"private\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#private\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":256,\"name\":\"DependencyVersion\",\"url\":\"interfaces/node_node_package_manager.DependencyVersion.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/node_node_package_manager.DependencyVersion.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.DependencyVersion\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/node_node_package_manager.DependencyVersion.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.DependencyVersion\"},{\"kind\":2,\"name\":\"node/os\",\"url\":\"modules/node_os.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"username\",\"url\":\"functions/node_os.username.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/os\"},{\"kind\":64,\"name\":\"platformAndArch\",\"url\":\"functions/node_os.platformAndArch.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/os\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/node_os.platformAndArch.html#platformAndArch.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"node/os.platformAndArch.platformAndArch\"},{\"kind\":1024,\"name\":\"platform\",\"url\":\"functions/node_os.platformAndArch.html#platformAndArch.__type.platform\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/os.platformAndArch.platformAndArch.__type\"},{\"kind\":1024,\"name\":\"arch\",\"url\":\"functions/node_os.platformAndArch.html#platformAndArch.__type.arch\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/os.platformAndArch.platformAndArch.__type\"},{\"kind\":2,\"name\":\"node/output\",\"url\":\"modules/node_output.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"formatPackageManagerCommand\",\"url\":\"functions/node_output.formatPackageManagerCommand.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"outputContent\",\"url\":\"functions/node_output.outputContent.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"collectLog\",\"url\":\"functions/node_output.collectLog.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"outputInfo\",\"url\":\"functions/node_output.outputInfo.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"outputSuccess\",\"url\":\"functions/node_output.outputSuccess.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"outputCompleted\",\"url\":\"functions/node_output.outputCompleted.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"outputDebug\",\"url\":\"functions/node_output.outputDebug.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"outputWarn\",\"url\":\"functions/node_output.outputWarn.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"outputNewline\",\"url\":\"functions/node_output.outputNewline.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"stringifyMessage\",\"url\":\"functions/node_output.stringifyMessage.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"consoleLog\",\"url\":\"functions/node_output.consoleLog.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"consoleError\",\"url\":\"functions/node_output.consoleError.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"consoleWarn\",\"url\":\"functions/node_output.consoleWarn.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"outputWhereAppropriate\",\"url\":\"functions/node_output.outputWhereAppropriate.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"unstyled\",\"url\":\"functions/node_output.unstyled.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"shouldDisplayColors\",\"url\":\"functions/node_output.shouldDisplayColors.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"getOutputUpdateCLIReminder\",\"url\":\"functions/node_output.getOutputUpdateCLIReminder.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"formatSection\",\"url\":\"functions/node_output.formatSection.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":4194304,\"name\":\"Logger\",\"url\":\"types/node_output.Logger.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":128,\"name\":\"TokenizedString\",\"url\":\"classes/node_output.TokenizedString.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_output.TokenizedString.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/output.TokenizedString\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"classes/node_output.TokenizedString.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/output.TokenizedString\"},{\"kind\":4194304,\"name\":\"OutputMessage\",\"url\":\"types/node_output.OutputMessage.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":32,\"name\":\"outputToken\",\"url\":\"variables/node_output.outputToken.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/node_output.outputToken.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"node/output.outputToken\"},{\"kind\":2048,\"name\":\"raw\",\"url\":\"variables/node_output.outputToken.html#__type.raw\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"genericShellCommand\",\"url\":\"variables/node_output.outputToken.html#__type.genericShellCommand\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"json\",\"url\":\"variables/node_output.outputToken.html#__type.json\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"path\",\"url\":\"variables/node_output.outputToken.html#__type.path\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"link\",\"url\":\"variables/node_output.outputToken.html#__type.link\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"heading\",\"url\":\"variables/node_output.outputToken.html#__type.heading\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"subheading\",\"url\":\"variables/node_output.outputToken.html#__type.subheading\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"italic\",\"url\":\"variables/node_output.outputToken.html#__type.italic\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"errorText\",\"url\":\"variables/node_output.outputToken.html#__type.errorText\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"cyan\",\"url\":\"variables/node_output.outputToken.html#__type.cyan\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"yellow\",\"url\":\"variables/node_output.outputToken.html#__type.yellow\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"magenta\",\"url\":\"variables/node_output.outputToken.html#__type.magenta\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"green\",\"url\":\"variables/node_output.outputToken.html#__type.green\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"packagejsonScript\",\"url\":\"variables/node_output.outputToken.html#__type.packagejsonScript\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"successIcon\",\"url\":\"variables/node_output.outputToken.html#__type.successIcon\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"failIcon\",\"url\":\"variables/node_output.outputToken.html#__type.failIcon\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"linesDiff\",\"url\":\"variables/node_output.outputToken.html#__type.linesDiff\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":4194304,\"name\":\"LogLevel\",\"url\":\"types/node_output.LogLevel.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":32,\"name\":\"collectedLogs\",\"url\":\"variables/node_output.collectedLogs.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/node_output.collectedLogs.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"node/output.collectedLogs\"},{\"kind\":64,\"name\":\"clearCollectedLogs\",\"url\":\"functions/node_output.clearCollectedLogs.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":256,\"name\":\"OutputProcess\",\"url\":\"interfaces/node_output.OutputProcess.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":1024,\"name\":\"prefix\",\"url\":\"interfaces/node_output.OutputProcess.html#prefix\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/output.OutputProcess\"},{\"kind\":1024,\"name\":\"action\",\"url\":\"interfaces/node_output.OutputProcess.html#action\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/output.OutputProcess\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_output.OutputProcess.html#action.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/output.OutputProcess.action\"},{\"kind\":2,\"name\":\"node/path\",\"url\":\"modules/node_path.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"joinPath\",\"url\":\"functions/node_path.joinPath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"normalizePath\",\"url\":\"functions/node_path.normalizePath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"resolvePath\",\"url\":\"functions/node_path.resolvePath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"relativePath\",\"url\":\"functions/node_path.relativePath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"isAbsolutePath\",\"url\":\"functions/node_path.isAbsolutePath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"dirname\",\"url\":\"functions/node_path.dirname.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"basename\",\"url\":\"functions/node_path.basename.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"extname\",\"url\":\"functions/node_path.extname.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"relativizePath\",\"url\":\"functions/node_path.relativizePath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"moduleDirectory\",\"url\":\"functions/node_path.moduleDirectory.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"cwd\",\"url\":\"functions/node_path.cwd.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":2,\"name\":\"node/plugins\",\"url\":\"modules/node_plugins.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"fanoutHooks\",\"url\":\"functions/node_plugins.fanoutHooks.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/plugins\"},{\"kind\":64,\"name\":\"getListOfTunnelPlugins\",\"url\":\"functions/node_plugins.getListOfTunnelPlugins.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/plugins\"},{\"kind\":256,\"name\":\"HookReturnsPerPlugin\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/plugins\"},{\"kind\":1024,\"name\":\"public_command_metadata\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#public_command_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins.HookReturnsPerPlugin\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#public_command_metadata.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.public_command_metadata\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#public_command_metadata.__type-3.options-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.public_command_metadata.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#public_command_metadata.__type-3.options-1.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.public_command_metadata.__type.options\"},{\"kind\":1024,\"name\":\"pluginReturns\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#public_command_metadata.__type-3.pluginReturns-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.public_command_metadata.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#public_command_metadata.__type-3.pluginReturns-1.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.public_command_metadata.__type.pluginReturns\"},{\"kind\":1024,\"name\":\"@shopify/app\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#public_command_metadata.__type-3.pluginReturns-1.__type-5._shopify_app\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.public_command_metadata.__type.pluginReturns.__type\"},{\"kind\":1024,\"name\":\"sensitive_command_metadata\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#sensitive_command_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins.HookReturnsPerPlugin\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#sensitive_command_metadata.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.sensitive_command_metadata\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#sensitive_command_metadata.__type-6.options-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.sensitive_command_metadata.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#sensitive_command_metadata.__type-6.options-2.__type-7\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.sensitive_command_metadata.__type.options\"},{\"kind\":1024,\"name\":\"pluginReturns\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#sensitive_command_metadata.__type-6.pluginReturns-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.sensitive_command_metadata.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#sensitive_command_metadata.__type-6.pluginReturns-2.__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.sensitive_command_metadata.__type.pluginReturns\"},{\"kind\":1024,\"name\":\"@shopify/app\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#sensitive_command_metadata.__type-6.pluginReturns-2.__type-8._shopify_app-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.sensitive_command_metadata.__type.pluginReturns.__type\"},{\"kind\":1024,\"name\":\"tunnel_start\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_start\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/plugins.HookReturnsPerPlugin\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_start.__type-13\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_start\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_start.__type-13.options-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_start.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_start.__type-13.options-4.__type-14\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_start.__type.options\"},{\"kind\":1024,\"name\":\"port\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_start.__type-13.options-4.__type-14.port\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_start.__type.options.__type\"},{\"kind\":1024,\"name\":\"provider\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_start.__type-13.options-4.__type-14.provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_start.__type.options.__type\"},{\"kind\":1024,\"name\":\"pluginReturns\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_start.__type-13.pluginReturns-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_start.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_start.__type-13.pluginReturns-4.__type-15\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_start.__type.pluginReturns\"},{\"kind\":1024,\"name\":\"tunnel_provider\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/plugins.HookReturnsPerPlugin\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_provider.__type-9\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_provider\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_provider.__type-9.options-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_provider.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_provider.__type-9.options-3.__type-10\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_provider.__type.options\"},{\"kind\":1024,\"name\":\"pluginReturns\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_provider.__type-9.pluginReturns-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_provider.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_provider.__type-9.pluginReturns-3.__type-11\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_provider.__type.pluginReturns\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_provider.__type-9.pluginReturns-3.__type-11.__index-8.__type-12\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_provider.__type.pluginReturns.__type.__index\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_provider.__type-9.pluginReturns-3.__type-11.__index-8.__type-12.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_provider.__type.pluginReturns.__type.__index.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#__index.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.__index\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#__index.__type.options\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.__index.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#__index.__type.options.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.__index.__type.options\"},{\"kind\":1024,\"name\":\"pluginReturns\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#__index.__type.pluginReturns\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.__index.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#__index.__type.pluginReturns.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.__index.__type.pluginReturns\"},{\"kind\":4194304,\"name\":\"PluginReturnsForHook\",\"url\":\"types/node_plugins.PluginReturnsForHook.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/plugins\"},{\"kind\":4194304,\"name\":\"FanoutHookFunction\",\"url\":\"types/node_plugins.FanoutHookFunction.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/plugins\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/node_plugins.FanoutHookFunction.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"node/plugins.FanoutHookFunction\"},{\"kind\":256,\"name\":\"TunnelPluginError\",\"url\":\"interfaces/node_plugins.TunnelPluginError.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/plugins\"},{\"kind\":1024,\"name\":\"provider\",\"url\":\"interfaces/node_plugins.TunnelPluginError.html#provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins.TunnelPluginError\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/node_plugins.TunnelPluginError.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins.TunnelPluginError\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"interfaces/node_plugins.TunnelPluginError.html#message\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins.TunnelPluginError\"},{\"kind\":2,\"name\":\"node/result\",\"url\":\"modules/node_result.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"Result\",\"url\":\"types/node_result.Result.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/result\"},{\"kind\":64,\"name\":\"ok\",\"url\":\"functions/node_result.ok-1.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/result\"},{\"kind\":64,\"name\":\"err\",\"url\":\"functions/node_result.err-1.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/result\"},{\"kind\":128,\"name\":\"Ok\",\"url\":\"classes/node_result.Ok.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/result\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_result.Ok.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/result.Ok\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"classes/node_result.Ok.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/result.Ok\"},{\"kind\":2048,\"name\":\"isErr\",\"url\":\"classes/node_result.Ok.html#isErr\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Ok\"},{\"kind\":2048,\"name\":\"doOnOk\",\"url\":\"classes/node_result.Ok.html#doOnOk\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Ok\"},{\"kind\":2048,\"name\":\"valueOrBug\",\"url\":\"classes/node_result.Ok.html#valueOrBug\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Ok\"},{\"kind\":2048,\"name\":\"valueOrAbort\",\"url\":\"classes/node_result.Ok.html#valueOrAbort\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Ok\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/node_result.Ok.html#map\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Ok\"},{\"kind\":2048,\"name\":\"mapError\",\"url\":\"classes/node_result.Ok.html#mapError\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Ok\"},{\"kind\":128,\"name\":\"Err\",\"url\":\"classes/node_result.Err.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/result\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_result.Err.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/result.Err\"},{\"kind\":1024,\"name\":\"error\",\"url\":\"classes/node_result.Err.html#error\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/result.Err\"},{\"kind\":2048,\"name\":\"isErr\",\"url\":\"classes/node_result.Err.html#isErr\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Err\"},{\"kind\":2048,\"name\":\"doOnOk\",\"url\":\"classes/node_result.Err.html#doOnOk\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Err\"},{\"kind\":2048,\"name\":\"valueOrBug\",\"url\":\"classes/node_result.Err.html#valueOrBug\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Err\"},{\"kind\":2048,\"name\":\"valueOrAbort\",\"url\":\"classes/node_result.Err.html#valueOrAbort\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Err\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/node_result.Err.html#map\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Err\"},{\"kind\":2048,\"name\":\"mapError\",\"url\":\"classes/node_result.Err.html#mapError\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Err\"},{\"kind\":2,\"name\":\"node/ruby\",\"url\":\"modules/node_ruby.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"execCLI2\",\"url\":\"functions/node_ruby.execCLI2.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ruby\"},{\"kind\":64,\"name\":\"execThemeCheckCLI\",\"url\":\"functions/node_ruby.execThemeCheckCLI.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ruby\"},{\"kind\":64,\"name\":\"version\",\"url\":\"functions/node_ruby.version.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ruby\"},{\"kind\":64,\"name\":\"bundleUserHome\",\"url\":\"functions/node_ruby.bundleUserHome.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ruby\"},{\"kind\":32,\"name\":\"RubyCLIVersion\",\"url\":\"variables/node_ruby.RubyCLIVersion.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/ruby\"},{\"kind\":32,\"name\":\"MinWdmWindowsVersion\",\"url\":\"variables/node_ruby.MinWdmWindowsVersion.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/ruby\"},{\"kind\":2,\"name\":\"node/schema\",\"url\":\"modules/node_schema.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"node/session\",\"url\":\"modules/node_session.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"ensureAuthenticatedPartners\",\"url\":\"functions/node_session.ensureAuthenticatedPartners.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/session\"},{\"kind\":64,\"name\":\"ensureAuthenticatedStorefront\",\"url\":\"functions/node_session.ensureAuthenticatedStorefront.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/session\"},{\"kind\":64,\"name\":\"ensureAuthenticatedAdmin\",\"url\":\"functions/node_session.ensureAuthenticatedAdmin.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/session\"},{\"kind\":64,\"name\":\"ensureAuthenticatedThemes\",\"url\":\"functions/node_session.ensureAuthenticatedThemes.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/session\"},{\"kind\":64,\"name\":\"logout\",\"url\":\"functions/node_session.logout.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/session\"},{\"kind\":256,\"name\":\"AdminSession\",\"url\":\"interfaces/node_session.AdminSession.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/session\"},{\"kind\":1024,\"name\":\"token\",\"url\":\"interfaces/node_session.AdminSession.html#token\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/session.AdminSession\"},{\"kind\":1024,\"name\":\"storeFqdn\",\"url\":\"interfaces/node_session.AdminSession.html#storeFqdn\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/session.AdminSession\"},{\"kind\":2,\"name\":\"node/system\",\"url\":\"modules/node_system.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"openURL\",\"url\":\"functions/node_system.openURL.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/system\"},{\"kind\":64,\"name\":\"captureOutput\",\"url\":\"functions/node_system.captureOutput.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/system\"},{\"kind\":64,\"name\":\"exec\",\"url\":\"functions/node_system.exec.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/system\"},{\"kind\":64,\"name\":\"sleep\",\"url\":\"functions/node_system.sleep.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/system\"},{\"kind\":64,\"name\":\"terminalSupportsRawMode\",\"url\":\"functions/node_system.terminalSupportsRawMode.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/system\"},{\"kind\":256,\"name\":\"ExecOptions\",\"url\":\"interfaces/node_system.ExecOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/system\"},{\"kind\":1024,\"name\":\"cwd\",\"url\":\"interfaces/node_system.ExecOptions.html#cwd\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/system.ExecOptions\"},{\"kind\":1024,\"name\":\"env\",\"url\":\"interfaces/node_system.ExecOptions.html#env\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/system.ExecOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_system.ExecOptions.html#env.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/system.ExecOptions.env\"},{\"kind\":1024,\"name\":\"stdin\",\"url\":\"interfaces/node_system.ExecOptions.html#stdin\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/system.ExecOptions\"},{\"kind\":1024,\"name\":\"stdout\",\"url\":\"interfaces/node_system.ExecOptions.html#stdout\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/system.ExecOptions\"},{\"kind\":1024,\"name\":\"stderr\",\"url\":\"interfaces/node_system.ExecOptions.html#stderr\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/system.ExecOptions\"},{\"kind\":1024,\"name\":\"stdio\",\"url\":\"interfaces/node_system.ExecOptions.html#stdio\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/system.ExecOptions\"},{\"kind\":1024,\"name\":\"input\",\"url\":\"interfaces/node_system.ExecOptions.html#input\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/system.ExecOptions\"},{\"kind\":1024,\"name\":\"signal\",\"url\":\"interfaces/node_system.ExecOptions.html#signal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/system.ExecOptions\"},{\"kind\":1024,\"name\":\"externalErrorHandler\",\"url\":\"interfaces/node_system.ExecOptions.html#externalErrorHandler\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/system.ExecOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_system.ExecOptions.html#externalErrorHandler.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/system.ExecOptions.externalErrorHandler\"},{\"kind\":2,\"name\":\"node/tcp\",\"url\":\"modules/node_tcp.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getAvailableTCPPort\",\"url\":\"functions/node_tcp.getAvailableTCPPort.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/tcp\"},{\"kind\":64,\"name\":\"checkPortAvailability\",\"url\":\"functions/node_tcp.checkPortAvailability.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/tcp\"},{\"kind\":2,\"name\":\"node/toml\",\"url\":\"modules/node_toml.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"decodeToml\",\"url\":\"functions/node_toml.decodeToml.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/toml\"},{\"kind\":64,\"name\":\"encodeToml\",\"url\":\"functions/node_toml.encodeToml.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/toml\"},{\"kind\":2,\"name\":\"node/ui\",\"url\":\"modules/node_ui.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"renderConcurrent\",\"url\":\"functions/node_ui.renderConcurrent.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderInfo\",\"url\":\"functions/node_ui.renderInfo.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderSuccess\",\"url\":\"functions/node_ui.renderSuccess.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderWarning\",\"url\":\"functions/node_ui.renderWarning.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderFatalError\",\"url\":\"functions/node_ui.renderFatalError.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderSelectPrompt\",\"url\":\"functions/node_ui.renderSelectPrompt.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderConfirmationPrompt\",\"url\":\"functions/node_ui.renderConfirmationPrompt.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderAutocompletePrompt\",\"url\":\"functions/node_ui.renderAutocompletePrompt.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderTable\",\"url\":\"functions/node_ui.renderTable.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderTasks\",\"url\":\"functions/node_ui.renderTasks.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderTextPrompt\",\"url\":\"functions/node_ui.renderTextPrompt.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderText\",\"url\":\"functions/node_ui.renderText.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":256,\"name\":\"RenderConcurrentOptions\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":1024,\"name\":\"renderOptions\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#renderOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.RenderConcurrentOptions\"},{\"kind\":1024,\"name\":\"footer\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#footer\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderConcurrentOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#footer.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/ui.RenderConcurrentOptions.footer\"},{\"kind\":1024,\"name\":\"shortcuts\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#footer.__type.shortcuts\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/ui.RenderConcurrentOptions.footer.__type\"},{\"kind\":1024,\"name\":\"subTitle\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#footer.__type.subTitle\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/ui.RenderConcurrentOptions.footer.__type\"},{\"kind\":1024,\"name\":\"processes\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#processes\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderConcurrentOptions\"},{\"kind\":1024,\"name\":\"showTimestamps\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#showTimestamps\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderConcurrentOptions\"},{\"kind\":1024,\"name\":\"onInput\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#onInput\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderConcurrentOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#onInput.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/ui.RenderConcurrentOptions.onInput\"},{\"kind\":1024,\"name\":\"abortSignal\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#abortSignal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderConcurrentOptions\"},{\"kind\":4194304,\"name\":\"AlertCustomSection\",\"url\":\"types/node_ui.AlertCustomSection.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":4194304,\"name\":\"RenderAlertOptions\",\"url\":\"types/node_ui.RenderAlertOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":256,\"name\":\"RenderSelectPromptOptions\",\"url\":\"interfaces/node_ui.RenderSelectPromptOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":1024,\"name\":\"isConfirmationPrompt\",\"url\":\"interfaces/node_ui.RenderSelectPromptOptions.html#isConfirmationPrompt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.RenderSelectPromptOptions\"},{\"kind\":1024,\"name\":\"renderOptions\",\"url\":\"interfaces/node_ui.RenderSelectPromptOptions.html#renderOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.RenderSelectPromptOptions\"},{\"kind\":1024,\"name\":\"abortSignal\",\"url\":\"interfaces/node_ui.RenderSelectPromptOptions.html#abortSignal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderSelectPromptOptions\"},{\"kind\":1024,\"name\":\"defaultValue\",\"url\":\"interfaces/node_ui.RenderSelectPromptOptions.html#defaultValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderSelectPromptOptions\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"interfaces/node_ui.RenderSelectPromptOptions.html#message\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderSelectPromptOptions\"},{\"kind\":1024,\"name\":\"choices\",\"url\":\"interfaces/node_ui.RenderSelectPromptOptions.html#choices\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderSelectPromptOptions\"},{\"kind\":1024,\"name\":\"infoTable\",\"url\":\"interfaces/node_ui.RenderSelectPromptOptions.html#infoTable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderSelectPromptOptions\"},{\"kind\":1024,\"name\":\"submitWithShortcuts\",\"url\":\"interfaces/node_ui.RenderSelectPromptOptions.html#submitWithShortcuts\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderSelectPromptOptions\"},{\"kind\":256,\"name\":\"RenderConfirmationPromptOptions\",\"url\":\"interfaces/node_ui.RenderConfirmationPromptOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":1024,\"name\":\"confirmationMessage\",\"url\":\"interfaces/node_ui.RenderConfirmationPromptOptions.html#confirmationMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.RenderConfirmationPromptOptions\"},{\"kind\":1024,\"name\":\"cancellationMessage\",\"url\":\"interfaces/node_ui.RenderConfirmationPromptOptions.html#cancellationMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.RenderConfirmationPromptOptions\"},{\"kind\":1024,\"name\":\"renderOptions\",\"url\":\"interfaces/node_ui.RenderConfirmationPromptOptions.html#renderOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.RenderConfirmationPromptOptions\"},{\"kind\":1024,\"name\":\"defaultValue\",\"url\":\"interfaces/node_ui.RenderConfirmationPromptOptions.html#defaultValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.RenderConfirmationPromptOptions\"},{\"kind\":1024,\"name\":\"abortSignal\",\"url\":\"interfaces/node_ui.RenderConfirmationPromptOptions.html#abortSignal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderConfirmationPromptOptions\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"interfaces/node_ui.RenderConfirmationPromptOptions.html#message\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderConfirmationPromptOptions\"},{\"kind\":1024,\"name\":\"infoTable\",\"url\":\"interfaces/node_ui.RenderConfirmationPromptOptions.html#infoTable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderConfirmationPromptOptions\"},{\"kind\":256,\"name\":\"RenderAutocompleteOptions\",\"url\":\"interfaces/node_ui.RenderAutocompleteOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":1024,\"name\":\"renderOptions\",\"url\":\"interfaces/node_ui.RenderAutocompleteOptions.html#renderOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.RenderAutocompleteOptions\"},{\"kind\":1024,\"name\":\"abortSignal\",\"url\":\"interfaces/node_ui.RenderAutocompleteOptions.html#abortSignal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderAutocompleteOptions\"},{\"kind\":1024,\"name\":\"hasMorePages\",\"url\":\"interfaces/node_ui.RenderAutocompleteOptions.html#hasMorePages\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderAutocompleteOptions\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"interfaces/node_ui.RenderAutocompleteOptions.html#message\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderAutocompleteOptions\"},{\"kind\":1024,\"name\":\"choices\",\"url\":\"interfaces/node_ui.RenderAutocompleteOptions.html#choices\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderAutocompleteOptions\"},{\"kind\":1024,\"name\":\"infoTable\",\"url\":\"interfaces/node_ui.RenderAutocompleteOptions.html#infoTable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderAutocompleteOptions\"},{\"kind\":1024,\"name\":\"search\",\"url\":\"interfaces/node_ui.RenderAutocompleteOptions.html#search\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderAutocompleteOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_ui.RenderAutocompleteOptions.html#search.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/ui.RenderAutocompleteOptions.search\"},{\"kind\":256,\"name\":\"RenderTextPromptOptions\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":1024,\"name\":\"renderOptions\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html#renderOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.RenderTextPromptOptions\"},{\"kind\":1024,\"name\":\"abortSignal\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html#abortSignal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderTextPromptOptions\"},{\"kind\":1024,\"name\":\"defaultValue\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html#defaultValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderTextPromptOptions\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html#message\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderTextPromptOptions\"},{\"kind\":1024,\"name\":\"password\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html#password\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderTextPromptOptions\"},{\"kind\":1024,\"name\":\"validate\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html#validate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderTextPromptOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html#validate.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/ui.RenderTextPromptOptions.validate\"},{\"kind\":1024,\"name\":\"allowEmpty\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html#allowEmpty\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderTextPromptOptions\"},{\"kind\":1024,\"name\":\"emptyDisplayedValue\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html#emptyDisplayedValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderTextPromptOptions\"},{\"kind\":64,\"name\":\"keypress\",\"url\":\"functions/node_ui.keypress.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":4194304,\"name\":\"Key\",\"url\":\"types/node_ui.Key.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":2,\"name\":\"node/vscode\",\"url\":\"modules/node_vscode.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isVSCode\",\"url\":\"functions/node_vscode.isVSCode.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/vscode\"},{\"kind\":64,\"name\":\"addRecommendedExtensions\",\"url\":\"functions/node_vscode.addRecommendedExtensions.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/vscode\"},{\"kind\":2,\"name\":\"common/ts/deep-required\",\"url\":\"modules/common_ts_deep_required.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"DeepRequired\",\"url\":\"types/common_ts_deep_required.DeepRequired.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"common/ts/deep-required\"},{\"kind\":2,\"name\":\"common/ts/pick-by-prefix\",\"url\":\"modules/common_ts_pick_by_prefix.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"PickByPrefix\",\"url\":\"types/common_ts_pick_by_prefix.PickByPrefix.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"common/ts/pick-by-prefix\"},{\"kind\":2,\"name\":\"node/api/admin\",\"url\":\"modules/node_api_admin.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"adminRequest\",\"url\":\"functions/node_api_admin.adminRequest.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/api/admin\"},{\"kind\":64,\"name\":\"restRequest\",\"url\":\"functions/node_api_admin.restRequest.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/api/admin\"},{\"kind\":256,\"name\":\"RestResponse\",\"url\":\"interfaces/node_api_admin.RestResponse.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/api/admin\"},{\"kind\":1024,\"name\":\"json\",\"url\":\"interfaces/node_api_admin.RestResponse.html#json\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/admin.RestResponse\"},{\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/node_api_admin.RestResponse.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/admin.RestResponse\"},{\"kind\":1024,\"name\":\"headers\",\"url\":\"interfaces/node_api_admin.RestResponse.html#headers\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/admin.RestResponse\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_api_admin.RestResponse.html#headers.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/api/admin.RestResponse.headers\"},{\"kind\":2,\"name\":\"node/api/graphql\",\"url\":\"modules/node_api_graphql.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"graphqlRequest\",\"url\":\"functions/node_api_graphql.graphqlRequest.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/api/graphql\"},{\"kind\":256,\"name\":\"GraphQLVariables\",\"url\":\"interfaces/node_api_graphql.GraphQLVariables.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/api/graphql\"},{\"kind\":4194304,\"name\":\"GraphQLResponse\",\"url\":\"types/node_api_graphql.GraphQLResponse.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/api/graphql\"},{\"kind\":256,\"name\":\"GraphQLRequestOptions\",\"url\":\"interfaces/node_api_graphql.GraphQLRequestOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/api/graphql\"},{\"kind\":1024,\"name\":\"query\",\"url\":\"interfaces/node_api_graphql.GraphQLRequestOptions.html#query\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/graphql.GraphQLRequestOptions\"},{\"kind\":1024,\"name\":\"api\",\"url\":\"interfaces/node_api_graphql.GraphQLRequestOptions.html#api\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/graphql.GraphQLRequestOptions\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/node_api_graphql.GraphQLRequestOptions.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/graphql.GraphQLRequestOptions\"},{\"kind\":1024,\"name\":\"token\",\"url\":\"interfaces/node_api_graphql.GraphQLRequestOptions.html#token\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/graphql.GraphQLRequestOptions\"},{\"kind\":1024,\"name\":\"addedHeaders\",\"url\":\"interfaces/node_api_graphql.GraphQLRequestOptions.html#addedHeaders\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/graphql.GraphQLRequestOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_api_graphql.GraphQLRequestOptions.html#addedHeaders.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/api/graphql.GraphQLRequestOptions.addedHeaders\"},{\"kind\":1024,\"name\":\"variables\",\"url\":\"interfaces/node_api_graphql.GraphQLRequestOptions.html#variables\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/graphql.GraphQLRequestOptions\"},{\"kind\":1024,\"name\":\"responseOptions\",\"url\":\"interfaces/node_api_graphql.GraphQLRequestOptions.html#responseOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/graphql.GraphQLRequestOptions\"},{\"kind\":256,\"name\":\"GraphQLResponseOptions\",\"url\":\"interfaces/node_api_graphql.GraphQLResponseOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/api/graphql\"},{\"kind\":1024,\"name\":\"handleErrors\",\"url\":\"interfaces/node_api_graphql.GraphQLResponseOptions.html#handleErrors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/graphql.GraphQLResponseOptions\"},{\"kind\":1024,\"name\":\"onResponse\",\"url\":\"interfaces/node_api_graphql.GraphQLResponseOptions.html#onResponse\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/graphql.GraphQLResponseOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_api_graphql.GraphQLResponseOptions.html#onResponse.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/api/graphql.GraphQLResponseOptions.onResponse\"},{\"kind\":2,\"name\":\"node/api/http\",\"url\":\"modules/node_api_http.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"node/api/partners\",\"url\":\"modules/node_api_partners.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"partnersRequest\",\"url\":\"functions/node_api_partners.partnersRequest.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/api/partners\"},{\"kind\":64,\"name\":\"functionProxyRequest\",\"url\":\"functions/node_api_partners.functionProxyRequest.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/api/partners\"},{\"kind\":64,\"name\":\"handleDeprecations\",\"url\":\"functions/node_api_partners.handleDeprecations.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/api/partners\"},{\"kind\":2,\"name\":\"node/context/fqdn\",\"url\":\"modules/node_context_fqdn.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"partnersFqdn\",\"url\":\"functions/node_context_fqdn.partnersFqdn.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/fqdn\"},{\"kind\":64,\"name\":\"identityFqdn\",\"url\":\"functions/node_context_fqdn.identityFqdn.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/fqdn\"},{\"kind\":64,\"name\":\"normalizeStoreFqdn\",\"url\":\"functions/node_context_fqdn.normalizeStoreFqdn.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/fqdn\"},{\"kind\":32,\"name\":\"CouldntObtainPartnersSpinFQDNError\",\"url\":\"variables/node_context_fqdn.CouldntObtainPartnersSpinFQDNError.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/context/fqdn\"},{\"kind\":32,\"name\":\"CouldntObtainIdentitySpinFQDNError\",\"url\":\"variables/node_context_fqdn.CouldntObtainIdentitySpinFQDNError.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/context/fqdn\"},{\"kind\":32,\"name\":\"CouldntObtainShopifySpinFQDNError\",\"url\":\"variables/node_context_fqdn.CouldntObtainShopifySpinFQDNError.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/context/fqdn\"},{\"kind\":32,\"name\":\"NotProvidedStoreFQDNError\",\"url\":\"variables/node_context_fqdn.NotProvidedStoreFQDNError.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/context/fqdn\"},{\"kind\":2,\"name\":\"node/context/local\",\"url\":\"modules/node_context_local.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isTerminalInteractive\",\"url\":\"functions/node_context_local.isTerminalInteractive.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"homeDirectory\",\"url\":\"functions/node_context_local.homeDirectory.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"isDevelopment\",\"url\":\"functions/node_context_local.isDevelopment.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"isVerbose\",\"url\":\"functions/node_context_local.isVerbose.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"isShopify\",\"url\":\"functions/node_context_local.isShopify.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"isUnitTest\",\"url\":\"functions/node_context_local.isUnitTest.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"analyticsDisabled\",\"url\":\"functions/node_context_local.analyticsDisabled.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"alwaysLogAnalytics\",\"url\":\"functions/node_context_local.alwaysLogAnalytics.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"firstPartyDev\",\"url\":\"functions/node_context_local.firstPartyDev.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"useDeviceAuth\",\"url\":\"functions/node_context_local.useDeviceAuth.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"useThemebundling\",\"url\":\"functions/node_context_local.useThemebundling.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"gitpodURL\",\"url\":\"functions/node_context_local.gitpodURL.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"codespaceURL\",\"url\":\"functions/node_context_local.codespaceURL.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"isCloudEnvironment\",\"url\":\"functions/node_context_local.isCloudEnvironment.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"cloudEnvironment\",\"url\":\"functions/node_context_local.cloudEnvironment.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/node_context_local.cloudEnvironment.html#cloudEnvironment.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"node/context/local.cloudEnvironment.cloudEnvironment\"},{\"kind\":1024,\"name\":\"platform\",\"url\":\"functions/node_context_local.cloudEnvironment.html#cloudEnvironment.__type.platform\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/context/local.cloudEnvironment.cloudEnvironment.__type\"},{\"kind\":1024,\"name\":\"editor\",\"url\":\"functions/node_context_local.cloudEnvironment.html#cloudEnvironment.__type.editor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/context/local.cloudEnvironment.cloudEnvironment.__type\"},{\"kind\":64,\"name\":\"hasGit\",\"url\":\"functions/node_context_local.hasGit.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"ciPlatform\",\"url\":\"functions/node_context_local.ciPlatform.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"macAddress\",\"url\":\"functions/node_context_local.macAddress.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":4194304,\"name\":\"CIMetadata\",\"url\":\"types/node_context_local.CIMetadata.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":2,\"name\":\"node/context/spin\",\"url\":\"modules/node_context_spin.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"spinFqdn\",\"url\":\"functions/node_context_spin.spinFqdn.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/spin\"},{\"kind\":64,\"name\":\"show\",\"url\":\"functions/node_context_spin.show.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/spin\"},{\"kind\":64,\"name\":\"isSpin\",\"url\":\"functions/node_context_spin.isSpin.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/spin\"},{\"kind\":64,\"name\":\"instance\",\"url\":\"functions/node_context_spin.instance.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/spin\"},{\"kind\":64,\"name\":\"isSpinEnvironment\",\"url\":\"functions/node_context_spin.isSpinEnvironment.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/spin\"},{\"kind\":64,\"name\":\"appPort\",\"url\":\"functions/node_context_spin.appPort.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/spin\"},{\"kind\":64,\"name\":\"appHost\",\"url\":\"functions/node_context_spin.appHost.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/spin\"},{\"kind\":2,\"name\":\"node/hooks/deprecations\",\"url\":\"modules/node_hooks_deprecations.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"postrun\",\"url\":\"functions/node_hooks_deprecations.postrun.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/hooks/deprecations\"},{\"kind\":2,\"name\":\"node/hooks/postrun\",\"url\":\"modules/node_hooks_postrun.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"hook\",\"url\":\"functions/node_hooks_postrun.hook.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/hooks/postrun\"},{\"kind\":2,\"name\":\"node/hooks/prerun\",\"url\":\"modules/node_hooks_prerun.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"parseCommandContent\",\"url\":\"functions/node_hooks_prerun.parseCommandContent.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/hooks/prerun\"},{\"kind\":256,\"name\":\"CommandContent\",\"url\":\"interfaces/node_hooks_prerun.CommandContent.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/hooks/prerun\"},{\"kind\":1024,\"name\":\"command\",\"url\":\"interfaces/node_hooks_prerun.CommandContent.html#command\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/hooks/prerun.CommandContent\"},{\"kind\":1024,\"name\":\"topic\",\"url\":\"interfaces/node_hooks_prerun.CommandContent.html#topic\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/hooks/prerun.CommandContent\"},{\"kind\":1024,\"name\":\"alias\",\"url\":\"interfaces/node_hooks_prerun.CommandContent.html#alias\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/hooks/prerun.CommandContent\"},{\"kind\":64,\"name\":\"hook\",\"url\":\"functions/node_hooks_prerun.hook.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/hooks/prerun\"},{\"kind\":2,\"name\":\"node/plugins/tunnel\",\"url\":\"modules/node_plugins_tunnel.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"TunnelErrorType\",\"url\":\"types/node_plugins_tunnel.TunnelErrorType.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":256,\"name\":\"TunnelClient\",\"url\":\"interfaces/node_plugins_tunnel.TunnelClient.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":1024,\"name\":\"getTunnelStatus\",\"url\":\"interfaces/node_plugins_tunnel.TunnelClient.html#getTunnelStatus\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins/tunnel.TunnelClient\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins_tunnel.TunnelClient.html#getTunnelStatus.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins/tunnel.TunnelClient.getTunnelStatus\"},{\"kind\":1024,\"name\":\"stopTunnel\",\"url\":\"interfaces/node_plugins_tunnel.TunnelClient.html#stopTunnel\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins/tunnel.TunnelClient\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins_tunnel.TunnelClient.html#stopTunnel.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins/tunnel.TunnelClient.stopTunnel\"},{\"kind\":1024,\"name\":\"provider\",\"url\":\"interfaces/node_plugins_tunnel.TunnelClient.html#provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins/tunnel.TunnelClient\"},{\"kind\":1024,\"name\":\"port\",\"url\":\"interfaces/node_plugins_tunnel.TunnelClient.html#port\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins/tunnel.TunnelClient\"},{\"kind\":4194304,\"name\":\"TunnelStatusType\",\"url\":\"types/node_plugins_tunnel.TunnelStatusType.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":128,\"name\":\"TunnelError\",\"url\":\"classes/node_plugins_tunnel.TunnelError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_plugins_tunnel.TunnelError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/plugins/tunnel.TunnelError\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/node_plugins_tunnel.TunnelError.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/plugins/tunnel.TunnelError\"},{\"kind\":256,\"name\":\"HookReturnPerTunnelPlugin\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":1024,\"name\":\"tunnel_start\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_start\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_start.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_start\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_start.__type-4.options-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_start.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_start.__type-4.options-1.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_start.__type.options\"},{\"kind\":1024,\"name\":\"port\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_start.__type-4.options-1.__type-5.port\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_start.__type.options.__type\"},{\"kind\":1024,\"name\":\"provider\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_start.__type-4.options-1.__type-5.provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_start.__type.options.__type\"},{\"kind\":1024,\"name\":\"pluginReturns\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_start.__type-4.pluginReturns-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_start.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_start.__type-4.pluginReturns-1.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_start.__type.pluginReturns\"},{\"kind\":1024,\"name\":\"tunnel_provider\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_provider.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_provider\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_provider.__type.options\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_provider.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_provider.__type.options.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_provider.__type.options\"},{\"kind\":1024,\"name\":\"pluginReturns\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_provider.__type.pluginReturns\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_provider.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_provider.__type.pluginReturns.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_provider.__type.pluginReturns\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_provider.__type.pluginReturns.__type-2.__index-1.__type-3\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_provider.__type.pluginReturns.__type.__index\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_provider.__type.pluginReturns.__type-2.__index-1.__type-3.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_provider.__type.pluginReturns.__type.__index.__type\"},{\"kind\":4194304,\"name\":\"TunnelProviderFunction\",\"url\":\"types/node_plugins_tunnel.TunnelProviderFunction.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":4194304,\"name\":\"TunnelStartFunction\",\"url\":\"types/node_plugins_tunnel.TunnelStartFunction.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":4194304,\"name\":\"TunnelStartReturn\",\"url\":\"types/node_plugins_tunnel.TunnelStartReturn.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":4194304,\"name\":\"TunnelStartAction\",\"url\":\"types/node_plugins_tunnel.TunnelStartAction.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/node_plugins_tunnel.TunnelStartAction.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"node/plugins/tunnel.TunnelStartAction\"},{\"kind\":64,\"name\":\"defineProvider\",\"url\":\"functions/node_plugins_tunnel.defineProvider.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":64,\"name\":\"startTunnel\",\"url\":\"functions/node_plugins_tunnel.startTunnel.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":2,\"name\":\"node/testing/output\",\"url\":\"modules/node_testing_output.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"mockAndCaptureOutput\",\"url\":\"functions/node_testing_output.mockAndCaptureOutput.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/testing/output\"},{\"kind\":2,\"name\":\"node/themes/conf\",\"url\":\"modules/node_themes_conf.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"hostThemeLocalStorage\",\"url\":\"functions/node_themes_conf.hostThemeLocalStorage.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/conf\"},{\"kind\":64,\"name\":\"getHostTheme\",\"url\":\"functions/node_themes_conf.getHostTheme.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/conf\"},{\"kind\":64,\"name\":\"setHostTheme\",\"url\":\"functions/node_themes_conf.setHostTheme.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/conf\"},{\"kind\":64,\"name\":\"removeHostTheme\",\"url\":\"functions/node_themes_conf.removeHostTheme.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/conf\"},{\"kind\":2,\"name\":\"node/themes/theme-manager\",\"url\":\"modules/node_themes_theme_manager.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"ThemeManager\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/themes/theme-manager\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/themes/theme-manager.ThemeManager\"},{\"kind\":1024,\"name\":\"themeId\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html#themeId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/themes/theme-manager.ThemeManager\"},{\"kind\":2048,\"name\":\"setTheme\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html#setTheme\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/themes/theme-manager.ThemeManager\"},{\"kind\":2048,\"name\":\"removeTheme\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html#removeTheme\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/themes/theme-manager.ThemeManager\"},{\"kind\":1024,\"name\":\"context\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html#context\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/themes/theme-manager.ThemeManager\"},{\"kind\":1024,\"name\":\"adminSession\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html#adminSession\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/themes/theme-manager.ThemeManager\"},{\"kind\":2048,\"name\":\"findOrCreate\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html#findOrCreate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/themes/theme-manager.ThemeManager\"},{\"kind\":2048,\"name\":\"fetch\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html#fetch\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/themes/theme-manager.ThemeManager\"},{\"kind\":2048,\"name\":\"create\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html#create\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"node/themes/theme-manager.ThemeManager\"},{\"kind\":2,\"name\":\"node/themes/theme-urls\",\"url\":\"modules/node_themes_theme_urls.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"themePreviewUrl\",\"url\":\"functions/node_themes_theme_urls.themePreviewUrl.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/theme-urls\"},{\"kind\":64,\"name\":\"themeEditorUrl\",\"url\":\"functions/node_themes_theme_urls.themeEditorUrl.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/theme-urls\"},{\"kind\":64,\"name\":\"storeAdminUrl\",\"url\":\"functions/node_themes_theme_urls.storeAdminUrl.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/theme-urls\"},{\"kind\":2,\"name\":\"node/themes/themes-api\",\"url\":\"modules/node_themes_themes_api.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"fetchTheme\",\"url\":\"functions/node_themes_themes_api.fetchTheme.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/themes-api\"},{\"kind\":64,\"name\":\"fetchThemes\",\"url\":\"functions/node_themes_themes_api.fetchThemes.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/themes-api\"},{\"kind\":64,\"name\":\"createTheme\",\"url\":\"functions/node_themes_themes_api.createTheme.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/themes-api\"},{\"kind\":64,\"name\":\"updateTheme\",\"url\":\"functions/node_themes_themes_api.updateTheme.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/themes-api\"},{\"kind\":64,\"name\":\"publishTheme\",\"url\":\"functions/node_themes_themes_api.publishTheme.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/themes-api\"},{\"kind\":64,\"name\":\"deleteTheme\",\"url\":\"functions/node_themes_themes_api.deleteTheme.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/themes-api\"},{\"kind\":4194304,\"name\":\"ThemeParams\",\"url\":\"types/node_themes_themes_api.ThemeParams.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/themes/themes-api\"},{\"kind\":2,\"name\":\"node/themes/models/theme\",\"url\":\"modules/node_themes_models_theme.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":32,\"name\":\"DEVELOPMENT_THEME_ROLE\",\"url\":\"variables/node_themes_models_theme.DEVELOPMENT_THEME_ROLE.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/themes/models/theme\"},{\"kind\":128,\"name\":\"Theme\",\"url\":\"classes/node_themes_models_theme.Theme.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/themes/models/theme\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_themes_models_theme.Theme.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/themes/models/theme.Theme\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"classes/node_themes_models_theme.Theme.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/themes/models/theme.Theme\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"classes/node_themes_models_theme.Theme.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/themes/models/theme.Theme\"},{\"kind\":1024,\"name\":\"_role\",\"url\":\"classes/node_themes_models_theme.Theme.html#_role\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"node/themes/models/theme.Theme\"},{\"kind\":1024,\"name\":\"createdAtRuntime\",\"url\":\"classes/node_themes_models_theme.Theme.html#createdAtRuntime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/themes/models/theme.Theme\"},{\"kind\":262144,\"name\":\"role\",\"url\":\"classes/node_themes_models_theme.Theme.html#role\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"node/themes/models/theme.Theme\"},{\"kind\":262144,\"name\":\"hasDevelopmentRole\",\"url\":\"classes/node_themes_models_theme.Theme.html#hasDevelopmentRole\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"node/themes/models/theme.Theme\"},{\"kind\":8388608,\"name\":\"DeepRequired\",\"url\":\"modules/node_monorail.html#DeepRequired\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"node/monorail\"},{\"kind\":256,\"name\":\"Task\",\"url\":\"interfaces/node_ui.Task.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/node_ui.Task.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.Task\"},{\"kind\":1024,\"name\":\"task\",\"url\":\"interfaces/node_ui.Task.html#task\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.Task\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_ui.Task.html#task.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/ui.Task.task\"},{\"kind\":1024,\"name\":\"retry\",\"url\":\"interfaces/node_ui.Task.html#retry\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.Task\"},{\"kind\":1024,\"name\":\"retryCount\",\"url\":\"interfaces/node_ui.Task.html#retryCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.Task\"},{\"kind\":1024,\"name\":\"errors\",\"url\":\"interfaces/node_ui.Task.html#errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.Task\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"interfaces/node_ui.Task.html#skip\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.Task\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_ui.Task.html#skip.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/ui.Task.skip\"},{\"kind\":4194304,\"name\":\"TokenItem\",\"url\":\"types/node_ui.TokenItem.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":4194304,\"name\":\"InlineToken\",\"url\":\"types/node_ui.InlineToken.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":256,\"name\":\"LinkToken\",\"url\":\"interfaces/node_ui.LinkToken.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":1024,\"name\":\"link\",\"url\":\"interfaces/node_ui.LinkToken.html#link\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.LinkToken\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_ui.LinkToken.html#link.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/ui.LinkToken.link\"},{\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/node_ui.LinkToken.html#link.__type.label\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/ui.LinkToken.link.__type\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/node_ui.LinkToken.html#link.__type.url\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/ui.LinkToken.link.__type\"},{\"kind\":4194304,\"name\":\"TableColumn\",\"url\":\"types/node_ui.TableColumn.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":256,\"name\":\"InfoTableSection\",\"url\":\"interfaces/node_ui.InfoTableSection.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":1024,\"name\":\"color\",\"url\":\"interfaces/node_ui.InfoTableSection.html#color\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.InfoTableSection\"},{\"kind\":1024,\"name\":\"header\",\"url\":\"interfaces/node_ui.InfoTableSection.html#header\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.InfoTableSection\"},{\"kind\":1024,\"name\":\"helperText\",\"url\":\"interfaces/node_ui.InfoTableSection.html#helperText\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.InfoTableSection\"},{\"kind\":1024,\"name\":\"items\",\"url\":\"interfaces/node_ui.InfoTableSection.html#items\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.InfoTableSection\"},{\"kind\":256,\"name\":\"ListToken\",\"url\":\"interfaces/node_ui.ListToken.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":1024,\"name\":\"list\",\"url\":\"interfaces/node_ui.ListToken.html#list\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.ListToken\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_ui.ListToken.html#list.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/ui.ListToken.list\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/node_ui.ListToken.html#list.__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/ui.ListToken.list.__type\"},{\"kind\":1024,\"name\":\"items\",\"url\":\"interfaces/node_ui.ListToken.html#list.__type.items\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/ui.ListToken.list.__type\"},{\"kind\":1024,\"name\":\"ordered\",\"url\":\"interfaces/node_ui.ListToken.html#list.__type.ordered\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/ui.ListToken.list.__type\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,63.904]],[\"comment/0\",[]],[\"name/1\",[1,63.904]],[\"comment/1\",[]],[\"name/2\",[2,63.904]],[\"comment/2\",[]],[\"name/3\",[3,63.904]],[\"comment/3\",[]],[\"name/4\",[4,63.904]],[\"comment/4\",[]],[\"name/5\",[5,63.904]],[\"comment/5\",[]],[\"name/6\",[6,63.904]],[\"comment/6\",[]],[\"name/7\",[7,63.904]],[\"comment/7\",[]],[\"name/8\",[8,26.062]],[\"comment/8\",[]],[\"name/9\",[9,63.904]],[\"comment/9\",[]],[\"name/10\",[10,63.904]],[\"comment/10\",[]],[\"name/11\",[11,63.904]],[\"comment/11\",[]],[\"name/12\",[12,63.904]],[\"comment/12\",[]],[\"name/13\",[13,63.904]],[\"comment/13\",[]],[\"name/14\",[14,63.904]],[\"comment/14\",[]],[\"name/15\",[15,63.904]],[\"comment/15\",[]],[\"name/16\",[16,63.904]],[\"comment/16\",[]],[\"name/17\",[17,63.904]],[\"comment/17\",[]],[\"name/18\",[18,63.904]],[\"comment/18\",[]],[\"name/19\",[19,63.904]],[\"comment/19\",[]],[\"name/20\",[20,63.904]],[\"comment/20\",[]],[\"name/21\",[21,63.904]],[\"comment/21\",[]],[\"name/22\",[22,63.904]],[\"comment/22\",[]],[\"name/23\",[23,63.904]],[\"comment/23\",[]],[\"name/24\",[24,63.904]],[\"comment/24\",[]],[\"name/25\",[25,63.904]],[\"comment/25\",[]],[\"name/26\",[26,63.904]],[\"comment/26\",[]],[\"name/27\",[27,63.904]],[\"comment/27\",[]],[\"name/28\",[28,63.904]],[\"comment/28\",[]],[\"name/29\",[29,63.904]],[\"comment/29\",[]],[\"name/30\",[30,63.904]],[\"comment/30\",[]],[\"name/31\",[31,63.904]],[\"comment/31\",[]],[\"name/32\",[32,63.904]],[\"comment/32\",[]],[\"name/33\",[33,63.904]],[\"comment/33\",[]],[\"name/34\",[34,63.904]],[\"comment/34\",[]],[\"name/35\",[35,63.904]],[\"comment/35\",[]],[\"name/36\",[36,63.904]],[\"comment/36\",[]],[\"name/37\",[37,63.904]],[\"comment/37\",[]],[\"name/38\",[38,39.778]],[\"comment/38\",[]],[\"name/39\",[39,49.151]],[\"comment/39\",[]],[\"name/40\",[38,39.778]],[\"comment/40\",[]],[\"name/41\",[40,63.904]],[\"comment/41\",[]],[\"name/42\",[41,63.904]],[\"comment/42\",[]],[\"name/43\",[42,63.904]],[\"comment/43\",[]],[\"name/44\",[43,63.904]],[\"comment/44\",[]],[\"name/45\",[44,45.469,45,37.604]],[\"comment/45\",[]],[\"name/46\",[46,63.904]],[\"comment/46\",[]],[\"name/47\",[47,58.765]],[\"comment/47\",[]],[\"name/48\",[48,63.904]],[\"comment/48\",[]],[\"name/49\",[49,63.904]],[\"comment/49\",[]],[\"name/50\",[50,63.904]],[\"comment/50\",[]],[\"name/51\",[51,63.904]],[\"comment/51\",[]],[\"name/52\",[52,63.904]],[\"comment/52\",[]],[\"name/53\",[53,63.904]],[\"comment/53\",[]],[\"name/54\",[54,63.904]],[\"comment/54\",[]],[\"name/55\",[55,63.904]],[\"comment/55\",[]],[\"name/56\",[56,63.904]],[\"comment/56\",[]],[\"name/57\",[57,63.904]],[\"comment/57\",[]],[\"name/58\",[58,63.904]],[\"comment/58\",[]],[\"name/59\",[59,63.904]],[\"comment/59\",[]],[\"name/60\",[60,63.904]],[\"comment/60\",[]],[\"name/61\",[8,26.062]],[\"comment/61\",[]],[\"name/62\",[61,45.469,62,41.812]],[\"comment/62\",[]],[\"name/63\",[63,63.904]],[\"comment/63\",[]],[\"name/64\",[47,58.765]],[\"comment/64\",[]],[\"name/65\",[64,63.904]],[\"comment/65\",[]],[\"name/66\",[65,63.904]],[\"comment/66\",[]],[\"name/67\",[66,63.904]],[\"comment/67\",[]],[\"name/68\",[67,63.904]],[\"comment/68\",[]],[\"name/69\",[68,63.904]],[\"comment/69\",[]],[\"name/70\",[69,63.904]],[\"comment/70\",[]],[\"name/71\",[70,63.904]],[\"comment/71\",[]],[\"name/72\",[71,63.904]],[\"comment/72\",[]],[\"name/73\",[72,63.904]],[\"comment/73\",[]],[\"name/74\",[73,45.469,74,41.812]],[\"comment/74\",[]],[\"name/75\",[75,63.904]],[\"comment/75\",[]],[\"name/76\",[76,63.904]],[\"comment/76\",[]],[\"name/77\",[77,63.904]],[\"comment/77\",[]],[\"name/78\",[78,63.904]],[\"comment/78\",[]],[\"name/79\",[79,63.904]],[\"comment/79\",[]],[\"name/80\",[80,58.765]],[\"comment/80\",[]],[\"name/81\",[81,58.765]],[\"comment/81\",[]],[\"name/82\",[8,26.062]],[\"comment/82\",[]],[\"name/83\",[82,63.904]],[\"comment/83\",[]],[\"name/84\",[83,63.904]],[\"comment/84\",[]],[\"name/85\",[84,63.904]],[\"comment/85\",[]],[\"name/86\",[85,63.904]],[\"comment/86\",[]],[\"name/87\",[86,63.904]],[\"comment/87\",[]],[\"name/88\",[87,63.904]],[\"comment/88\",[]],[\"name/89\",[88,63.904]],[\"comment/89\",[]],[\"name/90\",[89,63.904]],[\"comment/90\",[]],[\"name/91\",[90,63.904]],[\"comment/91\",[]],[\"name/92\",[91,63.904]],[\"comment/92\",[]],[\"name/93\",[92,41.812,93,41.812]],[\"comment/93\",[]],[\"name/94\",[94,63.904]],[\"comment/94\",[]],[\"name/95\",[95,63.904]],[\"comment/95\",[]],[\"name/96\",[96,63.904]],[\"comment/96\",[]],[\"name/97\",[97,63.904]],[\"comment/97\",[]],[\"name/98\",[98,63.904]],[\"comment/98\",[]],[\"name/99\",[92,58.765]],[\"comment/99\",[]],[\"name/100\",[93,58.765]],[\"comment/100\",[]],[\"name/101\",[99,63.904]],[\"comment/101\",[]],[\"name/102\",[100,63.904]],[\"comment/102\",[]],[\"name/103\",[101,63.904]],[\"comment/103\",[]],[\"name/104\",[102,63.904]],[\"comment/104\",[]],[\"name/105\",[103,63.904]],[\"comment/105\",[]],[\"name/106\",[104,63.904]],[\"comment/106\",[]],[\"name/107\",[105,63.904]],[\"comment/107\",[]],[\"name/108\",[106,63.904]],[\"comment/108\",[]],[\"name/109\",[107,63.904]],[\"comment/109\",[]],[\"name/110\",[38,39.778]],[\"comment/110\",[]],[\"name/111\",[108,47.711]],[\"comment/111\",[]],[\"name/112\",[109,45.333]],[\"comment/112\",[]],[\"name/113\",[110,47.711]],[\"comment/113\",[]],[\"name/114\",[111,47.711]],[\"comment/114\",[]],[\"name/115\",[112,47.711]],[\"comment/115\",[]],[\"name/116\",[113,63.904]],[\"comment/116\",[]],[\"name/117\",[38,39.778]],[\"comment/117\",[]],[\"name/118\",[110,47.711]],[\"comment/118\",[]],[\"name/119\",[112,47.711]],[\"comment/119\",[]],[\"name/120\",[108,47.711]],[\"comment/120\",[]],[\"name/121\",[109,45.333]],[\"comment/121\",[]],[\"name/122\",[111,47.711]],[\"comment/122\",[]],[\"name/123\",[114,63.904]],[\"comment/123\",[]],[\"name/124\",[38,39.778]],[\"comment/124\",[]],[\"name/125\",[45,52.851]],[\"comment/125\",[]],[\"name/126\",[115,58.765]],[\"comment/126\",[]],[\"name/127\",[108,47.711]],[\"comment/127\",[]],[\"name/128\",[109,45.333]],[\"comment/128\",[]],[\"name/129\",[110,47.711]],[\"comment/129\",[]],[\"name/130\",[111,47.711]],[\"comment/130\",[]],[\"name/131\",[112,47.711]],[\"comment/131\",[]],[\"name/132\",[116,63.904]],[\"comment/132\",[]],[\"name/133\",[38,39.778]],[\"comment/133\",[]],[\"name/134\",[108,47.711]],[\"comment/134\",[]],[\"name/135\",[109,45.333]],[\"comment/135\",[]],[\"name/136\",[110,47.711]],[\"comment/136\",[]],[\"name/137\",[111,47.711]],[\"comment/137\",[]],[\"name/138\",[112,47.711]],[\"comment/138\",[]],[\"name/139\",[117,63.904]],[\"comment/139\",[]],[\"name/140\",[38,39.778]],[\"comment/140\",[]],[\"name/141\",[108,47.711]],[\"comment/141\",[]],[\"name/142\",[109,45.333]],[\"comment/142\",[]],[\"name/143\",[110,47.711]],[\"comment/143\",[]],[\"name/144\",[111,47.711]],[\"comment/144\",[]],[\"name/145\",[112,47.711]],[\"comment/145\",[]],[\"name/146\",[118,63.904]],[\"comment/146\",[]],[\"name/147\",[119,63.904]],[\"comment/147\",[]],[\"name/148\",[120,63.904]],[\"comment/148\",[]],[\"name/149\",[121,63.904]],[\"comment/149\",[]],[\"name/150\",[122,63.904]],[\"comment/150\",[]],[\"name/151\",[123,63.904]],[\"comment/151\",[]],[\"name/152\",[124,63.904]],[\"comment/152\",[]],[\"name/153\",[125,63.904]],[\"comment/153\",[]],[\"name/154\",[126,63.904]],[\"comment/154\",[]],[\"name/155\",[127,63.904]],[\"comment/155\",[]],[\"name/156\",[128,63.904]],[\"comment/156\",[]],[\"name/157\",[129,63.904]],[\"comment/157\",[]],[\"name/158\",[130,63.904]],[\"comment/158\",[]],[\"name/159\",[131,63.904]],[\"comment/159\",[]],[\"name/160\",[132,63.904]],[\"comment/160\",[]],[\"name/161\",[133,63.904]],[\"comment/161\",[]],[\"name/162\",[134,63.904]],[\"comment/162\",[]],[\"name/163\",[135,63.904]],[\"comment/163\",[]],[\"name/164\",[136,63.904]],[\"comment/164\",[]],[\"name/165\",[137,63.904]],[\"comment/165\",[]],[\"name/166\",[138,63.904]],[\"comment/166\",[]],[\"name/167\",[139,63.904]],[\"comment/167\",[]],[\"name/168\",[140,63.904]],[\"comment/168\",[]],[\"name/169\",[141,63.904]],[\"comment/169\",[]],[\"name/170\",[142,63.904]],[\"comment/170\",[]],[\"name/171\",[143,63.904]],[\"comment/171\",[]],[\"name/172\",[144,63.904]],[\"comment/172\",[]],[\"name/173\",[145,63.904]],[\"comment/173\",[]],[\"name/174\",[146,63.904]],[\"comment/174\",[]],[\"name/175\",[147,63.904]],[\"comment/175\",[]],[\"name/176\",[148,63.904]],[\"comment/176\",[]],[\"name/177\",[149,63.904]],[\"comment/177\",[]],[\"name/178\",[150,63.904]],[\"comment/178\",[]],[\"name/179\",[151,63.904]],[\"comment/179\",[]],[\"name/180\",[152,63.904]],[\"comment/180\",[]],[\"name/181\",[153,63.904]],[\"comment/181\",[]],[\"name/182\",[154,63.904]],[\"comment/182\",[]],[\"name/183\",[155,63.904]],[\"comment/183\",[]],[\"name/184\",[156,63.904]],[\"comment/184\",[]],[\"name/185\",[157,63.904]],[\"comment/185\",[]],[\"name/186\",[158,63.904]],[\"comment/186\",[]],[\"name/187\",[159,63.904]],[\"comment/187\",[]],[\"name/188\",[160,63.904]],[\"comment/188\",[]],[\"name/189\",[161,63.904]],[\"comment/189\",[]],[\"name/190\",[162,63.904]],[\"comment/190\",[]],[\"name/191\",[163,63.904]],[\"comment/191\",[]],[\"name/192\",[164,63.904]],[\"comment/192\",[]],[\"name/193\",[165,63.904]],[\"comment/193\",[]],[\"name/194\",[166,63.904]],[\"comment/194\",[]],[\"name/195\",[167,63.904]],[\"comment/195\",[]],[\"name/196\",[168,63.904]],[\"comment/196\",[]],[\"name/197\",[169,63.904]],[\"comment/197\",[]],[\"name/198\",[170,63.904]],[\"comment/198\",[]],[\"name/199\",[171,63.904]],[\"comment/199\",[]],[\"name/200\",[172,63.904]],[\"comment/200\",[]],[\"name/201\",[173,63.904]],[\"comment/201\",[]],[\"name/202\",[174,63.904]],[\"comment/202\",[]],[\"name/203\",[175,63.904]],[\"comment/203\",[]],[\"name/204\",[8,26.062]],[\"comment/204\",[]],[\"name/205\",[176,63.904]],[\"comment/205\",[]],[\"name/206\",[177,63.904]],[\"comment/206\",[]],[\"name/207\",[178,63.904]],[\"comment/207\",[]],[\"name/208\",[179,63.904]],[\"comment/208\",[]],[\"name/209\",[180,58.765]],[\"comment/209\",[]],[\"name/210\",[181,63.904]],[\"comment/210\",[]],[\"name/211\",[38,39.778]],[\"comment/211\",[]],[\"name/212\",[110,47.711]],[\"comment/212\",[]],[\"name/213\",[112,47.711]],[\"comment/213\",[]],[\"name/214\",[108,47.711]],[\"comment/214\",[]],[\"name/215\",[109,45.333]],[\"comment/215\",[]],[\"name/216\",[111,47.711]],[\"comment/216\",[]],[\"name/217\",[182,63.904]],[\"comment/217\",[]],[\"name/218\",[38,39.778]],[\"comment/218\",[]],[\"name/219\",[110,47.711]],[\"comment/219\",[]],[\"name/220\",[112,47.711]],[\"comment/220\",[]],[\"name/221\",[108,47.711]],[\"comment/221\",[]],[\"name/222\",[109,45.333]],[\"comment/222\",[]],[\"name/223\",[111,47.711]],[\"comment/223\",[]],[\"name/224\",[183,63.904]],[\"comment/224\",[]],[\"name/225\",[184,63.904]],[\"comment/225\",[]],[\"name/226\",[185,63.904]],[\"comment/226\",[]],[\"name/227\",[186,63.904]],[\"comment/227\",[]],[\"name/228\",[187,63.904]],[\"comment/228\",[]],[\"name/229\",[188,58.765]],[\"comment/229\",[]],[\"name/230\",[189,55.379]],[\"comment/230\",[]],[\"name/231\",[190,63.904]],[\"comment/231\",[]],[\"name/232\",[191,49.151]],[\"comment/232\",[]],[\"name/233\",[192,63.904]],[\"comment/233\",[]],[\"name/234\",[193,63.904]],[\"comment/234\",[]],[\"name/235\",[194,63.904]],[\"comment/235\",[]],[\"name/236\",[195,63.904]],[\"comment/236\",[]],[\"name/237\",[196,63.904]],[\"comment/237\",[]],[\"name/238\",[197,63.904]],[\"comment/238\",[]],[\"name/239\",[198,63.904]],[\"comment/239\",[]],[\"name/240\",[199,63.904]],[\"comment/240\",[]],[\"name/241\",[200,63.904]],[\"comment/241\",[]],[\"name/242\",[201,63.904]],[\"comment/242\",[]],[\"name/243\",[202,63.904]],[\"comment/243\",[]],[\"name/244\",[203,63.904]],[\"comment/244\",[]],[\"name/245\",[204,58.765]],[\"comment/245\",[]],[\"name/246\",[205,63.904]],[\"comment/246\",[]],[\"name/247\",[206,63.904]],[\"comment/247\",[]],[\"name/248\",[207,63.904]],[\"comment/248\",[]],[\"name/249\",[208,63.904]],[\"comment/249\",[]],[\"name/250\",[209,63.904]],[\"comment/250\",[]],[\"name/251\",[210,63.904]],[\"comment/251\",[]],[\"name/252\",[211,45.469,212,45.469]],[\"comment/252\",[]],[\"name/253\",[213,63.904]],[\"comment/253\",[]],[\"name/254\",[38,39.778]],[\"comment/254\",[]],[\"name/255\",[214,63.904]],[\"comment/255\",[]],[\"name/256\",[215,63.904]],[\"comment/256\",[]],[\"name/257\",[216,63.904]],[\"comment/257\",[]],[\"name/258\",[217,63.904]],[\"comment/258\",[]],[\"name/259\",[218,63.904]],[\"comment/259\",[]],[\"name/260\",[219,63.904]],[\"comment/260\",[]],[\"name/261\",[220,63.904]],[\"comment/261\",[]],[\"name/262\",[221,63.904]],[\"comment/262\",[]],[\"name/263\",[222,58.765]],[\"comment/263\",[]],[\"name/264\",[8,26.062]],[\"comment/264\",[]],[\"name/265\",[223,58.765]],[\"comment/265\",[]],[\"name/266\",[8,26.062]],[\"comment/266\",[]],[\"name/267\",[224,58.765]],[\"comment/267\",[]],[\"name/268\",[8,26.062]],[\"comment/268\",[]],[\"name/269\",[225,58.765]],[\"comment/269\",[]],[\"name/270\",[8,26.062]],[\"comment/270\",[]],[\"name/271\",[226,63.904]],[\"comment/271\",[]],[\"name/272\",[227,63.904]],[\"comment/272\",[]],[\"name/273\",[224,58.765]],[\"comment/273\",[]],[\"name/274\",[225,58.765]],[\"comment/274\",[]],[\"name/275\",[222,58.765]],[\"comment/275\",[]],[\"name/276\",[223,58.765]],[\"comment/276\",[]],[\"name/277\",[228,55.379]],[\"comment/277\",[]],[\"name/278\",[229,55.379]],[\"comment/278\",[]],[\"name/279\",[230,63.904]],[\"comment/279\",[]],[\"name/280\",[231,63.904]],[\"comment/280\",[]],[\"name/281\",[232,63.904]],[\"comment/281\",[]],[\"name/282\",[233,63.904]],[\"comment/282\",[]],[\"name/283\",[234,63.904]],[\"comment/283\",[]],[\"name/284\",[235,63.904]],[\"comment/284\",[]],[\"name/285\",[236,63.904]],[\"comment/285\",[]],[\"name/286\",[237,63.904]],[\"comment/286\",[]],[\"name/287\",[8,26.062]],[\"comment/287\",[]],[\"name/288\",[229,55.379]],[\"comment/288\",[]],[\"name/289\",[8,26.062]],[\"comment/289\",[]],[\"name/290\",[115,58.765]],[\"comment/290\",[]],[\"name/291\",[238,63.904]],[\"comment/291\",[]],[\"name/292\",[239,63.904]],[\"comment/292\",[]],[\"name/293\",[240,63.904]],[\"comment/293\",[]],[\"name/294\",[241,63.904]],[\"comment/294\",[]],[\"name/295\",[242,63.904]],[\"comment/295\",[]],[\"name/296\",[243,63.904]],[\"comment/296\",[]],[\"name/297\",[244,63.904]],[\"comment/297\",[]],[\"name/298\",[228,55.379]],[\"comment/298\",[]],[\"name/299\",[8,26.062]],[\"comment/299\",[]],[\"name/300\",[245,63.904]],[\"comment/300\",[]],[\"name/301\",[45,52.851]],[\"comment/301\",[]],[\"name/302\",[246,63.904]],[\"comment/302\",[]],[\"name/303\",[247,63.904]],[\"comment/303\",[]],[\"name/304\",[248,63.904]],[\"comment/304\",[]],[\"name/305\",[249,63.904]],[\"comment/305\",[]],[\"name/306\",[250,63.904]],[\"comment/306\",[]],[\"name/307\",[251,63.904]],[\"comment/307\",[]],[\"name/308\",[252,63.904]],[\"comment/308\",[]],[\"name/309\",[253,63.904]],[\"comment/309\",[]],[\"name/310\",[254,63.904]],[\"comment/310\",[]],[\"name/311\",[255,63.904]],[\"comment/311\",[]],[\"name/312\",[256,63.904]],[\"comment/312\",[]],[\"name/313\",[257,63.904]],[\"comment/313\",[]],[\"name/314\",[258,63.904]],[\"comment/314\",[]],[\"name/315\",[259,63.904]],[\"comment/315\",[]],[\"name/316\",[260,63.904]],[\"comment/316\",[]],[\"name/317\",[261,63.904]],[\"comment/317\",[]],[\"name/318\",[262,63.904]],[\"comment/318\",[]],[\"name/319\",[263,63.904]],[\"comment/319\",[]],[\"name/320\",[264,63.904]],[\"comment/320\",[]],[\"name/321\",[265,63.904]],[\"comment/321\",[]],[\"name/322\",[266,63.904]],[\"comment/322\",[]],[\"name/323\",[267,63.904]],[\"comment/323\",[]],[\"name/324\",[268,63.904]],[\"comment/324\",[]],[\"name/325\",[269,63.904]],[\"comment/325\",[]],[\"name/326\",[270,63.904]],[\"comment/326\",[]],[\"name/327\",[271,63.904]],[\"comment/327\",[]],[\"name/328\",[272,63.904]],[\"comment/328\",[]],[\"name/329\",[273,63.904]],[\"comment/329\",[]],[\"name/330\",[274,63.904]],[\"comment/330\",[]],[\"name/331\",[275,63.904]],[\"comment/331\",[]],[\"name/332\",[276,63.904]],[\"comment/332\",[]],[\"name/333\",[277,63.904]],[\"comment/333\",[]],[\"name/334\",[278,63.904]],[\"comment/334\",[]],[\"name/335\",[279,63.904]],[\"comment/335\",[]],[\"name/336\",[280,63.904]],[\"comment/336\",[]],[\"name/337\",[281,63.904]],[\"comment/337\",[]],[\"name/338\",[282,63.904]],[\"comment/338\",[]],[\"name/339\",[283,63.904]],[\"comment/339\",[]],[\"name/340\",[284,63.904]],[\"comment/340\",[]],[\"name/341\",[285,63.904]],[\"comment/341\",[]],[\"name/342\",[286,63.904]],[\"comment/342\",[]],[\"name/343\",[287,63.904]],[\"comment/343\",[]],[\"name/344\",[288,63.904]],[\"comment/344\",[]],[\"name/345\",[289,63.904]],[\"comment/345\",[]],[\"name/346\",[290,63.904]],[\"comment/346\",[]],[\"name/347\",[291,63.904]],[\"comment/347\",[]],[\"name/348\",[292,63.904]],[\"comment/348\",[]],[\"name/349\",[293,63.904]],[\"comment/349\",[]],[\"name/350\",[294,63.904]],[\"comment/350\",[]],[\"name/351\",[295,63.904]],[\"comment/351\",[]],[\"name/352\",[296,63.904]],[\"comment/352\",[]],[\"name/353\",[297,63.904]],[\"comment/353\",[]],[\"name/354\",[298,63.904]],[\"comment/354\",[]],[\"name/355\",[299,63.904]],[\"comment/355\",[]],[\"name/356\",[300,63.904]],[\"comment/356\",[]],[\"name/357\",[301,63.904]],[\"comment/357\",[]],[\"name/358\",[302,63.904]],[\"comment/358\",[]],[\"name/359\",[303,63.904]],[\"comment/359\",[]],[\"name/360\",[304,63.904]],[\"comment/360\",[]],[\"name/361\",[305,63.904]],[\"comment/361\",[]],[\"name/362\",[306,63.904]],[\"comment/362\",[]],[\"name/363\",[307,63.904]],[\"comment/363\",[]],[\"name/364\",[308,63.904]],[\"comment/364\",[]],[\"name/365\",[309,63.904]],[\"comment/365\",[]],[\"name/366\",[310,63.904]],[\"comment/366\",[]],[\"name/367\",[8,26.062]],[\"comment/367\",[]],[\"name/368\",[229,55.379]],[\"comment/368\",[]],[\"name/369\",[228,55.379]],[\"comment/369\",[]],[\"name/370\",[311,63.904]],[\"comment/370\",[]],[\"name/371\",[312,63.904]],[\"comment/371\",[]],[\"name/372\",[313,35.288,314,35.288,315,32.45]],[\"comment/372\",[]],[\"name/373\",[316,63.904]],[\"comment/373\",[]],[\"name/374\",[317,63.904]],[\"comment/374\",[]],[\"name/375\",[318,63.904]],[\"comment/375\",[]],[\"name/376\",[319,63.904]],[\"comment/376\",[]],[\"name/377\",[320,63.904]],[\"comment/377\",[]],[\"name/378\",[321,63.904]],[\"comment/378\",[]],[\"name/379\",[322,63.904]],[\"comment/379\",[]],[\"name/380\",[323,63.904]],[\"comment/380\",[]],[\"name/381\",[324,63.904]],[\"comment/381\",[]],[\"name/382\",[325,63.904]],[\"comment/382\",[]],[\"name/383\",[326,63.904]],[\"comment/383\",[]],[\"name/384\",[327,63.904]],[\"comment/384\",[]],[\"name/385\",[328,63.904]],[\"comment/385\",[]],[\"name/386\",[329,63.904]],[\"comment/386\",[]],[\"name/387\",[330,63.904]],[\"comment/387\",[]],[\"name/388\",[331,63.904]],[\"comment/388\",[]],[\"name/389\",[332,63.904]],[\"comment/389\",[]],[\"name/390\",[333,63.904]],[\"comment/390\",[]],[\"name/391\",[334,63.904]],[\"comment/391\",[]],[\"name/392\",[335,63.904]],[\"comment/392\",[]],[\"name/393\",[336,63.904]],[\"comment/393\",[]],[\"name/394\",[337,63.904]],[\"comment/394\",[]],[\"name/395\",[338,58.765]],[\"comment/395\",[]],[\"name/396\",[338,58.765]],[\"comment/396\",[]],[\"name/397\",[339,63.904]],[\"comment/397\",[]],[\"name/398\",[340,63.904]],[\"comment/398\",[]],[\"name/399\",[341,63.904]],[\"comment/399\",[]],[\"name/400\",[191,49.151]],[\"comment/400\",[]],[\"name/401\",[180,58.765]],[\"comment/401\",[]],[\"name/402\",[342,55.379]],[\"comment/402\",[]],[\"name/403\",[343,63.904]],[\"comment/403\",[]],[\"name/404\",[8,26.062]],[\"comment/404\",[]],[\"name/405\",[344,63.904]],[\"comment/405\",[]],[\"name/406\",[8,26.062]],[\"comment/406\",[]],[\"name/407\",[345,63.904]],[\"comment/407\",[]],[\"name/408\",[8,26.062]],[\"comment/408\",[]],[\"name/409\",[346,63.904]],[\"comment/409\",[]],[\"name/410\",[8,26.062]],[\"comment/410\",[]],[\"name/411\",[347,63.904]],[\"comment/411\",[]],[\"name/412\",[8,26.062]],[\"comment/412\",[]],[\"name/413\",[348,63.904]],[\"comment/413\",[]],[\"name/414\",[349,63.904]],[\"comment/414\",[]],[\"name/415\",[350,63.904]],[\"comment/415\",[]],[\"name/416\",[8,26.062]],[\"comment/416\",[]],[\"name/417\",[351,63.904]],[\"comment/417\",[]],[\"name/418\",[8,26.062]],[\"comment/418\",[]],[\"name/419\",[352,63.904]],[\"comment/419\",[]],[\"name/420\",[353,63.904]],[\"comment/420\",[]],[\"name/421\",[354,63.904]],[\"comment/421\",[]],[\"name/422\",[191,49.151]],[\"comment/422\",[]],[\"name/423\",[342,55.379]],[\"comment/423\",[]],[\"name/424\",[355,63.904]],[\"comment/424\",[]],[\"name/425\",[356,63.904]],[\"comment/425\",[]],[\"name/426\",[357,63.904]],[\"comment/426\",[]],[\"name/427\",[8,26.062]],[\"comment/427\",[]],[\"name/428\",[358,58.765]],[\"comment/428\",[]],[\"name/429\",[359,63.904]],[\"comment/429\",[]],[\"name/430\",[360,63.904]],[\"comment/430\",[]],[\"name/431\",[361,63.904]],[\"comment/431\",[]],[\"name/432\",[362,63.904]],[\"comment/432\",[]],[\"name/433\",[363,63.904]],[\"comment/433\",[]],[\"name/434\",[364,63.904]],[\"comment/434\",[]],[\"name/435\",[365,63.904]],[\"comment/435\",[]],[\"name/436\",[366,63.904]],[\"comment/436\",[]],[\"name/437\",[367,63.904]],[\"comment/437\",[]],[\"name/438\",[368,63.904]],[\"comment/438\",[]],[\"name/439\",[369,63.904]],[\"comment/439\",[]],[\"name/440\",[370,63.904]],[\"comment/440\",[]],[\"name/441\",[371,63.904]],[\"comment/441\",[]],[\"name/442\",[372,63.904]],[\"comment/442\",[]],[\"name/443\",[373,63.904]],[\"comment/443\",[]],[\"name/444\",[374,63.904]],[\"comment/444\",[]],[\"name/445\",[375,63.904]],[\"comment/445\",[]],[\"name/446\",[376,63.904]],[\"comment/446\",[]],[\"name/447\",[377,63.904]],[\"comment/447\",[]],[\"name/448\",[378,63.904]],[\"comment/448\",[]],[\"name/449\",[379,63.904]],[\"comment/449\",[]],[\"name/450\",[380,63.904]],[\"comment/450\",[]],[\"name/451\",[38,39.778]],[\"comment/451\",[]],[\"name/452\",[381,58.765]],[\"comment/452\",[]],[\"name/453\",[382,63.904]],[\"comment/453\",[]],[\"name/454\",[383,63.904]],[\"comment/454\",[]],[\"name/455\",[8,26.062]],[\"comment/455\",[]],[\"name/456\",[384,63.904]],[\"comment/456\",[]],[\"name/457\",[385,63.904]],[\"comment/457\",[]],[\"name/458\",[386,58.765]],[\"comment/458\",[]],[\"name/459\",[80,58.765]],[\"comment/459\",[]],[\"name/460\",[387,58.765]],[\"comment/460\",[]],[\"name/461\",[388,63.904]],[\"comment/461\",[]],[\"name/462\",[389,63.904]],[\"comment/462\",[]],[\"name/463\",[390,63.904]],[\"comment/463\",[]],[\"name/464\",[391,63.904]],[\"comment/464\",[]],[\"name/465\",[392,63.904]],[\"comment/465\",[]],[\"name/466\",[393,63.904]],[\"comment/466\",[]],[\"name/467\",[394,63.904]],[\"comment/467\",[]],[\"name/468\",[395,63.904]],[\"comment/468\",[]],[\"name/469\",[396,63.904]],[\"comment/469\",[]],[\"name/470\",[397,63.904]],[\"comment/470\",[]],[\"name/471\",[398,63.904]],[\"comment/471\",[]],[\"name/472\",[399,63.904]],[\"comment/472\",[]],[\"name/473\",[400,63.904]],[\"comment/473\",[]],[\"name/474\",[401,63.904]],[\"comment/474\",[]],[\"name/475\",[8,26.062]],[\"comment/475\",[]],[\"name/476\",[402,63.904]],[\"comment/476\",[]],[\"name/477\",[403,63.904]],[\"comment/477\",[]],[\"name/478\",[404,58.765]],[\"comment/478\",[]],[\"name/479\",[405,63.904]],[\"comment/479\",[]],[\"name/480\",[8,26.062]],[\"comment/480\",[]],[\"name/481\",[406,63.904]],[\"comment/481\",[]],[\"name/482\",[407,63.904]],[\"comment/482\",[]],[\"name/483\",[408,63.904]],[\"comment/483\",[]],[\"name/484\",[409,63.904]],[\"comment/484\",[]],[\"name/485\",[410,63.904]],[\"comment/485\",[]],[\"name/486\",[411,63.904]],[\"comment/486\",[]],[\"name/487\",[412,63.904]],[\"comment/487\",[]],[\"name/488\",[413,63.904]],[\"comment/488\",[]],[\"name/489\",[414,63.904]],[\"comment/489\",[]],[\"name/490\",[415,63.904]],[\"comment/490\",[]],[\"name/491\",[416,63.904]],[\"comment/491\",[]],[\"name/492\",[417,58.765]],[\"comment/492\",[]],[\"name/493\",[418,63.904]],[\"comment/493\",[]],[\"name/494\",[419,63.904]],[\"comment/494\",[]],[\"name/495\",[420,63.904]],[\"comment/495\",[]],[\"name/496\",[421,63.904]],[\"comment/496\",[]],[\"name/497\",[422,63.904]],[\"comment/497\",[]],[\"name/498\",[8,26.062]],[\"comment/498\",[]],[\"name/499\",[423,47.711]],[\"comment/499\",[]],[\"name/500\",[8,26.062]],[\"comment/500\",[]],[\"name/501\",[424,47.711]],[\"comment/501\",[]],[\"name/502\",[8,26.062]],[\"comment/502\",[]],[\"name/503\",[425,58.765]],[\"comment/503\",[]],[\"name/504\",[426,63.904]],[\"comment/504\",[]],[\"name/505\",[8,26.062]],[\"comment/505\",[]],[\"name/506\",[423,47.711]],[\"comment/506\",[]],[\"name/507\",[8,26.062]],[\"comment/507\",[]],[\"name/508\",[424,47.711]],[\"comment/508\",[]],[\"name/509\",[8,26.062]],[\"comment/509\",[]],[\"name/510\",[425,58.765]],[\"comment/510\",[]],[\"name/511\",[427,58.765]],[\"comment/511\",[]],[\"name/512\",[8,26.062]],[\"comment/512\",[]],[\"name/513\",[423,47.711]],[\"comment/513\",[]],[\"name/514\",[8,26.062]],[\"comment/514\",[]],[\"name/515\",[428,55.379]],[\"comment/515\",[]],[\"name/516\",[429,52.851]],[\"comment/516\",[]],[\"name/517\",[424,47.711]],[\"comment/517\",[]],[\"name/518\",[8,26.062]],[\"comment/518\",[]],[\"name/519\",[430,58.765]],[\"comment/519\",[]],[\"name/520\",[8,26.062]],[\"comment/520\",[]],[\"name/521\",[423,47.711]],[\"comment/521\",[]],[\"name/522\",[8,26.062]],[\"comment/522\",[]],[\"name/523\",[424,47.711]],[\"comment/523\",[]],[\"name/524\",[8,26.062]],[\"comment/524\",[]],[\"name/525\",[8,26.062]],[\"comment/525\",[]],[\"name/526\",[191,49.151]],[\"comment/526\",[]],[\"name/527\",[8,26.062]],[\"comment/527\",[]],[\"name/528\",[423,47.711]],[\"comment/528\",[]],[\"name/529\",[8,26.062]],[\"comment/529\",[]],[\"name/530\",[424,47.711]],[\"comment/530\",[]],[\"name/531\",[8,26.062]],[\"comment/531\",[]],[\"name/532\",[431,63.904]],[\"comment/532\",[]],[\"name/533\",[432,63.904]],[\"comment/533\",[]],[\"name/534\",[8,26.062]],[\"comment/534\",[]],[\"name/535\",[433,63.904]],[\"comment/535\",[]],[\"name/536\",[429,52.851]],[\"comment/536\",[]],[\"name/537\",[109,45.333]],[\"comment/537\",[]],[\"name/538\",[434,50.832]],[\"comment/538\",[]],[\"name/539\",[435,63.904]],[\"comment/539\",[]],[\"name/540\",[436,63.904]],[\"comment/540\",[]],[\"name/541\",[437,58.765]],[\"comment/541\",[]],[\"name/542\",[438,58.765]],[\"comment/542\",[]],[\"name/543\",[437,58.765]],[\"comment/543\",[]],[\"name/544\",[38,39.778]],[\"comment/544\",[]],[\"name/545\",[381,58.765]],[\"comment/545\",[]],[\"name/546\",[439,58.765]],[\"comment/546\",[]],[\"name/547\",[440,58.765]],[\"comment/547\",[]],[\"name/548\",[441,58.765]],[\"comment/548\",[]],[\"name/549\",[442,58.765]],[\"comment/549\",[]],[\"name/550\",[443,58.765]],[\"comment/550\",[]],[\"name/551\",[444,58.765]],[\"comment/551\",[]],[\"name/552\",[438,58.765]],[\"comment/552\",[]],[\"name/553\",[38,39.778]],[\"comment/553\",[]],[\"name/554\",[445,63.904]],[\"comment/554\",[]],[\"name/555\",[439,58.765]],[\"comment/555\",[]],[\"name/556\",[440,58.765]],[\"comment/556\",[]],[\"name/557\",[441,58.765]],[\"comment/557\",[]],[\"name/558\",[442,58.765]],[\"comment/558\",[]],[\"name/559\",[443,58.765]],[\"comment/559\",[]],[\"name/560\",[444,58.765]],[\"comment/560\",[]],[\"name/561\",[446,63.904]],[\"comment/561\",[]],[\"name/562\",[447,63.904]],[\"comment/562\",[]],[\"name/563\",[448,63.904]],[\"comment/563\",[]],[\"name/564\",[342,55.379]],[\"comment/564\",[]],[\"name/565\",[449,63.904]],[\"comment/565\",[]],[\"name/566\",[450,63.904]],[\"comment/566\",[]],[\"name/567\",[451,63.904]],[\"comment/567\",[]],[\"name/568\",[452,63.904]],[\"comment/568\",[]],[\"name/569\",[453,63.904]],[\"comment/569\",[]],[\"name/570\",[454,63.904]],[\"comment/570\",[]],[\"name/571\",[455,63.904]],[\"comment/571\",[]],[\"name/572\",[456,63.904]],[\"comment/572\",[]],[\"name/573\",[457,63.904]],[\"comment/573\",[]],[\"name/574\",[458,63.904]],[\"comment/574\",[]],[\"name/575\",[459,58.765]],[\"comment/575\",[]],[\"name/576\",[460,58.765]],[\"comment/576\",[]],[\"name/577\",[461,63.904]],[\"comment/577\",[]],[\"name/578\",[462,63.904]],[\"comment/578\",[]],[\"name/579\",[463,63.904]],[\"comment/579\",[]],[\"name/580\",[464,63.904]],[\"comment/580\",[]],[\"name/581\",[465,63.904]],[\"comment/581\",[]],[\"name/582\",[466,63.904]],[\"comment/582\",[]],[\"name/583\",[467,63.904]],[\"comment/583\",[]],[\"name/584\",[468,63.904]],[\"comment/584\",[]],[\"name/585\",[417,58.765]],[\"comment/585\",[]],[\"name/586\",[74,58.765]],[\"comment/586\",[]],[\"name/587\",[8,26.062]],[\"comment/587\",[]],[\"name/588\",[469,63.904]],[\"comment/588\",[]],[\"name/589\",[470,63.904]],[\"comment/589\",[]],[\"name/590\",[471,63.904]],[\"comment/590\",[]],[\"name/591\",[472,63.904]],[\"comment/591\",[]],[\"name/592\",[473,63.904]],[\"comment/592\",[]],[\"name/593\",[474,63.904]],[\"comment/593\",[]],[\"name/594\",[475,63.904]],[\"comment/594\",[]],[\"name/595\",[8,26.062]],[\"comment/595\",[]],[\"name/596\",[476,63.904]],[\"comment/596\",[]],[\"name/597\",[477,63.904]],[\"comment/597\",[]],[\"name/598\",[478,63.904]],[\"comment/598\",[]],[\"name/599\",[479,63.904]],[\"comment/599\",[]],[\"name/600\",[480,63.904]],[\"comment/600\",[]],[\"name/601\",[481,63.904]],[\"comment/601\",[]],[\"name/602\",[482,63.904]],[\"comment/602\",[]],[\"name/603\",[483,63.904]],[\"comment/603\",[]],[\"name/604\",[484,63.904]],[\"comment/604\",[]],[\"name/605\",[485,63.904]],[\"comment/605\",[]],[\"name/606\",[486,63.904]],[\"comment/606\",[]],[\"name/607\",[487,63.904]],[\"comment/607\",[]],[\"name/608\",[488,63.904]],[\"comment/608\",[]],[\"name/609\",[489,63.904]],[\"comment/609\",[]],[\"name/610\",[490,63.904]],[\"comment/610\",[]],[\"name/611\",[491,63.904]],[\"comment/611\",[]],[\"name/612\",[492,63.904]],[\"comment/612\",[]],[\"name/613\",[493,63.904]],[\"comment/613\",[]],[\"name/614\",[494,63.904]],[\"comment/614\",[]],[\"name/615\",[495,63.904]],[\"comment/615\",[]],[\"name/616\",[496,50.832]],[\"comment/616\",[]],[\"name/617\",[497,63.904]],[\"comment/617\",[]],[\"name/618\",[8,26.062]],[\"comment/618\",[]],[\"name/619\",[498,63.904]],[\"comment/619\",[]],[\"name/620\",[499,63.904]],[\"comment/620\",[]],[\"name/621\",[500,63.904]],[\"comment/621\",[]],[\"name/622\",[501,63.904]],[\"comment/622\",[]],[\"name/623\",[502,63.904]],[\"comment/623\",[]],[\"name/624\",[8,26.062]],[\"comment/624\",[]],[\"name/625\",[39,49.151]],[\"comment/625\",[]],[\"name/626\",[503,63.904]],[\"comment/626\",[]],[\"name/627\",[504,63.904]],[\"comment/627\",[]],[\"name/628\",[505,63.904]],[\"comment/628\",[]],[\"name/629\",[506,63.904]],[\"comment/629\",[]],[\"name/630\",[496,50.832]],[\"comment/630\",[]],[\"name/631\",[39,49.151]],[\"comment/631\",[]],[\"name/632\",[507,55.379]],[\"comment/632\",[]],[\"name/633\",[434,50.832]],[\"comment/633\",[]],[\"name/634\",[508,58.765]],[\"comment/634\",[]],[\"name/635\",[509,55.379]],[\"comment/635\",[]],[\"name/636\",[510,63.904]],[\"comment/636\",[]],[\"name/637\",[511,63.904]],[\"comment/637\",[]],[\"name/638\",[512,63.904]],[\"comment/638\",[]],[\"name/639\",[513,63.904]],[\"comment/639\",[]],[\"name/640\",[496,50.832]],[\"comment/640\",[]],[\"name/641\",[507,55.379]],[\"comment/641\",[]],[\"name/642\",[39,49.151]],[\"comment/642\",[]],[\"name/643\",[434,50.832]],[\"comment/643\",[]],[\"name/644\",[509,55.379]],[\"comment/644\",[]],[\"name/645\",[514,63.904]],[\"comment/645\",[]],[\"name/646\",[496,50.832]],[\"comment/646\",[]],[\"name/647\",[39,49.151]],[\"comment/647\",[]],[\"name/648\",[515,63.904]],[\"comment/648\",[]],[\"name/649\",[434,50.832]],[\"comment/649\",[]],[\"name/650\",[508,58.765]],[\"comment/650\",[]],[\"name/651\",[509,55.379]],[\"comment/651\",[]],[\"name/652\",[516,63.904]],[\"comment/652\",[]],[\"name/653\",[8,26.062]],[\"comment/653\",[]],[\"name/654\",[517,63.904]],[\"comment/654\",[]],[\"name/655\",[496,50.832]],[\"comment/655\",[]],[\"name/656\",[39,49.151]],[\"comment/656\",[]],[\"name/657\",[507,55.379]],[\"comment/657\",[]],[\"name/658\",[434,50.832]],[\"comment/658\",[]],[\"name/659\",[518,63.904]],[\"comment/659\",[]],[\"name/660\",[519,63.904]],[\"comment/660\",[]],[\"name/661\",[8,26.062]],[\"comment/661\",[]],[\"name/662\",[520,63.904]],[\"comment/662\",[]],[\"name/663\",[521,63.904]],[\"comment/663\",[]],[\"name/664\",[522,63.904]],[\"comment/664\",[]],[\"name/665\",[523,63.904]],[\"comment/665\",[]],[\"name/666\",[524,63.904]],[\"comment/666\",[]],[\"name/667\",[525,63.904]],[\"comment/667\",[]],[\"name/668\",[526,63.904]],[\"comment/668\",[]],[\"name/669\",[527,45.469,528,45.469]],[\"comment/669\",[]],[\"name/670\",[529,58.765]],[\"comment/670\",[]],[\"name/671\",[404,32.45,530,35.288,531,35.288]],[\"comment/671\",[]],[\"name/672\",[532,63.904]],[\"comment/672\",[]],[\"name/673\",[533,63.904]],[\"comment/673\",[]],[\"name/674\",[534,63.904]],[\"comment/674\",[]],[\"name/675\",[535,63.904]],[\"comment/675\",[]],[\"name/676\",[536,63.904]],[\"comment/676\",[]],[\"name/677\",[386,58.765]],[\"comment/677\",[]],[\"name/678\",[537,63.904]],[\"comment/678\",[]],[\"name/679\",[538,63.904]],[\"comment/679\",[]],[\"name/680\",[8,26.062]],[\"comment/680\",[]],[\"name/681\",[539,63.904]],[\"comment/681\",[]],[\"name/682\",[540,63.904]],[\"comment/682\",[]],[\"name/683\",[541,63.904]],[\"comment/683\",[]],[\"name/684\",[542,63.904]],[\"comment/684\",[]],[\"name/685\",[543,63.904]],[\"comment/685\",[]],[\"name/686\",[544,63.904]],[\"comment/686\",[]],[\"name/687\",[545,58.765]],[\"comment/687\",[]],[\"name/688\",[189,55.379]],[\"comment/688\",[]],[\"name/689\",[460,58.765]],[\"comment/689\",[]],[\"name/690\",[546,63.904]],[\"comment/690\",[]],[\"name/691\",[8,26.062]],[\"comment/691\",[]],[\"name/692\",[81,58.765]],[\"comment/692\",[]],[\"name/693\",[547,63.904]],[\"comment/693\",[]],[\"name/694\",[548,63.904]],[\"comment/694\",[]],[\"name/695\",[549,63.904]],[\"comment/695\",[]],[\"name/696\",[550,63.904]],[\"comment/696\",[]],[\"name/697\",[8,26.062]],[\"comment/697\",[]],[\"name/698\",[551,63.904]],[\"comment/698\",[]],[\"name/699\",[552,63.904]],[\"comment/699\",[]],[\"name/700\",[553,63.904]],[\"comment/700\",[]],[\"name/701\",[554,63.904]],[\"comment/701\",[]],[\"name/702\",[555,63.904]],[\"comment/702\",[]],[\"name/703\",[556,63.904]],[\"comment/703\",[]],[\"name/704\",[557,63.904]],[\"comment/704\",[]],[\"name/705\",[558,63.904]],[\"comment/705\",[]],[\"name/706\",[559,63.904]],[\"comment/706\",[]],[\"name/707\",[560,63.904]],[\"comment/707\",[]],[\"name/708\",[561,63.904]],[\"comment/708\",[]],[\"name/709\",[562,63.904]],[\"comment/709\",[]],[\"name/710\",[563,63.904]],[\"comment/710\",[]],[\"name/711\",[564,63.904]],[\"comment/711\",[]],[\"name/712\",[565,63.904]],[\"comment/712\",[]],[\"name/713\",[566,63.904]],[\"comment/713\",[]],[\"name/714\",[567,63.904]],[\"comment/714\",[]],[\"name/715\",[568,63.904]],[\"comment/715\",[]],[\"name/716\",[569,63.904]],[\"comment/716\",[]],[\"name/717\",[570,63.904]],[\"comment/717\",[]],[\"name/718\",[571,63.904]],[\"comment/718\",[]],[\"name/719\",[572,63.904]],[\"comment/719\",[]],[\"name/720\",[573,63.904]],[\"comment/720\",[]],[\"name/721\",[574,63.904]],[\"comment/721\",[]],[\"name/722\",[575,63.904]],[\"comment/722\",[]],[\"name/723\",[576,63.904]],[\"comment/723\",[]],[\"name/724\",[577,63.904]],[\"comment/724\",[]],[\"name/725\",[578,63.904]],[\"comment/725\",[]],[\"name/726\",[579,63.904]],[\"comment/726\",[]],[\"name/727\",[8,26.062]],[\"comment/727\",[]],[\"name/728\",[358,58.765]],[\"comment/728\",[]],[\"name/729\",[580,63.904]],[\"comment/729\",[]],[\"name/730\",[581,63.904]],[\"comment/730\",[]],[\"name/731\",[582,63.904]],[\"comment/731\",[]],[\"name/732\",[583,63.904]],[\"comment/732\",[]],[\"name/733\",[584,63.904]],[\"comment/733\",[]],[\"name/734\",[585,63.904]],[\"comment/734\",[]],[\"name/735\",[586,63.904]],[\"comment/735\",[]],[\"name/736\",[587,63.904]],[\"comment/736\",[]],[\"name/737\",[588,63.904]],[\"comment/737\",[]],[\"name/738\",[589,63.904]],[\"comment/738\",[]],[\"name/739\",[590,63.904]],[\"comment/739\",[]],[\"name/740\",[591,63.904]],[\"comment/740\",[]],[\"name/741\",[592,63.904]],[\"comment/741\",[]],[\"name/742\",[593,63.904]],[\"comment/742\",[]],[\"name/743\",[594,63.904]],[\"comment/743\",[]],[\"name/744\",[595,63.904]],[\"comment/744\",[]],[\"name/745\",[596,58.765]],[\"comment/745\",[]],[\"name/746\",[597,63.904]],[\"comment/746\",[]],[\"name/747\",[598,63.904]],[\"comment/747\",[]],[\"name/748\",[599,63.904]],[\"comment/748\",[]],[\"name/749\",[45,52.851]],[\"comment/749\",[]],[\"name/750\",[600,63.904]],[\"comment/750\",[]],[\"name/751\",[601,63.904]],[\"comment/751\",[]],[\"name/752\",[596,58.765]],[\"comment/752\",[]],[\"name/753\",[602,63.904]],[\"comment/753\",[]],[\"name/754\",[603,63.904]],[\"comment/754\",[]],[\"name/755\",[604,63.904]],[\"comment/755\",[]],[\"name/756\",[605,63.904]],[\"comment/756\",[]],[\"name/757\",[8,26.062]],[\"comment/757\",[]],[\"name/758\",[606,63.904]],[\"comment/758\",[]],[\"name/759\",[8,26.062]],[\"comment/759\",[]],[\"name/760\",[429,52.851]],[\"comment/760\",[]],[\"name/761\",[428,55.379]],[\"comment/761\",[]],[\"name/762\",[607,63.904]],[\"comment/762\",[]],[\"name/763\",[608,63.904]],[\"comment/763\",[]],[\"name/764\",[38,39.778]],[\"comment/764\",[]],[\"name/765\",[109,45.333]],[\"comment/765\",[]],[\"name/766\",[609,63.904]],[\"comment/766\",[]],[\"name/767\",[427,58.765]],[\"comment/767\",[]],[\"name/768\",[8,26.062]],[\"comment/768\",[]],[\"name/769\",[423,47.711]],[\"comment/769\",[]],[\"name/770\",[8,26.062]],[\"comment/770\",[]],[\"name/771\",[428,55.379]],[\"comment/771\",[]],[\"name/772\",[429,52.851]],[\"comment/772\",[]],[\"name/773\",[424,47.711]],[\"comment/773\",[]],[\"name/774\",[8,26.062]],[\"comment/774\",[]],[\"name/775\",[430,58.765]],[\"comment/775\",[]],[\"name/776\",[8,26.062]],[\"comment/776\",[]],[\"name/777\",[423,47.711]],[\"comment/777\",[]],[\"name/778\",[8,26.062]],[\"comment/778\",[]],[\"name/779\",[424,47.711]],[\"comment/779\",[]],[\"name/780\",[8,26.062]],[\"comment/780\",[]],[\"name/781\",[8,26.062]],[\"comment/781\",[]],[\"name/782\",[191,49.151]],[\"comment/782\",[]],[\"name/783\",[610,63.904]],[\"comment/783\",[]],[\"name/784\",[611,63.904]],[\"comment/784\",[]],[\"name/785\",[612,63.904]],[\"comment/785\",[]],[\"name/786\",[613,63.904]],[\"comment/786\",[]],[\"name/787\",[8,26.062]],[\"comment/787\",[]],[\"name/788\",[614,63.904]],[\"comment/788\",[]],[\"name/789\",[615,63.904]],[\"comment/789\",[]],[\"name/790\",[616,63.904]],[\"comment/790\",[]],[\"name/791\",[617,63.904]],[\"comment/791\",[]],[\"name/792\",[618,63.904]],[\"comment/792\",[]],[\"name/793\",[619,63.904]],[\"comment/793\",[]],[\"name/794\",[620,63.904]],[\"comment/794\",[]],[\"name/795\",[621,63.904]],[\"comment/795\",[]],[\"name/796\",[622,63.904]],[\"comment/796\",[]],[\"name/797\",[315,41.812,623,41.812]],[\"comment/797\",[]],[\"name/798\",[624,63.904]],[\"comment/798\",[]],[\"name/799\",[38,39.778]],[\"comment/799\",[]],[\"name/800\",[625,63.904]],[\"comment/800\",[]],[\"name/801\",[626,63.904]],[\"comment/801\",[]],[\"name/802\",[627,63.904]],[\"comment/802\",[]],[\"name/803\",[628,63.904]],[\"comment/803\",[]],[\"name/804\",[459,58.765]],[\"comment/804\",[]],[\"name/805\",[629,63.904]],[\"comment/805\",[]],[\"name/806\",[204,58.765]],[\"comment/806\",[]],[\"name/807\",[630,63.904]],[\"comment/807\",[]],[\"name/808\",[623,41.812,631,45.469]],[\"comment/808\",[]],[\"name/809\",[632,63.904]],[\"comment/809\",[]],[\"name/810\",[633,63.904]],[\"comment/810\",[]],[\"name/811\",[634,63.904]],[\"comment/811\",[]],[\"name/812\",[545,41.812,635,45.469]],[\"comment/812\",[]],[\"name/813\",[636,63.904]],[\"comment/813\",[]],[\"name/814\",[637,63.904]],[\"comment/814\",[]],[\"name/815\",[638,63.904]],[\"comment/815\",[]],[\"name/816\",[639,63.904]],[\"comment/816\",[]],[\"name/817\",[640,63.904]],[\"comment/817\",[]],[\"name/818\",[641,63.904]],[\"comment/818\",[]],[\"name/819\",[642,63.904]],[\"comment/819\",[]],[\"name/820\",[643,63.904]],[\"comment/820\",[]],[\"name/821\",[644,63.904]],[\"comment/821\",[]],[\"name/822\",[645,63.904]],[\"comment/822\",[]],[\"name/823\",[38,39.778]],[\"comment/823\",[]],[\"name/824\",[188,58.765]],[\"comment/824\",[]],[\"name/825\",[191,49.151]],[\"comment/825\",[]],[\"name/826\",[646,63.904]],[\"comment/826\",[]],[\"name/827\",[647,63.904]],[\"comment/827\",[]],[\"name/828\",[648,63.904]],[\"comment/828\",[]],[\"name/829\",[649,63.904]],[\"comment/829\",[]],[\"name/830\",[529,58.765]],[\"comment/830\",[]],[\"name/831\",[650,58.765]],[\"comment/831\",[]],[\"name/832\",[651,58.765]],[\"comment/832\",[]],[\"name/833\",[650,58.765]],[\"comment/833\",[]],[\"name/834\",[8,26.062]],[\"comment/834\",[]],[\"name/835\",[652,63.904]],[\"comment/835\",[]],[\"name/836\",[653,63.904]],[\"comment/836\",[]],[\"name/837\",[654,63.904]],[\"comment/837\",[]],[\"name/838\",[655,63.904]],[\"comment/838\",[]],[\"name/839\",[8,26.062]],[\"comment/839\",[]],[\"name/840\",[656,63.904]],[\"comment/840\",[]],[\"name/841\",[657,63.904]],[\"comment/841\",[]],[\"name/842\",[658,63.904]],[\"comment/842\",[]],[\"name/843\",[387,58.765]],[\"comment/843\",[]],[\"name/844\",[8,26.062]],[\"comment/844\",[]],[\"name/845\",[659,63.904]],[\"comment/845\",[]],[\"name/846\",[189,55.379]],[\"comment/846\",[]],[\"name/847\",[660,63.904]],[\"comment/847\",[]],[\"name/848\",[661,63.904]],[\"comment/848\",[]],[\"name/849\",[62,58.765]],[\"comment/849\",[]],[\"name/850\",[662,63.904]],[\"comment/850\",[]],[\"name/851\",[663,63.904]],[\"comment/851\",[]],[\"name/852\",[664,58.765]],[\"comment/852\",[]],[\"name/853\",[665,63.904]],[\"comment/853\",[]],[\"name/854\",[666,63.904]],[\"comment/854\",[]],[\"name/855\",[8,26.062]],[\"comment/855\",[]],[\"name/856\",[651,58.765]],[\"comment/856\",[]],[\"name/857\",[664,58.765]],[\"comment/857\",[]],[\"name/858\",[667,63.904]],[\"comment/858\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":8,\"name\":{\"8\":{},\"61\":{},\"82\":{},\"204\":{},\"264\":{},\"266\":{},\"268\":{},\"270\":{},\"287\":{},\"289\":{},\"299\":{},\"367\":{},\"404\":{},\"406\":{},\"408\":{},\"410\":{},\"412\":{},\"416\":{},\"418\":{},\"427\":{},\"455\":{},\"475\":{},\"480\":{},\"498\":{},\"500\":{},\"502\":{},\"505\":{},\"507\":{},\"509\":{},\"512\":{},\"514\":{},\"518\":{},\"520\":{},\"522\":{},\"524\":{},\"525\":{},\"527\":{},\"529\":{},\"531\":{},\"534\":{},\"587\":{},\"595\":{},\"618\":{},\"624\":{},\"653\":{},\"661\":{},\"680\":{},\"691\":{},\"697\":{},\"727\":{},\"757\":{},\"759\":{},\"768\":{},\"770\":{},\"774\":{},\"776\":{},\"778\":{},\"780\":{},\"781\":{},\"787\":{},\"834\":{},\"839\":{},\"844\":{},\"855\":{}},\"comment\":{}}],[\"_role\",{\"_index\":646,\"name\":{\"826\":{}},\"comment\":{}}],[\"abort\",{\"_index\":103,\"name\":{\"105\":{}},\"comment\":{}}],[\"abortcontroller\",{\"_index\":37,\"name\":{\"37\":{}},\"comment\":{}}],[\"aborterror\",{\"_index\":113,\"name\":{\"116\":{}},\"comment\":{}}],[\"abortsignal\",{\"_index\":39,\"name\":{\"39\":{},\"625\":{},\"631\":{},\"642\":{},\"647\":{},\"656\":{}},\"comment\":{}}],[\"abortsilent\",{\"_index\":104,\"name\":{\"106\":{}},\"comment\":{}}],[\"abortsilenterror\",{\"_index\":116,\"name\":{\"132\":{}},\"comment\":{}}],[\"action\",{\"_index\":405,\"name\":{\"479\":{}},\"comment\":{}}],[\"addalltogitfromdirectory\",{\"_index\":164,\"name\":{\"192\":{}},\"comment\":{}}],[\"addbugsnagmetadata\",{\"_index\":98,\"name\":{\"98\":{}},\"comment\":{}}],[\"addedheaders\",{\"_index\":546,\"name\":{\"690\":{}},\"comment\":{}}],[\"addfromparsedflags\",{\"_index\":46,\"name\":{\"46\":{}},\"comment\":{}}],[\"addnpmdependencies\",{\"_index\":326,\"name\":{\"383\":{}},\"comment\":{}}],[\"addnpmdependenciesifneeded\",{\"_index\":325,\"name\":{\"382\":{}},\"comment\":{}}],[\"addnpmdependencieswithoutversionifneeded\",{\"_index\":327,\"name\":{\"384\":{}},\"comment\":{}}],[\"addpublicmetadata\",{\"_index\":222,\"name\":{\"263\":{},\"275\":{}},\"comment\":{}}],[\"addrecommendedextensions\",{\"_index\":526,\"name\":{\"668\":{}},\"comment\":{}}],[\"addresolutionoroverride\",{\"_index\":329,\"name\":{\"386\":{}},\"comment\":{}}],[\"addsensitivemetadata\",{\"_index\":223,\"name\":{\"265\":{},\"276\":{}},\"comment\":{}}],[\"adminrequest\",{\"_index\":534,\"name\":{\"674\":{}},\"comment\":{}}],[\"adminsession\",{\"_index\":459,\"name\":{\"575\":{},\"804\":{}},\"comment\":{}}],[\"alertcustomsection\",{\"_index\":503,\"name\":{\"626\":{}},\"comment\":{}}],[\"alias\",{\"_index\":601,\"name\":{\"751\":{}},\"comment\":{}}],[\"allowempty\",{\"_index\":520,\"name\":{\"662\":{}},\"comment\":{}}],[\"alwaysloganalytics\",{\"_index\":572,\"name\":{\"719\":{}},\"comment\":{}}],[\"analyticsdisabled\",{\"_index\":571,\"name\":{\"718\":{}},\"comment\":{}}],[\"analyticsnameoverride\",{\"_index\":48,\"name\":{\"48\":{}},\"comment\":{}}],[\"api\",{\"_index\":545,\"name\":{\"687\":{},\"812\":{}},\"comment\":{}}],[\"api_key\",{\"_index\":251,\"name\":{\"307\":{}},\"comment\":{}}],[\"app_cli3_command/1.3\",{\"_index\":237,\"name\":{\"286\":{}},\"comment\":{}}],[\"app_extensions_any\",{\"_index\":279,\"name\":{\"335\":{}},\"comment\":{}}],[\"app_extensions_breakdown\",{\"_index\":280,\"name\":{\"336\":{}},\"comment\":{}}],[\"app_extensions_count\",{\"_index\":281,\"name\":{\"337\":{}},\"comment\":{}}],[\"app_extensions_custom_layout\",{\"_index\":282,\"name\":{\"338\":{}},\"comment\":{}}],[\"app_extensions_function_any\",{\"_index\":283,\"name\":{\"339\":{}},\"comment\":{}}],[\"app_extensions_function_count\",{\"_index\":284,\"name\":{\"340\":{}},\"comment\":{}}],[\"app_extensions_function_custom_layout\",{\"_index\":285,\"name\":{\"341\":{}},\"comment\":{}}],[\"app_extensions_theme_any\",{\"_index\":286,\"name\":{\"342\":{}},\"comment\":{}}],[\"app_extensions_theme_count\",{\"_index\":287,\"name\":{\"343\":{}},\"comment\":{}}],[\"app_extensions_theme_custom_layout\",{\"_index\":288,\"name\":{\"344\":{}},\"comment\":{}}],[\"app_extensions_ui_any\",{\"_index\":289,\"name\":{\"345\":{}},\"comment\":{}}],[\"app_extensions_ui_count\",{\"_index\":290,\"name\":{\"346\":{}},\"comment\":{}}],[\"app_extensions_ui_custom_layout\",{\"_index\":291,\"name\":{\"347\":{}},\"comment\":{}}],[\"app_name\",{\"_index\":239,\"name\":{\"292\":{}},\"comment\":{}}],[\"app_name_hash\",{\"_index\":292,\"name\":{\"348\":{}},\"comment\":{}}],[\"app_path_hash\",{\"_index\":293,\"name\":{\"349\":{}},\"comment\":{}}],[\"app_scopes\",{\"_index\":294,\"name\":{\"350\":{}},\"comment\":{}}],[\"app_web_backend_any\",{\"_index\":295,\"name\":{\"351\":{}},\"comment\":{}}],[\"app_web_backend_count\",{\"_index\":296,\"name\":{\"352\":{}},\"comment\":{}}],[\"app_web_custom_layout\",{\"_index\":297,\"name\":{\"353\":{}},\"comment\":{}}],[\"app_web_framework\",{\"_index\":298,\"name\":{\"354\":{}},\"comment\":{}}],[\"app_web_frontend_any\",{\"_index\":299,\"name\":{\"355\":{}},\"comment\":{}}],[\"app_web_frontend_count\",{\"_index\":300,\"name\":{\"356\":{}},\"comment\":{}}],[\"appendfile\",{\"_index\":129,\"name\":{\"157\":{}},\"comment\":{}}],[\"appendfilesync\",{\"_index\":130,\"name\":{\"158\":{}},\"comment\":{}}],[\"apphost\",{\"_index\":592,\"name\":{\"741\":{}},\"comment\":{}}],[\"appport\",{\"_index\":591,\"name\":{\"740\":{}},\"comment\":{}}],[\"arch\",{\"_index\":359,\"name\":{\"429\":{}},\"comment\":{}}],[\"args\",{\"_index\":115,\"name\":{\"126\":{},\"290\":{}},\"comment\":{}}],[\"author\",{\"_index\":180,\"name\":{\"209\":{},\"401\":{}},\"comment\":{}}],[\"base64urlencode\",{\"_index\":67,\"name\":{\"68\":{}},\"comment\":{}}],[\"basename\",{\"_index\":413,\"name\":{\"488\":{}},\"comment\":{}}],[\"baseurl\",{\"_index\":199,\"name\":{\"240\":{}},\"comment\":{}}],[\"body\",{\"_index\":192,\"name\":{\"233\":{}},\"comment\":{}}],[\"branch\",{\"_index\":200,\"name\":{\"241\":{}},\"comment\":{}}],[\"bug\",{\"_index\":105,\"name\":{\"107\":{}},\"comment\":{}}],[\"bugerror\",{\"_index\":117,\"name\":{\"139\":{}},\"comment\":{}}],[\"bundleuserhome\",{\"_index\":449,\"name\":{\"565\":{}},\"comment\":{}}],[\"by\",{\"_index\":531,\"name\":{\"671\":{}},\"comment\":{}}],[\"camelize\",{\"_index\":27,\"name\":{\"27\":{}},\"comment\":{}}],[\"cancelexecution\",{\"_index\":106,\"name\":{\"108\":{}},\"comment\":{}}],[\"cancellationmessage\",{\"_index\":513,\"name\":{\"639\":{}},\"comment\":{}}],[\"capitalize\",{\"_index\":21,\"name\":{\"21\":{}},\"comment\":{}}],[\"captureoutput\",{\"_index\":464,\"name\":{\"580\":{}},\"comment\":{}}],[\"catch\",{\"_index\":49,\"name\":{\"49\":{}},\"comment\":{}}],[\"checkfornewversion\",{\"_index\":323,\"name\":{\"380\":{}},\"comment\":{}}],[\"checkifignoredingitrepository\",{\"_index\":160,\"name\":{\"188\":{}},\"comment\":{}}],[\"checkportavailability\",{\"_index\":478,\"name\":{\"598\":{}},\"comment\":{}}],[\"chmod\",{\"_index\":149,\"name\":{\"177\":{}},\"comment\":{}}],[\"choices\",{\"_index\":508,\"name\":{\"634\":{},\"650\":{}},\"comment\":{}}],[\"cimetadata\",{\"_index\":584,\"name\":{\"733\":{}},\"comment\":{}}],[\"ciplatform\",{\"_index\":582,\"name\":{\"731\":{}},\"comment\":{}}],[\"cleansinglestacktracepath\",{\"_index\":101,\"name\":{\"103\":{}},\"comment\":{}}],[\"cleanstackframefilepath\",{\"_index\":96,\"name\":{\"96\":{}},\"comment\":{}}],[\"clear\",{\"_index\":218,\"name\":{\"259\":{}},\"comment\":{}}],[\"clearcollectedlogs\",{\"_index\":402,\"name\":{\"476\":{}},\"comment\":{}}],[\"cli_kit_version\",{\"_index\":35,\"name\":{\"35\":{}},\"comment\":{}}],[\"cli_version\",{\"_index\":252,\"name\":{\"308\":{}},\"comment\":{}}],[\"cloudenvironment\",{\"_index\":579,\"name\":{\"726\":{}},\"comment\":{}}],[\"cmd_all_alias_used\",{\"_index\":258,\"name\":{\"314\":{}},\"comment\":{}}],[\"cmd_all_environment_flags\",{\"_index\":242,\"name\":{\"295\":{}},\"comment\":{}}],[\"cmd_all_launcher\",{\"_index\":259,\"name\":{\"315\":{}},\"comment\":{}}],[\"cmd_all_path_override\",{\"_index\":260,\"name\":{\"316\":{}},\"comment\":{}}],[\"cmd_all_path_override_hash\",{\"_index\":261,\"name\":{\"317\":{}},\"comment\":{}}],[\"cmd_all_plugin\",{\"_index\":262,\"name\":{\"318\":{}},\"comment\":{}}],[\"cmd_all_topic\",{\"_index\":263,\"name\":{\"319\":{}},\"comment\":{}}],[\"cmd_all_verbose\",{\"_index\":264,\"name\":{\"320\":{}},\"comment\":{}}],[\"cmd_app_dependency_installation_skipped\",{\"_index\":274,\"name\":{\"330\":{}},\"comment\":{}}],[\"cmd_app_reset_used\",{\"_index\":275,\"name\":{\"331\":{}},\"comment\":{}}],[\"cmd_dev_tunnel_custom\",{\"_index\":243,\"name\":{\"296\":{}},\"comment\":{}}],[\"cmd_dev_tunnel_custom_hash\",{\"_index\":277,\"name\":{\"333\":{}},\"comment\":{}}],[\"cmd_dev_tunnel_type\",{\"_index\":276,\"name\":{\"332\":{}},\"comment\":{}}],[\"cmd_dev_urls_updated\",{\"_index\":278,\"name\":{\"334\":{}},\"comment\":{}}],[\"cmd_extensions_binary_from_source\",{\"_index\":265,\"name\":{\"321\":{}},\"comment\":{}}],[\"cmd_scaffold_required_auth\",{\"_index\":266,\"name\":{\"322\":{}},\"comment\":{}}],[\"cmd_scaffold_template_custom\",{\"_index\":267,\"name\":{\"323\":{}},\"comment\":{}}],[\"cmd_scaffold_template_flavor\",{\"_index\":268,\"name\":{\"324\":{}},\"comment\":{}}],[\"cmd_scaffold_type\",{\"_index\":269,\"name\":{\"325\":{}},\"comment\":{}}],[\"cmd_scaffold_type_category\",{\"_index\":270,\"name\":{\"326\":{}},\"comment\":{}}],[\"cmd_scaffold_type_gated\",{\"_index\":271,\"name\":{\"327\":{}},\"comment\":{}}],[\"cmd_scaffold_type_owner\",{\"_index\":272,\"name\":{\"328\":{}},\"comment\":{}}],[\"cmd_scaffold_used_prompts_for_type\",{\"_index\":273,\"name\":{\"329\":{}},\"comment\":{}}],[\"codespaceurl\",{\"_index\":577,\"name\":{\"724\":{}},\"comment\":{}}],[\"collectedlogs\",{\"_index\":401,\"name\":{\"474\":{}},\"comment\":{}}],[\"collectlog\",{\"_index\":363,\"name\":{\"433\":{}},\"comment\":{}}],[\"color\",{\"_index\":62,\"name\":{\"62\":{},\"849\":{}},\"comment\":{}}],[\"command\",{\"_index\":45,\"name\":{\"45\":{},\"125\":{},\"301\":{},\"749\":{}},\"comment\":{}}],[\"commandcontent\",{\"_index\":599,\"name\":{\"748\":{}},\"comment\":{}}],[\"common/array\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"common/collection\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"common/function\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"common/lang\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"common/object\",{\"_index\":15,\"name\":{\"15\":{}},\"comment\":{}}],[\"common/string\",{\"_index\":19,\"name\":{\"19\":{}},\"comment\":{}}],[\"common/ts/deep\",{\"_index\":527,\"name\":{\"669\":{}},\"comment\":{}}],[\"common/ts/pick\",{\"_index\":530,\"name\":{\"671\":{}},\"comment\":{}}],[\"common/url\",{\"_index\":32,\"name\":{\"32\":{}},\"comment\":{}}],[\"common/version\",{\"_index\":34,\"name\":{\"34\":{}},\"comment\":{}}],[\"config\",{\"_index\":214,\"name\":{\"255\":{}},\"comment\":{}}],[\"confirmationmessage\",{\"_index\":512,\"name\":{\"638\":{}},\"comment\":{}}],[\"consoleerror\",{\"_index\":372,\"name\":{\"442\":{}},\"comment\":{}}],[\"consolelog\",{\"_index\":371,\"name\":{\"441\":{}},\"comment\":{}}],[\"consolewarn\",{\"_index\":373,\"name\":{\"443\":{}},\"comment\":{}}],[\"constantize\",{\"_index\":30,\"name\":{\"30\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":38,\"name\":{\"38\":{},\"40\":{},\"110\":{},\"117\":{},\"124\":{},\"133\":{},\"140\":{},\"211\":{},\"218\":{},\"254\":{},\"451\":{},\"544\":{},\"553\":{},\"764\":{},\"799\":{},\"823\":{}},\"comment\":{}}],[\"context\",{\"_index\":628,\"name\":{\"803\":{}},\"comment\":{}}],[\"copyfile\",{\"_index\":126,\"name\":{\"154\":{}},\"comment\":{}}],[\"couldntobtainidentityspinfqdnerror\",{\"_index\":561,\"name\":{\"708\":{}},\"comment\":{}}],[\"couldntobtainpartnersspinfqdnerror\",{\"_index\":560,\"name\":{\"707\":{}},\"comment\":{}}],[\"couldntobtainshopifyspinfqdnerror\",{\"_index\":562,\"name\":{\"709\":{}},\"comment\":{}}],[\"create\",{\"_index\":630,\"name\":{\"807\":{}},\"comment\":{}}],[\"created_at\",{\"_index\":195,\"name\":{\"236\":{}},\"comment\":{}}],[\"createdatruntime\",{\"_index\":647,\"name\":{\"827\":{}},\"comment\":{}}],[\"createfilereadstream\",{\"_index\":144,\"name\":{\"172\":{}},\"comment\":{}}],[\"createfilewritestream\",{\"_index\":145,\"name\":{\"173\":{}},\"comment\":{}}],[\"creategitcommit\",{\"_index\":165,\"name\":{\"193\":{}},\"comment\":{}}],[\"creategitcommitoptions\",{\"_index\":178,\"name\":{\"207\":{}},\"comment\":{}}],[\"creategitignore\",{\"_index\":161,\"name\":{\"189\":{}},\"comment\":{}}],[\"createruntimemetadatacontainer\",{\"_index\":220,\"name\":{\"261\":{}},\"comment\":{}}],[\"createtheme\",{\"_index\":638,\"name\":{\"815\":{}},\"comment\":{}}],[\"customsections\",{\"_index\":112,\"name\":{\"115\":{},\"119\":{},\"131\":{},\"138\":{},\"145\":{},\"213\":{},\"220\":{}},\"comment\":{}}],[\"cwd\",{\"_index\":417,\"name\":{\"492\":{},\"585\":{}},\"comment\":{}}],[\"cyan\",{\"_index\":392,\"name\":{\"465\":{}},\"comment\":{}}],[\"debounce\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"decodetoml\",{\"_index\":480,\"name\":{\"600\":{}},\"comment\":{}}],[\"deepmergeobjects\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"deeprequired\",{\"_index\":529,\"name\":{\"670\":{},\"830\":{}},\"comment\":{}}],[\"default\",{\"_index\":47,\"name\":{\"47\":{},\"64\":{}},\"comment\":{}}],[\"defaultvalue\",{\"_index\":507,\"name\":{\"632\":{},\"641\":{},\"657\":{}},\"comment\":{}}],[\"defineprovider\",{\"_index\":614,\"name\":{\"788\":{}},\"comment\":{}}],[\"delete\",{\"_index\":217,\"name\":{\"258\":{}},\"comment\":{}}],[\"deletetheme\",{\"_index\":641,\"name\":{\"818\":{}},\"comment\":{}}],[\"dependencies\",{\"_index\":344,\"name\":{\"405\":{}},\"comment\":{}}],[\"dependencytype\",{\"_index\":337,\"name\":{\"394\":{}},\"comment\":{}}],[\"dependencyversion\",{\"_index\":354,\"name\":{\"421\":{}},\"comment\":{}}],[\"destination\",{\"_index\":174,\"name\":{\"202\":{}},\"comment\":{}}],[\"devdependencies\",{\"_index\":345,\"name\":{\"407\":{}},\"comment\":{}}],[\"development_theme_role\",{\"_index\":644,\"name\":{\"821\":{}},\"comment\":{}}],[\"difference\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"directory\",{\"_index\":179,\"name\":{\"208\":{}},\"comment\":{}}],[\"dirname\",{\"_index\":412,\"name\":{\"487\":{}},\"comment\":{}}],[\"doonok\",{\"_index\":440,\"name\":{\"547\":{},\"556\":{}},\"comment\":{}}],[\"dotenvfile\",{\"_index\":79,\"name\":{\"79\":{}},\"comment\":{}}],[\"dotenvnotfounderror\",{\"_index\":78,\"name\":{\"78\":{}},\"comment\":{}}],[\"downloadfile\",{\"_index\":206,\"name\":{\"247\":{}},\"comment\":{}}],[\"downloadgitrepository\",{\"_index\":162,\"name\":{\"190\":{}},\"comment\":{}}],[\"draft\",{\"_index\":193,\"name\":{\"234\":{}},\"comment\":{}}],[\"editor\",{\"_index\":580,\"name\":{\"729\":{}},\"comment\":{}}],[\"emptydisplayedvalue\",{\"_index\":521,\"name\":{\"663\":{}},\"comment\":{}}],[\"encodetoml\",{\"_index\":481,\"name\":{\"601\":{}},\"comment\":{}}],[\"ensureauthenticatedadmin\",{\"_index\":456,\"name\":{\"572\":{}},\"comment\":{}}],[\"ensureauthenticatedpartners\",{\"_index\":454,\"name\":{\"570\":{}},\"comment\":{}}],[\"ensureauthenticatedstorefront\",{\"_index\":455,\"name\":{\"571\":{}},\"comment\":{}}],[\"ensureauthenticatedthemes\",{\"_index\":457,\"name\":{\"573\":{}},\"comment\":{}}],[\"ensuregitispresentorabort\",{\"_index\":167,\"name\":{\"195\":{}},\"comment\":{}}],[\"ensureinsidegitdirectory\",{\"_index\":168,\"name\":{\"196\":{}},\"comment\":{}}],[\"ensureisclean\",{\"_index\":169,\"name\":{\"197\":{}},\"comment\":{}}],[\"env\",{\"_index\":74,\"name\":{\"74\":{},\"586\":{}},\"comment\":{}}],[\"env_ci\",{\"_index\":301,\"name\":{\"357\":{}},\"comment\":{}}],[\"env_ci_platform\",{\"_index\":302,\"name\":{\"358\":{}},\"comment\":{}}],[\"env_cloud\",{\"_index\":310,\"name\":{\"366\":{}},\"comment\":{}}],[\"env_device_id\",{\"_index\":303,\"name\":{\"359\":{}},\"comment\":{}}],[\"env_package_manager\",{\"_index\":304,\"name\":{\"360\":{}},\"comment\":{}}],[\"env_package_manager_workspaces\",{\"_index\":305,\"name\":{\"361\":{}},\"comment\":{}}],[\"env_plugin_installed_all\",{\"_index\":244,\"name\":{\"297\":{}},\"comment\":{}}],[\"env_plugin_installed_any_custom\",{\"_index\":306,\"name\":{\"362\":{}},\"comment\":{}}],[\"env_plugin_installed_shopify\",{\"_index\":307,\"name\":{\"363\":{}},\"comment\":{}}],[\"env_shell\",{\"_index\":308,\"name\":{\"364\":{}},\"comment\":{}}],[\"env_web_ide\",{\"_index\":309,\"name\":{\"365\":{}},\"comment\":{}}],[\"environments\",{\"_index\":91,\"name\":{\"92\":{}},\"comment\":{}}],[\"environmentsfilename\",{\"_index\":54,\"name\":{\"54\":{}},\"comment\":{}}],[\"err\",{\"_index\":438,\"name\":{\"542\":{},\"552\":{}},\"comment\":{}}],[\"error\",{\"_index\":445,\"name\":{\"554\":{}},\"comment\":{}}],[\"error_message\",{\"_index\":238,\"name\":{\"291\":{}},\"comment\":{}}],[\"errorhandler\",{\"_index\":94,\"name\":{\"94\":{}},\"comment\":{}}],[\"errormapper\",{\"_index\":99,\"name\":{\"101\":{}},\"comment\":{}}],[\"errors\",{\"_index\":654,\"name\":{\"837\":{}},\"comment\":{}}],[\"errortext\",{\"_index\":391,\"name\":{\"464\":{}},\"comment\":{}}],[\"escaperegexp\",{\"_index\":26,\"name\":{\"26\":{}},\"comment\":{}}],[\"exec\",{\"_index\":465,\"name\":{\"581\":{}},\"comment\":{}}],[\"execcli2\",{\"_index\":447,\"name\":{\"562\":{}},\"comment\":{}}],[\"execoptions\",{\"_index\":468,\"name\":{\"584\":{}},\"comment\":{}}],[\"execthemecheckcli\",{\"_index\":448,\"name\":{\"563\":{}},\"comment\":{}}],[\"exitwithtimestampwhenenvvariablepresent\",{\"_index\":51,\"name\":{\"51\":{}},\"comment\":{}}],[\"externalerror\",{\"_index\":114,\"name\":{\"123\":{}},\"comment\":{}}],[\"externalerrorhandler\",{\"_index\":475,\"name\":{\"594\":{}},\"comment\":{}}],[\"extname\",{\"_index\":414,\"name\":{\"489\":{}},\"comment\":{}}],[\"failicon\",{\"_index\":398,\"name\":{\"471\":{}},\"comment\":{}}],[\"fanouthookfunction\",{\"_index\":432,\"name\":{\"533\":{}},\"comment\":{}}],[\"fanouthooks\",{\"_index\":419,\"name\":{\"494\":{}},\"comment\":{}}],[\"fatalerror\",{\"_index\":107,\"name\":{\"109\":{}},\"comment\":{}}],[\"fatalerrortype\",{\"_index\":102,\"name\":{\"104\":{}},\"comment\":{}}],[\"fetch\",{\"_index\":204,\"name\":{\"245\":{},\"806\":{}},\"comment\":{}}],[\"fetchtheme\",{\"_index\":636,\"name\":{\"813\":{}},\"comment\":{}}],[\"fetchthemes\",{\"_index\":637,\"name\":{\"814\":{}},\"comment\":{}}],[\"fileexists\",{\"_index\":151,\"name\":{\"179\":{}},\"comment\":{}}],[\"fileexistssync\",{\"_index\":152,\"name\":{\"180\":{}},\"comment\":{}}],[\"filehasexecutablepermissions\",{\"_index\":150,\"name\":{\"178\":{}},\"comment\":{}}],[\"filehash\",{\"_index\":70,\"name\":{\"71\":{}},\"comment\":{}}],[\"filelastupdated\",{\"_index\":146,\"name\":{\"174\":{}},\"comment\":{}}],[\"filelastupdatedtimestamp\",{\"_index\":147,\"name\":{\"175\":{}},\"comment\":{}}],[\"filepath\",{\"_index\":201,\"name\":{\"242\":{}},\"comment\":{}}],[\"filerealpath\",{\"_index\":125,\"name\":{\"153\":{}},\"comment\":{}}],[\"filesize\",{\"_index\":141,\"name\":{\"169\":{}},\"comment\":{}}],[\"filesizesync\",{\"_index\":142,\"name\":{\"170\":{}},\"comment\":{}}],[\"findorcreate\",{\"_index\":629,\"name\":{\"805\":{}},\"comment\":{}}],[\"findpathup\",{\"_index\":156,\"name\":{\"184\":{}},\"comment\":{}}],[\"findupandreadpackagejson\",{\"_index\":328,\"name\":{\"385\":{}},\"comment\":{}}],[\"findupandreadpackagejsonnotfounderror\",{\"_index\":340,\"name\":{\"398\":{}},\"comment\":{}}],[\"firstpartydev\",{\"_index\":573,\"name\":{\"720\":{}},\"comment\":{}}],[\"footer\",{\"_index\":497,\"name\":{\"617\":{}},\"comment\":{}}],[\"formatpackagemanagercommand\",{\"_index\":361,\"name\":{\"431\":{}},\"comment\":{}}],[\"formatsection\",{\"_index\":378,\"name\":{\"448\":{}},\"comment\":{}}],[\"formattedmessage\",{\"_index\":111,\"name\":{\"114\":{},\"122\":{},\"130\":{},\"137\":{},\"144\":{},\"216\":{},\"223\":{}},\"comment\":{}}],[\"formdata\",{\"_index\":203,\"name\":{\"244\":{}},\"comment\":{}}],[\"functionproxyrequest\",{\"_index\":554,\"name\":{\"701\":{}},\"comment\":{}}],[\"generaterandomnameforsubdirectory\",{\"_index\":153,\"name\":{\"181\":{}},\"comment\":{}}],[\"genericshellcommand\",{\"_index\":385,\"name\":{\"457\":{}},\"comment\":{}}],[\"get\",{\"_index\":215,\"name\":{\"256\":{}},\"comment\":{}}],[\"getallpublicmetadata\",{\"_index\":224,\"name\":{\"267\":{},\"273\":{}},\"comment\":{}}],[\"getallsensitivemetadata\",{\"_index\":225,\"name\":{\"269\":{},\"274\":{}},\"comment\":{}}],[\"getarraycontainsduplicates\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"getarrayrejectingundefined\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"getavailabletcpport\",{\"_index\":477,\"name\":{\"597\":{}},\"comment\":{}}],[\"getbackendport\",{\"_index\":87,\"name\":{\"88\":{}},\"comment\":{}}],[\"getdependencies\",{\"_index\":321,\"name\":{\"378\":{}},\"comment\":{}}],[\"getenvironmentvariables\",{\"_index\":83,\"name\":{\"84\":{}},\"comment\":{}}],[\"getheadsymbolicref\",{\"_index\":166,\"name\":{\"194\":{}},\"comment\":{}}],[\"gethosttheme\",{\"_index\":620,\"name\":{\"794\":{}},\"comment\":{}}],[\"getidentitytokeninformation\",{\"_index\":88,\"name\":{\"89\":{}},\"comment\":{}}],[\"getlatestgitcommit\",{\"_index\":163,\"name\":{\"191\":{}},\"comment\":{}}],[\"getlatestgithubrelease\",{\"_index\":184,\"name\":{\"225\":{}},\"comment\":{}}],[\"getlistoftunnelplugins\",{\"_index\":420,\"name\":{\"495\":{}},\"comment\":{}}],[\"getorganization\",{\"_index\":86,\"name\":{\"87\":{}},\"comment\":{}}],[\"getoutputupdateclireminder\",{\"_index\":377,\"name\":{\"447\":{}},\"comment\":{}}],[\"getpackagemanager\",{\"_index\":317,\"name\":{\"374\":{}},\"comment\":{}}],[\"getpackagename\",{\"_index\":320,\"name\":{\"377\":{}},\"comment\":{}}],[\"getpartnerstoken\",{\"_index\":84,\"name\":{\"85\":{}},\"comment\":{}}],[\"getrandomname\",{\"_index\":20,\"name\":{\"20\":{}},\"comment\":{}}],[\"gettunnelstatus\",{\"_index\":605,\"name\":{\"756\":{}},\"comment\":{}}],[\"gitcloneoptions\",{\"_index\":172,\"name\":{\"200\":{}},\"comment\":{}}],[\"gitdirectorynotcleanerror\",{\"_index\":182,\"name\":{\"217\":{}},\"comment\":{}}],[\"githubrelease\",{\"_index\":187,\"name\":{\"228\":{}},\"comment\":{}}],[\"githubrepositoryreference\",{\"_index\":198,\"name\":{\"239\":{}},\"comment\":{}}],[\"gitignoretemplate\",{\"_index\":171,\"name\":{\"199\":{}},\"comment\":{}}],[\"gitpodurl\",{\"_index\":576,\"name\":{\"723\":{}},\"comment\":{}}],[\"glob\",{\"_index\":154,\"name\":{\"182\":{}},\"comment\":{}}],[\"globalflags\",{\"_index\":60,\"name\":{\"60\":{}},\"comment\":{}}],[\"graphqlrequest\",{\"_index\":540,\"name\":{\"682\":{}},\"comment\":{}}],[\"graphqlrequestoptions\",{\"_index\":543,\"name\":{\"685\":{}},\"comment\":{}}],[\"graphqlresponse\",{\"_index\":542,\"name\":{\"684\":{}},\"comment\":{}}],[\"graphqlresponseoptions\",{\"_index\":548,\"name\":{\"694\":{}},\"comment\":{}}],[\"graphqlvariables\",{\"_index\":541,\"name\":{\"683\":{}},\"comment\":{}}],[\"green\",{\"_index\":395,\"name\":{\"468\":{}},\"comment\":{}}],[\"groupby\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"handledeprecations\",{\"_index\":555,\"name\":{\"702\":{}},\"comment\":{}}],[\"handleerrors\",{\"_index\":549,\"name\":{\"695\":{}},\"comment\":{}}],[\"handler\",{\"_index\":93,\"name\":{\"93\":{},\"100\":{}},\"comment\":{}}],[\"hasdevelopmentrole\",{\"_index\":649,\"name\":{\"829\":{}},\"comment\":{}}],[\"hasgit\",{\"_index\":581,\"name\":{\"730\":{}},\"comment\":{}}],[\"hashstring\",{\"_index\":69,\"name\":{\"70\":{}},\"comment\":{}}],[\"hasmorepages\",{\"_index\":515,\"name\":{\"648\":{}},\"comment\":{}}],[\"header\",{\"_index\":662,\"name\":{\"850\":{}},\"comment\":{}}],[\"headers\",{\"_index\":538,\"name\":{\"679\":{}},\"comment\":{}}],[\"heading\",{\"_index\":388,\"name\":{\"461\":{}},\"comment\":{}}],[\"helpertext\",{\"_index\":663,\"name\":{\"851\":{}},\"comment\":{}}],[\"homedirectory\",{\"_index\":566,\"name\":{\"713\":{}},\"comment\":{}}],[\"hook\",{\"_index\":596,\"name\":{\"745\":{},\"752\":{}},\"comment\":{}}],[\"hookreturnpertunnelplugin\",{\"_index\":609,\"name\":{\"766\":{}},\"comment\":{}}],[\"hookreturnsperplugin\",{\"_index\":421,\"name\":{\"496\":{}},\"comment\":{}}],[\"hostthemelocalstorage\",{\"_index\":619,\"name\":{\"793\":{}},\"comment\":{}}],[\"hyphenate\",{\"_index\":28,\"name\":{\"28\":{}},\"comment\":{}}],[\"id\",{\"_index\":188,\"name\":{\"229\":{},\"824\":{}},\"comment\":{}}],[\"identityfqdn\",{\"_index\":558,\"name\":{\"705\":{}},\"comment\":{}}],[\"infotable\",{\"_index\":509,\"name\":{\"635\":{},\"644\":{},\"651\":{}},\"comment\":{}}],[\"infotablesection\",{\"_index\":661,\"name\":{\"848\":{}},\"comment\":{}}],[\"init\",{\"_index\":50,\"name\":{\"50\":{}},\"comment\":{}}],[\"initializegitrepository\",{\"_index\":159,\"name\":{\"187\":{}},\"comment\":{}}],[\"inlinetoken\",{\"_index\":657,\"name\":{\"841\":{}},\"comment\":{}}],[\"input\",{\"_index\":473,\"name\":{\"592\":{}},\"comment\":{}}],[\"installnodemodules\",{\"_index\":319,\"name\":{\"376\":{}},\"comment\":{}}],[\"installnpmdependenciesrecursively\",{\"_index\":318,\"name\":{\"375\":{}},\"comment\":{}}],[\"instance\",{\"_index\":589,\"name\":{\"738\":{}},\"comment\":{}}],[\"intemporarydirectory\",{\"_index\":122,\"name\":{\"150\":{}},\"comment\":{}}],[\"is_employee\",{\"_index\":256,\"name\":{\"312\":{}},\"comment\":{}}],[\"isabsolutepath\",{\"_index\":411,\"name\":{\"486\":{}},\"comment\":{}}],[\"isclean\",{\"_index\":170,\"name\":{\"198\":{}},\"comment\":{}}],[\"iscloudenvironment\",{\"_index\":578,\"name\":{\"725\":{}},\"comment\":{}}],[\"isconfirmationprompt\",{\"_index\":506,\"name\":{\"629\":{}},\"comment\":{}}],[\"isdevelopment\",{\"_index\":567,\"name\":{\"714\":{}},\"comment\":{}}],[\"isdirectory\",{\"_index\":140,\"name\":{\"168\":{}},\"comment\":{}}],[\"isequal\",{\"_index\":14,\"name\":{\"14\":{}},\"comment\":{}}],[\"iserr\",{\"_index\":439,\"name\":{\"546\":{},\"555\":{}},\"comment\":{}}],[\"isshopify\",{\"_index\":569,\"name\":{\"716\":{}},\"comment\":{}}],[\"isspin\",{\"_index\":588,\"name\":{\"737\":{}},\"comment\":{}}],[\"isspinenvironment\",{\"_index\":590,\"name\":{\"739\":{}},\"comment\":{}}],[\"isterminalinteractive\",{\"_index\":565,\"name\":{\"712\":{}},\"comment\":{}}],[\"isunittest\",{\"_index\":570,\"name\":{\"717\":{}},\"comment\":{}}],[\"isvalidurl\",{\"_index\":33,\"name\":{\"33\":{}},\"comment\":{}}],[\"isverbose\",{\"_index\":568,\"name\":{\"715\":{}},\"comment\":{}}],[\"isvscode\",{\"_index\":525,\"name\":{\"667\":{}},\"comment\":{}}],[\"italic\",{\"_index\":390,\"name\":{\"463\":{}},\"comment\":{}}],[\"items\",{\"_index\":664,\"name\":{\"852\":{},\"857\":{}},\"comment\":{}}],[\"joinpath\",{\"_index\":407,\"name\":{\"482\":{}},\"comment\":{}}],[\"json\",{\"_index\":386,\"name\":{\"458\":{},\"677\":{}},\"comment\":{}}],[\"key\",{\"_index\":523,\"name\":{\"665\":{}},\"comment\":{}}],[\"keypress\",{\"_index\":522,\"name\":{\"664\":{}},\"comment\":{}}],[\"label\",{\"_index\":659,\"name\":{\"845\":{}},\"comment\":{}}],[\"latesttag\",{\"_index\":177,\"name\":{\"206\":{}},\"comment\":{}}],[\"linesdiff\",{\"_index\":399,\"name\":{\"472\":{}},\"comment\":{}}],[\"linestocolumns\",{\"_index\":24,\"name\":{\"24\":{}},\"comment\":{}}],[\"link\",{\"_index\":387,\"name\":{\"460\":{},\"843\":{}},\"comment\":{}}],[\"linktoken\",{\"_index\":658,\"name\":{\"842\":{}},\"comment\":{}}],[\"list\",{\"_index\":666,\"name\":{\"854\":{}},\"comment\":{}}],[\"listtoken\",{\"_index\":665,\"name\":{\"853\":{}},\"comment\":{}}],[\"loadenvironment\",{\"_index\":90,\"name\":{\"91\":{}},\"comment\":{}}],[\"localclipackage\",{\"_index\":59,\"name\":{\"59\":{}},\"comment\":{}}],[\"localstorage\",{\"_index\":213,\"name\":{\"253\":{}},\"comment\":{}}],[\"lockfile\",{\"_index\":336,\"name\":{\"393\":{}},\"comment\":{}}],[\"lockfiles\",{\"_index\":335,\"name\":{\"392\":{}},\"comment\":{}}],[\"logger\",{\"_index\":379,\"name\":{\"449\":{}},\"comment\":{}}],[\"loglevel\",{\"_index\":400,\"name\":{\"473\":{}},\"comment\":{}}],[\"logout\",{\"_index\":458,\"name\":{\"574\":{}},\"comment\":{}}],[\"lookupmimetype\",{\"_index\":231,\"name\":{\"280\":{}},\"comment\":{}}],[\"macaddress\",{\"_index\":583,\"name\":{\"732\":{}},\"comment\":{}}],[\"magenta\",{\"_index\":394,\"name\":{\"467\":{}},\"comment\":{}}],[\"manager\",{\"_index\":315,\"name\":{\"372\":{},\"797\":{}},\"comment\":{}}],[\"map\",{\"_index\":443,\"name\":{\"550\":{},\"559\":{}},\"comment\":{}}],[\"maperror\",{\"_index\":444,\"name\":{\"551\":{},\"560\":{}},\"comment\":{}}],[\"mapvalues\",{\"_index\":18,\"name\":{\"18\":{}},\"comment\":{}}],[\"memoize\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"message\",{\"_index\":434,\"name\":{\"538\":{},\"633\":{},\"643\":{},\"649\":{},\"658\":{}},\"comment\":{}}],[\"metadata\",{\"_index\":240,\"name\":{\"293\":{}},\"comment\":{}}],[\"minwdmwindowsversion\",{\"_index\":451,\"name\":{\"567\":{}},\"comment\":{}}],[\"mkdir\",{\"_index\":133,\"name\":{\"161\":{}},\"comment\":{}}],[\"mkdirsync\",{\"_index\":134,\"name\":{\"162\":{}},\"comment\":{}}],[\"mktmpdir\",{\"_index\":139,\"name\":{\"167\":{}},\"comment\":{}}],[\"mockandcaptureoutput\",{\"_index\":617,\"name\":{\"791\":{}},\"comment\":{}}],[\"moduledirectory\",{\"_index\":416,\"name\":{\"491\":{}},\"comment\":{}}],[\"monorail_command_topic\",{\"_index\":235,\"name\":{\"284\":{}},\"comment\":{}}],[\"monoraileventpublic\",{\"_index\":311,\"name\":{\"370\":{}},\"comment\":{}}],[\"monoraileventsensitive\",{\"_index\":312,\"name\":{\"371\":{}},\"comment\":{}}],[\"movefile\",{\"_index\":148,\"name\":{\"176\":{}},\"comment\":{}}],[\"name\",{\"_index\":191,\"name\":{\"232\":{},\"400\":{},\"422\":{},\"526\":{},\"782\":{},\"825\":{}},\"comment\":{}}],[\"nextsteps\",{\"_index\":110,\"name\":{\"113\":{},\"118\":{},\"129\":{},\"136\":{},\"143\":{},\"212\":{},\"219\":{}},\"comment\":{}}],[\"no\",{\"_index\":61,\"name\":{\"62\":{}},\"comment\":{}}],[\"node/abort\",{\"_index\":36,\"name\":{\"36\":{}},\"comment\":{}}],[\"node/analytics\",{\"_index\":40,\"name\":{\"41\":{}},\"comment\":{}}],[\"node/api/admin\",{\"_index\":533,\"name\":{\"673\":{}},\"comment\":{}}],[\"node/api/graphql\",{\"_index\":539,\"name\":{\"681\":{}},\"comment\":{}}],[\"node/api/http\",{\"_index\":551,\"name\":{\"698\":{}},\"comment\":{}}],[\"node/api/partners\",{\"_index\":552,\"name\":{\"699\":{}},\"comment\":{}}],[\"node/archiver\",{\"_index\":42,\"name\":{\"43\":{}},\"comment\":{}}],[\"node/base\",{\"_index\":44,\"name\":{\"45\":{}},\"comment\":{}}],[\"node/cli\",{\"_index\":55,\"name\":{\"55\":{}},\"comment\":{}}],[\"node/colors\",{\"_index\":64,\"name\":{\"65\":{}},\"comment\":{}}],[\"node/context/fqdn\",{\"_index\":556,\"name\":{\"703\":{}},\"comment\":{}}],[\"node/context/local\",{\"_index\":564,\"name\":{\"711\":{}},\"comment\":{}}],[\"node/context/spin\",{\"_index\":585,\"name\":{\"734\":{}},\"comment\":{}}],[\"node/crypto\",{\"_index\":65,\"name\":{\"66\":{}},\"comment\":{}}],[\"node/dot\",{\"_index\":73,\"name\":{\"74\":{}},\"comment\":{}}],[\"node/environment\",{\"_index\":82,\"name\":{\"83\":{}},\"comment\":{}}],[\"node/environments\",{\"_index\":89,\"name\":{\"90\":{}},\"comment\":{}}],[\"node/error\",{\"_index\":92,\"name\":{\"93\":{},\"99\":{}},\"comment\":{}}],[\"node/framework\",{\"_index\":118,\"name\":{\"146\":{}},\"comment\":{}}],[\"node/fs\",{\"_index\":120,\"name\":{\"148\":{}},\"comment\":{}}],[\"node/git\",{\"_index\":158,\"name\":{\"186\":{}},\"comment\":{}}],[\"node/github\",{\"_index\":183,\"name\":{\"224\":{}},\"comment\":{}}],[\"node/hooks/deprecations\",{\"_index\":593,\"name\":{\"742\":{}},\"comment\":{}}],[\"node/hooks/postrun\",{\"_index\":595,\"name\":{\"744\":{}},\"comment\":{}}],[\"node/hooks/prerun\",{\"_index\":597,\"name\":{\"746\":{}},\"comment\":{}}],[\"node/http\",{\"_index\":202,\"name\":{\"243\":{}},\"comment\":{}}],[\"node/liquid\",{\"_index\":208,\"name\":{\"249\":{}},\"comment\":{}}],[\"node/local\",{\"_index\":211,\"name\":{\"252\":{}},\"comment\":{}}],[\"node/metadata\",{\"_index\":219,\"name\":{\"260\":{}},\"comment\":{}}],[\"node/mimes\",{\"_index\":230,\"name\":{\"279\":{}},\"comment\":{}}],[\"node/monorail\",{\"_index\":233,\"name\":{\"282\":{}},\"comment\":{}}],[\"node/node\",{\"_index\":313,\"name\":{\"372\":{}},\"comment\":{}}],[\"node/os\",{\"_index\":355,\"name\":{\"424\":{}},\"comment\":{}}],[\"node/output\",{\"_index\":360,\"name\":{\"430\":{}},\"comment\":{}}],[\"node/path\",{\"_index\":406,\"name\":{\"481\":{}},\"comment\":{}}],[\"node/plugins\",{\"_index\":418,\"name\":{\"493\":{}},\"comment\":{}}],[\"node/plugins/tunnel\",{\"_index\":602,\"name\":{\"753\":{}},\"comment\":{}}],[\"node/result\",{\"_index\":435,\"name\":{\"539\":{}},\"comment\":{}}],[\"node/ruby\",{\"_index\":446,\"name\":{\"561\":{}},\"comment\":{}}],[\"node/schema\",{\"_index\":452,\"name\":{\"568\":{}},\"comment\":{}}],[\"node/session\",{\"_index\":453,\"name\":{\"569\":{}},\"comment\":{}}],[\"node/system\",{\"_index\":462,\"name\":{\"578\":{}},\"comment\":{}}],[\"node/tcp\",{\"_index\":476,\"name\":{\"596\":{}},\"comment\":{}}],[\"node/testing/output\",{\"_index\":616,\"name\":{\"790\":{}},\"comment\":{}}],[\"node/themes/conf\",{\"_index\":618,\"name\":{\"792\":{}},\"comment\":{}}],[\"node/themes/models/theme\",{\"_index\":643,\"name\":{\"820\":{}},\"comment\":{}}],[\"node/themes/theme\",{\"_index\":623,\"name\":{\"797\":{},\"808\":{}},\"comment\":{}}],[\"node/themes/themes\",{\"_index\":635,\"name\":{\"812\":{}},\"comment\":{}}],[\"node/toml\",{\"_index\":479,\"name\":{\"599\":{}},\"comment\":{}}],[\"node/ui\",{\"_index\":482,\"name\":{\"602\":{}},\"comment\":{}}],[\"node/vscode\",{\"_index\":524,\"name\":{\"666\":{}},\"comment\":{}}],[\"node_version\",{\"_index\":255,\"name\":{\"311\":{}},\"comment\":{}}],[\"normalizepath\",{\"_index\":408,\"name\":{\"483\":{}},\"comment\":{}}],[\"normalizestorefqdn\",{\"_index\":559,\"name\":{\"706\":{}},\"comment\":{}}],[\"notprovidedstorefqdnerror\",{\"_index\":563,\"name\":{\"710\":{}},\"comment\":{}}],[\"npmlockfile\",{\"_index\":332,\"name\":{\"389\":{}},\"comment\":{}}],[\"oclif\",{\"_index\":347,\"name\":{\"411\":{}},\"comment\":{}}],[\"ok\",{\"_index\":437,\"name\":{\"541\":{},\"543\":{}},\"comment\":{}}],[\"oninput\",{\"_index\":502,\"name\":{\"623\":{}},\"comment\":{}}],[\"onresponse\",{\"_index\":550,\"name\":{\"696\":{}},\"comment\":{}}],[\"openurl\",{\"_index\":463,\"name\":{\"579\":{}},\"comment\":{}}],[\"options\",{\"_index\":423,\"name\":{\"499\":{},\"506\":{},\"513\":{},\"521\":{},\"528\":{},\"769\":{},\"777\":{}},\"comment\":{}}],[\"ordered\",{\"_index\":667,\"name\":{\"858\":{}},\"comment\":{}}],[\"outputcompleted\",{\"_index\":366,\"name\":{\"436\":{}},\"comment\":{}}],[\"outputcontent\",{\"_index\":362,\"name\":{\"432\":{}},\"comment\":{}}],[\"outputdebug\",{\"_index\":367,\"name\":{\"437\":{}},\"comment\":{}}],[\"outputinfo\",{\"_index\":364,\"name\":{\"434\":{}},\"comment\":{}}],[\"outputmessage\",{\"_index\":382,\"name\":{\"453\":{}},\"comment\":{}}],[\"outputnewline\",{\"_index\":369,\"name\":{\"439\":{}},\"comment\":{}}],[\"outputprocess\",{\"_index\":403,\"name\":{\"477\":{}},\"comment\":{}}],[\"outputsuccess\",{\"_index\":365,\"name\":{\"435\":{}},\"comment\":{}}],[\"outputtoken\",{\"_index\":383,\"name\":{\"454\":{}},\"comment\":{}}],[\"outputwarn\",{\"_index\":368,\"name\":{\"438\":{}},\"comment\":{}}],[\"outputwhereappropriate\",{\"_index\":374,\"name\":{\"444\":{}},\"comment\":{}}],[\"outsidegitdirectoryerror\",{\"_index\":181,\"name\":{\"210\":{}},\"comment\":{}}],[\"overrides\",{\"_index\":351,\"name\":{\"417\":{}},\"comment\":{}}],[\"package\",{\"_index\":314,\"name\":{\"372\":{}},\"comment\":{}}],[\"packagejson\",{\"_index\":341,\"name\":{\"399\":{}},\"comment\":{}}],[\"packagejsonnotfounderror\",{\"_index\":339,\"name\":{\"397\":{}},\"comment\":{}}],[\"packagejsonscript\",{\"_index\":396,\"name\":{\"469\":{}},\"comment\":{}}],[\"packagemanager\",{\"_index\":338,\"name\":{\"395\":{},\"396\":{}},\"comment\":{}}],[\"packagemanagerusedforcreating\",{\"_index\":316,\"name\":{\"373\":{}},\"comment\":{}}],[\"parse\",{\"_index\":52,\"name\":{\"52\":{}},\"comment\":{}}],[\"parsecommandcontent\",{\"_index\":598,\"name\":{\"747\":{}},\"comment\":{}}],[\"parsegithubrepositoryreference\",{\"_index\":186,\"name\":{\"227\":{}},\"comment\":{}}],[\"parsegithubrepositoryurl\",{\"_index\":185,\"name\":{\"226\":{}},\"comment\":{}}],[\"partition\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"partner_id\",{\"_index\":245,\"name\":{\"300\":{}},\"comment\":{}}],[\"partnersfqdn\",{\"_index\":557,\"name\":{\"704\":{}},\"comment\":{}}],[\"partnersrequest\",{\"_index\":553,\"name\":{\"700\":{}},\"comment\":{}}],[\"password\",{\"_index\":518,\"name\":{\"659\":{}},\"comment\":{}}],[\"patchenvfile\",{\"_index\":77,\"name\":{\"77\":{}},\"comment\":{}}],[\"path\",{\"_index\":80,\"name\":{\"80\":{},\"459\":{}},\"comment\":{}}],[\"pathtofileurl\",{\"_index\":155,\"name\":{\"183\":{}},\"comment\":{}}],[\"peerdependencies\",{\"_index\":346,\"name\":{\"409\":{}},\"comment\":{}}],[\"pickby\",{\"_index\":17,\"name\":{\"17\":{}},\"comment\":{}}],[\"pickbyprefix\",{\"_index\":532,\"name\":{\"672\":{}},\"comment\":{}}],[\"platform\",{\"_index\":358,\"name\":{\"428\":{},\"728\":{}},\"comment\":{}}],[\"platformandarch\",{\"_index\":357,\"name\":{\"426\":{}},\"comment\":{}}],[\"pluginreturns\",{\"_index\":424,\"name\":{\"501\":{},\"508\":{},\"517\":{},\"523\":{},\"530\":{},\"773\":{},\"779\":{}},\"comment\":{}}],[\"pluginreturnsforhook\",{\"_index\":431,\"name\":{\"532\":{}},\"comment\":{}}],[\"plugins\",{\"_index\":348,\"name\":{\"413\":{}},\"comment\":{}}],[\"pluralize\",{\"_index\":22,\"name\":{\"22\":{}},\"comment\":{}}],[\"pnpmlockfile\",{\"_index\":333,\"name\":{\"390\":{}},\"comment\":{}}],[\"pnpmworkspacefile\",{\"_index\":334,\"name\":{\"391\":{}},\"comment\":{}}],[\"port\",{\"_index\":428,\"name\":{\"515\":{},\"761\":{},\"771\":{}},\"comment\":{}}],[\"postrun\",{\"_index\":594,\"name\":{\"743\":{}},\"comment\":{}}],[\"prefix\",{\"_index\":404,\"name\":{\"478\":{},\"671\":{}},\"comment\":{}}],[\"prerelease\",{\"_index\":194,\"name\":{\"235\":{}},\"comment\":{}}],[\"prettier\",{\"_index\":352,\"name\":{\"419\":{}},\"comment\":{}}],[\"private\",{\"_index\":353,\"name\":{\"420\":{}},\"comment\":{}}],[\"processes\",{\"_index\":500,\"name\":{\"621\":{}},\"comment\":{}}],[\"progressupdater\",{\"_index\":175,\"name\":{\"203\":{}},\"comment\":{}}],[\"project_type\",{\"_index\":246,\"name\":{\"302\":{}},\"comment\":{}}],[\"provider\",{\"_index\":429,\"name\":{\"516\":{},\"536\":{},\"760\":{},\"772\":{}},\"comment\":{}}],[\"public\",{\"_index\":228,\"name\":{\"277\":{},\"298\":{},\"369\":{}},\"comment\":{}}],[\"public_command_metadata\",{\"_index\":422,\"name\":{\"497\":{}},\"comment\":{}}],[\"publicschema\",{\"_index\":226,\"name\":{\"271\":{}},\"comment\":{}}],[\"published_at\",{\"_index\":196,\"name\":{\"237\":{}},\"comment\":{}}],[\"publishmonorailevent\",{\"_index\":234,\"name\":{\"283\":{}},\"comment\":{}}],[\"publishtheme\",{\"_index\":640,\"name\":{\"817\":{}},\"comment\":{}}],[\"query\",{\"_index\":544,\"name\":{\"686\":{}},\"comment\":{}}],[\"randombytes\",{\"_index\":71,\"name\":{\"72\":{}},\"comment\":{}}],[\"randomhex\",{\"_index\":66,\"name\":{\"67\":{}},\"comment\":{}}],[\"randomnamefamily\",{\"_index\":31,\"name\":{\"31\":{}},\"comment\":{}}],[\"randomuuid\",{\"_index\":72,\"name\":{\"73\":{}},\"comment\":{}}],[\"raw\",{\"_index\":384,\"name\":{\"456\":{}},\"comment\":{}}],[\"readandparsedotenv\",{\"_index\":75,\"name\":{\"75\":{}},\"comment\":{}}],[\"readandparsepackagejson\",{\"_index\":324,\"name\":{\"381\":{}},\"comment\":{}}],[\"readfile\",{\"_index\":123,\"name\":{\"151\":{}},\"comment\":{}}],[\"readfilesync\",{\"_index\":124,\"name\":{\"152\":{}},\"comment\":{}}],[\"readoptions\",{\"_index\":157,\"name\":{\"185\":{}},\"comment\":{}}],[\"recursiveliquidtemplatecopy\",{\"_index\":210,\"name\":{\"251\":{}},\"comment\":{}}],[\"registercleanbugsnagerrorsfromwithinplugins\",{\"_index\":97,\"name\":{\"97\":{}},\"comment\":{}}],[\"relativepath\",{\"_index\":410,\"name\":{\"485\":{}},\"comment\":{}}],[\"relativizepath\",{\"_index\":415,\"name\":{\"490\":{}},\"comment\":{}}],[\"removefile\",{\"_index\":135,\"name\":{\"163\":{}},\"comment\":{}}],[\"removefilesync\",{\"_index\":137,\"name\":{\"165\":{}},\"comment\":{}}],[\"removehosttheme\",{\"_index\":622,\"name\":{\"796\":{}},\"comment\":{}}],[\"removetheme\",{\"_index\":627,\"name\":{\"802\":{}},\"comment\":{}}],[\"renamefile\",{\"_index\":136,\"name\":{\"164\":{}},\"comment\":{}}],[\"renderalertoptions\",{\"_index\":504,\"name\":{\"627\":{}},\"comment\":{}}],[\"renderautocompleteoptions\",{\"_index\":514,\"name\":{\"645\":{}},\"comment\":{}}],[\"renderautocompleteprompt\",{\"_index\":490,\"name\":{\"610\":{}},\"comment\":{}}],[\"renderconcurrent\",{\"_index\":483,\"name\":{\"603\":{}},\"comment\":{}}],[\"renderconcurrentoptions\",{\"_index\":495,\"name\":{\"615\":{}},\"comment\":{}}],[\"renderconfirmationprompt\",{\"_index\":489,\"name\":{\"609\":{}},\"comment\":{}}],[\"renderconfirmationpromptoptions\",{\"_index\":511,\"name\":{\"637\":{}},\"comment\":{}}],[\"renderfatalerror\",{\"_index\":487,\"name\":{\"607\":{}},\"comment\":{}}],[\"renderinfo\",{\"_index\":484,\"name\":{\"604\":{}},\"comment\":{}}],[\"renderliquidtemplate\",{\"_index\":209,\"name\":{\"250\":{}},\"comment\":{}}],[\"renderoptions\",{\"_index\":496,\"name\":{\"616\":{},\"630\":{},\"640\":{},\"646\":{},\"655\":{}},\"comment\":{}}],[\"renderselectprompt\",{\"_index\":488,\"name\":{\"608\":{}},\"comment\":{}}],[\"renderselectpromptoptions\",{\"_index\":505,\"name\":{\"628\":{}},\"comment\":{}}],[\"rendersuccess\",{\"_index\":485,\"name\":{\"605\":{}},\"comment\":{}}],[\"rendertable\",{\"_index\":491,\"name\":{\"611\":{}},\"comment\":{}}],[\"rendertasks\",{\"_index\":492,\"name\":{\"612\":{}},\"comment\":{}}],[\"rendertext\",{\"_index\":494,\"name\":{\"614\":{}},\"comment\":{}}],[\"rendertextprompt\",{\"_index\":493,\"name\":{\"613\":{}},\"comment\":{}}],[\"rendertextpromptoptions\",{\"_index\":517,\"name\":{\"654\":{}},\"comment\":{}}],[\"renderwarning\",{\"_index\":486,\"name\":{\"606\":{}},\"comment\":{}}],[\"reportanalyticsevent\",{\"_index\":41,\"name\":{\"42\":{}},\"comment\":{}}],[\"repourl\",{\"_index\":173,\"name\":{\"201\":{}},\"comment\":{}}],[\"required\",{\"_index\":528,\"name\":{\"669\":{}},\"comment\":{}}],[\"resolutions\",{\"_index\":350,\"name\":{\"415\":{}},\"comment\":{}}],[\"resolveframework\",{\"_index\":119,\"name\":{\"147\":{}},\"comment\":{}}],[\"resolvepath\",{\"_index\":409,\"name\":{\"484\":{}},\"comment\":{}}],[\"response\",{\"_index\":207,\"name\":{\"248\":{}},\"comment\":{}}],[\"responseoptions\",{\"_index\":547,\"name\":{\"693\":{}},\"comment\":{}}],[\"restrequest\",{\"_index\":535,\"name\":{\"675\":{}},\"comment\":{}}],[\"restresponse\",{\"_index\":536,\"name\":{\"676\":{}},\"comment\":{}}],[\"result\",{\"_index\":436,\"name\":{\"540\":{}},\"comment\":{}}],[\"resultwithenvironment\",{\"_index\":53,\"name\":{\"53\":{}},\"comment\":{}}],[\"retry\",{\"_index\":652,\"name\":{\"835\":{}},\"comment\":{}}],[\"retrycount\",{\"_index\":653,\"name\":{\"836\":{}},\"comment\":{}}],[\"rmdir\",{\"_index\":138,\"name\":{\"166\":{}},\"comment\":{}}],[\"role\",{\"_index\":648,\"name\":{\"828\":{}},\"comment\":{}}],[\"ruby_version\",{\"_index\":254,\"name\":{\"310\":{}},\"comment\":{}}],[\"rubycliversion\",{\"_index\":450,\"name\":{\"566\":{}},\"comment\":{}}],[\"runcli\",{\"_index\":56,\"name\":{\"56\":{}},\"comment\":{}}],[\"runcreatecli\",{\"_index\":57,\"name\":{\"57\":{}},\"comment\":{}}],[\"runtimemetadatamanager\",{\"_index\":221,\"name\":{\"262\":{}},\"comment\":{}}],[\"schemas\",{\"_index\":236,\"name\":{\"285\":{}},\"comment\":{}}],[\"scripts\",{\"_index\":343,\"name\":{\"403\":{}},\"comment\":{}}],[\"search\",{\"_index\":516,\"name\":{\"652\":{}},\"comment\":{}}],[\"senderrortobugsnag\",{\"_index\":95,\"name\":{\"95\":{}},\"comment\":{}}],[\"sensitive\",{\"_index\":229,\"name\":{\"278\":{},\"288\":{},\"368\":{}},\"comment\":{}}],[\"sensitive_command_metadata\",{\"_index\":426,\"name\":{\"504\":{}},\"comment\":{}}],[\"sensitiveschema\",{\"_index\":227,\"name\":{\"272\":{}},\"comment\":{}}],[\"set\",{\"_index\":216,\"name\":{\"257\":{}},\"comment\":{}}],[\"sethosttheme\",{\"_index\":621,\"name\":{\"795\":{}},\"comment\":{}}],[\"setmimetypes\",{\"_index\":232,\"name\":{\"281\":{}},\"comment\":{}}],[\"settheme\",{\"_index\":626,\"name\":{\"801\":{}},\"comment\":{}}],[\"sha256\",{\"_index\":68,\"name\":{\"69\":{}},\"comment\":{}}],[\"shallow\",{\"_index\":176,\"name\":{\"205\":{}},\"comment\":{}}],[\"shopify/app\",{\"_index\":425,\"name\":{\"503\":{},\"510\":{}},\"comment\":{}}],[\"shopifyfetch\",{\"_index\":205,\"name\":{\"246\":{}},\"comment\":{}}],[\"shortcuts\",{\"_index\":498,\"name\":{\"619\":{}},\"comment\":{}}],[\"shoulddisplaycolors\",{\"_index\":376,\"name\":{\"446\":{}},\"comment\":{}}],[\"shouldreporterror\",{\"_index\":100,\"name\":{\"102\":{}},\"comment\":{}}],[\"show\",{\"_index\":587,\"name\":{\"736\":{}},\"comment\":{}}],[\"showtimestamps\",{\"_index\":501,\"name\":{\"622\":{}},\"comment\":{}}],[\"signal\",{\"_index\":474,\"name\":{\"593\":{}},\"comment\":{}}],[\"skip\",{\"_index\":655,\"name\":{\"838\":{}},\"comment\":{}}],[\"sleep\",{\"_index\":466,\"name\":{\"582\":{}},\"comment\":{}}],[\"slugify\",{\"_index\":25,\"name\":{\"25\":{}},\"comment\":{}}],[\"spinfqdn\",{\"_index\":586,\"name\":{\"735\":{}},\"comment\":{}}],[\"starttunnel\",{\"_index\":615,\"name\":{\"789\":{}},\"comment\":{}}],[\"status\",{\"_index\":537,\"name\":{\"678\":{}},\"comment\":{}}],[\"stderr\",{\"_index\":471,\"name\":{\"590\":{}},\"comment\":{}}],[\"stdin\",{\"_index\":469,\"name\":{\"588\":{}},\"comment\":{}}],[\"stdio\",{\"_index\":472,\"name\":{\"591\":{}},\"comment\":{}}],[\"stdout\",{\"_index\":470,\"name\":{\"589\":{}},\"comment\":{}}],[\"stoptunnel\",{\"_index\":606,\"name\":{\"758\":{}},\"comment\":{}}],[\"storage\",{\"_index\":212,\"name\":{\"252\":{}},\"comment\":{}}],[\"store_fqdn\",{\"_index\":241,\"name\":{\"294\":{}},\"comment\":{}}],[\"store_fqdn_hash\",{\"_index\":257,\"name\":{\"313\":{}},\"comment\":{}}],[\"storeadminurl\",{\"_index\":634,\"name\":{\"811\":{}},\"comment\":{}}],[\"storefqdn\",{\"_index\":461,\"name\":{\"577\":{}},\"comment\":{}}],[\"stringifymessage\",{\"_index\":370,\"name\":{\"440\":{}},\"comment\":{}}],[\"stripuppath\",{\"_index\":121,\"name\":{\"149\":{}},\"comment\":{}}],[\"subheading\",{\"_index\":389,\"name\":{\"462\":{}},\"comment\":{}}],[\"submitwithshortcuts\",{\"_index\":510,\"name\":{\"636\":{}},\"comment\":{}}],[\"subtitle\",{\"_index\":499,\"name\":{\"620\":{}},\"comment\":{}}],[\"success\",{\"_index\":250,\"name\":{\"306\":{}},\"comment\":{}}],[\"successicon\",{\"_index\":397,\"name\":{\"470\":{}},\"comment\":{}}],[\"tablecolumn\",{\"_index\":660,\"name\":{\"847\":{}},\"comment\":{}}],[\"tag_name\",{\"_index\":190,\"name\":{\"231\":{}},\"comment\":{}}],[\"takerandomfromarray\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"tarball_url\",{\"_index\":197,\"name\":{\"238\":{}},\"comment\":{}}],[\"task\",{\"_index\":650,\"name\":{\"831\":{},\"833\":{}},\"comment\":{}}],[\"terminalsupportsrawmode\",{\"_index\":467,\"name\":{\"583\":{}},\"comment\":{}}],[\"theme\",{\"_index\":645,\"name\":{\"822\":{}},\"comment\":{}}],[\"themeeditorurl\",{\"_index\":633,\"name\":{\"810\":{}},\"comment\":{}}],[\"themeid\",{\"_index\":625,\"name\":{\"800\":{}},\"comment\":{}}],[\"thememanager\",{\"_index\":624,\"name\":{\"798\":{}},\"comment\":{}}],[\"themeparams\",{\"_index\":642,\"name\":{\"819\":{}},\"comment\":{}}],[\"themepreviewurl\",{\"_index\":632,\"name\":{\"809\":{}},\"comment\":{}}],[\"time_end\",{\"_index\":248,\"name\":{\"304\":{}},\"comment\":{}}],[\"time_start\",{\"_index\":247,\"name\":{\"303\":{}},\"comment\":{}}],[\"title\",{\"_index\":651,\"name\":{\"832\":{},\"856\":{}},\"comment\":{}}],[\"token\",{\"_index\":460,\"name\":{\"576\":{},\"689\":{}},\"comment\":{}}],[\"tokenitem\",{\"_index\":656,\"name\":{\"840\":{}},\"comment\":{}}],[\"tokenizedstring\",{\"_index\":380,\"name\":{\"450\":{}},\"comment\":{}}],[\"topic\",{\"_index\":600,\"name\":{\"750\":{}},\"comment\":{}}],[\"total_time\",{\"_index\":249,\"name\":{\"305\":{}},\"comment\":{}}],[\"touchfile\",{\"_index\":127,\"name\":{\"155\":{}},\"comment\":{}}],[\"touchfilesync\",{\"_index\":128,\"name\":{\"156\":{}},\"comment\":{}}],[\"trymessage\",{\"_index\":108,\"name\":{\"111\":{},\"120\":{},\"127\":{},\"134\":{},\"141\":{},\"214\":{},\"221\":{}},\"comment\":{}}],[\"tryparseint\",{\"_index\":23,\"name\":{\"23\":{}},\"comment\":{}}],[\"tunnel_provider\",{\"_index\":430,\"name\":{\"519\":{},\"775\":{}},\"comment\":{}}],[\"tunnel_start\",{\"_index\":427,\"name\":{\"511\":{},\"767\":{}},\"comment\":{}}],[\"tunnelclient\",{\"_index\":604,\"name\":{\"755\":{}},\"comment\":{}}],[\"tunnelerror\",{\"_index\":608,\"name\":{\"763\":{}},\"comment\":{}}],[\"tunnelerrortype\",{\"_index\":603,\"name\":{\"754\":{}},\"comment\":{}}],[\"tunnelpluginerror\",{\"_index\":433,\"name\":{\"535\":{}},\"comment\":{}}],[\"tunnelproviderfunction\",{\"_index\":610,\"name\":{\"783\":{}},\"comment\":{}}],[\"tunnelstartaction\",{\"_index\":613,\"name\":{\"786\":{}},\"comment\":{}}],[\"tunnelstartfunction\",{\"_index\":611,\"name\":{\"784\":{}},\"comment\":{}}],[\"tunnelstartreturn\",{\"_index\":612,\"name\":{\"785\":{}},\"comment\":{}}],[\"tunnelstatustype\",{\"_index\":607,\"name\":{\"762\":{}},\"comment\":{}}],[\"type\",{\"_index\":109,\"name\":{\"112\":{},\"121\":{},\"128\":{},\"135\":{},\"142\":{},\"215\":{},\"222\":{},\"537\":{},\"765\":{}},\"comment\":{}}],[\"uname\",{\"_index\":253,\"name\":{\"309\":{}},\"comment\":{}}],[\"underscore\",{\"_index\":29,\"name\":{\"29\":{}},\"comment\":{}}],[\"uniqby\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"unlinkfilesync\",{\"_index\":143,\"name\":{\"171\":{}},\"comment\":{}}],[\"unstyled\",{\"_index\":375,\"name\":{\"445\":{}},\"comment\":{}}],[\"updatetheme\",{\"_index\":639,\"name\":{\"816\":{}},\"comment\":{}}],[\"url\",{\"_index\":189,\"name\":{\"230\":{},\"688\":{},\"846\":{}},\"comment\":{}}],[\"urls\",{\"_index\":631,\"name\":{\"808\":{}},\"comment\":{}}],[\"usedeviceauth\",{\"_index\":574,\"name\":{\"721\":{}},\"comment\":{}}],[\"uselocalcliifdetected\",{\"_index\":58,\"name\":{\"58\":{}},\"comment\":{}}],[\"usepartnerstoken\",{\"_index\":85,\"name\":{\"86\":{}},\"comment\":{}}],[\"username\",{\"_index\":356,\"name\":{\"425\":{}},\"comment\":{}}],[\"usesworkspaces\",{\"_index\":322,\"name\":{\"379\":{}},\"comment\":{}}],[\"usethemebundling\",{\"_index\":575,\"name\":{\"722\":{}},\"comment\":{}}],[\"validate\",{\"_index\":519,\"name\":{\"660\":{}},\"comment\":{}}],[\"value\",{\"_index\":381,\"name\":{\"452\":{},\"545\":{}},\"comment\":{}}],[\"valueorabort\",{\"_index\":442,\"name\":{\"549\":{},\"558\":{}},\"comment\":{}}],[\"valueorbug\",{\"_index\":441,\"name\":{\"548\":{},\"557\":{}},\"comment\":{}}],[\"variables\",{\"_index\":81,\"name\":{\"81\":{},\"692\":{}},\"comment\":{}}],[\"verbose\",{\"_index\":63,\"name\":{\"63\":{}},\"comment\":{}}],[\"version\",{\"_index\":342,\"name\":{\"402\":{},\"423\":{},\"564\":{}},\"comment\":{}}],[\"workspaces\",{\"_index\":349,\"name\":{\"414\":{}},\"comment\":{}}],[\"writedotenv\",{\"_index\":76,\"name\":{\"76\":{}},\"comment\":{}}],[\"writefile\",{\"_index\":131,\"name\":{\"159\":{}},\"comment\":{}}],[\"writefilesync\",{\"_index\":132,\"name\":{\"160\":{}},\"comment\":{}}],[\"writepackagejson\",{\"_index\":330,\"name\":{\"387\":{}},\"comment\":{}}],[\"yarnlockfile\",{\"_index\":331,\"name\":{\"388\":{}},\"comment\":{}}],[\"yellow\",{\"_index\":393,\"name\":{\"466\":{}},\"comment\":{}}],[\"zip\",{\"_index\":43,\"name\":{\"44\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file +window.searchData = JSON.parse("{\"kinds\":{\"2\":\"Module\",\"8\":\"Enumeration\",\"16\":\"Enumeration Member\",\"32\":\"Variable\",\"64\":\"Function\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"262144\":\"Accessor\",\"4194304\":\"Type alias\",\"8388608\":\"Reference\"},\"rows\":[{\"kind\":2,\"name\":\"common/array\",\"url\":\"modules/common_array.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"takeRandomFromArray\",\"url\":\"functions/common_array.takeRandomFromArray.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/array\"},{\"kind\":64,\"name\":\"getArrayRejectingUndefined\",\"url\":\"functions/common_array.getArrayRejectingUndefined.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/array\"},{\"kind\":64,\"name\":\"getArrayContainsDuplicates\",\"url\":\"functions/common_array.getArrayContainsDuplicates.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/array\"},{\"kind\":64,\"name\":\"uniqBy\",\"url\":\"functions/common_array.uniqBy.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/array\"},{\"kind\":64,\"name\":\"difference\",\"url\":\"functions/common_array.difference.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/array\"},{\"kind\":2,\"name\":\"common/collection\",\"url\":\"modules/common_collection.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"groupBy\",\"url\":\"functions/common_collection.groupBy.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/common_collection.groupBy.html#groupBy.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"common/collection.groupBy.groupBy\"},{\"kind\":64,\"name\":\"partition\",\"url\":\"functions/common_collection.partition.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/collection\"},{\"kind\":2,\"name\":\"common/function\",\"url\":\"modules/common_function.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"memoize\",\"url\":\"functions/common_function.memoize.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/function\"},{\"kind\":64,\"name\":\"debounce\",\"url\":\"functions/common_function.debounce.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/function\"},{\"kind\":2,\"name\":\"common/lang\",\"url\":\"modules/common_lang.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isEqual\",\"url\":\"functions/common_lang.isEqual.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/lang\"},{\"kind\":2,\"name\":\"common/object\",\"url\":\"modules/common_object.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"deepMergeObjects\",\"url\":\"functions/common_object.deepMergeObjects.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/object\"},{\"kind\":64,\"name\":\"pickBy\",\"url\":\"functions/common_object.pickBy.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/object\"},{\"kind\":64,\"name\":\"mapValues\",\"url\":\"functions/common_object.mapValues.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/object\"},{\"kind\":2,\"name\":\"common/string\",\"url\":\"modules/common_string.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getRandomName\",\"url\":\"functions/common_string.getRandomName.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"capitalize\",\"url\":\"functions/common_string.capitalize.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"pluralize\",\"url\":\"functions/common_string.pluralize.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"tryParseInt\",\"url\":\"functions/common_string.tryParseInt.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"linesToColumns\",\"url\":\"functions/common_string.linesToColumns.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"slugify\",\"url\":\"functions/common_string.slugify.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"escapeRegExp\",\"url\":\"functions/common_string.escapeRegExp.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"camelize\",\"url\":\"functions/common_string.camelize.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"hyphenate\",\"url\":\"functions/common_string.hyphenate.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"underscore\",\"url\":\"functions/common_string.underscore.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":64,\"name\":\"constantize\",\"url\":\"functions/common_string.constantize.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":4194304,\"name\":\"RandomNameFamily\",\"url\":\"types/common_string.RandomNameFamily.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"common/string\"},{\"kind\":2,\"name\":\"common/url\",\"url\":\"modules/common_url.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isValidURL\",\"url\":\"functions/common_url.isValidURL.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"common/url\"},{\"kind\":2,\"name\":\"common/version\",\"url\":\"modules/common_version.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":32,\"name\":\"CLI_KIT_VERSION\",\"url\":\"variables/common_version.CLI_KIT_VERSION.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"common/version\"},{\"kind\":2,\"name\":\"node/abort\",\"url\":\"modules/node_abort.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"AbortController\",\"url\":\"classes/node_abort.AbortController.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/abort\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_abort.AbortController.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/abort.AbortController\"},{\"kind\":128,\"name\":\"AbortSignal\",\"url\":\"classes/node_abort.AbortSignal.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/abort\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_abort.AbortSignal.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/abort.AbortSignal\"},{\"kind\":2,\"name\":\"node/analytics\",\"url\":\"modules/node_analytics.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"reportAnalyticsEvent\",\"url\":\"functions/node_analytics.reportAnalyticsEvent.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/analytics\"},{\"kind\":2,\"name\":\"node/archiver\",\"url\":\"modules/node_archiver.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"zip\",\"url\":\"functions/node_archiver.zip.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/archiver\"},{\"kind\":2,\"name\":\"node/base-command\",\"url\":\"modules/node_base_command.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"addFromParsedFlags\",\"url\":\"functions/node_base_command.addFromParsedFlags.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/base-command\"},{\"kind\":128,\"name\":\"default\",\"url\":\"classes/node_base_command.default.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/base-command\"},{\"kind\":2048,\"name\":\"analyticsNameOverride\",\"url\":\"classes/node_base_command.default.html#analyticsNameOverride\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/base-command.default\"},{\"kind\":2048,\"name\":\"catch\",\"url\":\"classes/node_base_command.default.html#catch\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/base-command.default\"},{\"kind\":2048,\"name\":\"init\",\"url\":\"classes/node_base_command.default.html#init\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/base-command.default\"},{\"kind\":2048,\"name\":\"exitWithTimestampWhenEnvVariablePresent\",\"url\":\"classes/node_base_command.default.html#exitWithTimestampWhenEnvVariablePresent\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/base-command.default\"},{\"kind\":2048,\"name\":\"parse\",\"url\":\"classes/node_base_command.default.html#parse\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/base-command.default\"},{\"kind\":2048,\"name\":\"resultWithEnvironment\",\"url\":\"classes/node_base_command.default.html#resultWithEnvironment\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/base-command.default\"},{\"kind\":2048,\"name\":\"environmentsFilename\",\"url\":\"classes/node_base_command.default.html#environmentsFilename\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/base-command.default\"},{\"kind\":2,\"name\":\"node/cli\",\"url\":\"modules/node_cli.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"runCLI\",\"url\":\"functions/node_cli.runCLI.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/cli\"},{\"kind\":64,\"name\":\"runCreateCLI\",\"url\":\"functions/node_cli.runCreateCLI.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/cli\"},{\"kind\":64,\"name\":\"useLocalCLIIfDetected\",\"url\":\"functions/node_cli.useLocalCLIIfDetected.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/cli\"},{\"kind\":64,\"name\":\"localCliPackage\",\"url\":\"functions/node_cli.localCliPackage.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/cli\"},{\"kind\":32,\"name\":\"globalFlags\",\"url\":\"variables/node_cli.globalFlags.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/cli\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/node_cli.globalFlags.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"node/cli.globalFlags\"},{\"kind\":1024,\"name\":\"no-color\",\"url\":\"variables/node_cli.globalFlags.html#__type.no_color\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/cli.globalFlags.__type\"},{\"kind\":1024,\"name\":\"verbose\",\"url\":\"variables/node_cli.globalFlags.html#__type.verbose\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/cli.globalFlags.__type\"},{\"kind\":8388608,\"name\":\"default\",\"url\":\"modules/node_cli.html#default\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"node/cli\"},{\"kind\":2,\"name\":\"node/colors\",\"url\":\"modules/node_colors.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"node/crypto\",\"url\":\"modules/node_crypto.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"randomHex\",\"url\":\"functions/node_crypto.randomHex.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/crypto\"},{\"kind\":64,\"name\":\"base64URLEncode\",\"url\":\"functions/node_crypto.base64URLEncode.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/crypto\"},{\"kind\":64,\"name\":\"sha256\",\"url\":\"functions/node_crypto.sha256.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/crypto\"},{\"kind\":64,\"name\":\"hashString\",\"url\":\"functions/node_crypto.hashString.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/crypto\"},{\"kind\":64,\"name\":\"fileHash\",\"url\":\"functions/node_crypto.fileHash.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/crypto\"},{\"kind\":64,\"name\":\"randomBytes\",\"url\":\"functions/node_crypto.randomBytes.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/crypto\"},{\"kind\":64,\"name\":\"randomUUID\",\"url\":\"functions/node_crypto.randomUUID.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/crypto\"},{\"kind\":2,\"name\":\"node/dot-env\",\"url\":\"modules/node_dot_env.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"readAndParseDotEnv\",\"url\":\"functions/node_dot_env.readAndParseDotEnv.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/dot-env\"},{\"kind\":64,\"name\":\"writeDotEnv\",\"url\":\"functions/node_dot_env.writeDotEnv.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/dot-env\"},{\"kind\":64,\"name\":\"patchEnvFile\",\"url\":\"functions/node_dot_env.patchEnvFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/dot-env\"},{\"kind\":64,\"name\":\"DotEnvNotFoundError\",\"url\":\"functions/node_dot_env.DotEnvNotFoundError.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/dot-env\"},{\"kind\":256,\"name\":\"DotEnvFile\",\"url\":\"interfaces/node_dot_env.DotEnvFile.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/dot-env\"},{\"kind\":1024,\"name\":\"path\",\"url\":\"interfaces/node_dot_env.DotEnvFile.html#path\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/dot-env.DotEnvFile\"},{\"kind\":1024,\"name\":\"variables\",\"url\":\"interfaces/node_dot_env.DotEnvFile.html#variables\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/dot-env.DotEnvFile\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_dot_env.DotEnvFile.html#variables.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/dot-env.DotEnvFile.variables\"},{\"kind\":2,\"name\":\"node/environment\",\"url\":\"modules/node_environment.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getEnvironmentVariables\",\"url\":\"functions/node_environment.getEnvironmentVariables.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/environment\"},{\"kind\":64,\"name\":\"getPartnersToken\",\"url\":\"functions/node_environment.getPartnersToken.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/environment\"},{\"kind\":64,\"name\":\"usePartnersToken\",\"url\":\"functions/node_environment.usePartnersToken.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/environment\"},{\"kind\":64,\"name\":\"getOrganization\",\"url\":\"functions/node_environment.getOrganization.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/environment\"},{\"kind\":64,\"name\":\"getBackendPort\",\"url\":\"functions/node_environment.getBackendPort.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/environment\"},{\"kind\":64,\"name\":\"getIdentityTokenInformation\",\"url\":\"functions/node_environment.getIdentityTokenInformation.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/environment\"},{\"kind\":2,\"name\":\"node/environments\",\"url\":\"modules/node_environments.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"loadEnvironment\",\"url\":\"functions/node_environments.loadEnvironment.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/environments\"},{\"kind\":256,\"name\":\"Environments\",\"url\":\"interfaces/node_environments.Environments.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/environments\"},{\"kind\":2,\"name\":\"node/error-handler\",\"url\":\"modules/node_error_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"errorHandler\",\"url\":\"functions/node_error_handler.errorHandler.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/error-handler\"},{\"kind\":64,\"name\":\"sendErrorToBugsnag\",\"url\":\"functions/node_error_handler.sendErrorToBugsnag.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/error-handler\"},{\"kind\":64,\"name\":\"cleanStackFrameFilePath\",\"url\":\"functions/node_error_handler.cleanStackFrameFilePath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/error-handler\"},{\"kind\":64,\"name\":\"registerCleanBugsnagErrorsFromWithinPlugins\",\"url\":\"functions/node_error_handler.registerCleanBugsnagErrorsFromWithinPlugins.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/error-handler\"},{\"kind\":64,\"name\":\"addBugsnagMetadata\",\"url\":\"functions/node_error_handler.addBugsnagMetadata.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/error-handler\"},{\"kind\":2,\"name\":\"node/error\",\"url\":\"modules/node_error.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"handler\",\"url\":\"functions/node_error.handler.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":64,\"name\":\"errorMapper\",\"url\":\"functions/node_error.errorMapper.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":64,\"name\":\"shouldReportError\",\"url\":\"functions/node_error.shouldReportError.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":64,\"name\":\"cleanSingleStackTracePath\",\"url\":\"functions/node_error.cleanSingleStackTracePath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":8,\"name\":\"FatalErrorType\",\"url\":\"enums/node_error.FatalErrorType.html\",\"classes\":\"tsd-kind-enum tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":16,\"name\":\"Abort\",\"url\":\"enums/node_error.FatalErrorType.html#Abort\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"node/error.FatalErrorType\"},{\"kind\":16,\"name\":\"AbortSilent\",\"url\":\"enums/node_error.FatalErrorType.html#AbortSilent\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"node/error.FatalErrorType\"},{\"kind\":16,\"name\":\"Bug\",\"url\":\"enums/node_error.FatalErrorType.html#Bug\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"node/error.FatalErrorType\"},{\"kind\":128,\"name\":\"CancelExecution\",\"url\":\"classes/node_error.CancelExecution.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":128,\"name\":\"FatalError\",\"url\":\"classes/node_error.FatalError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_error.FatalError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/error.FatalError\"},{\"kind\":1024,\"name\":\"tryMessage\",\"url\":\"classes/node_error.FatalError.html#tryMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/error.FatalError\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/node_error.FatalError.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/error.FatalError\"},{\"kind\":1024,\"name\":\"nextSteps\",\"url\":\"classes/node_error.FatalError.html#nextSteps\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/error.FatalError\"},{\"kind\":1024,\"name\":\"formattedMessage\",\"url\":\"classes/node_error.FatalError.html#formattedMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/error.FatalError\"},{\"kind\":1024,\"name\":\"customSections\",\"url\":\"classes/node_error.FatalError.html#customSections\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/error.FatalError\"},{\"kind\":128,\"name\":\"AbortError\",\"url\":\"classes/node_error.AbortError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_error.AbortError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/error.AbortError\"},{\"kind\":1024,\"name\":\"nextSteps\",\"url\":\"classes/node_error.AbortError.html#nextSteps\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/error.AbortError\"},{\"kind\":1024,\"name\":\"customSections\",\"url\":\"classes/node_error.AbortError.html#customSections\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/error.AbortError\"},{\"kind\":1024,\"name\":\"tryMessage\",\"url\":\"classes/node_error.AbortError.html#tryMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.AbortError\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/node_error.AbortError.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.AbortError\"},{\"kind\":1024,\"name\":\"formattedMessage\",\"url\":\"classes/node_error.AbortError.html#formattedMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.AbortError\"},{\"kind\":128,\"name\":\"ExternalError\",\"url\":\"classes/node_error.ExternalError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_error.ExternalError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/error.ExternalError\"},{\"kind\":1024,\"name\":\"command\",\"url\":\"classes/node_error.ExternalError.html#command\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/error.ExternalError\"},{\"kind\":1024,\"name\":\"args\",\"url\":\"classes/node_error.ExternalError.html#args\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/error.ExternalError\"},{\"kind\":1024,\"name\":\"tryMessage\",\"url\":\"classes/node_error.ExternalError.html#tryMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.ExternalError\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/node_error.ExternalError.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.ExternalError\"},{\"kind\":1024,\"name\":\"nextSteps\",\"url\":\"classes/node_error.ExternalError.html#nextSteps\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.ExternalError\"},{\"kind\":1024,\"name\":\"formattedMessage\",\"url\":\"classes/node_error.ExternalError.html#formattedMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.ExternalError\"},{\"kind\":1024,\"name\":\"customSections\",\"url\":\"classes/node_error.ExternalError.html#customSections\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.ExternalError\"},{\"kind\":128,\"name\":\"AbortSilentError\",\"url\":\"classes/node_error.AbortSilentError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_error.AbortSilentError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/error.AbortSilentError\"},{\"kind\":1024,\"name\":\"tryMessage\",\"url\":\"classes/node_error.AbortSilentError.html#tryMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.AbortSilentError\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/node_error.AbortSilentError.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.AbortSilentError\"},{\"kind\":1024,\"name\":\"nextSteps\",\"url\":\"classes/node_error.AbortSilentError.html#nextSteps\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.AbortSilentError\"},{\"kind\":1024,\"name\":\"formattedMessage\",\"url\":\"classes/node_error.AbortSilentError.html#formattedMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.AbortSilentError\"},{\"kind\":1024,\"name\":\"customSections\",\"url\":\"classes/node_error.AbortSilentError.html#customSections\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.AbortSilentError\"},{\"kind\":128,\"name\":\"BugError\",\"url\":\"classes/node_error.BugError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/error\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_error.BugError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/error.BugError\"},{\"kind\":1024,\"name\":\"tryMessage\",\"url\":\"classes/node_error.BugError.html#tryMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.BugError\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/node_error.BugError.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.BugError\"},{\"kind\":1024,\"name\":\"nextSteps\",\"url\":\"classes/node_error.BugError.html#nextSteps\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.BugError\"},{\"kind\":1024,\"name\":\"formattedMessage\",\"url\":\"classes/node_error.BugError.html#formattedMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.BugError\"},{\"kind\":1024,\"name\":\"customSections\",\"url\":\"classes/node_error.BugError.html#customSections\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/error.BugError\"},{\"kind\":2,\"name\":\"node/framework\",\"url\":\"modules/node_framework.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"resolveFramework\",\"url\":\"functions/node_framework.resolveFramework.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/framework\"},{\"kind\":2,\"name\":\"node/fs\",\"url\":\"modules/node_fs.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"stripUpPath\",\"url\":\"functions/node_fs.stripUpPath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"inTemporaryDirectory\",\"url\":\"functions/node_fs.inTemporaryDirectory.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"readFile\",\"url\":\"functions/node_fs.readFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"readFileSync\",\"url\":\"functions/node_fs.readFileSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"fileRealPath\",\"url\":\"functions/node_fs.fileRealPath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"copyFile\",\"url\":\"functions/node_fs.copyFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"touchFile\",\"url\":\"functions/node_fs.touchFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"touchFileSync\",\"url\":\"functions/node_fs.touchFileSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"appendFile\",\"url\":\"functions/node_fs.appendFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"appendFileSync\",\"url\":\"functions/node_fs.appendFileSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"writeFile\",\"url\":\"functions/node_fs.writeFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"writeFileSync\",\"url\":\"functions/node_fs.writeFileSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"mkdir\",\"url\":\"functions/node_fs.mkdir.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"mkdirSync\",\"url\":\"functions/node_fs.mkdirSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"removeFile\",\"url\":\"functions/node_fs.removeFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"renameFile\",\"url\":\"functions/node_fs.renameFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"removeFileSync\",\"url\":\"functions/node_fs.removeFileSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"rmdir\",\"url\":\"functions/node_fs.rmdir.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"mkTmpDir\",\"url\":\"functions/node_fs.mkTmpDir.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"isDirectory\",\"url\":\"functions/node_fs.isDirectory.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"fileSize\",\"url\":\"functions/node_fs.fileSize.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"fileSizeSync\",\"url\":\"functions/node_fs.fileSizeSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"unlinkFileSync\",\"url\":\"functions/node_fs.unlinkFileSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"createFileReadStream\",\"url\":\"functions/node_fs.createFileReadStream.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"createFileWriteStream\",\"url\":\"functions/node_fs.createFileWriteStream.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"fileLastUpdated\",\"url\":\"functions/node_fs.fileLastUpdated.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"fileLastUpdatedTimestamp\",\"url\":\"functions/node_fs.fileLastUpdatedTimestamp.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"moveFile\",\"url\":\"functions/node_fs.moveFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"chmod\",\"url\":\"functions/node_fs.chmod.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"fileHasExecutablePermissions\",\"url\":\"functions/node_fs.fileHasExecutablePermissions.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"fileExists\",\"url\":\"functions/node_fs.fileExists.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"fileExistsSync\",\"url\":\"functions/node_fs.fileExistsSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"generateRandomNameForSubdirectory\",\"url\":\"functions/node_fs.generateRandomNameForSubdirectory.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"glob\",\"url\":\"functions/node_fs.glob.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"pathToFileURL\",\"url\":\"functions/node_fs.pathToFileURL.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":64,\"name\":\"findPathUp\",\"url\":\"functions/node_fs.findPathUp.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":4194304,\"name\":\"ReadOptions\",\"url\":\"types/node_fs.ReadOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/fs\"},{\"kind\":2,\"name\":\"node/git\",\"url\":\"modules/node_git.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"initializeGitRepository\",\"url\":\"functions/node_git.initializeGitRepository.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"checkIfIgnoredInGitRepository\",\"url\":\"functions/node_git.checkIfIgnoredInGitRepository.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"createGitIgnore\",\"url\":\"functions/node_git.createGitIgnore.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"downloadGitRepository\",\"url\":\"functions/node_git.downloadGitRepository.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"getLatestGitCommit\",\"url\":\"functions/node_git.getLatestGitCommit.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"addAllToGitFromDirectory\",\"url\":\"functions/node_git.addAllToGitFromDirectory.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"createGitCommit\",\"url\":\"functions/node_git.createGitCommit.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"getHeadSymbolicRef\",\"url\":\"functions/node_git.getHeadSymbolicRef.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"ensureGitIsPresentOrAbort\",\"url\":\"functions/node_git.ensureGitIsPresentOrAbort.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"ensureInsideGitDirectory\",\"url\":\"functions/node_git.ensureInsideGitDirectory.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"ensureIsClean\",\"url\":\"functions/node_git.ensureIsClean.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":64,\"name\":\"isClean\",\"url\":\"functions/node_git.isClean.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":256,\"name\":\"GitIgnoreTemplate\",\"url\":\"interfaces/node_git.GitIgnoreTemplate.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":256,\"name\":\"GitCloneOptions\",\"url\":\"interfaces/node_git.GitCloneOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":1024,\"name\":\"repoUrl\",\"url\":\"interfaces/node_git.GitCloneOptions.html#repoUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/git.GitCloneOptions\"},{\"kind\":1024,\"name\":\"destination\",\"url\":\"interfaces/node_git.GitCloneOptions.html#destination\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/git.GitCloneOptions\"},{\"kind\":1024,\"name\":\"progressUpdater\",\"url\":\"interfaces/node_git.GitCloneOptions.html#progressUpdater\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/git.GitCloneOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_git.GitCloneOptions.html#progressUpdater.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/git.GitCloneOptions.progressUpdater\"},{\"kind\":1024,\"name\":\"shallow\",\"url\":\"interfaces/node_git.GitCloneOptions.html#shallow\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/git.GitCloneOptions\"},{\"kind\":1024,\"name\":\"latestTag\",\"url\":\"interfaces/node_git.GitCloneOptions.html#latestTag\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/git.GitCloneOptions\"},{\"kind\":256,\"name\":\"CreateGitCommitOptions\",\"url\":\"interfaces/node_git.CreateGitCommitOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":1024,\"name\":\"directory\",\"url\":\"interfaces/node_git.CreateGitCommitOptions.html#directory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/git.CreateGitCommitOptions\"},{\"kind\":1024,\"name\":\"author\",\"url\":\"interfaces/node_git.CreateGitCommitOptions.html#author\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/git.CreateGitCommitOptions\"},{\"kind\":128,\"name\":\"OutsideGitDirectoryError\",\"url\":\"classes/node_git.OutsideGitDirectoryError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_git.OutsideGitDirectoryError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.OutsideGitDirectoryError\"},{\"kind\":1024,\"name\":\"nextSteps\",\"url\":\"classes/node_git.OutsideGitDirectoryError.html#nextSteps\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.OutsideGitDirectoryError\"},{\"kind\":1024,\"name\":\"customSections\",\"url\":\"classes/node_git.OutsideGitDirectoryError.html#customSections\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.OutsideGitDirectoryError\"},{\"kind\":1024,\"name\":\"tryMessage\",\"url\":\"classes/node_git.OutsideGitDirectoryError.html#tryMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.OutsideGitDirectoryError\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/node_git.OutsideGitDirectoryError.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.OutsideGitDirectoryError\"},{\"kind\":1024,\"name\":\"formattedMessage\",\"url\":\"classes/node_git.OutsideGitDirectoryError.html#formattedMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.OutsideGitDirectoryError\"},{\"kind\":128,\"name\":\"GitDirectoryNotCleanError\",\"url\":\"classes/node_git.GitDirectoryNotCleanError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/git\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_git.GitDirectoryNotCleanError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.GitDirectoryNotCleanError\"},{\"kind\":1024,\"name\":\"nextSteps\",\"url\":\"classes/node_git.GitDirectoryNotCleanError.html#nextSteps\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.GitDirectoryNotCleanError\"},{\"kind\":1024,\"name\":\"customSections\",\"url\":\"classes/node_git.GitDirectoryNotCleanError.html#customSections\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.GitDirectoryNotCleanError\"},{\"kind\":1024,\"name\":\"tryMessage\",\"url\":\"classes/node_git.GitDirectoryNotCleanError.html#tryMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.GitDirectoryNotCleanError\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/node_git.GitDirectoryNotCleanError.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.GitDirectoryNotCleanError\"},{\"kind\":1024,\"name\":\"formattedMessage\",\"url\":\"classes/node_git.GitDirectoryNotCleanError.html#formattedMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"node/git.GitDirectoryNotCleanError\"},{\"kind\":2,\"name\":\"node/github\",\"url\":\"modules/node_github.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getLatestGitHubRelease\",\"url\":\"functions/node_github.getLatestGitHubRelease.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/github\"},{\"kind\":64,\"name\":\"parseGitHubRepositoryURL\",\"url\":\"functions/node_github.parseGitHubRepositoryURL.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/github\"},{\"kind\":64,\"name\":\"parseGitHubRepositoryReference\",\"url\":\"functions/node_github.parseGitHubRepositoryReference.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/github\"},{\"kind\":256,\"name\":\"GithubRelease\",\"url\":\"interfaces/node_github.GithubRelease.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/github\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/node_github.GithubRelease.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/node_github.GithubRelease.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":1024,\"name\":\"tag_name\",\"url\":\"interfaces/node_github.GithubRelease.html#tag_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/node_github.GithubRelease.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":1024,\"name\":\"body\",\"url\":\"interfaces/node_github.GithubRelease.html#body\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":1024,\"name\":\"draft\",\"url\":\"interfaces/node_github.GithubRelease.html#draft\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":1024,\"name\":\"prerelease\",\"url\":\"interfaces/node_github.GithubRelease.html#prerelease\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":1024,\"name\":\"created_at\",\"url\":\"interfaces/node_github.GithubRelease.html#created_at\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":1024,\"name\":\"published_at\",\"url\":\"interfaces/node_github.GithubRelease.html#published_at\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":1024,\"name\":\"tarball_url\",\"url\":\"interfaces/node_github.GithubRelease.html#tarball_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRelease\"},{\"kind\":256,\"name\":\"GithubRepositoryReference\",\"url\":\"interfaces/node_github.GithubRepositoryReference.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/github\"},{\"kind\":1024,\"name\":\"baseURL\",\"url\":\"interfaces/node_github.GithubRepositoryReference.html#baseURL\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRepositoryReference\"},{\"kind\":1024,\"name\":\"branch\",\"url\":\"interfaces/node_github.GithubRepositoryReference.html#branch\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRepositoryReference\"},{\"kind\":1024,\"name\":\"filePath\",\"url\":\"interfaces/node_github.GithubRepositoryReference.html#filePath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/github.GithubRepositoryReference\"},{\"kind\":2,\"name\":\"node/http\",\"url\":\"modules/node_http.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"formData\",\"url\":\"functions/node_http.formData.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/http\"},{\"kind\":64,\"name\":\"fetch\",\"url\":\"functions/node_http.fetch.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/http\"},{\"kind\":64,\"name\":\"shopifyFetch\",\"url\":\"functions/node_http.shopifyFetch.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/http\"},{\"kind\":64,\"name\":\"downloadFile\",\"url\":\"functions/node_http.downloadFile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/http\"},{\"kind\":4194304,\"name\":\"Response\",\"url\":\"types/node_http.Response.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/http\"},{\"kind\":2,\"name\":\"node/liquid\",\"url\":\"modules/node_liquid.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"renderLiquidTemplate\",\"url\":\"functions/node_liquid.renderLiquidTemplate.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/liquid\"},{\"kind\":64,\"name\":\"recursiveLiquidTemplateCopy\",\"url\":\"functions/node_liquid.recursiveLiquidTemplateCopy.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/liquid\"},{\"kind\":2,\"name\":\"node/local-storage\",\"url\":\"modules/node_local_storage.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"LocalStorage\",\"url\":\"classes/node_local_storage.LocalStorage.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/local-storage\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_local_storage.LocalStorage.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/local-storage.LocalStorage\"},{\"kind\":1024,\"name\":\"config\",\"url\":\"classes/node_local_storage.LocalStorage.html#config\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"node/local-storage.LocalStorage\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/node_local_storage.LocalStorage.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/local-storage.LocalStorage\"},{\"kind\":2048,\"name\":\"set\",\"url\":\"classes/node_local_storage.LocalStorage.html#set\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/local-storage.LocalStorage\"},{\"kind\":2048,\"name\":\"delete\",\"url\":\"classes/node_local_storage.LocalStorage.html#delete\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/local-storage.LocalStorage\"},{\"kind\":2048,\"name\":\"clear\",\"url\":\"classes/node_local_storage.LocalStorage.html#clear\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/local-storage.LocalStorage\"},{\"kind\":2,\"name\":\"node/metadata\",\"url\":\"modules/node_metadata.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"createRuntimeMetadataContainer\",\"url\":\"functions/node_metadata.createRuntimeMetadataContainer.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":256,\"name\":\"RuntimeMetadataManager\",\"url\":\"interfaces/node_metadata.RuntimeMetadataManager.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":1024,\"name\":\"addPublicMetadata\",\"url\":\"interfaces/node_metadata.RuntimeMetadataManager.html#addPublicMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/metadata.RuntimeMetadataManager\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_metadata.RuntimeMetadataManager.html#addPublicMetadata.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/metadata.RuntimeMetadataManager.addPublicMetadata\"},{\"kind\":1024,\"name\":\"addSensitiveMetadata\",\"url\":\"interfaces/node_metadata.RuntimeMetadataManager.html#addSensitiveMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/metadata.RuntimeMetadataManager\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_metadata.RuntimeMetadataManager.html#addSensitiveMetadata.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/metadata.RuntimeMetadataManager.addSensitiveMetadata\"},{\"kind\":1024,\"name\":\"getAllPublicMetadata\",\"url\":\"interfaces/node_metadata.RuntimeMetadataManager.html#getAllPublicMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/metadata.RuntimeMetadataManager\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_metadata.RuntimeMetadataManager.html#getAllPublicMetadata.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/metadata.RuntimeMetadataManager.getAllPublicMetadata\"},{\"kind\":1024,\"name\":\"getAllSensitiveMetadata\",\"url\":\"interfaces/node_metadata.RuntimeMetadataManager.html#getAllSensitiveMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/metadata.RuntimeMetadataManager\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_metadata.RuntimeMetadataManager.html#getAllSensitiveMetadata.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/metadata.RuntimeMetadataManager.getAllSensitiveMetadata\"},{\"kind\":4194304,\"name\":\"PublicSchema\",\"url\":\"types/node_metadata.PublicSchema.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":4194304,\"name\":\"SensitiveSchema\",\"url\":\"types/node_metadata.SensitiveSchema.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":64,\"name\":\"getAllPublicMetadata\",\"url\":\"functions/node_metadata.getAllPublicMetadata.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":64,\"name\":\"getAllSensitiveMetadata\",\"url\":\"functions/node_metadata.getAllSensitiveMetadata.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":64,\"name\":\"addPublicMetadata\",\"url\":\"functions/node_metadata.addPublicMetadata.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":64,\"name\":\"addSensitiveMetadata\",\"url\":\"functions/node_metadata.addSensitiveMetadata.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":4194304,\"name\":\"Public\",\"url\":\"types/node_metadata.Public.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":4194304,\"name\":\"Sensitive\",\"url\":\"types/node_metadata.Sensitive.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/metadata\"},{\"kind\":2,\"name\":\"node/mimes\",\"url\":\"modules/node_mimes.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"lookupMimeType\",\"url\":\"functions/node_mimes.lookupMimeType.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/mimes\"},{\"kind\":64,\"name\":\"setMimeTypes\",\"url\":\"functions/node_mimes.setMimeTypes.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/mimes\"},{\"kind\":2,\"name\":\"node/monorail\",\"url\":\"modules/node_monorail.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"publishMonorailEvent\",\"url\":\"functions/node_monorail.publishMonorailEvent.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/monorail\"},{\"kind\":32,\"name\":\"MONORAIL_COMMAND_TOPIC\",\"url\":\"variables/node_monorail.MONORAIL_COMMAND_TOPIC.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/monorail\"},{\"kind\":256,\"name\":\"Schemas\",\"url\":\"interfaces/node_monorail.Schemas.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/monorail\"},{\"kind\":1024,\"name\":\"app_cli3_command/1.4\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/monorail.Schemas\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4\"},{\"kind\":1024,\"name\":\"sensitive\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.sensitive-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.sensitive-1.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.sensitive\"},{\"kind\":1024,\"name\":\"args\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.sensitive-1.__type-3.args\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.sensitive.__type\"},{\"kind\":1024,\"name\":\"error_message\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.sensitive-1.__type-3.error_message\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.sensitive.__type\"},{\"kind\":1024,\"name\":\"app_name\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.sensitive-1.__type-3.app_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.sensitive.__type\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.sensitive-1.__type-3.metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.sensitive.__type\"},{\"kind\":1024,\"name\":\"store_fqdn\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.sensitive-1.__type-3.store_fqdn\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.sensitive.__type\"},{\"kind\":1024,\"name\":\"cmd_all_environment_flags\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.sensitive-1.__type-3.cmd_all_environment_flags\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.sensitive.__type\"},{\"kind\":1024,\"name\":\"cmd_dev_tunnel_custom\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.sensitive-1.__type-3.cmd_dev_tunnel_custom\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.sensitive.__type\"},{\"kind\":1024,\"name\":\"env_plugin_installed_all\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.sensitive-1.__type-3.env_plugin_installed_all\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.sensitive.__type\"},{\"kind\":1024,\"name\":\"public\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public\"},{\"kind\":1024,\"name\":\"partner_id\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.partner_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"command\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.command\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"project_type\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.project_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"time_start\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.time_start\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"time_end\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.time_end\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"total_time\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.total_time\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"success\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.success\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"api_key\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.api_key\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cli_version\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cli_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"uname\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.uname\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"ruby_version\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.ruby_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"node_version\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.node_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"is_employee\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.is_employee\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"store_fqdn_hash\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.store_fqdn_hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_all_alias_used\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_all_alias_used\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_all_launcher\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_all_launcher\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_all_path_override\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_all_path_override\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_all_path_override_hash\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_all_path_override_hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_all_plugin\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_all_plugin\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_all_topic\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_all_topic\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_all_verbose\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_all_verbose\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_extensions_binary_from_source\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_extensions_binary_from_source\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_scaffold_required_auth\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_scaffold_required_auth\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_scaffold_template_custom\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_scaffold_template_custom\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_scaffold_template_flavor\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_scaffold_template_flavor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_scaffold_type\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_scaffold_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_scaffold_type_category\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_scaffold_type_category\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_scaffold_type_gated\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_scaffold_type_gated\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_scaffold_type_owner\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_scaffold_type_owner\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_scaffold_used_prompts_for_type\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_scaffold_used_prompts_for_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_app_dependency_installation_skipped\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_app_dependency_installation_skipped\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_app_reset_used\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_app_reset_used\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_dev_tunnel_type\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_dev_tunnel_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_dev_tunnel_custom_hash\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_dev_tunnel_custom_hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_dev_urls_updated\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_dev_urls_updated\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"cmd_create_app_template\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.cmd_create_app_template\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_any\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_extensions_any\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_breakdown\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_extensions_breakdown\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_count\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_extensions_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_custom_layout\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_extensions_custom_layout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_function_any\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_extensions_function_any\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_function_count\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_extensions_function_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_function_custom_layout\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_extensions_function_custom_layout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_theme_any\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_extensions_theme_any\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_theme_count\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_extensions_theme_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_theme_custom_layout\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_extensions_theme_custom_layout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_ui_any\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_extensions_ui_any\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_ui_count\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_extensions_ui_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_extensions_ui_custom_layout\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_extensions_ui_custom_layout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_name_hash\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_name_hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_path_hash\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_path_hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_scopes\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_scopes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_web_backend_any\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_web_backend_any\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_web_backend_count\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_web_backend_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_web_custom_layout\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_web_custom_layout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_web_framework\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_web_framework\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_web_frontend_any\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_web_frontend_any\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"app_web_frontend_count\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.app_web_frontend_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_ci\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.env_ci\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_ci_platform\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.env_ci_platform\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_device_id\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.env_device_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_package_manager\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.env_package_manager\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_package_manager_workspaces\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.env_package_manager_workspaces\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_plugin_installed_any_custom\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.env_plugin_installed_any_custom\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_plugin_installed_shopify\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.env_plugin_installed_shopify\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_shell\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.env_shell\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_web_ide\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.env_web_ide\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":1024,\"name\":\"env_cloud\",\"url\":\"interfaces/node_monorail.Schemas.html#app_cli3_command_1_4.__type-1.public-1.__type-2.env_cloud\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.app_cli3_command/1.4.__type.public.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_monorail.Schemas.html#__index.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"node/monorail.Schemas.__index\"},{\"kind\":1024,\"name\":\"sensitive\",\"url\":\"interfaces/node_monorail.Schemas.html#__index.__type.sensitive\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.__index.__type\"},{\"kind\":1024,\"name\":\"public\",\"url\":\"interfaces/node_monorail.Schemas.html#__index.__type.public\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/monorail.Schemas.__index.__type\"},{\"kind\":4194304,\"name\":\"MonorailEventPublic\",\"url\":\"types/node_monorail.MonorailEventPublic.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/monorail\"},{\"kind\":4194304,\"name\":\"MonorailEventSensitive\",\"url\":\"types/node_monorail.MonorailEventSensitive.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/monorail\"},{\"kind\":2,\"name\":\"node/node-package-manager\",\"url\":\"modules/node_node_package_manager.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"packageManagerUsedForCreating\",\"url\":\"functions/node_node_package_manager.packageManagerUsedForCreating.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"getPackageManager\",\"url\":\"functions/node_node_package_manager.getPackageManager.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"installNPMDependenciesRecursively\",\"url\":\"functions/node_node_package_manager.installNPMDependenciesRecursively.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"installNodeModules\",\"url\":\"functions/node_node_package_manager.installNodeModules.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"getPackageName\",\"url\":\"functions/node_node_package_manager.getPackageName.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"getDependencies\",\"url\":\"functions/node_node_package_manager.getDependencies.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"usesWorkspaces\",\"url\":\"functions/node_node_package_manager.usesWorkspaces.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"checkForNewVersion\",\"url\":\"functions/node_node_package_manager.checkForNewVersion.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"readAndParsePackageJson\",\"url\":\"functions/node_node_package_manager.readAndParsePackageJson.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"addNPMDependenciesIfNeeded\",\"url\":\"functions/node_node_package_manager.addNPMDependenciesIfNeeded.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"addNPMDependencies\",\"url\":\"functions/node_node_package_manager.addNPMDependencies.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"addNPMDependenciesWithoutVersionIfNeeded\",\"url\":\"functions/node_node_package_manager.addNPMDependenciesWithoutVersionIfNeeded.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"findUpAndReadPackageJson\",\"url\":\"functions/node_node_package_manager.findUpAndReadPackageJson.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"addResolutionOrOverride\",\"url\":\"functions/node_node_package_manager.addResolutionOrOverride.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"writePackageJSON\",\"url\":\"functions/node_node_package_manager.writePackageJSON.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":32,\"name\":\"yarnLockfile\",\"url\":\"variables/node_node_package_manager.yarnLockfile.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":32,\"name\":\"npmLockfile\",\"url\":\"variables/node_node_package_manager.npmLockfile.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":32,\"name\":\"pnpmLockfile\",\"url\":\"variables/node_node_package_manager.pnpmLockfile.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":32,\"name\":\"pnpmWorkspaceFile\",\"url\":\"variables/node_node_package_manager.pnpmWorkspaceFile.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":32,\"name\":\"lockfiles\",\"url\":\"variables/node_node_package_manager.lockfiles.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":4194304,\"name\":\"Lockfile\",\"url\":\"types/node_node_package_manager.Lockfile.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":4194304,\"name\":\"DependencyType\",\"url\":\"types/node_node_package_manager.DependencyType.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":32,\"name\":\"packageManager\",\"url\":\"variables/node_node_package_manager.packageManager-1.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":4194304,\"name\":\"PackageManager\",\"url\":\"types/node_node_package_manager.PackageManager.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"PackageJsonNotFoundError\",\"url\":\"functions/node_node_package_manager.PackageJsonNotFoundError.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":64,\"name\":\"FindUpAndReadPackageJsonNotFoundError\",\"url\":\"functions/node_node_package_manager.FindUpAndReadPackageJsonNotFoundError.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":256,\"name\":\"PackageJson\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":1024,\"name\":\"author\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#author\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":1024,\"name\":\"scripts\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#scripts\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#scripts.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/node-package-manager.PackageJson.scripts\"},{\"kind\":1024,\"name\":\"dependencies\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#dependencies\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#dependencies.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/node-package-manager.PackageJson.dependencies\"},{\"kind\":1024,\"name\":\"devDependencies\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#devDependencies\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#devDependencies.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/node-package-manager.PackageJson.devDependencies\"},{\"kind\":1024,\"name\":\"peerDependencies\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#peerDependencies\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#peerDependencies.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/node-package-manager.PackageJson.peerDependencies\"},{\"kind\":1024,\"name\":\"oclif\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#oclif\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#oclif.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/node-package-manager.PackageJson.oclif\"},{\"kind\":1024,\"name\":\"plugins\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#oclif.__type-2.plugins\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/node-package-manager.PackageJson.oclif.__type\"},{\"kind\":1024,\"name\":\"workspaces\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#workspaces\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":1024,\"name\":\"resolutions\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#resolutions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#resolutions.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/node-package-manager.PackageJson.resolutions\"},{\"kind\":1024,\"name\":\"overrides\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#overrides\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#overrides.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/node-package-manager.PackageJson.overrides\"},{\"kind\":1024,\"name\":\"prettier\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#prettier\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":1024,\"name\":\"private\",\"url\":\"interfaces/node_node_package_manager.PackageJson.html#private\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.PackageJson\"},{\"kind\":256,\"name\":\"DependencyVersion\",\"url\":\"interfaces/node_node_package_manager.DependencyVersion.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/node-package-manager\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/node_node_package_manager.DependencyVersion.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.DependencyVersion\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/node_node_package_manager.DependencyVersion.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/node-package-manager.DependencyVersion\"},{\"kind\":2,\"name\":\"node/os\",\"url\":\"modules/node_os.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"username\",\"url\":\"functions/node_os.username.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/os\"},{\"kind\":64,\"name\":\"platformAndArch\",\"url\":\"functions/node_os.platformAndArch.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/os\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/node_os.platformAndArch.html#platformAndArch.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"node/os.platformAndArch.platformAndArch\"},{\"kind\":1024,\"name\":\"platform\",\"url\":\"functions/node_os.platformAndArch.html#platformAndArch.__type.platform\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/os.platformAndArch.platformAndArch.__type\"},{\"kind\":1024,\"name\":\"arch\",\"url\":\"functions/node_os.platformAndArch.html#platformAndArch.__type.arch\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/os.platformAndArch.platformAndArch.__type\"},{\"kind\":2,\"name\":\"node/output\",\"url\":\"modules/node_output.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"formatPackageManagerCommand\",\"url\":\"functions/node_output.formatPackageManagerCommand.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"outputContent\",\"url\":\"functions/node_output.outputContent.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"collectLog\",\"url\":\"functions/node_output.collectLog.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"outputInfo\",\"url\":\"functions/node_output.outputInfo.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"outputSuccess\",\"url\":\"functions/node_output.outputSuccess.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"outputCompleted\",\"url\":\"functions/node_output.outputCompleted.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"outputDebug\",\"url\":\"functions/node_output.outputDebug.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"outputWarn\",\"url\":\"functions/node_output.outputWarn.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"outputNewline\",\"url\":\"functions/node_output.outputNewline.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"stringifyMessage\",\"url\":\"functions/node_output.stringifyMessage.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"consoleLog\",\"url\":\"functions/node_output.consoleLog.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"consoleError\",\"url\":\"functions/node_output.consoleError.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"consoleWarn\",\"url\":\"functions/node_output.consoleWarn.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"outputWhereAppropriate\",\"url\":\"functions/node_output.outputWhereAppropriate.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"unstyled\",\"url\":\"functions/node_output.unstyled.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"shouldDisplayColors\",\"url\":\"functions/node_output.shouldDisplayColors.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"getOutputUpdateCLIReminder\",\"url\":\"functions/node_output.getOutputUpdateCLIReminder.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":64,\"name\":\"formatSection\",\"url\":\"functions/node_output.formatSection.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":4194304,\"name\":\"Logger\",\"url\":\"types/node_output.Logger.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":128,\"name\":\"TokenizedString\",\"url\":\"classes/node_output.TokenizedString.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_output.TokenizedString.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/output.TokenizedString\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"classes/node_output.TokenizedString.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/output.TokenizedString\"},{\"kind\":4194304,\"name\":\"OutputMessage\",\"url\":\"types/node_output.OutputMessage.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":32,\"name\":\"outputToken\",\"url\":\"variables/node_output.outputToken.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/node_output.outputToken.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"node/output.outputToken\"},{\"kind\":2048,\"name\":\"raw\",\"url\":\"variables/node_output.outputToken.html#__type.raw\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"genericShellCommand\",\"url\":\"variables/node_output.outputToken.html#__type.genericShellCommand\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"json\",\"url\":\"variables/node_output.outputToken.html#__type.json\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"path\",\"url\":\"variables/node_output.outputToken.html#__type.path\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"link\",\"url\":\"variables/node_output.outputToken.html#__type.link\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"heading\",\"url\":\"variables/node_output.outputToken.html#__type.heading\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"subheading\",\"url\":\"variables/node_output.outputToken.html#__type.subheading\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"italic\",\"url\":\"variables/node_output.outputToken.html#__type.italic\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"errorText\",\"url\":\"variables/node_output.outputToken.html#__type.errorText\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"cyan\",\"url\":\"variables/node_output.outputToken.html#__type.cyan\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"yellow\",\"url\":\"variables/node_output.outputToken.html#__type.yellow\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"magenta\",\"url\":\"variables/node_output.outputToken.html#__type.magenta\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"green\",\"url\":\"variables/node_output.outputToken.html#__type.green\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"packagejsonScript\",\"url\":\"variables/node_output.outputToken.html#__type.packagejsonScript\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"successIcon\",\"url\":\"variables/node_output.outputToken.html#__type.successIcon\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"failIcon\",\"url\":\"variables/node_output.outputToken.html#__type.failIcon\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":2048,\"name\":\"linesDiff\",\"url\":\"variables/node_output.outputToken.html#__type.linesDiff\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"node/output.outputToken.__type\"},{\"kind\":4194304,\"name\":\"LogLevel\",\"url\":\"types/node_output.LogLevel.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":32,\"name\":\"collectedLogs\",\"url\":\"variables/node_output.collectedLogs.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/node_output.collectedLogs.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"node/output.collectedLogs\"},{\"kind\":64,\"name\":\"clearCollectedLogs\",\"url\":\"functions/node_output.clearCollectedLogs.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":256,\"name\":\"OutputProcess\",\"url\":\"interfaces/node_output.OutputProcess.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/output\"},{\"kind\":1024,\"name\":\"prefix\",\"url\":\"interfaces/node_output.OutputProcess.html#prefix\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/output.OutputProcess\"},{\"kind\":1024,\"name\":\"action\",\"url\":\"interfaces/node_output.OutputProcess.html#action\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/output.OutputProcess\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_output.OutputProcess.html#action.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/output.OutputProcess.action\"},{\"kind\":2,\"name\":\"node/path\",\"url\":\"modules/node_path.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"joinPath\",\"url\":\"functions/node_path.joinPath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"normalizePath\",\"url\":\"functions/node_path.normalizePath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"resolvePath\",\"url\":\"functions/node_path.resolvePath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"relativePath\",\"url\":\"functions/node_path.relativePath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"isAbsolutePath\",\"url\":\"functions/node_path.isAbsolutePath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"dirname\",\"url\":\"functions/node_path.dirname.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"basename\",\"url\":\"functions/node_path.basename.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"extname\",\"url\":\"functions/node_path.extname.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"relativizePath\",\"url\":\"functions/node_path.relativizePath.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"moduleDirectory\",\"url\":\"functions/node_path.moduleDirectory.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":64,\"name\":\"cwd\",\"url\":\"functions/node_path.cwd.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/path\"},{\"kind\":2,\"name\":\"node/plugins\",\"url\":\"modules/node_plugins.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"fanoutHooks\",\"url\":\"functions/node_plugins.fanoutHooks.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/plugins\"},{\"kind\":64,\"name\":\"getListOfTunnelPlugins\",\"url\":\"functions/node_plugins.getListOfTunnelPlugins.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/plugins\"},{\"kind\":256,\"name\":\"HookReturnsPerPlugin\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/plugins\"},{\"kind\":1024,\"name\":\"public_command_metadata\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#public_command_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins.HookReturnsPerPlugin\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#public_command_metadata.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.public_command_metadata\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#public_command_metadata.__type-3.options-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.public_command_metadata.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#public_command_metadata.__type-3.options-1.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.public_command_metadata.__type.options\"},{\"kind\":1024,\"name\":\"pluginReturns\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#public_command_metadata.__type-3.pluginReturns-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.public_command_metadata.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#public_command_metadata.__type-3.pluginReturns-1.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.public_command_metadata.__type.pluginReturns\"},{\"kind\":1024,\"name\":\"@shopify/app\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#public_command_metadata.__type-3.pluginReturns-1.__type-5._shopify_app\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.public_command_metadata.__type.pluginReturns.__type\"},{\"kind\":1024,\"name\":\"sensitive_command_metadata\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#sensitive_command_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins.HookReturnsPerPlugin\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#sensitive_command_metadata.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.sensitive_command_metadata\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#sensitive_command_metadata.__type-6.options-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.sensitive_command_metadata.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#sensitive_command_metadata.__type-6.options-2.__type-7\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.sensitive_command_metadata.__type.options\"},{\"kind\":1024,\"name\":\"pluginReturns\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#sensitive_command_metadata.__type-6.pluginReturns-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.sensitive_command_metadata.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#sensitive_command_metadata.__type-6.pluginReturns-2.__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.sensitive_command_metadata.__type.pluginReturns\"},{\"kind\":1024,\"name\":\"@shopify/app\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#sensitive_command_metadata.__type-6.pluginReturns-2.__type-8._shopify_app-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.sensitive_command_metadata.__type.pluginReturns.__type\"},{\"kind\":1024,\"name\":\"tunnel_start\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_start\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/plugins.HookReturnsPerPlugin\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_start.__type-13\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_start\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_start.__type-13.options-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_start.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_start.__type-13.options-4.__type-14\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_start.__type.options\"},{\"kind\":1024,\"name\":\"port\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_start.__type-13.options-4.__type-14.port\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_start.__type.options.__type\"},{\"kind\":1024,\"name\":\"provider\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_start.__type-13.options-4.__type-14.provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_start.__type.options.__type\"},{\"kind\":1024,\"name\":\"pluginReturns\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_start.__type-13.pluginReturns-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_start.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_start.__type-13.pluginReturns-4.__type-15\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_start.__type.pluginReturns\"},{\"kind\":1024,\"name\":\"tunnel_provider\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/plugins.HookReturnsPerPlugin\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_provider.__type-9\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_provider\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_provider.__type-9.options-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_provider.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_provider.__type-9.options-3.__type-10\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_provider.__type.options\"},{\"kind\":1024,\"name\":\"pluginReturns\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_provider.__type-9.pluginReturns-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_provider.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_provider.__type-9.pluginReturns-3.__type-11\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_provider.__type.pluginReturns\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_provider.__type-9.pluginReturns-3.__type-11.__index-8.__type-12\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_provider.__type.pluginReturns.__type.__index\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#tunnel_provider.__type-9.pluginReturns-3.__type-11.__index-8.__type-12.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.tunnel_provider.__type.pluginReturns.__type.__index.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#__index.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.__index\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#__index.__type.options\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.__index.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#__index.__type.options.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.__index.__type.options\"},{\"kind\":1024,\"name\":\"pluginReturns\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#__index.__type.pluginReturns\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins.HookReturnsPerPlugin.__index.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins.HookReturnsPerPlugin.html#__index.__type.pluginReturns.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins.HookReturnsPerPlugin.__index.__type.pluginReturns\"},{\"kind\":4194304,\"name\":\"PluginReturnsForHook\",\"url\":\"types/node_plugins.PluginReturnsForHook.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/plugins\"},{\"kind\":4194304,\"name\":\"FanoutHookFunction\",\"url\":\"types/node_plugins.FanoutHookFunction.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/plugins\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/node_plugins.FanoutHookFunction.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"node/plugins.FanoutHookFunction\"},{\"kind\":256,\"name\":\"TunnelPluginError\",\"url\":\"interfaces/node_plugins.TunnelPluginError.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/plugins\"},{\"kind\":1024,\"name\":\"provider\",\"url\":\"interfaces/node_plugins.TunnelPluginError.html#provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins.TunnelPluginError\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/node_plugins.TunnelPluginError.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins.TunnelPluginError\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"interfaces/node_plugins.TunnelPluginError.html#message\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins.TunnelPluginError\"},{\"kind\":2,\"name\":\"node/result\",\"url\":\"modules/node_result.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"Result\",\"url\":\"types/node_result.Result.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/result\"},{\"kind\":64,\"name\":\"ok\",\"url\":\"functions/node_result.ok-1.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/result\"},{\"kind\":64,\"name\":\"err\",\"url\":\"functions/node_result.err-1.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/result\"},{\"kind\":128,\"name\":\"Ok\",\"url\":\"classes/node_result.Ok.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/result\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_result.Ok.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/result.Ok\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"classes/node_result.Ok.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/result.Ok\"},{\"kind\":2048,\"name\":\"isErr\",\"url\":\"classes/node_result.Ok.html#isErr\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Ok\"},{\"kind\":2048,\"name\":\"doOnOk\",\"url\":\"classes/node_result.Ok.html#doOnOk\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Ok\"},{\"kind\":2048,\"name\":\"valueOrBug\",\"url\":\"classes/node_result.Ok.html#valueOrBug\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Ok\"},{\"kind\":2048,\"name\":\"valueOrAbort\",\"url\":\"classes/node_result.Ok.html#valueOrAbort\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Ok\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/node_result.Ok.html#map\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Ok\"},{\"kind\":2048,\"name\":\"mapError\",\"url\":\"classes/node_result.Ok.html#mapError\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Ok\"},{\"kind\":128,\"name\":\"Err\",\"url\":\"classes/node_result.Err.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/result\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_result.Err.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/result.Err\"},{\"kind\":1024,\"name\":\"error\",\"url\":\"classes/node_result.Err.html#error\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/result.Err\"},{\"kind\":2048,\"name\":\"isErr\",\"url\":\"classes/node_result.Err.html#isErr\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Err\"},{\"kind\":2048,\"name\":\"doOnOk\",\"url\":\"classes/node_result.Err.html#doOnOk\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Err\"},{\"kind\":2048,\"name\":\"valueOrBug\",\"url\":\"classes/node_result.Err.html#valueOrBug\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Err\"},{\"kind\":2048,\"name\":\"valueOrAbort\",\"url\":\"classes/node_result.Err.html#valueOrAbort\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Err\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/node_result.Err.html#map\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Err\"},{\"kind\":2048,\"name\":\"mapError\",\"url\":\"classes/node_result.Err.html#mapError\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/result.Err\"},{\"kind\":2,\"name\":\"node/ruby\",\"url\":\"modules/node_ruby.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"execCLI2\",\"url\":\"functions/node_ruby.execCLI2.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ruby\"},{\"kind\":64,\"name\":\"execThemeCheckCLI\",\"url\":\"functions/node_ruby.execThemeCheckCLI.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ruby\"},{\"kind\":64,\"name\":\"version\",\"url\":\"functions/node_ruby.version.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ruby\"},{\"kind\":64,\"name\":\"bundleUserHome\",\"url\":\"functions/node_ruby.bundleUserHome.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ruby\"},{\"kind\":32,\"name\":\"RubyCLIVersion\",\"url\":\"variables/node_ruby.RubyCLIVersion.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/ruby\"},{\"kind\":32,\"name\":\"MinWdmWindowsVersion\",\"url\":\"variables/node_ruby.MinWdmWindowsVersion.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/ruby\"},{\"kind\":2,\"name\":\"node/schema\",\"url\":\"modules/node_schema.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"node/session\",\"url\":\"modules/node_session.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"ensureAuthenticatedPartners\",\"url\":\"functions/node_session.ensureAuthenticatedPartners.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/session\"},{\"kind\":64,\"name\":\"ensureAuthenticatedStorefront\",\"url\":\"functions/node_session.ensureAuthenticatedStorefront.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/session\"},{\"kind\":64,\"name\":\"ensureAuthenticatedAdmin\",\"url\":\"functions/node_session.ensureAuthenticatedAdmin.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/session\"},{\"kind\":64,\"name\":\"ensureAuthenticatedThemes\",\"url\":\"functions/node_session.ensureAuthenticatedThemes.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/session\"},{\"kind\":64,\"name\":\"ensureAuthenticatedBusinessPlatform\",\"url\":\"functions/node_session.ensureAuthenticatedBusinessPlatform.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/session\"},{\"kind\":64,\"name\":\"logout\",\"url\":\"functions/node_session.logout.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/session\"},{\"kind\":256,\"name\":\"AdminSession\",\"url\":\"interfaces/node_session.AdminSession.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/session\"},{\"kind\":1024,\"name\":\"token\",\"url\":\"interfaces/node_session.AdminSession.html#token\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/session.AdminSession\"},{\"kind\":1024,\"name\":\"storeFqdn\",\"url\":\"interfaces/node_session.AdminSession.html#storeFqdn\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/session.AdminSession\"},{\"kind\":2,\"name\":\"node/system\",\"url\":\"modules/node_system.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"openURL\",\"url\":\"functions/node_system.openURL.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/system\"},{\"kind\":64,\"name\":\"captureOutput\",\"url\":\"functions/node_system.captureOutput.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/system\"},{\"kind\":64,\"name\":\"exec\",\"url\":\"functions/node_system.exec.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/system\"},{\"kind\":64,\"name\":\"sleep\",\"url\":\"functions/node_system.sleep.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/system\"},{\"kind\":64,\"name\":\"terminalSupportsRawMode\",\"url\":\"functions/node_system.terminalSupportsRawMode.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/system\"},{\"kind\":256,\"name\":\"ExecOptions\",\"url\":\"interfaces/node_system.ExecOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/system\"},{\"kind\":1024,\"name\":\"cwd\",\"url\":\"interfaces/node_system.ExecOptions.html#cwd\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/system.ExecOptions\"},{\"kind\":1024,\"name\":\"env\",\"url\":\"interfaces/node_system.ExecOptions.html#env\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/system.ExecOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_system.ExecOptions.html#env.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/system.ExecOptions.env\"},{\"kind\":1024,\"name\":\"stdin\",\"url\":\"interfaces/node_system.ExecOptions.html#stdin\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/system.ExecOptions\"},{\"kind\":1024,\"name\":\"stdout\",\"url\":\"interfaces/node_system.ExecOptions.html#stdout\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/system.ExecOptions\"},{\"kind\":1024,\"name\":\"stderr\",\"url\":\"interfaces/node_system.ExecOptions.html#stderr\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/system.ExecOptions\"},{\"kind\":1024,\"name\":\"stdio\",\"url\":\"interfaces/node_system.ExecOptions.html#stdio\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/system.ExecOptions\"},{\"kind\":1024,\"name\":\"input\",\"url\":\"interfaces/node_system.ExecOptions.html#input\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/system.ExecOptions\"},{\"kind\":1024,\"name\":\"signal\",\"url\":\"interfaces/node_system.ExecOptions.html#signal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/system.ExecOptions\"},{\"kind\":1024,\"name\":\"externalErrorHandler\",\"url\":\"interfaces/node_system.ExecOptions.html#externalErrorHandler\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/system.ExecOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_system.ExecOptions.html#externalErrorHandler.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/system.ExecOptions.externalErrorHandler\"},{\"kind\":2,\"name\":\"node/tcp\",\"url\":\"modules/node_tcp.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getAvailableTCPPort\",\"url\":\"functions/node_tcp.getAvailableTCPPort.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/tcp\"},{\"kind\":64,\"name\":\"checkPortAvailability\",\"url\":\"functions/node_tcp.checkPortAvailability.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/tcp\"},{\"kind\":2,\"name\":\"node/toml\",\"url\":\"modules/node_toml.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"decodeToml\",\"url\":\"functions/node_toml.decodeToml.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/toml\"},{\"kind\":64,\"name\":\"encodeToml\",\"url\":\"functions/node_toml.encodeToml.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/toml\"},{\"kind\":2,\"name\":\"node/ui\",\"url\":\"modules/node_ui.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"renderConcurrent\",\"url\":\"functions/node_ui.renderConcurrent.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderInfo\",\"url\":\"functions/node_ui.renderInfo.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderSuccess\",\"url\":\"functions/node_ui.renderSuccess.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderWarning\",\"url\":\"functions/node_ui.renderWarning.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderFatalError\",\"url\":\"functions/node_ui.renderFatalError.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderSelectPrompt\",\"url\":\"functions/node_ui.renderSelectPrompt.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderConfirmationPrompt\",\"url\":\"functions/node_ui.renderConfirmationPrompt.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderAutocompletePrompt\",\"url\":\"functions/node_ui.renderAutocompletePrompt.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderTable\",\"url\":\"functions/node_ui.renderTable.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderTasks\",\"url\":\"functions/node_ui.renderTasks.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderTextPrompt\",\"url\":\"functions/node_ui.renderTextPrompt.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":64,\"name\":\"renderText\",\"url\":\"functions/node_ui.renderText.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":256,\"name\":\"RenderConcurrentOptions\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":1024,\"name\":\"renderOptions\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#renderOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.RenderConcurrentOptions\"},{\"kind\":1024,\"name\":\"footer\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#footer\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderConcurrentOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#footer.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/ui.RenderConcurrentOptions.footer\"},{\"kind\":1024,\"name\":\"shortcuts\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#footer.__type.shortcuts\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/ui.RenderConcurrentOptions.footer.__type\"},{\"kind\":1024,\"name\":\"subTitle\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#footer.__type.subTitle\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/ui.RenderConcurrentOptions.footer.__type\"},{\"kind\":1024,\"name\":\"processes\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#processes\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderConcurrentOptions\"},{\"kind\":1024,\"name\":\"showTimestamps\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#showTimestamps\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderConcurrentOptions\"},{\"kind\":1024,\"name\":\"onInput\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#onInput\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderConcurrentOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#onInput.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/ui.RenderConcurrentOptions.onInput\"},{\"kind\":1024,\"name\":\"abortSignal\",\"url\":\"interfaces/node_ui.RenderConcurrentOptions.html#abortSignal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderConcurrentOptions\"},{\"kind\":4194304,\"name\":\"AlertCustomSection\",\"url\":\"types/node_ui.AlertCustomSection.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":4194304,\"name\":\"RenderAlertOptions\",\"url\":\"types/node_ui.RenderAlertOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":256,\"name\":\"RenderSelectPromptOptions\",\"url\":\"interfaces/node_ui.RenderSelectPromptOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":1024,\"name\":\"isConfirmationPrompt\",\"url\":\"interfaces/node_ui.RenderSelectPromptOptions.html#isConfirmationPrompt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.RenderSelectPromptOptions\"},{\"kind\":1024,\"name\":\"renderOptions\",\"url\":\"interfaces/node_ui.RenderSelectPromptOptions.html#renderOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.RenderSelectPromptOptions\"},{\"kind\":1024,\"name\":\"abortSignal\",\"url\":\"interfaces/node_ui.RenderSelectPromptOptions.html#abortSignal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderSelectPromptOptions\"},{\"kind\":1024,\"name\":\"defaultValue\",\"url\":\"interfaces/node_ui.RenderSelectPromptOptions.html#defaultValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderSelectPromptOptions\"},{\"kind\":1024,\"name\":\"submitWithShortcuts\",\"url\":\"interfaces/node_ui.RenderSelectPromptOptions.html#submitWithShortcuts\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderSelectPromptOptions\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"interfaces/node_ui.RenderSelectPromptOptions.html#message\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderSelectPromptOptions\"},{\"kind\":1024,\"name\":\"choices\",\"url\":\"interfaces/node_ui.RenderSelectPromptOptions.html#choices\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderSelectPromptOptions\"},{\"kind\":1024,\"name\":\"infoTable\",\"url\":\"interfaces/node_ui.RenderSelectPromptOptions.html#infoTable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderSelectPromptOptions\"},{\"kind\":256,\"name\":\"RenderConfirmationPromptOptions\",\"url\":\"interfaces/node_ui.RenderConfirmationPromptOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":1024,\"name\":\"confirmationMessage\",\"url\":\"interfaces/node_ui.RenderConfirmationPromptOptions.html#confirmationMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.RenderConfirmationPromptOptions\"},{\"kind\":1024,\"name\":\"cancellationMessage\",\"url\":\"interfaces/node_ui.RenderConfirmationPromptOptions.html#cancellationMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.RenderConfirmationPromptOptions\"},{\"kind\":1024,\"name\":\"renderOptions\",\"url\":\"interfaces/node_ui.RenderConfirmationPromptOptions.html#renderOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.RenderConfirmationPromptOptions\"},{\"kind\":1024,\"name\":\"defaultValue\",\"url\":\"interfaces/node_ui.RenderConfirmationPromptOptions.html#defaultValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.RenderConfirmationPromptOptions\"},{\"kind\":1024,\"name\":\"abortSignal\",\"url\":\"interfaces/node_ui.RenderConfirmationPromptOptions.html#abortSignal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderConfirmationPromptOptions\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"interfaces/node_ui.RenderConfirmationPromptOptions.html#message\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderConfirmationPromptOptions\"},{\"kind\":1024,\"name\":\"infoTable\",\"url\":\"interfaces/node_ui.RenderConfirmationPromptOptions.html#infoTable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderConfirmationPromptOptions\"},{\"kind\":256,\"name\":\"RenderAutocompleteOptions\",\"url\":\"interfaces/node_ui.RenderAutocompleteOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":1024,\"name\":\"renderOptions\",\"url\":\"interfaces/node_ui.RenderAutocompleteOptions.html#renderOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.RenderAutocompleteOptions\"},{\"kind\":1024,\"name\":\"abortSignal\",\"url\":\"interfaces/node_ui.RenderAutocompleteOptions.html#abortSignal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderAutocompleteOptions\"},{\"kind\":1024,\"name\":\"hasMorePages\",\"url\":\"interfaces/node_ui.RenderAutocompleteOptions.html#hasMorePages\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderAutocompleteOptions\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"interfaces/node_ui.RenderAutocompleteOptions.html#message\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderAutocompleteOptions\"},{\"kind\":1024,\"name\":\"choices\",\"url\":\"interfaces/node_ui.RenderAutocompleteOptions.html#choices\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderAutocompleteOptions\"},{\"kind\":1024,\"name\":\"infoTable\",\"url\":\"interfaces/node_ui.RenderAutocompleteOptions.html#infoTable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderAutocompleteOptions\"},{\"kind\":1024,\"name\":\"search\",\"url\":\"interfaces/node_ui.RenderAutocompleteOptions.html#search\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderAutocompleteOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_ui.RenderAutocompleteOptions.html#search.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/ui.RenderAutocompleteOptions.search\"},{\"kind\":256,\"name\":\"RenderTextPromptOptions\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":1024,\"name\":\"renderOptions\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html#renderOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.RenderTextPromptOptions\"},{\"kind\":1024,\"name\":\"abortSignal\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html#abortSignal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderTextPromptOptions\"},{\"kind\":1024,\"name\":\"defaultValue\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html#defaultValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderTextPromptOptions\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html#message\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderTextPromptOptions\"},{\"kind\":1024,\"name\":\"password\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html#password\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderTextPromptOptions\"},{\"kind\":1024,\"name\":\"validate\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html#validate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderTextPromptOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html#validate.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/ui.RenderTextPromptOptions.validate\"},{\"kind\":1024,\"name\":\"allowEmpty\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html#allowEmpty\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderTextPromptOptions\"},{\"kind\":1024,\"name\":\"emptyDisplayedValue\",\"url\":\"interfaces/node_ui.RenderTextPromptOptions.html#emptyDisplayedValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"node/ui.RenderTextPromptOptions\"},{\"kind\":64,\"name\":\"keypress\",\"url\":\"functions/node_ui.keypress.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":4194304,\"name\":\"Key\",\"url\":\"types/node_ui.Key.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":2,\"name\":\"node/vscode\",\"url\":\"modules/node_vscode.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isVSCode\",\"url\":\"functions/node_vscode.isVSCode.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/vscode\"},{\"kind\":64,\"name\":\"addRecommendedExtensions\",\"url\":\"functions/node_vscode.addRecommendedExtensions.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/vscode\"},{\"kind\":2,\"name\":\"common/ts/deep-required\",\"url\":\"modules/common_ts_deep_required.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"DeepRequired\",\"url\":\"types/common_ts_deep_required.DeepRequired.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"common/ts/deep-required\"},{\"kind\":2,\"name\":\"common/ts/pick-by-prefix\",\"url\":\"modules/common_ts_pick_by_prefix.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"PickByPrefix\",\"url\":\"types/common_ts_pick_by_prefix.PickByPrefix.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"common/ts/pick-by-prefix\"},{\"kind\":2,\"name\":\"node/api/admin\",\"url\":\"modules/node_api_admin.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"adminRequest\",\"url\":\"functions/node_api_admin.adminRequest.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/api/admin\"},{\"kind\":64,\"name\":\"restRequest\",\"url\":\"functions/node_api_admin.restRequest.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/api/admin\"},{\"kind\":256,\"name\":\"RestResponse\",\"url\":\"interfaces/node_api_admin.RestResponse.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/api/admin\"},{\"kind\":1024,\"name\":\"json\",\"url\":\"interfaces/node_api_admin.RestResponse.html#json\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/admin.RestResponse\"},{\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/node_api_admin.RestResponse.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/admin.RestResponse\"},{\"kind\":1024,\"name\":\"headers\",\"url\":\"interfaces/node_api_admin.RestResponse.html#headers\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/admin.RestResponse\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_api_admin.RestResponse.html#headers.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/api/admin.RestResponse.headers\"},{\"kind\":2,\"name\":\"node/api/business-platform\",\"url\":\"modules/node_api_business_platform.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"businessPlatformRequest\",\"url\":\"functions/node_api_business_platform.businessPlatformRequest.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/api/business-platform\"},{\"kind\":2,\"name\":\"node/api/graphql\",\"url\":\"modules/node_api_graphql.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"graphqlRequest\",\"url\":\"functions/node_api_graphql.graphqlRequest.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/api/graphql\"},{\"kind\":256,\"name\":\"GraphQLVariables\",\"url\":\"interfaces/node_api_graphql.GraphQLVariables.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/api/graphql\"},{\"kind\":4194304,\"name\":\"GraphQLResponse\",\"url\":\"types/node_api_graphql.GraphQLResponse.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/api/graphql\"},{\"kind\":256,\"name\":\"GraphQLRequestOptions\",\"url\":\"interfaces/node_api_graphql.GraphQLRequestOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/api/graphql\"},{\"kind\":1024,\"name\":\"query\",\"url\":\"interfaces/node_api_graphql.GraphQLRequestOptions.html#query\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/graphql.GraphQLRequestOptions\"},{\"kind\":1024,\"name\":\"api\",\"url\":\"interfaces/node_api_graphql.GraphQLRequestOptions.html#api\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/graphql.GraphQLRequestOptions\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/node_api_graphql.GraphQLRequestOptions.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/graphql.GraphQLRequestOptions\"},{\"kind\":1024,\"name\":\"token\",\"url\":\"interfaces/node_api_graphql.GraphQLRequestOptions.html#token\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/graphql.GraphQLRequestOptions\"},{\"kind\":1024,\"name\":\"addedHeaders\",\"url\":\"interfaces/node_api_graphql.GraphQLRequestOptions.html#addedHeaders\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/graphql.GraphQLRequestOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_api_graphql.GraphQLRequestOptions.html#addedHeaders.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/api/graphql.GraphQLRequestOptions.addedHeaders\"},{\"kind\":1024,\"name\":\"variables\",\"url\":\"interfaces/node_api_graphql.GraphQLRequestOptions.html#variables\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/graphql.GraphQLRequestOptions\"},{\"kind\":1024,\"name\":\"responseOptions\",\"url\":\"interfaces/node_api_graphql.GraphQLRequestOptions.html#responseOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/graphql.GraphQLRequestOptions\"},{\"kind\":256,\"name\":\"GraphQLResponseOptions\",\"url\":\"interfaces/node_api_graphql.GraphQLResponseOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/api/graphql\"},{\"kind\":1024,\"name\":\"handleErrors\",\"url\":\"interfaces/node_api_graphql.GraphQLResponseOptions.html#handleErrors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/graphql.GraphQLResponseOptions\"},{\"kind\":1024,\"name\":\"onResponse\",\"url\":\"interfaces/node_api_graphql.GraphQLResponseOptions.html#onResponse\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/api/graphql.GraphQLResponseOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_api_graphql.GraphQLResponseOptions.html#onResponse.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/api/graphql.GraphQLResponseOptions.onResponse\"},{\"kind\":2,\"name\":\"node/api/http\",\"url\":\"modules/node_api_http.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"node/api/partners\",\"url\":\"modules/node_api_partners.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"partnersRequest\",\"url\":\"functions/node_api_partners.partnersRequest.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/api/partners\"},{\"kind\":64,\"name\":\"functionProxyRequest\",\"url\":\"functions/node_api_partners.functionProxyRequest.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/api/partners\"},{\"kind\":64,\"name\":\"handleDeprecations\",\"url\":\"functions/node_api_partners.handleDeprecations.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/api/partners\"},{\"kind\":2,\"name\":\"node/context/fqdn\",\"url\":\"modules/node_context_fqdn.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"partnersFqdn\",\"url\":\"functions/node_context_fqdn.partnersFqdn.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/fqdn\"},{\"kind\":64,\"name\":\"businessPlatformFqdn\",\"url\":\"functions/node_context_fqdn.businessPlatformFqdn.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/fqdn\"},{\"kind\":64,\"name\":\"identityFqdn\",\"url\":\"functions/node_context_fqdn.identityFqdn.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/fqdn\"},{\"kind\":64,\"name\":\"normalizeStoreFqdn\",\"url\":\"functions/node_context_fqdn.normalizeStoreFqdn.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/fqdn\"},{\"kind\":32,\"name\":\"CouldntObtainPartnersSpinFQDNError\",\"url\":\"variables/node_context_fqdn.CouldntObtainPartnersSpinFQDNError.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/context/fqdn\"},{\"kind\":32,\"name\":\"CouldntObtainIdentitySpinFQDNError\",\"url\":\"variables/node_context_fqdn.CouldntObtainIdentitySpinFQDNError.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/context/fqdn\"},{\"kind\":32,\"name\":\"CouldntObtainShopifySpinFQDNError\",\"url\":\"variables/node_context_fqdn.CouldntObtainShopifySpinFQDNError.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/context/fqdn\"},{\"kind\":32,\"name\":\"NotProvidedStoreFQDNError\",\"url\":\"variables/node_context_fqdn.NotProvidedStoreFQDNError.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/context/fqdn\"},{\"kind\":2,\"name\":\"node/context/local\",\"url\":\"modules/node_context_local.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isTerminalInteractive\",\"url\":\"functions/node_context_local.isTerminalInteractive.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"homeDirectory\",\"url\":\"functions/node_context_local.homeDirectory.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"isDevelopment\",\"url\":\"functions/node_context_local.isDevelopment.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"isVerbose\",\"url\":\"functions/node_context_local.isVerbose.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"isShopify\",\"url\":\"functions/node_context_local.isShopify.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"isUnitTest\",\"url\":\"functions/node_context_local.isUnitTest.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"analyticsDisabled\",\"url\":\"functions/node_context_local.analyticsDisabled.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"alwaysLogAnalytics\",\"url\":\"functions/node_context_local.alwaysLogAnalytics.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"firstPartyDev\",\"url\":\"functions/node_context_local.firstPartyDev.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"useDeviceAuth\",\"url\":\"functions/node_context_local.useDeviceAuth.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"useThemebundling\",\"url\":\"functions/node_context_local.useThemebundling.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"gitpodURL\",\"url\":\"functions/node_context_local.gitpodURL.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"codespaceURL\",\"url\":\"functions/node_context_local.codespaceURL.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"isCloudEnvironment\",\"url\":\"functions/node_context_local.isCloudEnvironment.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"cloudEnvironment\",\"url\":\"functions/node_context_local.cloudEnvironment.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/node_context_local.cloudEnvironment.html#cloudEnvironment.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"node/context/local.cloudEnvironment.cloudEnvironment\"},{\"kind\":1024,\"name\":\"platform\",\"url\":\"functions/node_context_local.cloudEnvironment.html#cloudEnvironment.__type.platform\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/context/local.cloudEnvironment.cloudEnvironment.__type\"},{\"kind\":1024,\"name\":\"editor\",\"url\":\"functions/node_context_local.cloudEnvironment.html#cloudEnvironment.__type.editor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/context/local.cloudEnvironment.cloudEnvironment.__type\"},{\"kind\":64,\"name\":\"hasGit\",\"url\":\"functions/node_context_local.hasGit.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"ciPlatform\",\"url\":\"functions/node_context_local.ciPlatform.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":64,\"name\":\"macAddress\",\"url\":\"functions/node_context_local.macAddress.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":4194304,\"name\":\"CIMetadata\",\"url\":\"types/node_context_local.CIMetadata.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/context/local\"},{\"kind\":2,\"name\":\"node/context/spin\",\"url\":\"modules/node_context_spin.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"spinFqdn\",\"url\":\"functions/node_context_spin.spinFqdn.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/spin\"},{\"kind\":64,\"name\":\"show\",\"url\":\"functions/node_context_spin.show.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/spin\"},{\"kind\":64,\"name\":\"isSpin\",\"url\":\"functions/node_context_spin.isSpin.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/spin\"},{\"kind\":64,\"name\":\"instance\",\"url\":\"functions/node_context_spin.instance.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/spin\"},{\"kind\":64,\"name\":\"isSpinEnvironment\",\"url\":\"functions/node_context_spin.isSpinEnvironment.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/spin\"},{\"kind\":64,\"name\":\"appPort\",\"url\":\"functions/node_context_spin.appPort.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/spin\"},{\"kind\":64,\"name\":\"appHost\",\"url\":\"functions/node_context_spin.appHost.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/context/spin\"},{\"kind\":2,\"name\":\"node/hooks/deprecations\",\"url\":\"modules/node_hooks_deprecations.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"postrun\",\"url\":\"functions/node_hooks_deprecations.postrun.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/hooks/deprecations\"},{\"kind\":2,\"name\":\"node/hooks/postrun\",\"url\":\"modules/node_hooks_postrun.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"hook\",\"url\":\"functions/node_hooks_postrun.hook.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/hooks/postrun\"},{\"kind\":2,\"name\":\"node/hooks/prerun\",\"url\":\"modules/node_hooks_prerun.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"parseCommandContent\",\"url\":\"functions/node_hooks_prerun.parseCommandContent.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/hooks/prerun\"},{\"kind\":256,\"name\":\"CommandContent\",\"url\":\"interfaces/node_hooks_prerun.CommandContent.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/hooks/prerun\"},{\"kind\":1024,\"name\":\"command\",\"url\":\"interfaces/node_hooks_prerun.CommandContent.html#command\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/hooks/prerun.CommandContent\"},{\"kind\":1024,\"name\":\"topic\",\"url\":\"interfaces/node_hooks_prerun.CommandContent.html#topic\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/hooks/prerun.CommandContent\"},{\"kind\":1024,\"name\":\"alias\",\"url\":\"interfaces/node_hooks_prerun.CommandContent.html#alias\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/hooks/prerun.CommandContent\"},{\"kind\":64,\"name\":\"hook\",\"url\":\"functions/node_hooks_prerun.hook.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/hooks/prerun\"},{\"kind\":2,\"name\":\"node/plugins/tunnel\",\"url\":\"modules/node_plugins_tunnel.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"TunnelErrorType\",\"url\":\"types/node_plugins_tunnel.TunnelErrorType.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":256,\"name\":\"TunnelClient\",\"url\":\"interfaces/node_plugins_tunnel.TunnelClient.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":1024,\"name\":\"getTunnelStatus\",\"url\":\"interfaces/node_plugins_tunnel.TunnelClient.html#getTunnelStatus\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins/tunnel.TunnelClient\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins_tunnel.TunnelClient.html#getTunnelStatus.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins/tunnel.TunnelClient.getTunnelStatus\"},{\"kind\":1024,\"name\":\"stopTunnel\",\"url\":\"interfaces/node_plugins_tunnel.TunnelClient.html#stopTunnel\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins/tunnel.TunnelClient\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins_tunnel.TunnelClient.html#stopTunnel.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins/tunnel.TunnelClient.stopTunnel\"},{\"kind\":1024,\"name\":\"provider\",\"url\":\"interfaces/node_plugins_tunnel.TunnelClient.html#provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins/tunnel.TunnelClient\"},{\"kind\":1024,\"name\":\"port\",\"url\":\"interfaces/node_plugins_tunnel.TunnelClient.html#port\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins/tunnel.TunnelClient\"},{\"kind\":4194304,\"name\":\"TunnelStatusType\",\"url\":\"types/node_plugins_tunnel.TunnelStatusType.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":128,\"name\":\"TunnelError\",\"url\":\"classes/node_plugins_tunnel.TunnelError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_plugins_tunnel.TunnelError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/plugins/tunnel.TunnelError\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/node_plugins_tunnel.TunnelError.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/plugins/tunnel.TunnelError\"},{\"kind\":256,\"name\":\"HookReturnPerTunnelPlugin\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":1024,\"name\":\"tunnel_start\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_start\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_start.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_start\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_start.__type-4.options-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_start.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_start.__type-4.options-1.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_start.__type.options\"},{\"kind\":1024,\"name\":\"port\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_start.__type-4.options-1.__type-5.port\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_start.__type.options.__type\"},{\"kind\":1024,\"name\":\"provider\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_start.__type-4.options-1.__type-5.provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_start.__type.options.__type\"},{\"kind\":1024,\"name\":\"pluginReturns\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_start.__type-4.pluginReturns-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_start.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_start.__type-4.pluginReturns-1.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_start.__type.pluginReturns\"},{\"kind\":1024,\"name\":\"tunnel_provider\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_provider.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_provider\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_provider.__type.options\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_provider.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_provider.__type.options.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_provider.__type.options\"},{\"kind\":1024,\"name\":\"pluginReturns\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_provider.__type.pluginReturns\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_provider.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_provider.__type.pluginReturns.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_provider.__type.pluginReturns\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_provider.__type.pluginReturns.__type-2.__index-1.__type-3\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_provider.__type.pluginReturns.__type.__index\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/node_plugins_tunnel.HookReturnPerTunnelPlugin.html#tunnel_provider.__type.pluginReturns.__type-2.__index-1.__type-3.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/plugins/tunnel.HookReturnPerTunnelPlugin.tunnel_provider.__type.pluginReturns.__type.__index.__type\"},{\"kind\":4194304,\"name\":\"TunnelProviderFunction\",\"url\":\"types/node_plugins_tunnel.TunnelProviderFunction.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":4194304,\"name\":\"TunnelStartFunction\",\"url\":\"types/node_plugins_tunnel.TunnelStartFunction.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":4194304,\"name\":\"TunnelStartReturn\",\"url\":\"types/node_plugins_tunnel.TunnelStartReturn.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":4194304,\"name\":\"TunnelStartAction\",\"url\":\"types/node_plugins_tunnel.TunnelStartAction.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/node_plugins_tunnel.TunnelStartAction.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"node/plugins/tunnel.TunnelStartAction\"},{\"kind\":64,\"name\":\"defineProvider\",\"url\":\"functions/node_plugins_tunnel.defineProvider.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":64,\"name\":\"startTunnel\",\"url\":\"functions/node_plugins_tunnel.startTunnel.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/plugins/tunnel\"},{\"kind\":2,\"name\":\"node/testing/output\",\"url\":\"modules/node_testing_output.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"mockAndCaptureOutput\",\"url\":\"functions/node_testing_output.mockAndCaptureOutput.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/testing/output\"},{\"kind\":2,\"name\":\"node/themes/conf\",\"url\":\"modules/node_themes_conf.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"hostThemeLocalStorage\",\"url\":\"functions/node_themes_conf.hostThemeLocalStorage.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/conf\"},{\"kind\":64,\"name\":\"getHostTheme\",\"url\":\"functions/node_themes_conf.getHostTheme.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/conf\"},{\"kind\":64,\"name\":\"setHostTheme\",\"url\":\"functions/node_themes_conf.setHostTheme.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/conf\"},{\"kind\":64,\"name\":\"removeHostTheme\",\"url\":\"functions/node_themes_conf.removeHostTheme.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/conf\"},{\"kind\":2,\"name\":\"node/themes/theme-manager\",\"url\":\"modules/node_themes_theme_manager.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"ThemeManager\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/themes/theme-manager\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/themes/theme-manager.ThemeManager\"},{\"kind\":1024,\"name\":\"themeId\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html#themeId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/themes/theme-manager.ThemeManager\"},{\"kind\":2048,\"name\":\"setTheme\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html#setTheme\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/themes/theme-manager.ThemeManager\"},{\"kind\":2048,\"name\":\"removeTheme\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html#removeTheme\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/themes/theme-manager.ThemeManager\"},{\"kind\":1024,\"name\":\"context\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html#context\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/themes/theme-manager.ThemeManager\"},{\"kind\":1024,\"name\":\"adminSession\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html#adminSession\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"node/themes/theme-manager.ThemeManager\"},{\"kind\":2048,\"name\":\"findOrCreate\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html#findOrCreate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/themes/theme-manager.ThemeManager\"},{\"kind\":2048,\"name\":\"fetch\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html#fetch\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"node/themes/theme-manager.ThemeManager\"},{\"kind\":2048,\"name\":\"create\",\"url\":\"classes/node_themes_theme_manager.ThemeManager.html#create\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"node/themes/theme-manager.ThemeManager\"},{\"kind\":2,\"name\":\"node/themes/theme-urls\",\"url\":\"modules/node_themes_theme_urls.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"themePreviewUrl\",\"url\":\"functions/node_themes_theme_urls.themePreviewUrl.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/theme-urls\"},{\"kind\":64,\"name\":\"themeEditorUrl\",\"url\":\"functions/node_themes_theme_urls.themeEditorUrl.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/theme-urls\"},{\"kind\":64,\"name\":\"storeAdminUrl\",\"url\":\"functions/node_themes_theme_urls.storeAdminUrl.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/theme-urls\"},{\"kind\":2,\"name\":\"node/themes/themes-api\",\"url\":\"modules/node_themes_themes_api.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"fetchTheme\",\"url\":\"functions/node_themes_themes_api.fetchTheme.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/themes-api\"},{\"kind\":64,\"name\":\"fetchThemes\",\"url\":\"functions/node_themes_themes_api.fetchThemes.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/themes-api\"},{\"kind\":64,\"name\":\"createTheme\",\"url\":\"functions/node_themes_themes_api.createTheme.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/themes-api\"},{\"kind\":64,\"name\":\"updateTheme\",\"url\":\"functions/node_themes_themes_api.updateTheme.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/themes-api\"},{\"kind\":64,\"name\":\"publishTheme\",\"url\":\"functions/node_themes_themes_api.publishTheme.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/themes-api\"},{\"kind\":64,\"name\":\"deleteTheme\",\"url\":\"functions/node_themes_themes_api.deleteTheme.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"node/themes/themes-api\"},{\"kind\":4194304,\"name\":\"ThemeParams\",\"url\":\"types/node_themes_themes_api.ThemeParams.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/themes/themes-api\"},{\"kind\":2,\"name\":\"node/themes/models/theme\",\"url\":\"modules/node_themes_models_theme.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":32,\"name\":\"DEVELOPMENT_THEME_ROLE\",\"url\":\"variables/node_themes_models_theme.DEVELOPMENT_THEME_ROLE.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"node/themes/models/theme\"},{\"kind\":128,\"name\":\"Theme\",\"url\":\"classes/node_themes_models_theme.Theme.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"node/themes/models/theme\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/node_themes_models_theme.Theme.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"node/themes/models/theme.Theme\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"classes/node_themes_models_theme.Theme.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/themes/models/theme.Theme\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"classes/node_themes_models_theme.Theme.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/themes/models/theme.Theme\"},{\"kind\":1024,\"name\":\"_role\",\"url\":\"classes/node_themes_models_theme.Theme.html#_role\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"node/themes/models/theme.Theme\"},{\"kind\":1024,\"name\":\"createdAtRuntime\",\"url\":\"classes/node_themes_models_theme.Theme.html#createdAtRuntime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"node/themes/models/theme.Theme\"},{\"kind\":262144,\"name\":\"role\",\"url\":\"classes/node_themes_models_theme.Theme.html#role\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"node/themes/models/theme.Theme\"},{\"kind\":262144,\"name\":\"hasDevelopmentRole\",\"url\":\"classes/node_themes_models_theme.Theme.html#hasDevelopmentRole\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"node/themes/models/theme.Theme\"},{\"kind\":8388608,\"name\":\"DeepRequired\",\"url\":\"modules/node_monorail.html#DeepRequired\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"node/monorail\"},{\"kind\":256,\"name\":\"Task\",\"url\":\"interfaces/node_ui.Task.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/node_ui.Task.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.Task\"},{\"kind\":1024,\"name\":\"task\",\"url\":\"interfaces/node_ui.Task.html#task\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.Task\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_ui.Task.html#task.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/ui.Task.task\"},{\"kind\":1024,\"name\":\"retry\",\"url\":\"interfaces/node_ui.Task.html#retry\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.Task\"},{\"kind\":1024,\"name\":\"retryCount\",\"url\":\"interfaces/node_ui.Task.html#retryCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.Task\"},{\"kind\":1024,\"name\":\"errors\",\"url\":\"interfaces/node_ui.Task.html#errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.Task\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"interfaces/node_ui.Task.html#skip\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.Task\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_ui.Task.html#skip.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/ui.Task.skip\"},{\"kind\":4194304,\"name\":\"TokenItem\",\"url\":\"types/node_ui.TokenItem.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":4194304,\"name\":\"InlineToken\",\"url\":\"types/node_ui.InlineToken.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":256,\"name\":\"LinkToken\",\"url\":\"interfaces/node_ui.LinkToken.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":1024,\"name\":\"link\",\"url\":\"interfaces/node_ui.LinkToken.html#link\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.LinkToken\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_ui.LinkToken.html#link.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/ui.LinkToken.link\"},{\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/node_ui.LinkToken.html#link.__type.label\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/ui.LinkToken.link.__type\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/node_ui.LinkToken.html#link.__type.url\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/ui.LinkToken.link.__type\"},{\"kind\":4194304,\"name\":\"TableColumn\",\"url\":\"types/node_ui.TableColumn.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":256,\"name\":\"InfoTableSection\",\"url\":\"interfaces/node_ui.InfoTableSection.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":1024,\"name\":\"color\",\"url\":\"interfaces/node_ui.InfoTableSection.html#color\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.InfoTableSection\"},{\"kind\":1024,\"name\":\"header\",\"url\":\"interfaces/node_ui.InfoTableSection.html#header\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.InfoTableSection\"},{\"kind\":1024,\"name\":\"helperText\",\"url\":\"interfaces/node_ui.InfoTableSection.html#helperText\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.InfoTableSection\"},{\"kind\":1024,\"name\":\"items\",\"url\":\"interfaces/node_ui.InfoTableSection.html#items\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.InfoTableSection\"},{\"kind\":256,\"name\":\"ListToken\",\"url\":\"interfaces/node_ui.ListToken.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"node/ui\"},{\"kind\":1024,\"name\":\"list\",\"url\":\"interfaces/node_ui.ListToken.html#list\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"node/ui.ListToken\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/node_ui.ListToken.html#list.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"node/ui.ListToken.list\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/node_ui.ListToken.html#list.__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/ui.ListToken.list.__type\"},{\"kind\":1024,\"name\":\"items\",\"url\":\"interfaces/node_ui.ListToken.html#list.__type.items\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/ui.ListToken.list.__type\"},{\"kind\":1024,\"name\":\"ordered\",\"url\":\"interfaces/node_ui.ListToken.html#list.__type.ordered\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"node/ui.ListToken.list.__type\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,63.99]],[\"comment/0\",[]],[\"name/1\",[1,63.99]],[\"comment/1\",[]],[\"name/2\",[2,63.99]],[\"comment/2\",[]],[\"name/3\",[3,63.99]],[\"comment/3\",[]],[\"name/4\",[4,63.99]],[\"comment/4\",[]],[\"name/5\",[5,63.99]],[\"comment/5\",[]],[\"name/6\",[6,63.99]],[\"comment/6\",[]],[\"name/7\",[7,63.99]],[\"comment/7\",[]],[\"name/8\",[8,26.131]],[\"comment/8\",[]],[\"name/9\",[9,63.99]],[\"comment/9\",[]],[\"name/10\",[10,63.99]],[\"comment/10\",[]],[\"name/11\",[11,63.99]],[\"comment/11\",[]],[\"name/12\",[12,63.99]],[\"comment/12\",[]],[\"name/13\",[13,63.99]],[\"comment/13\",[]],[\"name/14\",[14,63.99]],[\"comment/14\",[]],[\"name/15\",[15,63.99]],[\"comment/15\",[]],[\"name/16\",[16,63.99]],[\"comment/16\",[]],[\"name/17\",[17,63.99]],[\"comment/17\",[]],[\"name/18\",[18,63.99]],[\"comment/18\",[]],[\"name/19\",[19,63.99]],[\"comment/19\",[]],[\"name/20\",[20,63.99]],[\"comment/20\",[]],[\"name/21\",[21,63.99]],[\"comment/21\",[]],[\"name/22\",[22,63.99]],[\"comment/22\",[]],[\"name/23\",[23,63.99]],[\"comment/23\",[]],[\"name/24\",[24,63.99]],[\"comment/24\",[]],[\"name/25\",[25,63.99]],[\"comment/25\",[]],[\"name/26\",[26,63.99]],[\"comment/26\",[]],[\"name/27\",[27,63.99]],[\"comment/27\",[]],[\"name/28\",[28,63.99]],[\"comment/28\",[]],[\"name/29\",[29,63.99]],[\"comment/29\",[]],[\"name/30\",[30,63.99]],[\"comment/30\",[]],[\"name/31\",[31,63.99]],[\"comment/31\",[]],[\"name/32\",[32,63.99]],[\"comment/32\",[]],[\"name/33\",[33,63.99]],[\"comment/33\",[]],[\"name/34\",[34,63.99]],[\"comment/34\",[]],[\"name/35\",[35,63.99]],[\"comment/35\",[]],[\"name/36\",[36,63.99]],[\"comment/36\",[]],[\"name/37\",[37,63.99]],[\"comment/37\",[]],[\"name/38\",[38,39.854]],[\"comment/38\",[]],[\"name/39\",[39,49.23]],[\"comment/39\",[]],[\"name/40\",[38,39.854]],[\"comment/40\",[]],[\"name/41\",[40,63.99]],[\"comment/41\",[]],[\"name/42\",[41,63.99]],[\"comment/42\",[]],[\"name/43\",[42,63.99]],[\"comment/43\",[]],[\"name/44\",[43,63.99]],[\"comment/44\",[]],[\"name/45\",[44,45.538,45,37.668]],[\"comment/45\",[]],[\"name/46\",[46,63.99]],[\"comment/46\",[]],[\"name/47\",[47,58.848]],[\"comment/47\",[]],[\"name/48\",[48,63.99]],[\"comment/48\",[]],[\"name/49\",[49,63.99]],[\"comment/49\",[]],[\"name/50\",[50,63.99]],[\"comment/50\",[]],[\"name/51\",[51,63.99]],[\"comment/51\",[]],[\"name/52\",[52,63.99]],[\"comment/52\",[]],[\"name/53\",[53,63.99]],[\"comment/53\",[]],[\"name/54\",[54,63.99]],[\"comment/54\",[]],[\"name/55\",[55,63.99]],[\"comment/55\",[]],[\"name/56\",[56,63.99]],[\"comment/56\",[]],[\"name/57\",[57,63.99]],[\"comment/57\",[]],[\"name/58\",[58,63.99]],[\"comment/58\",[]],[\"name/59\",[59,63.99]],[\"comment/59\",[]],[\"name/60\",[60,63.99]],[\"comment/60\",[]],[\"name/61\",[8,26.131]],[\"comment/61\",[]],[\"name/62\",[61,45.538,62,41.879]],[\"comment/62\",[]],[\"name/63\",[63,63.99]],[\"comment/63\",[]],[\"name/64\",[47,58.848]],[\"comment/64\",[]],[\"name/65\",[64,63.99]],[\"comment/65\",[]],[\"name/66\",[65,63.99]],[\"comment/66\",[]],[\"name/67\",[66,63.99]],[\"comment/67\",[]],[\"name/68\",[67,63.99]],[\"comment/68\",[]],[\"name/69\",[68,63.99]],[\"comment/69\",[]],[\"name/70\",[69,63.99]],[\"comment/70\",[]],[\"name/71\",[70,63.99]],[\"comment/71\",[]],[\"name/72\",[71,63.99]],[\"comment/72\",[]],[\"name/73\",[72,63.99]],[\"comment/73\",[]],[\"name/74\",[73,45.538,74,41.879]],[\"comment/74\",[]],[\"name/75\",[75,63.99]],[\"comment/75\",[]],[\"name/76\",[76,63.99]],[\"comment/76\",[]],[\"name/77\",[77,63.99]],[\"comment/77\",[]],[\"name/78\",[78,63.99]],[\"comment/78\",[]],[\"name/79\",[79,63.99]],[\"comment/79\",[]],[\"name/80\",[80,58.848]],[\"comment/80\",[]],[\"name/81\",[81,58.848]],[\"comment/81\",[]],[\"name/82\",[8,26.131]],[\"comment/82\",[]],[\"name/83\",[82,63.99]],[\"comment/83\",[]],[\"name/84\",[83,63.99]],[\"comment/84\",[]],[\"name/85\",[84,63.99]],[\"comment/85\",[]],[\"name/86\",[85,63.99]],[\"comment/86\",[]],[\"name/87\",[86,63.99]],[\"comment/87\",[]],[\"name/88\",[87,63.99]],[\"comment/88\",[]],[\"name/89\",[88,63.99]],[\"comment/89\",[]],[\"name/90\",[89,63.99]],[\"comment/90\",[]],[\"name/91\",[90,63.99]],[\"comment/91\",[]],[\"name/92\",[91,63.99]],[\"comment/92\",[]],[\"name/93\",[92,41.879,93,41.879]],[\"comment/93\",[]],[\"name/94\",[94,63.99]],[\"comment/94\",[]],[\"name/95\",[95,63.99]],[\"comment/95\",[]],[\"name/96\",[96,63.99]],[\"comment/96\",[]],[\"name/97\",[97,63.99]],[\"comment/97\",[]],[\"name/98\",[98,63.99]],[\"comment/98\",[]],[\"name/99\",[92,58.848]],[\"comment/99\",[]],[\"name/100\",[93,58.848]],[\"comment/100\",[]],[\"name/101\",[99,63.99]],[\"comment/101\",[]],[\"name/102\",[100,63.99]],[\"comment/102\",[]],[\"name/103\",[101,63.99]],[\"comment/103\",[]],[\"name/104\",[102,63.99]],[\"comment/104\",[]],[\"name/105\",[103,63.99]],[\"comment/105\",[]],[\"name/106\",[104,63.99]],[\"comment/106\",[]],[\"name/107\",[105,63.99]],[\"comment/107\",[]],[\"name/108\",[106,63.99]],[\"comment/108\",[]],[\"name/109\",[107,63.99]],[\"comment/109\",[]],[\"name/110\",[38,39.854]],[\"comment/110\",[]],[\"name/111\",[108,47.79]],[\"comment/111\",[]],[\"name/112\",[109,45.411]],[\"comment/112\",[]],[\"name/113\",[110,47.79]],[\"comment/113\",[]],[\"name/114\",[111,47.79]],[\"comment/114\",[]],[\"name/115\",[112,47.79]],[\"comment/115\",[]],[\"name/116\",[113,63.99]],[\"comment/116\",[]],[\"name/117\",[38,39.854]],[\"comment/117\",[]],[\"name/118\",[110,47.79]],[\"comment/118\",[]],[\"name/119\",[112,47.79]],[\"comment/119\",[]],[\"name/120\",[108,47.79]],[\"comment/120\",[]],[\"name/121\",[109,45.411]],[\"comment/121\",[]],[\"name/122\",[111,47.79]],[\"comment/122\",[]],[\"name/123\",[114,63.99]],[\"comment/123\",[]],[\"name/124\",[38,39.854]],[\"comment/124\",[]],[\"name/125\",[45,52.932]],[\"comment/125\",[]],[\"name/126\",[115,58.848]],[\"comment/126\",[]],[\"name/127\",[108,47.79]],[\"comment/127\",[]],[\"name/128\",[109,45.411]],[\"comment/128\",[]],[\"name/129\",[110,47.79]],[\"comment/129\",[]],[\"name/130\",[111,47.79]],[\"comment/130\",[]],[\"name/131\",[112,47.79]],[\"comment/131\",[]],[\"name/132\",[116,63.99]],[\"comment/132\",[]],[\"name/133\",[38,39.854]],[\"comment/133\",[]],[\"name/134\",[108,47.79]],[\"comment/134\",[]],[\"name/135\",[109,45.411]],[\"comment/135\",[]],[\"name/136\",[110,47.79]],[\"comment/136\",[]],[\"name/137\",[111,47.79]],[\"comment/137\",[]],[\"name/138\",[112,47.79]],[\"comment/138\",[]],[\"name/139\",[117,63.99]],[\"comment/139\",[]],[\"name/140\",[38,39.854]],[\"comment/140\",[]],[\"name/141\",[108,47.79]],[\"comment/141\",[]],[\"name/142\",[109,45.411]],[\"comment/142\",[]],[\"name/143\",[110,47.79]],[\"comment/143\",[]],[\"name/144\",[111,47.79]],[\"comment/144\",[]],[\"name/145\",[112,47.79]],[\"comment/145\",[]],[\"name/146\",[118,63.99]],[\"comment/146\",[]],[\"name/147\",[119,63.99]],[\"comment/147\",[]],[\"name/148\",[120,63.99]],[\"comment/148\",[]],[\"name/149\",[121,63.99]],[\"comment/149\",[]],[\"name/150\",[122,63.99]],[\"comment/150\",[]],[\"name/151\",[123,63.99]],[\"comment/151\",[]],[\"name/152\",[124,63.99]],[\"comment/152\",[]],[\"name/153\",[125,63.99]],[\"comment/153\",[]],[\"name/154\",[126,63.99]],[\"comment/154\",[]],[\"name/155\",[127,63.99]],[\"comment/155\",[]],[\"name/156\",[128,63.99]],[\"comment/156\",[]],[\"name/157\",[129,63.99]],[\"comment/157\",[]],[\"name/158\",[130,63.99]],[\"comment/158\",[]],[\"name/159\",[131,63.99]],[\"comment/159\",[]],[\"name/160\",[132,63.99]],[\"comment/160\",[]],[\"name/161\",[133,63.99]],[\"comment/161\",[]],[\"name/162\",[134,63.99]],[\"comment/162\",[]],[\"name/163\",[135,63.99]],[\"comment/163\",[]],[\"name/164\",[136,63.99]],[\"comment/164\",[]],[\"name/165\",[137,63.99]],[\"comment/165\",[]],[\"name/166\",[138,63.99]],[\"comment/166\",[]],[\"name/167\",[139,63.99]],[\"comment/167\",[]],[\"name/168\",[140,63.99]],[\"comment/168\",[]],[\"name/169\",[141,63.99]],[\"comment/169\",[]],[\"name/170\",[142,63.99]],[\"comment/170\",[]],[\"name/171\",[143,63.99]],[\"comment/171\",[]],[\"name/172\",[144,63.99]],[\"comment/172\",[]],[\"name/173\",[145,63.99]],[\"comment/173\",[]],[\"name/174\",[146,63.99]],[\"comment/174\",[]],[\"name/175\",[147,63.99]],[\"comment/175\",[]],[\"name/176\",[148,63.99]],[\"comment/176\",[]],[\"name/177\",[149,63.99]],[\"comment/177\",[]],[\"name/178\",[150,63.99]],[\"comment/178\",[]],[\"name/179\",[151,63.99]],[\"comment/179\",[]],[\"name/180\",[152,63.99]],[\"comment/180\",[]],[\"name/181\",[153,63.99]],[\"comment/181\",[]],[\"name/182\",[154,63.99]],[\"comment/182\",[]],[\"name/183\",[155,63.99]],[\"comment/183\",[]],[\"name/184\",[156,63.99]],[\"comment/184\",[]],[\"name/185\",[157,63.99]],[\"comment/185\",[]],[\"name/186\",[158,63.99]],[\"comment/186\",[]],[\"name/187\",[159,63.99]],[\"comment/187\",[]],[\"name/188\",[160,63.99]],[\"comment/188\",[]],[\"name/189\",[161,63.99]],[\"comment/189\",[]],[\"name/190\",[162,63.99]],[\"comment/190\",[]],[\"name/191\",[163,63.99]],[\"comment/191\",[]],[\"name/192\",[164,63.99]],[\"comment/192\",[]],[\"name/193\",[165,63.99]],[\"comment/193\",[]],[\"name/194\",[166,63.99]],[\"comment/194\",[]],[\"name/195\",[167,63.99]],[\"comment/195\",[]],[\"name/196\",[168,63.99]],[\"comment/196\",[]],[\"name/197\",[169,63.99]],[\"comment/197\",[]],[\"name/198\",[170,63.99]],[\"comment/198\",[]],[\"name/199\",[171,63.99]],[\"comment/199\",[]],[\"name/200\",[172,63.99]],[\"comment/200\",[]],[\"name/201\",[173,63.99]],[\"comment/201\",[]],[\"name/202\",[174,63.99]],[\"comment/202\",[]],[\"name/203\",[175,63.99]],[\"comment/203\",[]],[\"name/204\",[8,26.131]],[\"comment/204\",[]],[\"name/205\",[176,63.99]],[\"comment/205\",[]],[\"name/206\",[177,63.99]],[\"comment/206\",[]],[\"name/207\",[178,63.99]],[\"comment/207\",[]],[\"name/208\",[179,63.99]],[\"comment/208\",[]],[\"name/209\",[180,58.848]],[\"comment/209\",[]],[\"name/210\",[181,63.99]],[\"comment/210\",[]],[\"name/211\",[38,39.854]],[\"comment/211\",[]],[\"name/212\",[110,47.79]],[\"comment/212\",[]],[\"name/213\",[112,47.79]],[\"comment/213\",[]],[\"name/214\",[108,47.79]],[\"comment/214\",[]],[\"name/215\",[109,45.411]],[\"comment/215\",[]],[\"name/216\",[111,47.79]],[\"comment/216\",[]],[\"name/217\",[182,63.99]],[\"comment/217\",[]],[\"name/218\",[38,39.854]],[\"comment/218\",[]],[\"name/219\",[110,47.79]],[\"comment/219\",[]],[\"name/220\",[112,47.79]],[\"comment/220\",[]],[\"name/221\",[108,47.79]],[\"comment/221\",[]],[\"name/222\",[109,45.411]],[\"comment/222\",[]],[\"name/223\",[111,47.79]],[\"comment/223\",[]],[\"name/224\",[183,63.99]],[\"comment/224\",[]],[\"name/225\",[184,63.99]],[\"comment/225\",[]],[\"name/226\",[185,63.99]],[\"comment/226\",[]],[\"name/227\",[186,63.99]],[\"comment/227\",[]],[\"name/228\",[187,63.99]],[\"comment/228\",[]],[\"name/229\",[188,58.848]],[\"comment/229\",[]],[\"name/230\",[189,55.461]],[\"comment/230\",[]],[\"name/231\",[190,63.99]],[\"comment/231\",[]],[\"name/232\",[191,49.23]],[\"comment/232\",[]],[\"name/233\",[192,63.99]],[\"comment/233\",[]],[\"name/234\",[193,63.99]],[\"comment/234\",[]],[\"name/235\",[194,63.99]],[\"comment/235\",[]],[\"name/236\",[195,63.99]],[\"comment/236\",[]],[\"name/237\",[196,63.99]],[\"comment/237\",[]],[\"name/238\",[197,63.99]],[\"comment/238\",[]],[\"name/239\",[198,63.99]],[\"comment/239\",[]],[\"name/240\",[199,63.99]],[\"comment/240\",[]],[\"name/241\",[200,63.99]],[\"comment/241\",[]],[\"name/242\",[201,63.99]],[\"comment/242\",[]],[\"name/243\",[202,63.99]],[\"comment/243\",[]],[\"name/244\",[203,63.99]],[\"comment/244\",[]],[\"name/245\",[204,58.848]],[\"comment/245\",[]],[\"name/246\",[205,63.99]],[\"comment/246\",[]],[\"name/247\",[206,63.99]],[\"comment/247\",[]],[\"name/248\",[207,63.99]],[\"comment/248\",[]],[\"name/249\",[208,63.99]],[\"comment/249\",[]],[\"name/250\",[209,63.99]],[\"comment/250\",[]],[\"name/251\",[210,63.99]],[\"comment/251\",[]],[\"name/252\",[211,45.538,212,45.538]],[\"comment/252\",[]],[\"name/253\",[213,63.99]],[\"comment/253\",[]],[\"name/254\",[38,39.854]],[\"comment/254\",[]],[\"name/255\",[214,63.99]],[\"comment/255\",[]],[\"name/256\",[215,63.99]],[\"comment/256\",[]],[\"name/257\",[216,63.99]],[\"comment/257\",[]],[\"name/258\",[217,63.99]],[\"comment/258\",[]],[\"name/259\",[218,63.99]],[\"comment/259\",[]],[\"name/260\",[219,63.99]],[\"comment/260\",[]],[\"name/261\",[220,63.99]],[\"comment/261\",[]],[\"name/262\",[221,63.99]],[\"comment/262\",[]],[\"name/263\",[222,58.848]],[\"comment/263\",[]],[\"name/264\",[8,26.131]],[\"comment/264\",[]],[\"name/265\",[223,58.848]],[\"comment/265\",[]],[\"name/266\",[8,26.131]],[\"comment/266\",[]],[\"name/267\",[224,58.848]],[\"comment/267\",[]],[\"name/268\",[8,26.131]],[\"comment/268\",[]],[\"name/269\",[225,58.848]],[\"comment/269\",[]],[\"name/270\",[8,26.131]],[\"comment/270\",[]],[\"name/271\",[226,63.99]],[\"comment/271\",[]],[\"name/272\",[227,63.99]],[\"comment/272\",[]],[\"name/273\",[224,58.848]],[\"comment/273\",[]],[\"name/274\",[225,58.848]],[\"comment/274\",[]],[\"name/275\",[222,58.848]],[\"comment/275\",[]],[\"name/276\",[223,58.848]],[\"comment/276\",[]],[\"name/277\",[228,55.461]],[\"comment/277\",[]],[\"name/278\",[229,55.461]],[\"comment/278\",[]],[\"name/279\",[230,63.99]],[\"comment/279\",[]],[\"name/280\",[231,63.99]],[\"comment/280\",[]],[\"name/281\",[232,63.99]],[\"comment/281\",[]],[\"name/282\",[233,63.99]],[\"comment/282\",[]],[\"name/283\",[234,63.99]],[\"comment/283\",[]],[\"name/284\",[235,63.99]],[\"comment/284\",[]],[\"name/285\",[236,63.99]],[\"comment/285\",[]],[\"name/286\",[237,63.99]],[\"comment/286\",[]],[\"name/287\",[8,26.131]],[\"comment/287\",[]],[\"name/288\",[229,55.461]],[\"comment/288\",[]],[\"name/289\",[8,26.131]],[\"comment/289\",[]],[\"name/290\",[115,58.848]],[\"comment/290\",[]],[\"name/291\",[238,63.99]],[\"comment/291\",[]],[\"name/292\",[239,63.99]],[\"comment/292\",[]],[\"name/293\",[240,63.99]],[\"comment/293\",[]],[\"name/294\",[241,63.99]],[\"comment/294\",[]],[\"name/295\",[242,63.99]],[\"comment/295\",[]],[\"name/296\",[243,63.99]],[\"comment/296\",[]],[\"name/297\",[244,63.99]],[\"comment/297\",[]],[\"name/298\",[228,55.461]],[\"comment/298\",[]],[\"name/299\",[8,26.131]],[\"comment/299\",[]],[\"name/300\",[245,63.99]],[\"comment/300\",[]],[\"name/301\",[45,52.932]],[\"comment/301\",[]],[\"name/302\",[246,63.99]],[\"comment/302\",[]],[\"name/303\",[247,63.99]],[\"comment/303\",[]],[\"name/304\",[248,63.99]],[\"comment/304\",[]],[\"name/305\",[249,63.99]],[\"comment/305\",[]],[\"name/306\",[250,63.99]],[\"comment/306\",[]],[\"name/307\",[251,63.99]],[\"comment/307\",[]],[\"name/308\",[252,63.99]],[\"comment/308\",[]],[\"name/309\",[253,63.99]],[\"comment/309\",[]],[\"name/310\",[254,63.99]],[\"comment/310\",[]],[\"name/311\",[255,63.99]],[\"comment/311\",[]],[\"name/312\",[256,63.99]],[\"comment/312\",[]],[\"name/313\",[257,63.99]],[\"comment/313\",[]],[\"name/314\",[258,63.99]],[\"comment/314\",[]],[\"name/315\",[259,63.99]],[\"comment/315\",[]],[\"name/316\",[260,63.99]],[\"comment/316\",[]],[\"name/317\",[261,63.99]],[\"comment/317\",[]],[\"name/318\",[262,63.99]],[\"comment/318\",[]],[\"name/319\",[263,63.99]],[\"comment/319\",[]],[\"name/320\",[264,63.99]],[\"comment/320\",[]],[\"name/321\",[265,63.99]],[\"comment/321\",[]],[\"name/322\",[266,63.99]],[\"comment/322\",[]],[\"name/323\",[267,63.99]],[\"comment/323\",[]],[\"name/324\",[268,63.99]],[\"comment/324\",[]],[\"name/325\",[269,63.99]],[\"comment/325\",[]],[\"name/326\",[270,63.99]],[\"comment/326\",[]],[\"name/327\",[271,63.99]],[\"comment/327\",[]],[\"name/328\",[272,63.99]],[\"comment/328\",[]],[\"name/329\",[273,63.99]],[\"comment/329\",[]],[\"name/330\",[274,63.99]],[\"comment/330\",[]],[\"name/331\",[275,63.99]],[\"comment/331\",[]],[\"name/332\",[276,63.99]],[\"comment/332\",[]],[\"name/333\",[277,63.99]],[\"comment/333\",[]],[\"name/334\",[278,63.99]],[\"comment/334\",[]],[\"name/335\",[279,63.99]],[\"comment/335\",[]],[\"name/336\",[280,63.99]],[\"comment/336\",[]],[\"name/337\",[281,63.99]],[\"comment/337\",[]],[\"name/338\",[282,63.99]],[\"comment/338\",[]],[\"name/339\",[283,63.99]],[\"comment/339\",[]],[\"name/340\",[284,63.99]],[\"comment/340\",[]],[\"name/341\",[285,63.99]],[\"comment/341\",[]],[\"name/342\",[286,63.99]],[\"comment/342\",[]],[\"name/343\",[287,63.99]],[\"comment/343\",[]],[\"name/344\",[288,63.99]],[\"comment/344\",[]],[\"name/345\",[289,63.99]],[\"comment/345\",[]],[\"name/346\",[290,63.99]],[\"comment/346\",[]],[\"name/347\",[291,63.99]],[\"comment/347\",[]],[\"name/348\",[292,63.99]],[\"comment/348\",[]],[\"name/349\",[293,63.99]],[\"comment/349\",[]],[\"name/350\",[294,63.99]],[\"comment/350\",[]],[\"name/351\",[295,63.99]],[\"comment/351\",[]],[\"name/352\",[296,63.99]],[\"comment/352\",[]],[\"name/353\",[297,63.99]],[\"comment/353\",[]],[\"name/354\",[298,63.99]],[\"comment/354\",[]],[\"name/355\",[299,63.99]],[\"comment/355\",[]],[\"name/356\",[300,63.99]],[\"comment/356\",[]],[\"name/357\",[301,63.99]],[\"comment/357\",[]],[\"name/358\",[302,63.99]],[\"comment/358\",[]],[\"name/359\",[303,63.99]],[\"comment/359\",[]],[\"name/360\",[304,63.99]],[\"comment/360\",[]],[\"name/361\",[305,63.99]],[\"comment/361\",[]],[\"name/362\",[306,63.99]],[\"comment/362\",[]],[\"name/363\",[307,63.99]],[\"comment/363\",[]],[\"name/364\",[308,63.99]],[\"comment/364\",[]],[\"name/365\",[309,63.99]],[\"comment/365\",[]],[\"name/366\",[310,63.99]],[\"comment/366\",[]],[\"name/367\",[311,63.99]],[\"comment/367\",[]],[\"name/368\",[8,26.131]],[\"comment/368\",[]],[\"name/369\",[229,55.461]],[\"comment/369\",[]],[\"name/370\",[228,55.461]],[\"comment/370\",[]],[\"name/371\",[312,63.99]],[\"comment/371\",[]],[\"name/372\",[313,63.99]],[\"comment/372\",[]],[\"name/373\",[314,35.345,315,35.345,316,32.505]],[\"comment/373\",[]],[\"name/374\",[317,63.99]],[\"comment/374\",[]],[\"name/375\",[318,63.99]],[\"comment/375\",[]],[\"name/376\",[319,63.99]],[\"comment/376\",[]],[\"name/377\",[320,63.99]],[\"comment/377\",[]],[\"name/378\",[321,63.99]],[\"comment/378\",[]],[\"name/379\",[322,63.99]],[\"comment/379\",[]],[\"name/380\",[323,63.99]],[\"comment/380\",[]],[\"name/381\",[324,63.99]],[\"comment/381\",[]],[\"name/382\",[325,63.99]],[\"comment/382\",[]],[\"name/383\",[326,63.99]],[\"comment/383\",[]],[\"name/384\",[327,63.99]],[\"comment/384\",[]],[\"name/385\",[328,63.99]],[\"comment/385\",[]],[\"name/386\",[329,63.99]],[\"comment/386\",[]],[\"name/387\",[330,63.99]],[\"comment/387\",[]],[\"name/388\",[331,63.99]],[\"comment/388\",[]],[\"name/389\",[332,63.99]],[\"comment/389\",[]],[\"name/390\",[333,63.99]],[\"comment/390\",[]],[\"name/391\",[334,63.99]],[\"comment/391\",[]],[\"name/392\",[335,63.99]],[\"comment/392\",[]],[\"name/393\",[336,63.99]],[\"comment/393\",[]],[\"name/394\",[337,63.99]],[\"comment/394\",[]],[\"name/395\",[338,63.99]],[\"comment/395\",[]],[\"name/396\",[339,58.848]],[\"comment/396\",[]],[\"name/397\",[339,58.848]],[\"comment/397\",[]],[\"name/398\",[340,63.99]],[\"comment/398\",[]],[\"name/399\",[341,63.99]],[\"comment/399\",[]],[\"name/400\",[342,63.99]],[\"comment/400\",[]],[\"name/401\",[191,49.23]],[\"comment/401\",[]],[\"name/402\",[180,58.848]],[\"comment/402\",[]],[\"name/403\",[343,55.461]],[\"comment/403\",[]],[\"name/404\",[344,63.99]],[\"comment/404\",[]],[\"name/405\",[8,26.131]],[\"comment/405\",[]],[\"name/406\",[345,63.99]],[\"comment/406\",[]],[\"name/407\",[8,26.131]],[\"comment/407\",[]],[\"name/408\",[346,63.99]],[\"comment/408\",[]],[\"name/409\",[8,26.131]],[\"comment/409\",[]],[\"name/410\",[347,63.99]],[\"comment/410\",[]],[\"name/411\",[8,26.131]],[\"comment/411\",[]],[\"name/412\",[348,63.99]],[\"comment/412\",[]],[\"name/413\",[8,26.131]],[\"comment/413\",[]],[\"name/414\",[349,63.99]],[\"comment/414\",[]],[\"name/415\",[350,63.99]],[\"comment/415\",[]],[\"name/416\",[351,63.99]],[\"comment/416\",[]],[\"name/417\",[8,26.131]],[\"comment/417\",[]],[\"name/418\",[352,63.99]],[\"comment/418\",[]],[\"name/419\",[8,26.131]],[\"comment/419\",[]],[\"name/420\",[353,63.99]],[\"comment/420\",[]],[\"name/421\",[354,63.99]],[\"comment/421\",[]],[\"name/422\",[355,63.99]],[\"comment/422\",[]],[\"name/423\",[191,49.23]],[\"comment/423\",[]],[\"name/424\",[343,55.461]],[\"comment/424\",[]],[\"name/425\",[356,63.99]],[\"comment/425\",[]],[\"name/426\",[357,63.99]],[\"comment/426\",[]],[\"name/427\",[358,63.99]],[\"comment/427\",[]],[\"name/428\",[8,26.131]],[\"comment/428\",[]],[\"name/429\",[359,55.461]],[\"comment/429\",[]],[\"name/430\",[360,63.99]],[\"comment/430\",[]],[\"name/431\",[361,63.99]],[\"comment/431\",[]],[\"name/432\",[362,63.99]],[\"comment/432\",[]],[\"name/433\",[363,63.99]],[\"comment/433\",[]],[\"name/434\",[364,63.99]],[\"comment/434\",[]],[\"name/435\",[365,63.99]],[\"comment/435\",[]],[\"name/436\",[366,63.99]],[\"comment/436\",[]],[\"name/437\",[367,63.99]],[\"comment/437\",[]],[\"name/438\",[368,63.99]],[\"comment/438\",[]],[\"name/439\",[369,63.99]],[\"comment/439\",[]],[\"name/440\",[370,63.99]],[\"comment/440\",[]],[\"name/441\",[371,63.99]],[\"comment/441\",[]],[\"name/442\",[372,63.99]],[\"comment/442\",[]],[\"name/443\",[373,63.99]],[\"comment/443\",[]],[\"name/444\",[374,63.99]],[\"comment/444\",[]],[\"name/445\",[375,63.99]],[\"comment/445\",[]],[\"name/446\",[376,63.99]],[\"comment/446\",[]],[\"name/447\",[377,63.99]],[\"comment/447\",[]],[\"name/448\",[378,63.99]],[\"comment/448\",[]],[\"name/449\",[379,63.99]],[\"comment/449\",[]],[\"name/450\",[380,63.99]],[\"comment/450\",[]],[\"name/451\",[381,63.99]],[\"comment/451\",[]],[\"name/452\",[38,39.854]],[\"comment/452\",[]],[\"name/453\",[382,58.848]],[\"comment/453\",[]],[\"name/454\",[383,63.99]],[\"comment/454\",[]],[\"name/455\",[384,63.99]],[\"comment/455\",[]],[\"name/456\",[8,26.131]],[\"comment/456\",[]],[\"name/457\",[385,63.99]],[\"comment/457\",[]],[\"name/458\",[386,63.99]],[\"comment/458\",[]],[\"name/459\",[387,58.848]],[\"comment/459\",[]],[\"name/460\",[80,58.848]],[\"comment/460\",[]],[\"name/461\",[388,58.848]],[\"comment/461\",[]],[\"name/462\",[389,63.99]],[\"comment/462\",[]],[\"name/463\",[390,63.99]],[\"comment/463\",[]],[\"name/464\",[391,63.99]],[\"comment/464\",[]],[\"name/465\",[392,63.99]],[\"comment/465\",[]],[\"name/466\",[393,63.99]],[\"comment/466\",[]],[\"name/467\",[394,63.99]],[\"comment/467\",[]],[\"name/468\",[395,63.99]],[\"comment/468\",[]],[\"name/469\",[396,63.99]],[\"comment/469\",[]],[\"name/470\",[397,63.99]],[\"comment/470\",[]],[\"name/471\",[398,63.99]],[\"comment/471\",[]],[\"name/472\",[399,63.99]],[\"comment/472\",[]],[\"name/473\",[400,63.99]],[\"comment/473\",[]],[\"name/474\",[401,63.99]],[\"comment/474\",[]],[\"name/475\",[402,63.99]],[\"comment/475\",[]],[\"name/476\",[8,26.131]],[\"comment/476\",[]],[\"name/477\",[403,63.99]],[\"comment/477\",[]],[\"name/478\",[404,63.99]],[\"comment/478\",[]],[\"name/479\",[405,58.848]],[\"comment/479\",[]],[\"name/480\",[406,63.99]],[\"comment/480\",[]],[\"name/481\",[8,26.131]],[\"comment/481\",[]],[\"name/482\",[407,63.99]],[\"comment/482\",[]],[\"name/483\",[408,63.99]],[\"comment/483\",[]],[\"name/484\",[409,63.99]],[\"comment/484\",[]],[\"name/485\",[410,63.99]],[\"comment/485\",[]],[\"name/486\",[411,63.99]],[\"comment/486\",[]],[\"name/487\",[412,63.99]],[\"comment/487\",[]],[\"name/488\",[413,63.99]],[\"comment/488\",[]],[\"name/489\",[414,63.99]],[\"comment/489\",[]],[\"name/490\",[415,63.99]],[\"comment/490\",[]],[\"name/491\",[416,63.99]],[\"comment/491\",[]],[\"name/492\",[417,63.99]],[\"comment/492\",[]],[\"name/493\",[418,58.848]],[\"comment/493\",[]],[\"name/494\",[419,63.99]],[\"comment/494\",[]],[\"name/495\",[420,63.99]],[\"comment/495\",[]],[\"name/496\",[421,63.99]],[\"comment/496\",[]],[\"name/497\",[422,63.99]],[\"comment/497\",[]],[\"name/498\",[423,63.99]],[\"comment/498\",[]],[\"name/499\",[8,26.131]],[\"comment/499\",[]],[\"name/500\",[424,47.79]],[\"comment/500\",[]],[\"name/501\",[8,26.131]],[\"comment/501\",[]],[\"name/502\",[425,47.79]],[\"comment/502\",[]],[\"name/503\",[8,26.131]],[\"comment/503\",[]],[\"name/504\",[426,58.848]],[\"comment/504\",[]],[\"name/505\",[427,63.99]],[\"comment/505\",[]],[\"name/506\",[8,26.131]],[\"comment/506\",[]],[\"name/507\",[424,47.79]],[\"comment/507\",[]],[\"name/508\",[8,26.131]],[\"comment/508\",[]],[\"name/509\",[425,47.79]],[\"comment/509\",[]],[\"name/510\",[8,26.131]],[\"comment/510\",[]],[\"name/511\",[426,58.848]],[\"comment/511\",[]],[\"name/512\",[428,58.848]],[\"comment/512\",[]],[\"name/513\",[8,26.131]],[\"comment/513\",[]],[\"name/514\",[424,47.79]],[\"comment/514\",[]],[\"name/515\",[8,26.131]],[\"comment/515\",[]],[\"name/516\",[429,55.461]],[\"comment/516\",[]],[\"name/517\",[430,52.932]],[\"comment/517\",[]],[\"name/518\",[425,47.79]],[\"comment/518\",[]],[\"name/519\",[8,26.131]],[\"comment/519\",[]],[\"name/520\",[431,58.848]],[\"comment/520\",[]],[\"name/521\",[8,26.131]],[\"comment/521\",[]],[\"name/522\",[424,47.79]],[\"comment/522\",[]],[\"name/523\",[8,26.131]],[\"comment/523\",[]],[\"name/524\",[425,47.79]],[\"comment/524\",[]],[\"name/525\",[8,26.131]],[\"comment/525\",[]],[\"name/526\",[8,26.131]],[\"comment/526\",[]],[\"name/527\",[191,49.23]],[\"comment/527\",[]],[\"name/528\",[8,26.131]],[\"comment/528\",[]],[\"name/529\",[424,47.79]],[\"comment/529\",[]],[\"name/530\",[8,26.131]],[\"comment/530\",[]],[\"name/531\",[425,47.79]],[\"comment/531\",[]],[\"name/532\",[8,26.131]],[\"comment/532\",[]],[\"name/533\",[432,63.99]],[\"comment/533\",[]],[\"name/534\",[433,63.99]],[\"comment/534\",[]],[\"name/535\",[8,26.131]],[\"comment/535\",[]],[\"name/536\",[434,63.99]],[\"comment/536\",[]],[\"name/537\",[430,52.932]],[\"comment/537\",[]],[\"name/538\",[109,45.411]],[\"comment/538\",[]],[\"name/539\",[435,50.912]],[\"comment/539\",[]],[\"name/540\",[436,63.99]],[\"comment/540\",[]],[\"name/541\",[437,63.99]],[\"comment/541\",[]],[\"name/542\",[438,58.848]],[\"comment/542\",[]],[\"name/543\",[439,58.848]],[\"comment/543\",[]],[\"name/544\",[438,58.848]],[\"comment/544\",[]],[\"name/545\",[38,39.854]],[\"comment/545\",[]],[\"name/546\",[382,58.848]],[\"comment/546\",[]],[\"name/547\",[440,58.848]],[\"comment/547\",[]],[\"name/548\",[441,58.848]],[\"comment/548\",[]],[\"name/549\",[442,58.848]],[\"comment/549\",[]],[\"name/550\",[443,58.848]],[\"comment/550\",[]],[\"name/551\",[444,58.848]],[\"comment/551\",[]],[\"name/552\",[445,58.848]],[\"comment/552\",[]],[\"name/553\",[439,58.848]],[\"comment/553\",[]],[\"name/554\",[38,39.854]],[\"comment/554\",[]],[\"name/555\",[446,63.99]],[\"comment/555\",[]],[\"name/556\",[440,58.848]],[\"comment/556\",[]],[\"name/557\",[441,58.848]],[\"comment/557\",[]],[\"name/558\",[442,58.848]],[\"comment/558\",[]],[\"name/559\",[443,58.848]],[\"comment/559\",[]],[\"name/560\",[444,58.848]],[\"comment/560\",[]],[\"name/561\",[445,58.848]],[\"comment/561\",[]],[\"name/562\",[447,63.99]],[\"comment/562\",[]],[\"name/563\",[448,63.99]],[\"comment/563\",[]],[\"name/564\",[449,63.99]],[\"comment/564\",[]],[\"name/565\",[343,55.461]],[\"comment/565\",[]],[\"name/566\",[450,63.99]],[\"comment/566\",[]],[\"name/567\",[451,63.99]],[\"comment/567\",[]],[\"name/568\",[452,63.99]],[\"comment/568\",[]],[\"name/569\",[453,63.99]],[\"comment/569\",[]],[\"name/570\",[454,63.99]],[\"comment/570\",[]],[\"name/571\",[455,63.99]],[\"comment/571\",[]],[\"name/572\",[456,63.99]],[\"comment/572\",[]],[\"name/573\",[457,63.99]],[\"comment/573\",[]],[\"name/574\",[458,63.99]],[\"comment/574\",[]],[\"name/575\",[459,63.99]],[\"comment/575\",[]],[\"name/576\",[460,63.99]],[\"comment/576\",[]],[\"name/577\",[461,58.848]],[\"comment/577\",[]],[\"name/578\",[462,58.848]],[\"comment/578\",[]],[\"name/579\",[463,63.99]],[\"comment/579\",[]],[\"name/580\",[464,63.99]],[\"comment/580\",[]],[\"name/581\",[465,63.99]],[\"comment/581\",[]],[\"name/582\",[466,63.99]],[\"comment/582\",[]],[\"name/583\",[467,63.99]],[\"comment/583\",[]],[\"name/584\",[468,63.99]],[\"comment/584\",[]],[\"name/585\",[469,63.99]],[\"comment/585\",[]],[\"name/586\",[470,63.99]],[\"comment/586\",[]],[\"name/587\",[418,58.848]],[\"comment/587\",[]],[\"name/588\",[74,58.848]],[\"comment/588\",[]],[\"name/589\",[8,26.131]],[\"comment/589\",[]],[\"name/590\",[471,63.99]],[\"comment/590\",[]],[\"name/591\",[472,63.99]],[\"comment/591\",[]],[\"name/592\",[473,63.99]],[\"comment/592\",[]],[\"name/593\",[474,63.99]],[\"comment/593\",[]],[\"name/594\",[475,63.99]],[\"comment/594\",[]],[\"name/595\",[476,63.99]],[\"comment/595\",[]],[\"name/596\",[477,63.99]],[\"comment/596\",[]],[\"name/597\",[8,26.131]],[\"comment/597\",[]],[\"name/598\",[478,63.99]],[\"comment/598\",[]],[\"name/599\",[479,63.99]],[\"comment/599\",[]],[\"name/600\",[480,63.99]],[\"comment/600\",[]],[\"name/601\",[481,63.99]],[\"comment/601\",[]],[\"name/602\",[482,63.99]],[\"comment/602\",[]],[\"name/603\",[483,63.99]],[\"comment/603\",[]],[\"name/604\",[484,63.99]],[\"comment/604\",[]],[\"name/605\",[485,63.99]],[\"comment/605\",[]],[\"name/606\",[486,63.99]],[\"comment/606\",[]],[\"name/607\",[487,63.99]],[\"comment/607\",[]],[\"name/608\",[488,63.99]],[\"comment/608\",[]],[\"name/609\",[489,63.99]],[\"comment/609\",[]],[\"name/610\",[490,63.99]],[\"comment/610\",[]],[\"name/611\",[491,63.99]],[\"comment/611\",[]],[\"name/612\",[492,63.99]],[\"comment/612\",[]],[\"name/613\",[493,63.99]],[\"comment/613\",[]],[\"name/614\",[494,63.99]],[\"comment/614\",[]],[\"name/615\",[495,63.99]],[\"comment/615\",[]],[\"name/616\",[496,63.99]],[\"comment/616\",[]],[\"name/617\",[497,63.99]],[\"comment/617\",[]],[\"name/618\",[498,50.912]],[\"comment/618\",[]],[\"name/619\",[499,63.99]],[\"comment/619\",[]],[\"name/620\",[8,26.131]],[\"comment/620\",[]],[\"name/621\",[500,63.99]],[\"comment/621\",[]],[\"name/622\",[501,63.99]],[\"comment/622\",[]],[\"name/623\",[502,63.99]],[\"comment/623\",[]],[\"name/624\",[503,63.99]],[\"comment/624\",[]],[\"name/625\",[504,63.99]],[\"comment/625\",[]],[\"name/626\",[8,26.131]],[\"comment/626\",[]],[\"name/627\",[39,49.23]],[\"comment/627\",[]],[\"name/628\",[505,63.99]],[\"comment/628\",[]],[\"name/629\",[506,63.99]],[\"comment/629\",[]],[\"name/630\",[507,63.99]],[\"comment/630\",[]],[\"name/631\",[508,63.99]],[\"comment/631\",[]],[\"name/632\",[498,50.912]],[\"comment/632\",[]],[\"name/633\",[39,49.23]],[\"comment/633\",[]],[\"name/634\",[509,55.461]],[\"comment/634\",[]],[\"name/635\",[510,63.99]],[\"comment/635\",[]],[\"name/636\",[435,50.912]],[\"comment/636\",[]],[\"name/637\",[511,58.848]],[\"comment/637\",[]],[\"name/638\",[512,55.461]],[\"comment/638\",[]],[\"name/639\",[513,63.99]],[\"comment/639\",[]],[\"name/640\",[514,63.99]],[\"comment/640\",[]],[\"name/641\",[515,63.99]],[\"comment/641\",[]],[\"name/642\",[498,50.912]],[\"comment/642\",[]],[\"name/643\",[509,55.461]],[\"comment/643\",[]],[\"name/644\",[39,49.23]],[\"comment/644\",[]],[\"name/645\",[435,50.912]],[\"comment/645\",[]],[\"name/646\",[512,55.461]],[\"comment/646\",[]],[\"name/647\",[516,63.99]],[\"comment/647\",[]],[\"name/648\",[498,50.912]],[\"comment/648\",[]],[\"name/649\",[39,49.23]],[\"comment/649\",[]],[\"name/650\",[517,63.99]],[\"comment/650\",[]],[\"name/651\",[435,50.912]],[\"comment/651\",[]],[\"name/652\",[511,58.848]],[\"comment/652\",[]],[\"name/653\",[512,55.461]],[\"comment/653\",[]],[\"name/654\",[518,63.99]],[\"comment/654\",[]],[\"name/655\",[8,26.131]],[\"comment/655\",[]],[\"name/656\",[519,63.99]],[\"comment/656\",[]],[\"name/657\",[498,50.912]],[\"comment/657\",[]],[\"name/658\",[39,49.23]],[\"comment/658\",[]],[\"name/659\",[509,55.461]],[\"comment/659\",[]],[\"name/660\",[435,50.912]],[\"comment/660\",[]],[\"name/661\",[520,63.99]],[\"comment/661\",[]],[\"name/662\",[521,63.99]],[\"comment/662\",[]],[\"name/663\",[8,26.131]],[\"comment/663\",[]],[\"name/664\",[522,63.99]],[\"comment/664\",[]],[\"name/665\",[523,63.99]],[\"comment/665\",[]],[\"name/666\",[524,63.99]],[\"comment/666\",[]],[\"name/667\",[525,63.99]],[\"comment/667\",[]],[\"name/668\",[526,63.99]],[\"comment/668\",[]],[\"name/669\",[527,63.99]],[\"comment/669\",[]],[\"name/670\",[528,63.99]],[\"comment/670\",[]],[\"name/671\",[529,45.538,530,45.538]],[\"comment/671\",[]],[\"name/672\",[531,58.848]],[\"comment/672\",[]],[\"name/673\",[405,32.505,532,35.345,533,35.345]],[\"comment/673\",[]],[\"name/674\",[534,63.99]],[\"comment/674\",[]],[\"name/675\",[535,63.99]],[\"comment/675\",[]],[\"name/676\",[536,63.99]],[\"comment/676\",[]],[\"name/677\",[537,63.99]],[\"comment/677\",[]],[\"name/678\",[538,63.99]],[\"comment/678\",[]],[\"name/679\",[387,58.848]],[\"comment/679\",[]],[\"name/680\",[539,63.99]],[\"comment/680\",[]],[\"name/681\",[540,63.99]],[\"comment/681\",[]],[\"name/682\",[8,26.131]],[\"comment/682\",[]],[\"name/683\",[359,39.468,541,45.538]],[\"comment/683\",[]],[\"name/684\",[542,63.99]],[\"comment/684\",[]],[\"name/685\",[543,63.99]],[\"comment/685\",[]],[\"name/686\",[544,63.99]],[\"comment/686\",[]],[\"name/687\",[545,63.99]],[\"comment/687\",[]],[\"name/688\",[546,63.99]],[\"comment/688\",[]],[\"name/689\",[547,63.99]],[\"comment/689\",[]],[\"name/690\",[548,63.99]],[\"comment/690\",[]],[\"name/691\",[549,58.848]],[\"comment/691\",[]],[\"name/692\",[189,55.461]],[\"comment/692\",[]],[\"name/693\",[462,58.848]],[\"comment/693\",[]],[\"name/694\",[550,63.99]],[\"comment/694\",[]],[\"name/695\",[8,26.131]],[\"comment/695\",[]],[\"name/696\",[81,58.848]],[\"comment/696\",[]],[\"name/697\",[551,63.99]],[\"comment/697\",[]],[\"name/698\",[552,63.99]],[\"comment/698\",[]],[\"name/699\",[553,63.99]],[\"comment/699\",[]],[\"name/700\",[554,63.99]],[\"comment/700\",[]],[\"name/701\",[8,26.131]],[\"comment/701\",[]],[\"name/702\",[555,63.99]],[\"comment/702\",[]],[\"name/703\",[556,63.99]],[\"comment/703\",[]],[\"name/704\",[557,63.99]],[\"comment/704\",[]],[\"name/705\",[558,63.99]],[\"comment/705\",[]],[\"name/706\",[559,63.99]],[\"comment/706\",[]],[\"name/707\",[560,63.99]],[\"comment/707\",[]],[\"name/708\",[561,63.99]],[\"comment/708\",[]],[\"name/709\",[562,63.99]],[\"comment/709\",[]],[\"name/710\",[563,63.99]],[\"comment/710\",[]],[\"name/711\",[564,63.99]],[\"comment/711\",[]],[\"name/712\",[565,63.99]],[\"comment/712\",[]],[\"name/713\",[566,63.99]],[\"comment/713\",[]],[\"name/714\",[567,63.99]],[\"comment/714\",[]],[\"name/715\",[568,63.99]],[\"comment/715\",[]],[\"name/716\",[569,63.99]],[\"comment/716\",[]],[\"name/717\",[570,63.99]],[\"comment/717\",[]],[\"name/718\",[571,63.99]],[\"comment/718\",[]],[\"name/719\",[572,63.99]],[\"comment/719\",[]],[\"name/720\",[573,63.99]],[\"comment/720\",[]],[\"name/721\",[574,63.99]],[\"comment/721\",[]],[\"name/722\",[575,63.99]],[\"comment/722\",[]],[\"name/723\",[576,63.99]],[\"comment/723\",[]],[\"name/724\",[577,63.99]],[\"comment/724\",[]],[\"name/725\",[578,63.99]],[\"comment/725\",[]],[\"name/726\",[579,63.99]],[\"comment/726\",[]],[\"name/727\",[580,63.99]],[\"comment/727\",[]],[\"name/728\",[581,63.99]],[\"comment/728\",[]],[\"name/729\",[582,63.99]],[\"comment/729\",[]],[\"name/730\",[583,63.99]],[\"comment/730\",[]],[\"name/731\",[584,63.99]],[\"comment/731\",[]],[\"name/732\",[8,26.131]],[\"comment/732\",[]],[\"name/733\",[359,55.461]],[\"comment/733\",[]],[\"name/734\",[585,63.99]],[\"comment/734\",[]],[\"name/735\",[586,63.99]],[\"comment/735\",[]],[\"name/736\",[587,63.99]],[\"comment/736\",[]],[\"name/737\",[588,63.99]],[\"comment/737\",[]],[\"name/738\",[589,63.99]],[\"comment/738\",[]],[\"name/739\",[590,63.99]],[\"comment/739\",[]],[\"name/740\",[591,63.99]],[\"comment/740\",[]],[\"name/741\",[592,63.99]],[\"comment/741\",[]],[\"name/742\",[593,63.99]],[\"comment/742\",[]],[\"name/743\",[594,63.99]],[\"comment/743\",[]],[\"name/744\",[595,63.99]],[\"comment/744\",[]],[\"name/745\",[596,63.99]],[\"comment/745\",[]],[\"name/746\",[597,63.99]],[\"comment/746\",[]],[\"name/747\",[598,63.99]],[\"comment/747\",[]],[\"name/748\",[599,63.99]],[\"comment/748\",[]],[\"name/749\",[600,63.99]],[\"comment/749\",[]],[\"name/750\",[601,58.848]],[\"comment/750\",[]],[\"name/751\",[602,63.99]],[\"comment/751\",[]],[\"name/752\",[603,63.99]],[\"comment/752\",[]],[\"name/753\",[604,63.99]],[\"comment/753\",[]],[\"name/754\",[45,52.932]],[\"comment/754\",[]],[\"name/755\",[605,63.99]],[\"comment/755\",[]],[\"name/756\",[606,63.99]],[\"comment/756\",[]],[\"name/757\",[601,58.848]],[\"comment/757\",[]],[\"name/758\",[607,63.99]],[\"comment/758\",[]],[\"name/759\",[608,63.99]],[\"comment/759\",[]],[\"name/760\",[609,63.99]],[\"comment/760\",[]],[\"name/761\",[610,63.99]],[\"comment/761\",[]],[\"name/762\",[8,26.131]],[\"comment/762\",[]],[\"name/763\",[611,63.99]],[\"comment/763\",[]],[\"name/764\",[8,26.131]],[\"comment/764\",[]],[\"name/765\",[430,52.932]],[\"comment/765\",[]],[\"name/766\",[429,55.461]],[\"comment/766\",[]],[\"name/767\",[612,63.99]],[\"comment/767\",[]],[\"name/768\",[613,63.99]],[\"comment/768\",[]],[\"name/769\",[38,39.854]],[\"comment/769\",[]],[\"name/770\",[109,45.411]],[\"comment/770\",[]],[\"name/771\",[614,63.99]],[\"comment/771\",[]],[\"name/772\",[428,58.848]],[\"comment/772\",[]],[\"name/773\",[8,26.131]],[\"comment/773\",[]],[\"name/774\",[424,47.79]],[\"comment/774\",[]],[\"name/775\",[8,26.131]],[\"comment/775\",[]],[\"name/776\",[429,55.461]],[\"comment/776\",[]],[\"name/777\",[430,52.932]],[\"comment/777\",[]],[\"name/778\",[425,47.79]],[\"comment/778\",[]],[\"name/779\",[8,26.131]],[\"comment/779\",[]],[\"name/780\",[431,58.848]],[\"comment/780\",[]],[\"name/781\",[8,26.131]],[\"comment/781\",[]],[\"name/782\",[424,47.79]],[\"comment/782\",[]],[\"name/783\",[8,26.131]],[\"comment/783\",[]],[\"name/784\",[425,47.79]],[\"comment/784\",[]],[\"name/785\",[8,26.131]],[\"comment/785\",[]],[\"name/786\",[8,26.131]],[\"comment/786\",[]],[\"name/787\",[191,49.23]],[\"comment/787\",[]],[\"name/788\",[615,63.99]],[\"comment/788\",[]],[\"name/789\",[616,63.99]],[\"comment/789\",[]],[\"name/790\",[617,63.99]],[\"comment/790\",[]],[\"name/791\",[618,63.99]],[\"comment/791\",[]],[\"name/792\",[8,26.131]],[\"comment/792\",[]],[\"name/793\",[619,63.99]],[\"comment/793\",[]],[\"name/794\",[620,63.99]],[\"comment/794\",[]],[\"name/795\",[621,63.99]],[\"comment/795\",[]],[\"name/796\",[622,63.99]],[\"comment/796\",[]],[\"name/797\",[623,63.99]],[\"comment/797\",[]],[\"name/798\",[624,63.99]],[\"comment/798\",[]],[\"name/799\",[625,63.99]],[\"comment/799\",[]],[\"name/800\",[626,63.99]],[\"comment/800\",[]],[\"name/801\",[627,63.99]],[\"comment/801\",[]],[\"name/802\",[316,41.879,628,41.879]],[\"comment/802\",[]],[\"name/803\",[629,63.99]],[\"comment/803\",[]],[\"name/804\",[38,39.854]],[\"comment/804\",[]],[\"name/805\",[630,63.99]],[\"comment/805\",[]],[\"name/806\",[631,63.99]],[\"comment/806\",[]],[\"name/807\",[632,63.99]],[\"comment/807\",[]],[\"name/808\",[633,63.99]],[\"comment/808\",[]],[\"name/809\",[461,58.848]],[\"comment/809\",[]],[\"name/810\",[634,63.99]],[\"comment/810\",[]],[\"name/811\",[204,58.848]],[\"comment/811\",[]],[\"name/812\",[635,63.99]],[\"comment/812\",[]],[\"name/813\",[628,41.879,636,45.538]],[\"comment/813\",[]],[\"name/814\",[637,63.99]],[\"comment/814\",[]],[\"name/815\",[638,63.99]],[\"comment/815\",[]],[\"name/816\",[639,63.99]],[\"comment/816\",[]],[\"name/817\",[549,41.879,640,45.538]],[\"comment/817\",[]],[\"name/818\",[641,63.99]],[\"comment/818\",[]],[\"name/819\",[642,63.99]],[\"comment/819\",[]],[\"name/820\",[643,63.99]],[\"comment/820\",[]],[\"name/821\",[644,63.99]],[\"comment/821\",[]],[\"name/822\",[645,63.99]],[\"comment/822\",[]],[\"name/823\",[646,63.99]],[\"comment/823\",[]],[\"name/824\",[647,63.99]],[\"comment/824\",[]],[\"name/825\",[648,63.99]],[\"comment/825\",[]],[\"name/826\",[649,63.99]],[\"comment/826\",[]],[\"name/827\",[650,63.99]],[\"comment/827\",[]],[\"name/828\",[38,39.854]],[\"comment/828\",[]],[\"name/829\",[188,58.848]],[\"comment/829\",[]],[\"name/830\",[191,49.23]],[\"comment/830\",[]],[\"name/831\",[651,63.99]],[\"comment/831\",[]],[\"name/832\",[652,63.99]],[\"comment/832\",[]],[\"name/833\",[653,63.99]],[\"comment/833\",[]],[\"name/834\",[654,63.99]],[\"comment/834\",[]],[\"name/835\",[531,58.848]],[\"comment/835\",[]],[\"name/836\",[655,58.848]],[\"comment/836\",[]],[\"name/837\",[656,58.848]],[\"comment/837\",[]],[\"name/838\",[655,58.848]],[\"comment/838\",[]],[\"name/839\",[8,26.131]],[\"comment/839\",[]],[\"name/840\",[657,63.99]],[\"comment/840\",[]],[\"name/841\",[658,63.99]],[\"comment/841\",[]],[\"name/842\",[659,63.99]],[\"comment/842\",[]],[\"name/843\",[660,63.99]],[\"comment/843\",[]],[\"name/844\",[8,26.131]],[\"comment/844\",[]],[\"name/845\",[661,63.99]],[\"comment/845\",[]],[\"name/846\",[662,63.99]],[\"comment/846\",[]],[\"name/847\",[663,63.99]],[\"comment/847\",[]],[\"name/848\",[388,58.848]],[\"comment/848\",[]],[\"name/849\",[8,26.131]],[\"comment/849\",[]],[\"name/850\",[664,63.99]],[\"comment/850\",[]],[\"name/851\",[189,55.461]],[\"comment/851\",[]],[\"name/852\",[665,63.99]],[\"comment/852\",[]],[\"name/853\",[666,63.99]],[\"comment/853\",[]],[\"name/854\",[62,58.848]],[\"comment/854\",[]],[\"name/855\",[667,63.99]],[\"comment/855\",[]],[\"name/856\",[668,63.99]],[\"comment/856\",[]],[\"name/857\",[669,58.848]],[\"comment/857\",[]],[\"name/858\",[670,63.99]],[\"comment/858\",[]],[\"name/859\",[671,63.99]],[\"comment/859\",[]],[\"name/860\",[8,26.131]],[\"comment/860\",[]],[\"name/861\",[656,58.848]],[\"comment/861\",[]],[\"name/862\",[669,58.848]],[\"comment/862\",[]],[\"name/863\",[672,63.99]],[\"comment/863\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":8,\"name\":{\"8\":{},\"61\":{},\"82\":{},\"204\":{},\"264\":{},\"266\":{},\"268\":{},\"270\":{},\"287\":{},\"289\":{},\"299\":{},\"368\":{},\"405\":{},\"407\":{},\"409\":{},\"411\":{},\"413\":{},\"417\":{},\"419\":{},\"428\":{},\"456\":{},\"476\":{},\"481\":{},\"499\":{},\"501\":{},\"503\":{},\"506\":{},\"508\":{},\"510\":{},\"513\":{},\"515\":{},\"519\":{},\"521\":{},\"523\":{},\"525\":{},\"526\":{},\"528\":{},\"530\":{},\"532\":{},\"535\":{},\"589\":{},\"597\":{},\"620\":{},\"626\":{},\"655\":{},\"663\":{},\"682\":{},\"695\":{},\"701\":{},\"732\":{},\"762\":{},\"764\":{},\"773\":{},\"775\":{},\"779\":{},\"781\":{},\"783\":{},\"785\":{},\"786\":{},\"792\":{},\"839\":{},\"844\":{},\"849\":{},\"860\":{}},\"comment\":{}}],[\"_role\",{\"_index\":651,\"name\":{\"831\":{}},\"comment\":{}}],[\"abort\",{\"_index\":103,\"name\":{\"105\":{}},\"comment\":{}}],[\"abortcontroller\",{\"_index\":37,\"name\":{\"37\":{}},\"comment\":{}}],[\"aborterror\",{\"_index\":113,\"name\":{\"116\":{}},\"comment\":{}}],[\"abortsignal\",{\"_index\":39,\"name\":{\"39\":{},\"627\":{},\"633\":{},\"644\":{},\"649\":{},\"658\":{}},\"comment\":{}}],[\"abortsilent\",{\"_index\":104,\"name\":{\"106\":{}},\"comment\":{}}],[\"abortsilenterror\",{\"_index\":116,\"name\":{\"132\":{}},\"comment\":{}}],[\"action\",{\"_index\":406,\"name\":{\"480\":{}},\"comment\":{}}],[\"addalltogitfromdirectory\",{\"_index\":164,\"name\":{\"192\":{}},\"comment\":{}}],[\"addbugsnagmetadata\",{\"_index\":98,\"name\":{\"98\":{}},\"comment\":{}}],[\"addedheaders\",{\"_index\":550,\"name\":{\"694\":{}},\"comment\":{}}],[\"addfromparsedflags\",{\"_index\":46,\"name\":{\"46\":{}},\"comment\":{}}],[\"addnpmdependencies\",{\"_index\":327,\"name\":{\"384\":{}},\"comment\":{}}],[\"addnpmdependenciesifneeded\",{\"_index\":326,\"name\":{\"383\":{}},\"comment\":{}}],[\"addnpmdependencieswithoutversionifneeded\",{\"_index\":328,\"name\":{\"385\":{}},\"comment\":{}}],[\"addpublicmetadata\",{\"_index\":222,\"name\":{\"263\":{},\"275\":{}},\"comment\":{}}],[\"addrecommendedextensions\",{\"_index\":528,\"name\":{\"670\":{}},\"comment\":{}}],[\"addresolutionoroverride\",{\"_index\":330,\"name\":{\"387\":{}},\"comment\":{}}],[\"addsensitivemetadata\",{\"_index\":223,\"name\":{\"265\":{},\"276\":{}},\"comment\":{}}],[\"adminrequest\",{\"_index\":536,\"name\":{\"676\":{}},\"comment\":{}}],[\"adminsession\",{\"_index\":461,\"name\":{\"577\":{},\"809\":{}},\"comment\":{}}],[\"alertcustomsection\",{\"_index\":505,\"name\":{\"628\":{}},\"comment\":{}}],[\"alias\",{\"_index\":606,\"name\":{\"756\":{}},\"comment\":{}}],[\"allowempty\",{\"_index\":522,\"name\":{\"664\":{}},\"comment\":{}}],[\"alwaysloganalytics\",{\"_index\":577,\"name\":{\"724\":{}},\"comment\":{}}],[\"analyticsdisabled\",{\"_index\":576,\"name\":{\"723\":{}},\"comment\":{}}],[\"analyticsnameoverride\",{\"_index\":48,\"name\":{\"48\":{}},\"comment\":{}}],[\"api\",{\"_index\":549,\"name\":{\"691\":{},\"817\":{}},\"comment\":{}}],[\"api_key\",{\"_index\":251,\"name\":{\"307\":{}},\"comment\":{}}],[\"app_cli3_command/1.4\",{\"_index\":237,\"name\":{\"286\":{}},\"comment\":{}}],[\"app_extensions_any\",{\"_index\":280,\"name\":{\"336\":{}},\"comment\":{}}],[\"app_extensions_breakdown\",{\"_index\":281,\"name\":{\"337\":{}},\"comment\":{}}],[\"app_extensions_count\",{\"_index\":282,\"name\":{\"338\":{}},\"comment\":{}}],[\"app_extensions_custom_layout\",{\"_index\":283,\"name\":{\"339\":{}},\"comment\":{}}],[\"app_extensions_function_any\",{\"_index\":284,\"name\":{\"340\":{}},\"comment\":{}}],[\"app_extensions_function_count\",{\"_index\":285,\"name\":{\"341\":{}},\"comment\":{}}],[\"app_extensions_function_custom_layout\",{\"_index\":286,\"name\":{\"342\":{}},\"comment\":{}}],[\"app_extensions_theme_any\",{\"_index\":287,\"name\":{\"343\":{}},\"comment\":{}}],[\"app_extensions_theme_count\",{\"_index\":288,\"name\":{\"344\":{}},\"comment\":{}}],[\"app_extensions_theme_custom_layout\",{\"_index\":289,\"name\":{\"345\":{}},\"comment\":{}}],[\"app_extensions_ui_any\",{\"_index\":290,\"name\":{\"346\":{}},\"comment\":{}}],[\"app_extensions_ui_count\",{\"_index\":291,\"name\":{\"347\":{}},\"comment\":{}}],[\"app_extensions_ui_custom_layout\",{\"_index\":292,\"name\":{\"348\":{}},\"comment\":{}}],[\"app_name\",{\"_index\":239,\"name\":{\"292\":{}},\"comment\":{}}],[\"app_name_hash\",{\"_index\":293,\"name\":{\"349\":{}},\"comment\":{}}],[\"app_path_hash\",{\"_index\":294,\"name\":{\"350\":{}},\"comment\":{}}],[\"app_scopes\",{\"_index\":295,\"name\":{\"351\":{}},\"comment\":{}}],[\"app_web_backend_any\",{\"_index\":296,\"name\":{\"352\":{}},\"comment\":{}}],[\"app_web_backend_count\",{\"_index\":297,\"name\":{\"353\":{}},\"comment\":{}}],[\"app_web_custom_layout\",{\"_index\":298,\"name\":{\"354\":{}},\"comment\":{}}],[\"app_web_framework\",{\"_index\":299,\"name\":{\"355\":{}},\"comment\":{}}],[\"app_web_frontend_any\",{\"_index\":300,\"name\":{\"356\":{}},\"comment\":{}}],[\"app_web_frontend_count\",{\"_index\":301,\"name\":{\"357\":{}},\"comment\":{}}],[\"appendfile\",{\"_index\":129,\"name\":{\"157\":{}},\"comment\":{}}],[\"appendfilesync\",{\"_index\":130,\"name\":{\"158\":{}},\"comment\":{}}],[\"apphost\",{\"_index\":597,\"name\":{\"746\":{}},\"comment\":{}}],[\"appport\",{\"_index\":596,\"name\":{\"745\":{}},\"comment\":{}}],[\"arch\",{\"_index\":360,\"name\":{\"430\":{}},\"comment\":{}}],[\"args\",{\"_index\":115,\"name\":{\"126\":{},\"290\":{}},\"comment\":{}}],[\"author\",{\"_index\":180,\"name\":{\"209\":{},\"402\":{}},\"comment\":{}}],[\"base64urlencode\",{\"_index\":67,\"name\":{\"68\":{}},\"comment\":{}}],[\"basename\",{\"_index\":414,\"name\":{\"489\":{}},\"comment\":{}}],[\"baseurl\",{\"_index\":199,\"name\":{\"240\":{}},\"comment\":{}}],[\"body\",{\"_index\":192,\"name\":{\"233\":{}},\"comment\":{}}],[\"branch\",{\"_index\":200,\"name\":{\"241\":{}},\"comment\":{}}],[\"bug\",{\"_index\":105,\"name\":{\"107\":{}},\"comment\":{}}],[\"bugerror\",{\"_index\":117,\"name\":{\"139\":{}},\"comment\":{}}],[\"bundleuserhome\",{\"_index\":450,\"name\":{\"566\":{}},\"comment\":{}}],[\"businessplatformfqdn\",{\"_index\":562,\"name\":{\"709\":{}},\"comment\":{}}],[\"businessplatformrequest\",{\"_index\":542,\"name\":{\"684\":{}},\"comment\":{}}],[\"by\",{\"_index\":533,\"name\":{\"673\":{}},\"comment\":{}}],[\"camelize\",{\"_index\":27,\"name\":{\"27\":{}},\"comment\":{}}],[\"cancelexecution\",{\"_index\":106,\"name\":{\"108\":{}},\"comment\":{}}],[\"cancellationmessage\",{\"_index\":515,\"name\":{\"641\":{}},\"comment\":{}}],[\"capitalize\",{\"_index\":21,\"name\":{\"21\":{}},\"comment\":{}}],[\"captureoutput\",{\"_index\":466,\"name\":{\"582\":{}},\"comment\":{}}],[\"catch\",{\"_index\":49,\"name\":{\"49\":{}},\"comment\":{}}],[\"checkfornewversion\",{\"_index\":324,\"name\":{\"381\":{}},\"comment\":{}}],[\"checkifignoredingitrepository\",{\"_index\":160,\"name\":{\"188\":{}},\"comment\":{}}],[\"checkportavailability\",{\"_index\":480,\"name\":{\"600\":{}},\"comment\":{}}],[\"chmod\",{\"_index\":149,\"name\":{\"177\":{}},\"comment\":{}}],[\"choices\",{\"_index\":511,\"name\":{\"637\":{},\"652\":{}},\"comment\":{}}],[\"cimetadata\",{\"_index\":589,\"name\":{\"738\":{}},\"comment\":{}}],[\"ciplatform\",{\"_index\":587,\"name\":{\"736\":{}},\"comment\":{}}],[\"cleansinglestacktracepath\",{\"_index\":101,\"name\":{\"103\":{}},\"comment\":{}}],[\"cleanstackframefilepath\",{\"_index\":96,\"name\":{\"96\":{}},\"comment\":{}}],[\"clear\",{\"_index\":218,\"name\":{\"259\":{}},\"comment\":{}}],[\"clearcollectedlogs\",{\"_index\":403,\"name\":{\"477\":{}},\"comment\":{}}],[\"cli_kit_version\",{\"_index\":35,\"name\":{\"35\":{}},\"comment\":{}}],[\"cli_version\",{\"_index\":252,\"name\":{\"308\":{}},\"comment\":{}}],[\"cloudenvironment\",{\"_index\":584,\"name\":{\"731\":{}},\"comment\":{}}],[\"cmd_all_alias_used\",{\"_index\":258,\"name\":{\"314\":{}},\"comment\":{}}],[\"cmd_all_environment_flags\",{\"_index\":242,\"name\":{\"295\":{}},\"comment\":{}}],[\"cmd_all_launcher\",{\"_index\":259,\"name\":{\"315\":{}},\"comment\":{}}],[\"cmd_all_path_override\",{\"_index\":260,\"name\":{\"316\":{}},\"comment\":{}}],[\"cmd_all_path_override_hash\",{\"_index\":261,\"name\":{\"317\":{}},\"comment\":{}}],[\"cmd_all_plugin\",{\"_index\":262,\"name\":{\"318\":{}},\"comment\":{}}],[\"cmd_all_topic\",{\"_index\":263,\"name\":{\"319\":{}},\"comment\":{}}],[\"cmd_all_verbose\",{\"_index\":264,\"name\":{\"320\":{}},\"comment\":{}}],[\"cmd_app_dependency_installation_skipped\",{\"_index\":274,\"name\":{\"330\":{}},\"comment\":{}}],[\"cmd_app_reset_used\",{\"_index\":275,\"name\":{\"331\":{}},\"comment\":{}}],[\"cmd_create_app_template\",{\"_index\":279,\"name\":{\"335\":{}},\"comment\":{}}],[\"cmd_dev_tunnel_custom\",{\"_index\":243,\"name\":{\"296\":{}},\"comment\":{}}],[\"cmd_dev_tunnel_custom_hash\",{\"_index\":277,\"name\":{\"333\":{}},\"comment\":{}}],[\"cmd_dev_tunnel_type\",{\"_index\":276,\"name\":{\"332\":{}},\"comment\":{}}],[\"cmd_dev_urls_updated\",{\"_index\":278,\"name\":{\"334\":{}},\"comment\":{}}],[\"cmd_extensions_binary_from_source\",{\"_index\":265,\"name\":{\"321\":{}},\"comment\":{}}],[\"cmd_scaffold_required_auth\",{\"_index\":266,\"name\":{\"322\":{}},\"comment\":{}}],[\"cmd_scaffold_template_custom\",{\"_index\":267,\"name\":{\"323\":{}},\"comment\":{}}],[\"cmd_scaffold_template_flavor\",{\"_index\":268,\"name\":{\"324\":{}},\"comment\":{}}],[\"cmd_scaffold_type\",{\"_index\":269,\"name\":{\"325\":{}},\"comment\":{}}],[\"cmd_scaffold_type_category\",{\"_index\":270,\"name\":{\"326\":{}},\"comment\":{}}],[\"cmd_scaffold_type_gated\",{\"_index\":271,\"name\":{\"327\":{}},\"comment\":{}}],[\"cmd_scaffold_type_owner\",{\"_index\":272,\"name\":{\"328\":{}},\"comment\":{}}],[\"cmd_scaffold_used_prompts_for_type\",{\"_index\":273,\"name\":{\"329\":{}},\"comment\":{}}],[\"codespaceurl\",{\"_index\":582,\"name\":{\"729\":{}},\"comment\":{}}],[\"collectedlogs\",{\"_index\":402,\"name\":{\"475\":{}},\"comment\":{}}],[\"collectlog\",{\"_index\":364,\"name\":{\"434\":{}},\"comment\":{}}],[\"color\",{\"_index\":62,\"name\":{\"62\":{},\"854\":{}},\"comment\":{}}],[\"command\",{\"_index\":45,\"name\":{\"45\":{},\"125\":{},\"301\":{},\"754\":{}},\"comment\":{}}],[\"commandcontent\",{\"_index\":604,\"name\":{\"753\":{}},\"comment\":{}}],[\"common/array\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"common/collection\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"common/function\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"common/lang\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"common/object\",{\"_index\":15,\"name\":{\"15\":{}},\"comment\":{}}],[\"common/string\",{\"_index\":19,\"name\":{\"19\":{}},\"comment\":{}}],[\"common/ts/deep\",{\"_index\":529,\"name\":{\"671\":{}},\"comment\":{}}],[\"common/ts/pick\",{\"_index\":532,\"name\":{\"673\":{}},\"comment\":{}}],[\"common/url\",{\"_index\":32,\"name\":{\"32\":{}},\"comment\":{}}],[\"common/version\",{\"_index\":34,\"name\":{\"34\":{}},\"comment\":{}}],[\"config\",{\"_index\":214,\"name\":{\"255\":{}},\"comment\":{}}],[\"confirmationmessage\",{\"_index\":514,\"name\":{\"640\":{}},\"comment\":{}}],[\"consoleerror\",{\"_index\":373,\"name\":{\"443\":{}},\"comment\":{}}],[\"consolelog\",{\"_index\":372,\"name\":{\"442\":{}},\"comment\":{}}],[\"consolewarn\",{\"_index\":374,\"name\":{\"444\":{}},\"comment\":{}}],[\"constantize\",{\"_index\":30,\"name\":{\"30\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":38,\"name\":{\"38\":{},\"40\":{},\"110\":{},\"117\":{},\"124\":{},\"133\":{},\"140\":{},\"211\":{},\"218\":{},\"254\":{},\"452\":{},\"545\":{},\"554\":{},\"769\":{},\"804\":{},\"828\":{}},\"comment\":{}}],[\"context\",{\"_index\":633,\"name\":{\"808\":{}},\"comment\":{}}],[\"copyfile\",{\"_index\":126,\"name\":{\"154\":{}},\"comment\":{}}],[\"couldntobtainidentityspinfqdnerror\",{\"_index\":566,\"name\":{\"713\":{}},\"comment\":{}}],[\"couldntobtainpartnersspinfqdnerror\",{\"_index\":565,\"name\":{\"712\":{}},\"comment\":{}}],[\"couldntobtainshopifyspinfqdnerror\",{\"_index\":567,\"name\":{\"714\":{}},\"comment\":{}}],[\"create\",{\"_index\":635,\"name\":{\"812\":{}},\"comment\":{}}],[\"created_at\",{\"_index\":195,\"name\":{\"236\":{}},\"comment\":{}}],[\"createdatruntime\",{\"_index\":652,\"name\":{\"832\":{}},\"comment\":{}}],[\"createfilereadstream\",{\"_index\":144,\"name\":{\"172\":{}},\"comment\":{}}],[\"createfilewritestream\",{\"_index\":145,\"name\":{\"173\":{}},\"comment\":{}}],[\"creategitcommit\",{\"_index\":165,\"name\":{\"193\":{}},\"comment\":{}}],[\"creategitcommitoptions\",{\"_index\":178,\"name\":{\"207\":{}},\"comment\":{}}],[\"creategitignore\",{\"_index\":161,\"name\":{\"189\":{}},\"comment\":{}}],[\"createruntimemetadatacontainer\",{\"_index\":220,\"name\":{\"261\":{}},\"comment\":{}}],[\"createtheme\",{\"_index\":643,\"name\":{\"820\":{}},\"comment\":{}}],[\"customsections\",{\"_index\":112,\"name\":{\"115\":{},\"119\":{},\"131\":{},\"138\":{},\"145\":{},\"213\":{},\"220\":{}},\"comment\":{}}],[\"cwd\",{\"_index\":418,\"name\":{\"493\":{},\"587\":{}},\"comment\":{}}],[\"cyan\",{\"_index\":393,\"name\":{\"466\":{}},\"comment\":{}}],[\"debounce\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"decodetoml\",{\"_index\":482,\"name\":{\"602\":{}},\"comment\":{}}],[\"deepmergeobjects\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"deeprequired\",{\"_index\":531,\"name\":{\"672\":{},\"835\":{}},\"comment\":{}}],[\"default\",{\"_index\":47,\"name\":{\"47\":{},\"64\":{}},\"comment\":{}}],[\"defaultvalue\",{\"_index\":509,\"name\":{\"634\":{},\"643\":{},\"659\":{}},\"comment\":{}}],[\"defineprovider\",{\"_index\":619,\"name\":{\"793\":{}},\"comment\":{}}],[\"delete\",{\"_index\":217,\"name\":{\"258\":{}},\"comment\":{}}],[\"deletetheme\",{\"_index\":646,\"name\":{\"823\":{}},\"comment\":{}}],[\"dependencies\",{\"_index\":345,\"name\":{\"406\":{}},\"comment\":{}}],[\"dependencytype\",{\"_index\":338,\"name\":{\"395\":{}},\"comment\":{}}],[\"dependencyversion\",{\"_index\":355,\"name\":{\"422\":{}},\"comment\":{}}],[\"destination\",{\"_index\":174,\"name\":{\"202\":{}},\"comment\":{}}],[\"devdependencies\",{\"_index\":346,\"name\":{\"408\":{}},\"comment\":{}}],[\"development_theme_role\",{\"_index\":649,\"name\":{\"826\":{}},\"comment\":{}}],[\"difference\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"directory\",{\"_index\":179,\"name\":{\"208\":{}},\"comment\":{}}],[\"dirname\",{\"_index\":413,\"name\":{\"488\":{}},\"comment\":{}}],[\"doonok\",{\"_index\":441,\"name\":{\"548\":{},\"557\":{}},\"comment\":{}}],[\"dotenvfile\",{\"_index\":79,\"name\":{\"79\":{}},\"comment\":{}}],[\"dotenvnotfounderror\",{\"_index\":78,\"name\":{\"78\":{}},\"comment\":{}}],[\"downloadfile\",{\"_index\":206,\"name\":{\"247\":{}},\"comment\":{}}],[\"downloadgitrepository\",{\"_index\":162,\"name\":{\"190\":{}},\"comment\":{}}],[\"draft\",{\"_index\":193,\"name\":{\"234\":{}},\"comment\":{}}],[\"editor\",{\"_index\":585,\"name\":{\"734\":{}},\"comment\":{}}],[\"emptydisplayedvalue\",{\"_index\":523,\"name\":{\"665\":{}},\"comment\":{}}],[\"encodetoml\",{\"_index\":483,\"name\":{\"603\":{}},\"comment\":{}}],[\"ensureauthenticatedadmin\",{\"_index\":457,\"name\":{\"573\":{}},\"comment\":{}}],[\"ensureauthenticatedbusinessplatform\",{\"_index\":459,\"name\":{\"575\":{}},\"comment\":{}}],[\"ensureauthenticatedpartners\",{\"_index\":455,\"name\":{\"571\":{}},\"comment\":{}}],[\"ensureauthenticatedstorefront\",{\"_index\":456,\"name\":{\"572\":{}},\"comment\":{}}],[\"ensureauthenticatedthemes\",{\"_index\":458,\"name\":{\"574\":{}},\"comment\":{}}],[\"ensuregitispresentorabort\",{\"_index\":167,\"name\":{\"195\":{}},\"comment\":{}}],[\"ensureinsidegitdirectory\",{\"_index\":168,\"name\":{\"196\":{}},\"comment\":{}}],[\"ensureisclean\",{\"_index\":169,\"name\":{\"197\":{}},\"comment\":{}}],[\"env\",{\"_index\":74,\"name\":{\"74\":{},\"588\":{}},\"comment\":{}}],[\"env_ci\",{\"_index\":302,\"name\":{\"358\":{}},\"comment\":{}}],[\"env_ci_platform\",{\"_index\":303,\"name\":{\"359\":{}},\"comment\":{}}],[\"env_cloud\",{\"_index\":311,\"name\":{\"367\":{}},\"comment\":{}}],[\"env_device_id\",{\"_index\":304,\"name\":{\"360\":{}},\"comment\":{}}],[\"env_package_manager\",{\"_index\":305,\"name\":{\"361\":{}},\"comment\":{}}],[\"env_package_manager_workspaces\",{\"_index\":306,\"name\":{\"362\":{}},\"comment\":{}}],[\"env_plugin_installed_all\",{\"_index\":244,\"name\":{\"297\":{}},\"comment\":{}}],[\"env_plugin_installed_any_custom\",{\"_index\":307,\"name\":{\"363\":{}},\"comment\":{}}],[\"env_plugin_installed_shopify\",{\"_index\":308,\"name\":{\"364\":{}},\"comment\":{}}],[\"env_shell\",{\"_index\":309,\"name\":{\"365\":{}},\"comment\":{}}],[\"env_web_ide\",{\"_index\":310,\"name\":{\"366\":{}},\"comment\":{}}],[\"environments\",{\"_index\":91,\"name\":{\"92\":{}},\"comment\":{}}],[\"environmentsfilename\",{\"_index\":54,\"name\":{\"54\":{}},\"comment\":{}}],[\"err\",{\"_index\":439,\"name\":{\"543\":{},\"553\":{}},\"comment\":{}}],[\"error\",{\"_index\":446,\"name\":{\"555\":{}},\"comment\":{}}],[\"error_message\",{\"_index\":238,\"name\":{\"291\":{}},\"comment\":{}}],[\"errorhandler\",{\"_index\":94,\"name\":{\"94\":{}},\"comment\":{}}],[\"errormapper\",{\"_index\":99,\"name\":{\"101\":{}},\"comment\":{}}],[\"errors\",{\"_index\":659,\"name\":{\"842\":{}},\"comment\":{}}],[\"errortext\",{\"_index\":392,\"name\":{\"465\":{}},\"comment\":{}}],[\"escaperegexp\",{\"_index\":26,\"name\":{\"26\":{}},\"comment\":{}}],[\"exec\",{\"_index\":467,\"name\":{\"583\":{}},\"comment\":{}}],[\"execcli2\",{\"_index\":448,\"name\":{\"563\":{}},\"comment\":{}}],[\"execoptions\",{\"_index\":470,\"name\":{\"586\":{}},\"comment\":{}}],[\"execthemecheckcli\",{\"_index\":449,\"name\":{\"564\":{}},\"comment\":{}}],[\"exitwithtimestampwhenenvvariablepresent\",{\"_index\":51,\"name\":{\"51\":{}},\"comment\":{}}],[\"externalerror\",{\"_index\":114,\"name\":{\"123\":{}},\"comment\":{}}],[\"externalerrorhandler\",{\"_index\":477,\"name\":{\"596\":{}},\"comment\":{}}],[\"extname\",{\"_index\":415,\"name\":{\"490\":{}},\"comment\":{}}],[\"failicon\",{\"_index\":399,\"name\":{\"472\":{}},\"comment\":{}}],[\"fanouthookfunction\",{\"_index\":433,\"name\":{\"534\":{}},\"comment\":{}}],[\"fanouthooks\",{\"_index\":420,\"name\":{\"495\":{}},\"comment\":{}}],[\"fatalerror\",{\"_index\":107,\"name\":{\"109\":{}},\"comment\":{}}],[\"fatalerrortype\",{\"_index\":102,\"name\":{\"104\":{}},\"comment\":{}}],[\"fetch\",{\"_index\":204,\"name\":{\"245\":{},\"811\":{}},\"comment\":{}}],[\"fetchtheme\",{\"_index\":641,\"name\":{\"818\":{}},\"comment\":{}}],[\"fetchthemes\",{\"_index\":642,\"name\":{\"819\":{}},\"comment\":{}}],[\"fileexists\",{\"_index\":151,\"name\":{\"179\":{}},\"comment\":{}}],[\"fileexistssync\",{\"_index\":152,\"name\":{\"180\":{}},\"comment\":{}}],[\"filehasexecutablepermissions\",{\"_index\":150,\"name\":{\"178\":{}},\"comment\":{}}],[\"filehash\",{\"_index\":70,\"name\":{\"71\":{}},\"comment\":{}}],[\"filelastupdated\",{\"_index\":146,\"name\":{\"174\":{}},\"comment\":{}}],[\"filelastupdatedtimestamp\",{\"_index\":147,\"name\":{\"175\":{}},\"comment\":{}}],[\"filepath\",{\"_index\":201,\"name\":{\"242\":{}},\"comment\":{}}],[\"filerealpath\",{\"_index\":125,\"name\":{\"153\":{}},\"comment\":{}}],[\"filesize\",{\"_index\":141,\"name\":{\"169\":{}},\"comment\":{}}],[\"filesizesync\",{\"_index\":142,\"name\":{\"170\":{}},\"comment\":{}}],[\"findorcreate\",{\"_index\":634,\"name\":{\"810\":{}},\"comment\":{}}],[\"findpathup\",{\"_index\":156,\"name\":{\"184\":{}},\"comment\":{}}],[\"findupandreadpackagejson\",{\"_index\":329,\"name\":{\"386\":{}},\"comment\":{}}],[\"findupandreadpackagejsonnotfounderror\",{\"_index\":341,\"name\":{\"399\":{}},\"comment\":{}}],[\"firstpartydev\",{\"_index\":578,\"name\":{\"725\":{}},\"comment\":{}}],[\"footer\",{\"_index\":499,\"name\":{\"619\":{}},\"comment\":{}}],[\"formatpackagemanagercommand\",{\"_index\":362,\"name\":{\"432\":{}},\"comment\":{}}],[\"formatsection\",{\"_index\":379,\"name\":{\"449\":{}},\"comment\":{}}],[\"formattedmessage\",{\"_index\":111,\"name\":{\"114\":{},\"122\":{},\"130\":{},\"137\":{},\"144\":{},\"216\":{},\"223\":{}},\"comment\":{}}],[\"formdata\",{\"_index\":203,\"name\":{\"244\":{}},\"comment\":{}}],[\"functionproxyrequest\",{\"_index\":558,\"name\":{\"705\":{}},\"comment\":{}}],[\"generaterandomnameforsubdirectory\",{\"_index\":153,\"name\":{\"181\":{}},\"comment\":{}}],[\"genericshellcommand\",{\"_index\":386,\"name\":{\"458\":{}},\"comment\":{}}],[\"get\",{\"_index\":215,\"name\":{\"256\":{}},\"comment\":{}}],[\"getallpublicmetadata\",{\"_index\":224,\"name\":{\"267\":{},\"273\":{}},\"comment\":{}}],[\"getallsensitivemetadata\",{\"_index\":225,\"name\":{\"269\":{},\"274\":{}},\"comment\":{}}],[\"getarraycontainsduplicates\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"getarrayrejectingundefined\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"getavailabletcpport\",{\"_index\":479,\"name\":{\"599\":{}},\"comment\":{}}],[\"getbackendport\",{\"_index\":87,\"name\":{\"88\":{}},\"comment\":{}}],[\"getdependencies\",{\"_index\":322,\"name\":{\"379\":{}},\"comment\":{}}],[\"getenvironmentvariables\",{\"_index\":83,\"name\":{\"84\":{}},\"comment\":{}}],[\"getheadsymbolicref\",{\"_index\":166,\"name\":{\"194\":{}},\"comment\":{}}],[\"gethosttheme\",{\"_index\":625,\"name\":{\"799\":{}},\"comment\":{}}],[\"getidentitytokeninformation\",{\"_index\":88,\"name\":{\"89\":{}},\"comment\":{}}],[\"getlatestgitcommit\",{\"_index\":163,\"name\":{\"191\":{}},\"comment\":{}}],[\"getlatestgithubrelease\",{\"_index\":184,\"name\":{\"225\":{}},\"comment\":{}}],[\"getlistoftunnelplugins\",{\"_index\":421,\"name\":{\"496\":{}},\"comment\":{}}],[\"getorganization\",{\"_index\":86,\"name\":{\"87\":{}},\"comment\":{}}],[\"getoutputupdateclireminder\",{\"_index\":378,\"name\":{\"448\":{}},\"comment\":{}}],[\"getpackagemanager\",{\"_index\":318,\"name\":{\"375\":{}},\"comment\":{}}],[\"getpackagename\",{\"_index\":321,\"name\":{\"378\":{}},\"comment\":{}}],[\"getpartnerstoken\",{\"_index\":84,\"name\":{\"85\":{}},\"comment\":{}}],[\"getrandomname\",{\"_index\":20,\"name\":{\"20\":{}},\"comment\":{}}],[\"gettunnelstatus\",{\"_index\":610,\"name\":{\"761\":{}},\"comment\":{}}],[\"gitcloneoptions\",{\"_index\":172,\"name\":{\"200\":{}},\"comment\":{}}],[\"gitdirectorynotcleanerror\",{\"_index\":182,\"name\":{\"217\":{}},\"comment\":{}}],[\"githubrelease\",{\"_index\":187,\"name\":{\"228\":{}},\"comment\":{}}],[\"githubrepositoryreference\",{\"_index\":198,\"name\":{\"239\":{}},\"comment\":{}}],[\"gitignoretemplate\",{\"_index\":171,\"name\":{\"199\":{}},\"comment\":{}}],[\"gitpodurl\",{\"_index\":581,\"name\":{\"728\":{}},\"comment\":{}}],[\"glob\",{\"_index\":154,\"name\":{\"182\":{}},\"comment\":{}}],[\"globalflags\",{\"_index\":60,\"name\":{\"60\":{}},\"comment\":{}}],[\"graphqlrequest\",{\"_index\":544,\"name\":{\"686\":{}},\"comment\":{}}],[\"graphqlrequestoptions\",{\"_index\":547,\"name\":{\"689\":{}},\"comment\":{}}],[\"graphqlresponse\",{\"_index\":546,\"name\":{\"688\":{}},\"comment\":{}}],[\"graphqlresponseoptions\",{\"_index\":552,\"name\":{\"698\":{}},\"comment\":{}}],[\"graphqlvariables\",{\"_index\":545,\"name\":{\"687\":{}},\"comment\":{}}],[\"green\",{\"_index\":396,\"name\":{\"469\":{}},\"comment\":{}}],[\"groupby\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"handledeprecations\",{\"_index\":559,\"name\":{\"706\":{}},\"comment\":{}}],[\"handleerrors\",{\"_index\":553,\"name\":{\"699\":{}},\"comment\":{}}],[\"handler\",{\"_index\":93,\"name\":{\"93\":{},\"100\":{}},\"comment\":{}}],[\"hasdevelopmentrole\",{\"_index\":654,\"name\":{\"834\":{}},\"comment\":{}}],[\"hasgit\",{\"_index\":586,\"name\":{\"735\":{}},\"comment\":{}}],[\"hashstring\",{\"_index\":69,\"name\":{\"70\":{}},\"comment\":{}}],[\"hasmorepages\",{\"_index\":517,\"name\":{\"650\":{}},\"comment\":{}}],[\"header\",{\"_index\":667,\"name\":{\"855\":{}},\"comment\":{}}],[\"headers\",{\"_index\":540,\"name\":{\"681\":{}},\"comment\":{}}],[\"heading\",{\"_index\":389,\"name\":{\"462\":{}},\"comment\":{}}],[\"helpertext\",{\"_index\":668,\"name\":{\"856\":{}},\"comment\":{}}],[\"homedirectory\",{\"_index\":571,\"name\":{\"718\":{}},\"comment\":{}}],[\"hook\",{\"_index\":601,\"name\":{\"750\":{},\"757\":{}},\"comment\":{}}],[\"hookreturnpertunnelplugin\",{\"_index\":614,\"name\":{\"771\":{}},\"comment\":{}}],[\"hookreturnsperplugin\",{\"_index\":422,\"name\":{\"497\":{}},\"comment\":{}}],[\"hostthemelocalstorage\",{\"_index\":624,\"name\":{\"798\":{}},\"comment\":{}}],[\"hyphenate\",{\"_index\":28,\"name\":{\"28\":{}},\"comment\":{}}],[\"id\",{\"_index\":188,\"name\":{\"229\":{},\"829\":{}},\"comment\":{}}],[\"identityfqdn\",{\"_index\":563,\"name\":{\"710\":{}},\"comment\":{}}],[\"infotable\",{\"_index\":512,\"name\":{\"638\":{},\"646\":{},\"653\":{}},\"comment\":{}}],[\"infotablesection\",{\"_index\":666,\"name\":{\"853\":{}},\"comment\":{}}],[\"init\",{\"_index\":50,\"name\":{\"50\":{}},\"comment\":{}}],[\"initializegitrepository\",{\"_index\":159,\"name\":{\"187\":{}},\"comment\":{}}],[\"inlinetoken\",{\"_index\":662,\"name\":{\"846\":{}},\"comment\":{}}],[\"input\",{\"_index\":475,\"name\":{\"594\":{}},\"comment\":{}}],[\"installnodemodules\",{\"_index\":320,\"name\":{\"377\":{}},\"comment\":{}}],[\"installnpmdependenciesrecursively\",{\"_index\":319,\"name\":{\"376\":{}},\"comment\":{}}],[\"instance\",{\"_index\":594,\"name\":{\"743\":{}},\"comment\":{}}],[\"intemporarydirectory\",{\"_index\":122,\"name\":{\"150\":{}},\"comment\":{}}],[\"is_employee\",{\"_index\":256,\"name\":{\"312\":{}},\"comment\":{}}],[\"isabsolutepath\",{\"_index\":412,\"name\":{\"487\":{}},\"comment\":{}}],[\"isclean\",{\"_index\":170,\"name\":{\"198\":{}},\"comment\":{}}],[\"iscloudenvironment\",{\"_index\":583,\"name\":{\"730\":{}},\"comment\":{}}],[\"isconfirmationprompt\",{\"_index\":508,\"name\":{\"631\":{}},\"comment\":{}}],[\"isdevelopment\",{\"_index\":572,\"name\":{\"719\":{}},\"comment\":{}}],[\"isdirectory\",{\"_index\":140,\"name\":{\"168\":{}},\"comment\":{}}],[\"isequal\",{\"_index\":14,\"name\":{\"14\":{}},\"comment\":{}}],[\"iserr\",{\"_index\":440,\"name\":{\"547\":{},\"556\":{}},\"comment\":{}}],[\"isshopify\",{\"_index\":574,\"name\":{\"721\":{}},\"comment\":{}}],[\"isspin\",{\"_index\":593,\"name\":{\"742\":{}},\"comment\":{}}],[\"isspinenvironment\",{\"_index\":595,\"name\":{\"744\":{}},\"comment\":{}}],[\"isterminalinteractive\",{\"_index\":570,\"name\":{\"717\":{}},\"comment\":{}}],[\"isunittest\",{\"_index\":575,\"name\":{\"722\":{}},\"comment\":{}}],[\"isvalidurl\",{\"_index\":33,\"name\":{\"33\":{}},\"comment\":{}}],[\"isverbose\",{\"_index\":573,\"name\":{\"720\":{}},\"comment\":{}}],[\"isvscode\",{\"_index\":527,\"name\":{\"669\":{}},\"comment\":{}}],[\"italic\",{\"_index\":391,\"name\":{\"464\":{}},\"comment\":{}}],[\"items\",{\"_index\":669,\"name\":{\"857\":{},\"862\":{}},\"comment\":{}}],[\"joinpath\",{\"_index\":408,\"name\":{\"483\":{}},\"comment\":{}}],[\"json\",{\"_index\":387,\"name\":{\"459\":{},\"679\":{}},\"comment\":{}}],[\"key\",{\"_index\":525,\"name\":{\"667\":{}},\"comment\":{}}],[\"keypress\",{\"_index\":524,\"name\":{\"666\":{}},\"comment\":{}}],[\"label\",{\"_index\":664,\"name\":{\"850\":{}},\"comment\":{}}],[\"latesttag\",{\"_index\":177,\"name\":{\"206\":{}},\"comment\":{}}],[\"linesdiff\",{\"_index\":400,\"name\":{\"473\":{}},\"comment\":{}}],[\"linestocolumns\",{\"_index\":24,\"name\":{\"24\":{}},\"comment\":{}}],[\"link\",{\"_index\":388,\"name\":{\"461\":{},\"848\":{}},\"comment\":{}}],[\"linktoken\",{\"_index\":663,\"name\":{\"847\":{}},\"comment\":{}}],[\"list\",{\"_index\":671,\"name\":{\"859\":{}},\"comment\":{}}],[\"listtoken\",{\"_index\":670,\"name\":{\"858\":{}},\"comment\":{}}],[\"loadenvironment\",{\"_index\":90,\"name\":{\"91\":{}},\"comment\":{}}],[\"localclipackage\",{\"_index\":59,\"name\":{\"59\":{}},\"comment\":{}}],[\"localstorage\",{\"_index\":213,\"name\":{\"253\":{}},\"comment\":{}}],[\"lockfile\",{\"_index\":337,\"name\":{\"394\":{}},\"comment\":{}}],[\"lockfiles\",{\"_index\":336,\"name\":{\"393\":{}},\"comment\":{}}],[\"logger\",{\"_index\":380,\"name\":{\"450\":{}},\"comment\":{}}],[\"loglevel\",{\"_index\":401,\"name\":{\"474\":{}},\"comment\":{}}],[\"logout\",{\"_index\":460,\"name\":{\"576\":{}},\"comment\":{}}],[\"lookupmimetype\",{\"_index\":231,\"name\":{\"280\":{}},\"comment\":{}}],[\"macaddress\",{\"_index\":588,\"name\":{\"737\":{}},\"comment\":{}}],[\"magenta\",{\"_index\":395,\"name\":{\"468\":{}},\"comment\":{}}],[\"manager\",{\"_index\":316,\"name\":{\"373\":{},\"802\":{}},\"comment\":{}}],[\"map\",{\"_index\":444,\"name\":{\"551\":{},\"560\":{}},\"comment\":{}}],[\"maperror\",{\"_index\":445,\"name\":{\"552\":{},\"561\":{}},\"comment\":{}}],[\"mapvalues\",{\"_index\":18,\"name\":{\"18\":{}},\"comment\":{}}],[\"memoize\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"message\",{\"_index\":435,\"name\":{\"539\":{},\"636\":{},\"645\":{},\"651\":{},\"660\":{}},\"comment\":{}}],[\"metadata\",{\"_index\":240,\"name\":{\"293\":{}},\"comment\":{}}],[\"minwdmwindowsversion\",{\"_index\":452,\"name\":{\"568\":{}},\"comment\":{}}],[\"mkdir\",{\"_index\":133,\"name\":{\"161\":{}},\"comment\":{}}],[\"mkdirsync\",{\"_index\":134,\"name\":{\"162\":{}},\"comment\":{}}],[\"mktmpdir\",{\"_index\":139,\"name\":{\"167\":{}},\"comment\":{}}],[\"mockandcaptureoutput\",{\"_index\":622,\"name\":{\"796\":{}},\"comment\":{}}],[\"moduledirectory\",{\"_index\":417,\"name\":{\"492\":{}},\"comment\":{}}],[\"monorail_command_topic\",{\"_index\":235,\"name\":{\"284\":{}},\"comment\":{}}],[\"monoraileventpublic\",{\"_index\":312,\"name\":{\"371\":{}},\"comment\":{}}],[\"monoraileventsensitive\",{\"_index\":313,\"name\":{\"372\":{}},\"comment\":{}}],[\"movefile\",{\"_index\":148,\"name\":{\"176\":{}},\"comment\":{}}],[\"name\",{\"_index\":191,\"name\":{\"232\":{},\"401\":{},\"423\":{},\"527\":{},\"787\":{},\"830\":{}},\"comment\":{}}],[\"nextsteps\",{\"_index\":110,\"name\":{\"113\":{},\"118\":{},\"129\":{},\"136\":{},\"143\":{},\"212\":{},\"219\":{}},\"comment\":{}}],[\"no\",{\"_index\":61,\"name\":{\"62\":{}},\"comment\":{}}],[\"node/abort\",{\"_index\":36,\"name\":{\"36\":{}},\"comment\":{}}],[\"node/analytics\",{\"_index\":40,\"name\":{\"41\":{}},\"comment\":{}}],[\"node/api/admin\",{\"_index\":535,\"name\":{\"675\":{}},\"comment\":{}}],[\"node/api/business\",{\"_index\":541,\"name\":{\"683\":{}},\"comment\":{}}],[\"node/api/graphql\",{\"_index\":543,\"name\":{\"685\":{}},\"comment\":{}}],[\"node/api/http\",{\"_index\":555,\"name\":{\"702\":{}},\"comment\":{}}],[\"node/api/partners\",{\"_index\":556,\"name\":{\"703\":{}},\"comment\":{}}],[\"node/archiver\",{\"_index\":42,\"name\":{\"43\":{}},\"comment\":{}}],[\"node/base\",{\"_index\":44,\"name\":{\"45\":{}},\"comment\":{}}],[\"node/cli\",{\"_index\":55,\"name\":{\"55\":{}},\"comment\":{}}],[\"node/colors\",{\"_index\":64,\"name\":{\"65\":{}},\"comment\":{}}],[\"node/context/fqdn\",{\"_index\":560,\"name\":{\"707\":{}},\"comment\":{}}],[\"node/context/local\",{\"_index\":569,\"name\":{\"716\":{}},\"comment\":{}}],[\"node/context/spin\",{\"_index\":590,\"name\":{\"739\":{}},\"comment\":{}}],[\"node/crypto\",{\"_index\":65,\"name\":{\"66\":{}},\"comment\":{}}],[\"node/dot\",{\"_index\":73,\"name\":{\"74\":{}},\"comment\":{}}],[\"node/environment\",{\"_index\":82,\"name\":{\"83\":{}},\"comment\":{}}],[\"node/environments\",{\"_index\":89,\"name\":{\"90\":{}},\"comment\":{}}],[\"node/error\",{\"_index\":92,\"name\":{\"93\":{},\"99\":{}},\"comment\":{}}],[\"node/framework\",{\"_index\":118,\"name\":{\"146\":{}},\"comment\":{}}],[\"node/fs\",{\"_index\":120,\"name\":{\"148\":{}},\"comment\":{}}],[\"node/git\",{\"_index\":158,\"name\":{\"186\":{}},\"comment\":{}}],[\"node/github\",{\"_index\":183,\"name\":{\"224\":{}},\"comment\":{}}],[\"node/hooks/deprecations\",{\"_index\":598,\"name\":{\"747\":{}},\"comment\":{}}],[\"node/hooks/postrun\",{\"_index\":600,\"name\":{\"749\":{}},\"comment\":{}}],[\"node/hooks/prerun\",{\"_index\":602,\"name\":{\"751\":{}},\"comment\":{}}],[\"node/http\",{\"_index\":202,\"name\":{\"243\":{}},\"comment\":{}}],[\"node/liquid\",{\"_index\":208,\"name\":{\"249\":{}},\"comment\":{}}],[\"node/local\",{\"_index\":211,\"name\":{\"252\":{}},\"comment\":{}}],[\"node/metadata\",{\"_index\":219,\"name\":{\"260\":{}},\"comment\":{}}],[\"node/mimes\",{\"_index\":230,\"name\":{\"279\":{}},\"comment\":{}}],[\"node/monorail\",{\"_index\":233,\"name\":{\"282\":{}},\"comment\":{}}],[\"node/node\",{\"_index\":314,\"name\":{\"373\":{}},\"comment\":{}}],[\"node/os\",{\"_index\":356,\"name\":{\"425\":{}},\"comment\":{}}],[\"node/output\",{\"_index\":361,\"name\":{\"431\":{}},\"comment\":{}}],[\"node/path\",{\"_index\":407,\"name\":{\"482\":{}},\"comment\":{}}],[\"node/plugins\",{\"_index\":419,\"name\":{\"494\":{}},\"comment\":{}}],[\"node/plugins/tunnel\",{\"_index\":607,\"name\":{\"758\":{}},\"comment\":{}}],[\"node/result\",{\"_index\":436,\"name\":{\"540\":{}},\"comment\":{}}],[\"node/ruby\",{\"_index\":447,\"name\":{\"562\":{}},\"comment\":{}}],[\"node/schema\",{\"_index\":453,\"name\":{\"569\":{}},\"comment\":{}}],[\"node/session\",{\"_index\":454,\"name\":{\"570\":{}},\"comment\":{}}],[\"node/system\",{\"_index\":464,\"name\":{\"580\":{}},\"comment\":{}}],[\"node/tcp\",{\"_index\":478,\"name\":{\"598\":{}},\"comment\":{}}],[\"node/testing/output\",{\"_index\":621,\"name\":{\"795\":{}},\"comment\":{}}],[\"node/themes/conf\",{\"_index\":623,\"name\":{\"797\":{}},\"comment\":{}}],[\"node/themes/models/theme\",{\"_index\":648,\"name\":{\"825\":{}},\"comment\":{}}],[\"node/themes/theme\",{\"_index\":628,\"name\":{\"802\":{},\"813\":{}},\"comment\":{}}],[\"node/themes/themes\",{\"_index\":640,\"name\":{\"817\":{}},\"comment\":{}}],[\"node/toml\",{\"_index\":481,\"name\":{\"601\":{}},\"comment\":{}}],[\"node/ui\",{\"_index\":484,\"name\":{\"604\":{}},\"comment\":{}}],[\"node/vscode\",{\"_index\":526,\"name\":{\"668\":{}},\"comment\":{}}],[\"node_version\",{\"_index\":255,\"name\":{\"311\":{}},\"comment\":{}}],[\"normalizepath\",{\"_index\":409,\"name\":{\"484\":{}},\"comment\":{}}],[\"normalizestorefqdn\",{\"_index\":564,\"name\":{\"711\":{}},\"comment\":{}}],[\"notprovidedstorefqdnerror\",{\"_index\":568,\"name\":{\"715\":{}},\"comment\":{}}],[\"npmlockfile\",{\"_index\":333,\"name\":{\"390\":{}},\"comment\":{}}],[\"oclif\",{\"_index\":348,\"name\":{\"412\":{}},\"comment\":{}}],[\"ok\",{\"_index\":438,\"name\":{\"542\":{},\"544\":{}},\"comment\":{}}],[\"oninput\",{\"_index\":504,\"name\":{\"625\":{}},\"comment\":{}}],[\"onresponse\",{\"_index\":554,\"name\":{\"700\":{}},\"comment\":{}}],[\"openurl\",{\"_index\":465,\"name\":{\"581\":{}},\"comment\":{}}],[\"options\",{\"_index\":424,\"name\":{\"500\":{},\"507\":{},\"514\":{},\"522\":{},\"529\":{},\"774\":{},\"782\":{}},\"comment\":{}}],[\"ordered\",{\"_index\":672,\"name\":{\"863\":{}},\"comment\":{}}],[\"outputcompleted\",{\"_index\":367,\"name\":{\"437\":{}},\"comment\":{}}],[\"outputcontent\",{\"_index\":363,\"name\":{\"433\":{}},\"comment\":{}}],[\"outputdebug\",{\"_index\":368,\"name\":{\"438\":{}},\"comment\":{}}],[\"outputinfo\",{\"_index\":365,\"name\":{\"435\":{}},\"comment\":{}}],[\"outputmessage\",{\"_index\":383,\"name\":{\"454\":{}},\"comment\":{}}],[\"outputnewline\",{\"_index\":370,\"name\":{\"440\":{}},\"comment\":{}}],[\"outputprocess\",{\"_index\":404,\"name\":{\"478\":{}},\"comment\":{}}],[\"outputsuccess\",{\"_index\":366,\"name\":{\"436\":{}},\"comment\":{}}],[\"outputtoken\",{\"_index\":384,\"name\":{\"455\":{}},\"comment\":{}}],[\"outputwarn\",{\"_index\":369,\"name\":{\"439\":{}},\"comment\":{}}],[\"outputwhereappropriate\",{\"_index\":375,\"name\":{\"445\":{}},\"comment\":{}}],[\"outsidegitdirectoryerror\",{\"_index\":181,\"name\":{\"210\":{}},\"comment\":{}}],[\"overrides\",{\"_index\":352,\"name\":{\"418\":{}},\"comment\":{}}],[\"package\",{\"_index\":315,\"name\":{\"373\":{}},\"comment\":{}}],[\"packagejson\",{\"_index\":342,\"name\":{\"400\":{}},\"comment\":{}}],[\"packagejsonnotfounderror\",{\"_index\":340,\"name\":{\"398\":{}},\"comment\":{}}],[\"packagejsonscript\",{\"_index\":397,\"name\":{\"470\":{}},\"comment\":{}}],[\"packagemanager\",{\"_index\":339,\"name\":{\"396\":{},\"397\":{}},\"comment\":{}}],[\"packagemanagerusedforcreating\",{\"_index\":317,\"name\":{\"374\":{}},\"comment\":{}}],[\"parse\",{\"_index\":52,\"name\":{\"52\":{}},\"comment\":{}}],[\"parsecommandcontent\",{\"_index\":603,\"name\":{\"752\":{}},\"comment\":{}}],[\"parsegithubrepositoryreference\",{\"_index\":186,\"name\":{\"227\":{}},\"comment\":{}}],[\"parsegithubrepositoryurl\",{\"_index\":185,\"name\":{\"226\":{}},\"comment\":{}}],[\"partition\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"partner_id\",{\"_index\":245,\"name\":{\"300\":{}},\"comment\":{}}],[\"partnersfqdn\",{\"_index\":561,\"name\":{\"708\":{}},\"comment\":{}}],[\"partnersrequest\",{\"_index\":557,\"name\":{\"704\":{}},\"comment\":{}}],[\"password\",{\"_index\":520,\"name\":{\"661\":{}},\"comment\":{}}],[\"patchenvfile\",{\"_index\":77,\"name\":{\"77\":{}},\"comment\":{}}],[\"path\",{\"_index\":80,\"name\":{\"80\":{},\"460\":{}},\"comment\":{}}],[\"pathtofileurl\",{\"_index\":155,\"name\":{\"183\":{}},\"comment\":{}}],[\"peerdependencies\",{\"_index\":347,\"name\":{\"410\":{}},\"comment\":{}}],[\"pickby\",{\"_index\":17,\"name\":{\"17\":{}},\"comment\":{}}],[\"pickbyprefix\",{\"_index\":534,\"name\":{\"674\":{}},\"comment\":{}}],[\"platform\",{\"_index\":359,\"name\":{\"429\":{},\"683\":{},\"733\":{}},\"comment\":{}}],[\"platformandarch\",{\"_index\":358,\"name\":{\"427\":{}},\"comment\":{}}],[\"pluginreturns\",{\"_index\":425,\"name\":{\"502\":{},\"509\":{},\"518\":{},\"524\":{},\"531\":{},\"778\":{},\"784\":{}},\"comment\":{}}],[\"pluginreturnsforhook\",{\"_index\":432,\"name\":{\"533\":{}},\"comment\":{}}],[\"plugins\",{\"_index\":349,\"name\":{\"414\":{}},\"comment\":{}}],[\"pluralize\",{\"_index\":22,\"name\":{\"22\":{}},\"comment\":{}}],[\"pnpmlockfile\",{\"_index\":334,\"name\":{\"391\":{}},\"comment\":{}}],[\"pnpmworkspacefile\",{\"_index\":335,\"name\":{\"392\":{}},\"comment\":{}}],[\"port\",{\"_index\":429,\"name\":{\"516\":{},\"766\":{},\"776\":{}},\"comment\":{}}],[\"postrun\",{\"_index\":599,\"name\":{\"748\":{}},\"comment\":{}}],[\"prefix\",{\"_index\":405,\"name\":{\"479\":{},\"673\":{}},\"comment\":{}}],[\"prerelease\",{\"_index\":194,\"name\":{\"235\":{}},\"comment\":{}}],[\"prettier\",{\"_index\":353,\"name\":{\"420\":{}},\"comment\":{}}],[\"private\",{\"_index\":354,\"name\":{\"421\":{}},\"comment\":{}}],[\"processes\",{\"_index\":502,\"name\":{\"623\":{}},\"comment\":{}}],[\"progressupdater\",{\"_index\":175,\"name\":{\"203\":{}},\"comment\":{}}],[\"project_type\",{\"_index\":246,\"name\":{\"302\":{}},\"comment\":{}}],[\"provider\",{\"_index\":430,\"name\":{\"517\":{},\"537\":{},\"765\":{},\"777\":{}},\"comment\":{}}],[\"public\",{\"_index\":228,\"name\":{\"277\":{},\"298\":{},\"370\":{}},\"comment\":{}}],[\"public_command_metadata\",{\"_index\":423,\"name\":{\"498\":{}},\"comment\":{}}],[\"publicschema\",{\"_index\":226,\"name\":{\"271\":{}},\"comment\":{}}],[\"published_at\",{\"_index\":196,\"name\":{\"237\":{}},\"comment\":{}}],[\"publishmonorailevent\",{\"_index\":234,\"name\":{\"283\":{}},\"comment\":{}}],[\"publishtheme\",{\"_index\":645,\"name\":{\"822\":{}},\"comment\":{}}],[\"query\",{\"_index\":548,\"name\":{\"690\":{}},\"comment\":{}}],[\"randombytes\",{\"_index\":71,\"name\":{\"72\":{}},\"comment\":{}}],[\"randomhex\",{\"_index\":66,\"name\":{\"67\":{}},\"comment\":{}}],[\"randomnamefamily\",{\"_index\":31,\"name\":{\"31\":{}},\"comment\":{}}],[\"randomuuid\",{\"_index\":72,\"name\":{\"73\":{}},\"comment\":{}}],[\"raw\",{\"_index\":385,\"name\":{\"457\":{}},\"comment\":{}}],[\"readandparsedotenv\",{\"_index\":75,\"name\":{\"75\":{}},\"comment\":{}}],[\"readandparsepackagejson\",{\"_index\":325,\"name\":{\"382\":{}},\"comment\":{}}],[\"readfile\",{\"_index\":123,\"name\":{\"151\":{}},\"comment\":{}}],[\"readfilesync\",{\"_index\":124,\"name\":{\"152\":{}},\"comment\":{}}],[\"readoptions\",{\"_index\":157,\"name\":{\"185\":{}},\"comment\":{}}],[\"recursiveliquidtemplatecopy\",{\"_index\":210,\"name\":{\"251\":{}},\"comment\":{}}],[\"registercleanbugsnagerrorsfromwithinplugins\",{\"_index\":97,\"name\":{\"97\":{}},\"comment\":{}}],[\"relativepath\",{\"_index\":411,\"name\":{\"486\":{}},\"comment\":{}}],[\"relativizepath\",{\"_index\":416,\"name\":{\"491\":{}},\"comment\":{}}],[\"removefile\",{\"_index\":135,\"name\":{\"163\":{}},\"comment\":{}}],[\"removefilesync\",{\"_index\":137,\"name\":{\"165\":{}},\"comment\":{}}],[\"removehosttheme\",{\"_index\":627,\"name\":{\"801\":{}},\"comment\":{}}],[\"removetheme\",{\"_index\":632,\"name\":{\"807\":{}},\"comment\":{}}],[\"renamefile\",{\"_index\":136,\"name\":{\"164\":{}},\"comment\":{}}],[\"renderalertoptions\",{\"_index\":506,\"name\":{\"629\":{}},\"comment\":{}}],[\"renderautocompleteoptions\",{\"_index\":516,\"name\":{\"647\":{}},\"comment\":{}}],[\"renderautocompleteprompt\",{\"_index\":492,\"name\":{\"612\":{}},\"comment\":{}}],[\"renderconcurrent\",{\"_index\":485,\"name\":{\"605\":{}},\"comment\":{}}],[\"renderconcurrentoptions\",{\"_index\":497,\"name\":{\"617\":{}},\"comment\":{}}],[\"renderconfirmationprompt\",{\"_index\":491,\"name\":{\"611\":{}},\"comment\":{}}],[\"renderconfirmationpromptoptions\",{\"_index\":513,\"name\":{\"639\":{}},\"comment\":{}}],[\"renderfatalerror\",{\"_index\":489,\"name\":{\"609\":{}},\"comment\":{}}],[\"renderinfo\",{\"_index\":486,\"name\":{\"606\":{}},\"comment\":{}}],[\"renderliquidtemplate\",{\"_index\":209,\"name\":{\"250\":{}},\"comment\":{}}],[\"renderoptions\",{\"_index\":498,\"name\":{\"618\":{},\"632\":{},\"642\":{},\"648\":{},\"657\":{}},\"comment\":{}}],[\"renderselectprompt\",{\"_index\":490,\"name\":{\"610\":{}},\"comment\":{}}],[\"renderselectpromptoptions\",{\"_index\":507,\"name\":{\"630\":{}},\"comment\":{}}],[\"rendersuccess\",{\"_index\":487,\"name\":{\"607\":{}},\"comment\":{}}],[\"rendertable\",{\"_index\":493,\"name\":{\"613\":{}},\"comment\":{}}],[\"rendertasks\",{\"_index\":494,\"name\":{\"614\":{}},\"comment\":{}}],[\"rendertext\",{\"_index\":496,\"name\":{\"616\":{}},\"comment\":{}}],[\"rendertextprompt\",{\"_index\":495,\"name\":{\"615\":{}},\"comment\":{}}],[\"rendertextpromptoptions\",{\"_index\":519,\"name\":{\"656\":{}},\"comment\":{}}],[\"renderwarning\",{\"_index\":488,\"name\":{\"608\":{}},\"comment\":{}}],[\"reportanalyticsevent\",{\"_index\":41,\"name\":{\"42\":{}},\"comment\":{}}],[\"repourl\",{\"_index\":173,\"name\":{\"201\":{}},\"comment\":{}}],[\"required\",{\"_index\":530,\"name\":{\"671\":{}},\"comment\":{}}],[\"resolutions\",{\"_index\":351,\"name\":{\"416\":{}},\"comment\":{}}],[\"resolveframework\",{\"_index\":119,\"name\":{\"147\":{}},\"comment\":{}}],[\"resolvepath\",{\"_index\":410,\"name\":{\"485\":{}},\"comment\":{}}],[\"response\",{\"_index\":207,\"name\":{\"248\":{}},\"comment\":{}}],[\"responseoptions\",{\"_index\":551,\"name\":{\"697\":{}},\"comment\":{}}],[\"restrequest\",{\"_index\":537,\"name\":{\"677\":{}},\"comment\":{}}],[\"restresponse\",{\"_index\":538,\"name\":{\"678\":{}},\"comment\":{}}],[\"result\",{\"_index\":437,\"name\":{\"541\":{}},\"comment\":{}}],[\"resultwithenvironment\",{\"_index\":53,\"name\":{\"53\":{}},\"comment\":{}}],[\"retry\",{\"_index\":657,\"name\":{\"840\":{}},\"comment\":{}}],[\"retrycount\",{\"_index\":658,\"name\":{\"841\":{}},\"comment\":{}}],[\"rmdir\",{\"_index\":138,\"name\":{\"166\":{}},\"comment\":{}}],[\"role\",{\"_index\":653,\"name\":{\"833\":{}},\"comment\":{}}],[\"ruby_version\",{\"_index\":254,\"name\":{\"310\":{}},\"comment\":{}}],[\"rubycliversion\",{\"_index\":451,\"name\":{\"567\":{}},\"comment\":{}}],[\"runcli\",{\"_index\":56,\"name\":{\"56\":{}},\"comment\":{}}],[\"runcreatecli\",{\"_index\":57,\"name\":{\"57\":{}},\"comment\":{}}],[\"runtimemetadatamanager\",{\"_index\":221,\"name\":{\"262\":{}},\"comment\":{}}],[\"schemas\",{\"_index\":236,\"name\":{\"285\":{}},\"comment\":{}}],[\"scripts\",{\"_index\":344,\"name\":{\"404\":{}},\"comment\":{}}],[\"search\",{\"_index\":518,\"name\":{\"654\":{}},\"comment\":{}}],[\"senderrortobugsnag\",{\"_index\":95,\"name\":{\"95\":{}},\"comment\":{}}],[\"sensitive\",{\"_index\":229,\"name\":{\"278\":{},\"288\":{},\"369\":{}},\"comment\":{}}],[\"sensitive_command_metadata\",{\"_index\":427,\"name\":{\"505\":{}},\"comment\":{}}],[\"sensitiveschema\",{\"_index\":227,\"name\":{\"272\":{}},\"comment\":{}}],[\"set\",{\"_index\":216,\"name\":{\"257\":{}},\"comment\":{}}],[\"sethosttheme\",{\"_index\":626,\"name\":{\"800\":{}},\"comment\":{}}],[\"setmimetypes\",{\"_index\":232,\"name\":{\"281\":{}},\"comment\":{}}],[\"settheme\",{\"_index\":631,\"name\":{\"806\":{}},\"comment\":{}}],[\"sha256\",{\"_index\":68,\"name\":{\"69\":{}},\"comment\":{}}],[\"shallow\",{\"_index\":176,\"name\":{\"205\":{}},\"comment\":{}}],[\"shopify/app\",{\"_index\":426,\"name\":{\"504\":{},\"511\":{}},\"comment\":{}}],[\"shopifyfetch\",{\"_index\":205,\"name\":{\"246\":{}},\"comment\":{}}],[\"shortcuts\",{\"_index\":500,\"name\":{\"621\":{}},\"comment\":{}}],[\"shoulddisplaycolors\",{\"_index\":377,\"name\":{\"447\":{}},\"comment\":{}}],[\"shouldreporterror\",{\"_index\":100,\"name\":{\"102\":{}},\"comment\":{}}],[\"show\",{\"_index\":592,\"name\":{\"741\":{}},\"comment\":{}}],[\"showtimestamps\",{\"_index\":503,\"name\":{\"624\":{}},\"comment\":{}}],[\"signal\",{\"_index\":476,\"name\":{\"595\":{}},\"comment\":{}}],[\"skip\",{\"_index\":660,\"name\":{\"843\":{}},\"comment\":{}}],[\"sleep\",{\"_index\":468,\"name\":{\"584\":{}},\"comment\":{}}],[\"slugify\",{\"_index\":25,\"name\":{\"25\":{}},\"comment\":{}}],[\"spinfqdn\",{\"_index\":591,\"name\":{\"740\":{}},\"comment\":{}}],[\"starttunnel\",{\"_index\":620,\"name\":{\"794\":{}},\"comment\":{}}],[\"status\",{\"_index\":539,\"name\":{\"680\":{}},\"comment\":{}}],[\"stderr\",{\"_index\":473,\"name\":{\"592\":{}},\"comment\":{}}],[\"stdin\",{\"_index\":471,\"name\":{\"590\":{}},\"comment\":{}}],[\"stdio\",{\"_index\":474,\"name\":{\"593\":{}},\"comment\":{}}],[\"stdout\",{\"_index\":472,\"name\":{\"591\":{}},\"comment\":{}}],[\"stoptunnel\",{\"_index\":611,\"name\":{\"763\":{}},\"comment\":{}}],[\"storage\",{\"_index\":212,\"name\":{\"252\":{}},\"comment\":{}}],[\"store_fqdn\",{\"_index\":241,\"name\":{\"294\":{}},\"comment\":{}}],[\"store_fqdn_hash\",{\"_index\":257,\"name\":{\"313\":{}},\"comment\":{}}],[\"storeadminurl\",{\"_index\":639,\"name\":{\"816\":{}},\"comment\":{}}],[\"storefqdn\",{\"_index\":463,\"name\":{\"579\":{}},\"comment\":{}}],[\"stringifymessage\",{\"_index\":371,\"name\":{\"441\":{}},\"comment\":{}}],[\"stripuppath\",{\"_index\":121,\"name\":{\"149\":{}},\"comment\":{}}],[\"subheading\",{\"_index\":390,\"name\":{\"463\":{}},\"comment\":{}}],[\"submitwithshortcuts\",{\"_index\":510,\"name\":{\"635\":{}},\"comment\":{}}],[\"subtitle\",{\"_index\":501,\"name\":{\"622\":{}},\"comment\":{}}],[\"success\",{\"_index\":250,\"name\":{\"306\":{}},\"comment\":{}}],[\"successicon\",{\"_index\":398,\"name\":{\"471\":{}},\"comment\":{}}],[\"tablecolumn\",{\"_index\":665,\"name\":{\"852\":{}},\"comment\":{}}],[\"tag_name\",{\"_index\":190,\"name\":{\"231\":{}},\"comment\":{}}],[\"takerandomfromarray\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"tarball_url\",{\"_index\":197,\"name\":{\"238\":{}},\"comment\":{}}],[\"task\",{\"_index\":655,\"name\":{\"836\":{},\"838\":{}},\"comment\":{}}],[\"terminalsupportsrawmode\",{\"_index\":469,\"name\":{\"585\":{}},\"comment\":{}}],[\"theme\",{\"_index\":650,\"name\":{\"827\":{}},\"comment\":{}}],[\"themeeditorurl\",{\"_index\":638,\"name\":{\"815\":{}},\"comment\":{}}],[\"themeid\",{\"_index\":630,\"name\":{\"805\":{}},\"comment\":{}}],[\"thememanager\",{\"_index\":629,\"name\":{\"803\":{}},\"comment\":{}}],[\"themeparams\",{\"_index\":647,\"name\":{\"824\":{}},\"comment\":{}}],[\"themepreviewurl\",{\"_index\":637,\"name\":{\"814\":{}},\"comment\":{}}],[\"time_end\",{\"_index\":248,\"name\":{\"304\":{}},\"comment\":{}}],[\"time_start\",{\"_index\":247,\"name\":{\"303\":{}},\"comment\":{}}],[\"title\",{\"_index\":656,\"name\":{\"837\":{},\"861\":{}},\"comment\":{}}],[\"token\",{\"_index\":462,\"name\":{\"578\":{},\"693\":{}},\"comment\":{}}],[\"tokenitem\",{\"_index\":661,\"name\":{\"845\":{}},\"comment\":{}}],[\"tokenizedstring\",{\"_index\":381,\"name\":{\"451\":{}},\"comment\":{}}],[\"topic\",{\"_index\":605,\"name\":{\"755\":{}},\"comment\":{}}],[\"total_time\",{\"_index\":249,\"name\":{\"305\":{}},\"comment\":{}}],[\"touchfile\",{\"_index\":127,\"name\":{\"155\":{}},\"comment\":{}}],[\"touchfilesync\",{\"_index\":128,\"name\":{\"156\":{}},\"comment\":{}}],[\"trymessage\",{\"_index\":108,\"name\":{\"111\":{},\"120\":{},\"127\":{},\"134\":{},\"141\":{},\"214\":{},\"221\":{}},\"comment\":{}}],[\"tryparseint\",{\"_index\":23,\"name\":{\"23\":{}},\"comment\":{}}],[\"tunnel_provider\",{\"_index\":431,\"name\":{\"520\":{},\"780\":{}},\"comment\":{}}],[\"tunnel_start\",{\"_index\":428,\"name\":{\"512\":{},\"772\":{}},\"comment\":{}}],[\"tunnelclient\",{\"_index\":609,\"name\":{\"760\":{}},\"comment\":{}}],[\"tunnelerror\",{\"_index\":613,\"name\":{\"768\":{}},\"comment\":{}}],[\"tunnelerrortype\",{\"_index\":608,\"name\":{\"759\":{}},\"comment\":{}}],[\"tunnelpluginerror\",{\"_index\":434,\"name\":{\"536\":{}},\"comment\":{}}],[\"tunnelproviderfunction\",{\"_index\":615,\"name\":{\"788\":{}},\"comment\":{}}],[\"tunnelstartaction\",{\"_index\":618,\"name\":{\"791\":{}},\"comment\":{}}],[\"tunnelstartfunction\",{\"_index\":616,\"name\":{\"789\":{}},\"comment\":{}}],[\"tunnelstartreturn\",{\"_index\":617,\"name\":{\"790\":{}},\"comment\":{}}],[\"tunnelstatustype\",{\"_index\":612,\"name\":{\"767\":{}},\"comment\":{}}],[\"type\",{\"_index\":109,\"name\":{\"112\":{},\"121\":{},\"128\":{},\"135\":{},\"142\":{},\"215\":{},\"222\":{},\"538\":{},\"770\":{}},\"comment\":{}}],[\"uname\",{\"_index\":253,\"name\":{\"309\":{}},\"comment\":{}}],[\"underscore\",{\"_index\":29,\"name\":{\"29\":{}},\"comment\":{}}],[\"uniqby\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"unlinkfilesync\",{\"_index\":143,\"name\":{\"171\":{}},\"comment\":{}}],[\"unstyled\",{\"_index\":376,\"name\":{\"446\":{}},\"comment\":{}}],[\"updatetheme\",{\"_index\":644,\"name\":{\"821\":{}},\"comment\":{}}],[\"url\",{\"_index\":189,\"name\":{\"230\":{},\"692\":{},\"851\":{}},\"comment\":{}}],[\"urls\",{\"_index\":636,\"name\":{\"813\":{}},\"comment\":{}}],[\"usedeviceauth\",{\"_index\":579,\"name\":{\"726\":{}},\"comment\":{}}],[\"uselocalcliifdetected\",{\"_index\":58,\"name\":{\"58\":{}},\"comment\":{}}],[\"usepartnerstoken\",{\"_index\":85,\"name\":{\"86\":{}},\"comment\":{}}],[\"username\",{\"_index\":357,\"name\":{\"426\":{}},\"comment\":{}}],[\"usesworkspaces\",{\"_index\":323,\"name\":{\"380\":{}},\"comment\":{}}],[\"usethemebundling\",{\"_index\":580,\"name\":{\"727\":{}},\"comment\":{}}],[\"validate\",{\"_index\":521,\"name\":{\"662\":{}},\"comment\":{}}],[\"value\",{\"_index\":382,\"name\":{\"453\":{},\"546\":{}},\"comment\":{}}],[\"valueorabort\",{\"_index\":443,\"name\":{\"550\":{},\"559\":{}},\"comment\":{}}],[\"valueorbug\",{\"_index\":442,\"name\":{\"549\":{},\"558\":{}},\"comment\":{}}],[\"variables\",{\"_index\":81,\"name\":{\"81\":{},\"696\":{}},\"comment\":{}}],[\"verbose\",{\"_index\":63,\"name\":{\"63\":{}},\"comment\":{}}],[\"version\",{\"_index\":343,\"name\":{\"403\":{},\"424\":{},\"565\":{}},\"comment\":{}}],[\"workspaces\",{\"_index\":350,\"name\":{\"415\":{}},\"comment\":{}}],[\"writedotenv\",{\"_index\":76,\"name\":{\"76\":{}},\"comment\":{}}],[\"writefile\",{\"_index\":131,\"name\":{\"159\":{}},\"comment\":{}}],[\"writefilesync\",{\"_index\":132,\"name\":{\"160\":{}},\"comment\":{}}],[\"writepackagejson\",{\"_index\":331,\"name\":{\"388\":{}},\"comment\":{}}],[\"yarnlockfile\",{\"_index\":332,\"name\":{\"389\":{}},\"comment\":{}}],[\"yellow\",{\"_index\":394,\"name\":{\"467\":{}},\"comment\":{}}],[\"zip\",{\"_index\":43,\"name\":{\"44\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/docs/api/cli-kit/classes/node_abort.AbortController.html b/docs/api/cli-kit/classes/node_abort.AbortController.html index cef256706c2..364efc599a4 100644 --- a/docs/api/cli-kit/classes/node_abort.AbortController.html +++ b/docs/api/cli-kit/classes/node_abort.AbortController.html @@ -31,7 +31,7 @@

Hierarchy

+
  • Defined in packages/cli-kit/src/public/node/abort.ts:11
  • @@ -83,6 +83,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/classes/node_abort.AbortSignal.html b/docs/api/cli-kit/classes/node_abort.AbortSignal.html index 4b547ac0d08..0ad9f4ac7a5 100644 --- a/docs/api/cli-kit/classes/node_abort.AbortSignal.html +++ b/docs/api/cli-kit/classes/node_abort.AbortSignal.html @@ -26,7 +26,7 @@

    Hierarchy

    • AbortSignal
    +
  • Defined in packages/cli-kit/src/public/node/abort.ts:16
  • @@ -78,6 +78,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/classes/node_base_command.default.html b/docs/api/cli-kit/classes/node_base_command.default.html index 4486e717793..8797c680796 100644 --- a/docs/api/cli-kit/classes/node_base_command.default.html +++ b/docs/api/cli-kit/classes/node_base_command.default.html @@ -23,7 +23,7 @@

    Hierarchy

    • default
    +
  • Defined in packages/cli-kit/src/public/node/base-command.ts:19
  • @@ -76,7 +76,7 @@
    error: ErrorReturns Promise<void>
    +
  • Defined in packages/cli-kit/src/public/node/base-command.ts:24
  • +
  • Defined in packages/cli-kit/src/public/node/base-command.ts:106
  • +
  • Defined in packages/cli-kit/src/public/node/base-command.ts:39
  • +
  • Defined in packages/cli-kit/src/public/node/base-command.ts:29
  • +
  • Defined in packages/cli-kit/src/public/node/base-command.ts:50
    • @@ -152,7 +152,7 @@
      Optional options: Optional argv: string[]

    Returns Promise<ParserOutput<TFlags, TGlobalFlags, TArgs>>

    +
  • Defined in packages/cli-kit/src/public/node/base-command.ts:64
  • +
  • Defined in packages/cli-kit/src/public/node/base-command.ts:20
  • +
  • Defined in packages/cli-kit/src/public/node/error.ts:23
  • +
  • Defined in packages/cli-kit/src/public/node/error.ts:23
  • +
  • Defined in packages/cli-kit/src/public/node/error.ts:23
  • +
  • Defined in packages/cli-kit/src/public/node/error.ts:23
  • +
  • Defined in packages/cli-kit/src/public/node/error.ts:23
  • Returns void

    +
  • Defined in packages/cli-kit/src/public/node/local-storage.ts:40
    • @@ -140,7 +140,7 @@
      key: TKey

    Returns T[TKey]

    +
  • Defined in packages/cli-kit/src/public/node/local-storage.ts:21
  • +
  • Defined in packages/cli-kit/src/public/node/local-storage.ts:31
  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:29
  • Returns Result<TValue, TError>

    +
  • Defined in packages/cli-kit/src/public/node/result.ts:99
  • +
  • Defined in packages/cli-kit/src/public/node/result.ts:89
    • @@ -158,7 +158,7 @@
      valueOrBug:

      Returns TMappedValue

    Returns Result<TMappedValue, TError>

    +
  • Defined in packages/cli-kit/src/public/node/result.ts:131
    • @@ -193,7 +193,7 @@
      error: TErro

      Returns TMappedError

    Returns Result<TValue, TMappedError>

    +
  • Defined in packages/cli-kit/src/public/node/result.ts:141
  • +
  • Defined in packages/cli-kit/src/public/node/result.ts:113
  • +
  • Defined in packages/cli-kit/src/public/node/result.ts:106
  • Returns Result<TValue, TError>

    +
  • Defined in packages/cli-kit/src/public/node/result.ts:40
  • +
  • Defined in packages/cli-kit/src/public/node/result.ts:29
    • @@ -159,7 +159,7 @@
      value: TValu

      Returns TMappedValue

    Returns Result<TMappedValue, TError>

    +
  • Defined in packages/cli-kit/src/public/node/result.ts:65
    • @@ -194,7 +194,7 @@
      error: TErro

      Returns TMappedError

    Returns Result<TValue, TMappedError>

    +
  • Defined in packages/cli-kit/src/public/node/result.ts:75
  • +
  • Defined in packages/cli-kit/src/public/node/result.ts:55
  • +
  • Defined in packages/cli-kit/src/public/node/result.ts:48
  • Returns void

    +
  • Defined in packages/cli-kit/src/public/node/themes/models/theme.ts:14
  • Returns void

    +
  • Defined in packages/cli-kit/src/public/node/themes/theme-manager.ts:9
  • +
  • Defined in packages/cli-kit/src/public/node/error.ts:12
  • +
  • Defined in packages/cli-kit/src/public/common/array.ts:32
  • +
  • Defined in packages/cli-kit/src/public/common/array.ts:12
  • +
  • Defined in packages/cli-kit/src/public/common/function.ts:17
  • Returns boolean

    +
  • Defined in packages/cli-kit/src/public/common/lang.ts:20
  • +
  • Defined in packages/cli-kit/src/public/common/object.ts:17
  • +
  • Defined in packages/cli-kit/src/public/common/object.ts:51
  • +
  • Defined in packages/cli-kit/src/public/common/object.ts:34
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/common/string.ts:304
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/common/string.ts:190
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/common/string.ts:334
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/common/string.ts:294
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/common/string.ts:314
  • +
  • Defined in packages/cli-kit/src/public/common/string.ts:203
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/common/string.ts:278
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/common/string.ts:324
  • Returns boolean

    +
  • Defined in packages/cli-kit/src/public/common/url.ts:8
  • +
  • Defined in packages/cli-kit/src/public/node/analytics.ts:22
  • +
  • Defined in packages/cli-kit/src/public/node/api/graphql.ts:34
  • +
  • Defined in packages/cli-kit/src/public/node/api/partners.ts:43
  • Returns Promise<void>

    +
  • Defined in packages/cli-kit/src/public/node/archiver.ts:31
  • +
  • Defined in packages/cli-kit/src/public/node/base-command.ts:112
  • +
  • Defined in packages/cli-kit/src/public/node/cli.ts:132
  • Returns Promise<void>

    +
  • Defined in packages/cli-kit/src/public/node/cli.ts:46
  • +
  • Defined in packages/cli-kit/src/public/node/cli.ts:71
  • +
  • Defined in packages/cli-kit/src/public/node/cli.ts:90
  • +
  • Defined in packages/cli-kit/src/public/node/context/fqdn.ts:59
  • diff --git a/docs/api/cli-kit/functions/node_context_fqdn.normalizeStoreFqdn.html b/docs/api/cli-kit/functions/node_context_fqdn.normalizeStoreFqdn.html index 7ddea7d4dc6..f67a7d5d31e 100644 --- a/docs/api/cli-kit/functions/node_context_fqdn.normalizeStoreFqdn.html +++ b/docs/api/cli-kit/functions/node_context_fqdn.normalizeStoreFqdn.html @@ -35,7 +35,7 @@
    store: string

    Returns Promise<string>

    +
  • Defined in packages/cli-kit/src/public/node/context/fqdn.ts:80
  • diff --git a/docs/api/cli-kit/functions/node_context_fqdn.partnersFqdn.html b/docs/api/cli-kit/functions/node_context_fqdn.partnersFqdn.html index 150b58898eb..59ed49fd294 100644 --- a/docs/api/cli-kit/functions/node_context_fqdn.partnersFqdn.html +++ b/docs/api/cli-kit/functions/node_context_fqdn.partnersFqdn.html @@ -26,7 +26,7 @@

    Returns

    Fully-qualified domain of the partners service we should inte

    Returns Promise<string>

    +
  • Defined in packages/cli-kit/src/public/node/context/fqdn.ts:23
  • diff --git a/docs/api/cli-kit/functions/node_context_local.alwaysLogAnalytics.html b/docs/api/cli-kit/functions/node_context_local.alwaysLogAnalytics.html index a507983f2b0..ff3e9164770 100644 --- a/docs/api/cli-kit/functions/node_context_local.alwaysLogAnalytics.html +++ b/docs/api/cli-kit/functions/node_context_local.alwaysLogAnalytics.html @@ -33,7 +33,7 @@
    env: ProcessEnvReturns boolean
    +
  • Defined in packages/cli-kit/src/public/node/context/local.ts:91
  • +
  • Defined in packages/cli-kit/src/public/node/context/local.ts:188
  • +
  • Defined in packages/cli-kit/src/public/node/context/local.ts:24
  • +
  • Defined in packages/cli-kit/src/public/node/context/local.ts:15
  • +
  • Defined in packages/cli-kit/src/public/node/context/local.ts:235
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/node/crypto.ts:19
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/node/crypto.ts:49
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/node/crypto.ts:39
  • Returns Buffer

    +
  • Defined in packages/cli-kit/src/public/node/crypto.ts:59
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/node/crypto.ts:9
  • +
  • Defined in packages/cli-kit/src/public/node/crypto.ts:68
  • Returns Buffer

    +
  • Defined in packages/cli-kit/src/public/node/crypto.ts:29
  • Returns AbortError

    +
  • Defined in packages/cli-kit/src/public/node/dot-env.ts:13
  • +
  • Defined in packages/cli-kit/src/public/node/dot-env.ts:62
  • Returns Promise<DotEnvFile>

    +
  • Defined in packages/cli-kit/src/public/node/dot-env.ts:36
  • +
  • Defined in packages/cli-kit/src/public/node/environment.ts:49
  • +
  • Defined in packages/cli-kit/src/public/node/environment.ts:13
  • +
  • Defined in packages/cli-kit/src/public/node/environment.ts:62
  • +
  • Defined in packages/cli-kit/src/public/node/environment.ts:40
  • +
  • Defined in packages/cli-kit/src/public/node/environment.ts:22
  • +
  • Defined in packages/cli-kit/src/public/node/environment.ts:31
  • +
  • Defined in packages/cli-kit/src/public/node/environments.ts:20
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/node/error.ts:202
  • Returns Promise<unknown>

    +
  • Defined in packages/cli-kit/src/public/node/error.ts:155
  • Returns Promise<unknown>

    +
  • Defined in packages/cli-kit/src/public/node/error.ts:126
  • Returns boolean

    +
  • Defined in packages/cli-kit/src/public/node/error.ts:186
  • +
  • Defined in packages/cli-kit/src/public/node/error-handler.ts:187
  • +
  • Defined in packages/cli-kit/src/public/node/error-handler.ts:127
  • Returns Promise<void>

    +
  • Defined in packages/cli-kit/src/public/node/error-handler.ts:27
  • +
  • Defined in packages/cli-kit/src/public/node/error-handler.ts:155
  • +
  • Defined in packages/cli-kit/src/public/node/error-handler.ts:65
  • Returns Promise<string>

    +
  • Defined in packages/cli-kit/src/public/node/framework.ts:151
  • Returns Promise<void>

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:161
  • Returns void

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:177
  • Returns Promise<void>

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:130
  • +
  • Defined in packages/cli-kit/src/public/node/fs.ts:328
  • Returns WriteStream

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:341
  • Returns Promise<boolean>

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:418
  • +
  • Defined in packages/cli-kit/src/public/node/fs.ts:428
  • Returns Promise<boolean>

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:402
  • Returns Promise<Date>

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:351
  • Returns Promise<number | undefined>

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:362
  • Returns Promise<string>

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:120
  • Returns Promise<number>

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:296
  • Returns number

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:307
  • +
  • Defined in packages/cli-kit/src/public/node/fs.ts:454
  • Returns Promise<T>

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:66
  • Returns Promise<boolean>

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:285
  • +
  • Defined in packages/cli-kit/src/public/node/fs.ts:273
  • Returns Promise<void>

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:208
  • Returns void

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:218
  • +
  • Defined in packages/cli-kit/src/public/node/fs.ts:383
  • Returns URL

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:488
  • Returns Buffer

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:109
  • Returns Promise<void>

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:228
  • Returns void

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:248
  • Returns Promise<void>

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:238
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:56
  • Returns Promise<void>

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:140
  • Returns void

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:150
  • Returns void

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:317
  • Returns Promise<void>

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:187
  • Returns void

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:198
  • +
  • Defined in packages/cli-kit/src/public/node/git.ts:185
  • Returns Promise<void>

    +
  • Defined in packages/cli-kit/src/public/node/git.ts:243
  • +
  • Defined in packages/cli-kit/src/public/node/git.ts:262
  • +
  • Defined in packages/cli-kit/src/public/node/git.ts:277
  • +
  • Defined in packages/cli-kit/src/public/node/git.ts:221
  • +
  • Defined in packages/cli-kit/src/public/node/git.ts:162
  • +
  • Defined in packages/cli-kit/src/public/node/git.ts:288
  • +
  • Defined in packages/cli-kit/src/public/node/github.ts:37
  • Returns GithubRepositoryReference

    +
  • Defined in packages/cli-kit/src/public/node/github.ts:113
  • Returns Result<ParseRepositoryURLOutput, Error>

    +
  • Defined in packages/cli-kit/src/public/node/github.ts:70
  • Returns void

    +
  • Defined in packages/cli-kit/src/public/node/hooks/deprecations.ts:10
  • +
  • Defined in packages/cli-kit/src/public/node/hooks/prerun.ts:25
  • Returns Promise<string>

    +
  • Defined in packages/cli-kit/src/public/node/http.ts:70
  • +
  • Defined in packages/cli-kit/src/public/node/http.ts:16
  • Returns Promise<void>

    +
  • Defined in packages/cli-kit/src/public/node/liquid.ts:28
  • Returns Promise<string>

    +
  • Defined in packages/cli-kit/src/public/node/liquid.ts:13
  • +
  • Defined in packages/cli-kit/src/public/node/metadata.ts:31
  • +
  • Defined in packages/cli-kit/src/public/node/metadata.ts:36
  • Returns Partial<CmdFieldsFromMonorail>

    +
  • Defined in packages/cli-kit/src/public/node/metadata.ts:38
  • Returns Partial<{
    ย ย ย ย commandStartOptions: {
    ย ย ย ย ย ย ย ย startArgs: string[];
    ย ย ย ย ย ย ย ย startCommand: string;
    ย ย ย ย ย ย ย ย startTime: number;
    ย ย ย ย ย ย ย ย startTopic?: string;
    ย ย ย ย };
    } & {
    ย ย ย ย environmentFlags: string;
    }>

    +
  • Defined in packages/cli-kit/src/public/node/metadata.ts:40
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/node/mimes.ts:10
  • +
  • Defined in packages/cli-kit/src/public/node/mimes.ts:19
  • Returns BugError

    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:58
  • Returns AbortError

    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:48
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:402
  • Returns Promise<void>

    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:379
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:438
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:540
  • Returns Promise<string | undefined>

    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:221
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:530
  • Returns Promise<{
    ย ย ย ย [key: string]: string;
    }>

    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:194
  • Returns Promise<PackageManager>

    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:85
  • Returns Promise<string | undefined>

    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:184
  • Returns Promise<void>

    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:125
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:164
  • Returns Promise<PackageJson>

    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:316
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:208
  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:233
  • Returns void

    +
  • Defined in packages/cli-kit/src/public/node/output.ts:358
  • Returns void

    +
  • Defined in packages/cli-kit/src/public/node/output.ts:349
  • Returns void

    +
  • Defined in packages/cli-kit/src/public/node/output.ts:367
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/node/output.ts:463
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/node/output.ts:445
  • Returns void

    +
  • Defined in packages/cli-kit/src/public/node/output.ts:312
  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:383
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/node/output.ts:419
  • +
  • Defined in packages/cli-kit/src/public/node/path.ts:140
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/node/path.ts:73
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/node/path.ts:94
  • Returns boolean

    +
  • Defined in packages/cli-kit/src/public/node/path.ts:63
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/node/path.ts:32
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/node/path.ts:53
  • Returns Promise<{
    ย ย ย ย error?: string;
    ย ย ย ย plugins: string[];
    }>

    +
  • Defined in packages/cli-kit/src/public/node/plugins.ts:80
  • +
  • Defined in packages/cli-kit/src/public/node/plugins/tunnel.ts:51
  • +
  • Defined in packages/cli-kit/src/public/node/plugins/tunnel.ts:55
  • Returns Err<TValue, TError>

    +
  • Defined in packages/cli-kit/src/public/node/result.ts:19
  • Returns Ok<TValue, TError>

    +
  • Defined in packages/cli-kit/src/public/node/result.ts:11
  • +
  • Defined in packages/cli-kit/src/public/node/ruby.ts:466
  • +
  • Defined in packages/cli-kit/src/public/node/ruby.ts:52
  • +
  • Defined in packages/cli-kit/src/public/node/ruby.ts:106
  • Returns Promise<string | undefined>

    +
  • Defined in packages/cli-kit/src/public/node/ruby.ts:372
  • Returns Promise<string>

    +
  • Defined in packages/cli-kit/src/public/node/session.ts:49
  • +
  • Defined in packages/cli-kit/src/public/node/session.ts:137
  • Returns Promise<void>

    +
  • Defined in packages/cli-kit/src/public/node/system.ts:28
  • Returns Promise<void>

    +
  • Defined in packages/cli-kit/src/public/node/system.ts:126
  • Returns Promise<boolean>

    +
  • Defined in packages/cli-kit/src/public/node/tcp.ts:24
  • +
  • Defined in packages/cli-kit/src/public/node/tcp.ts:12
  • +
  • Defined in packages/cli-kit/src/public/node/testing/output.ts:18
  • +
  • Defined in packages/cli-kit/src/public/node/themes/conf.ts:23
  • +
  • Defined in packages/cli-kit/src/public/node/themes/conf.ts:14
  • +
  • Defined in packages/cli-kit/src/public/node/themes/conf.ts:33
  • +
  • Defined in packages/cli-kit/src/public/node/themes/conf.ts:28
  • +
  • Defined in packages/cli-kit/src/public/node/themes/theme-urls.ts:18
  • +
  • Defined in packages/cli-kit/src/public/node/themes/theme-urls.ts:13
  • +
  • Defined in packages/cli-kit/src/public/node/themes/theme-urls.ts:4
  • +
  • Defined in packages/cli-kit/src/public/node/themes/themes-api.ts:22
  • +
  • Defined in packages/cli-kit/src/public/node/themes/themes-api.ts:36
  • +
  • Defined in packages/cli-kit/src/public/node/themes/themes-api.ts:12
  • +
  • Defined in packages/cli-kit/src/public/node/themes/themes-api.ts:17
  • +
  • Defined in packages/cli-kit/src/public/node/themes/themes-api.ts:32
  • +
  • Defined in packages/cli-kit/src/public/node/themes/themes-api.ts:27
  • Returns object

    +
  • Defined in packages/cli-kit/src/public/node/toml.ts:9
  • Returns string

    +
  • Defined in packages/cli-kit/src/public/node/toml.ts:19
  • Returns Promise<unknown>

    +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:526
  • Returns Promise<T>

    +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:395
  • Returns Promise<void | void[]>

    +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:62
  • Returns Promise<boolean>

    +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:319
  • Returns undefined | string

    +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:233
  • +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:121
  • Returns Promise<T>

    +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:276
  • Returns undefined | string

    +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:152
  • Returns undefined | string

    +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:434
  • +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:452
  • +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:516
  • Returns Promise<string>

    +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:487
  • @@ -35,7 +35,7 @@

    Parameters

    options: RenderAlertOptions

    Returns undefined | string

    +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:184
  • +
  • Defined in packages/cli-kit/src/public/node/api/admin.ts:147
  • +
  • Defined in packages/cli-kit/src/public/node/api/graphql.ts:19
  • +
  • Defined in packages/cli-kit/src/public/node/api/graphql.ts:25
  • +
  • Defined in packages/cli-kit/src/public/node/dot-env.ts:28
  • +
  • Defined in packages/cli-kit/src/public/node/git.ts:75
  • repoUrl: string
    +
  • Defined in packages/cli-kit/src/public/node/git.ts:73
  • shallow?: boolean
    +
  • Defined in packages/cli-kit/src/public/node/git.ts:76
  • +
  • Defined in packages/cli-kit/src/public/node/metadata.ts:31
  • addSensitiveMetadata: ((getData: ProvideMetadata<TSensitive>, onError?: MetadataErrorHandling) => Promise<void>)
    @@ -87,7 +87,7 @@
    getData: ProvideMetadataOptional onError: MetadataErrorHandling

    Returns Promise<void>

    +
  • Defined in packages/cli-kit/src/public/node/metadata.ts:36
  • getAllPublicMetadata: (() => Partial<TPublic>)
    @@ -102,7 +102,7 @@

    Type declaration

    Returns Partial<TPublic>

    +
  • Defined in packages/cli-kit/src/public/node/metadata.ts:38
  • getAllSensitiveMetadata: (() => Partial<TSensitive>)
    @@ -117,7 +117,7 @@

    Type declaration

    Returns Partial<TSensitive>

    +
  • Defined in packages/cli-kit/src/public/node/metadata.ts:40
  • +
  • Defined in packages/cli-kit/src/public/node/monorail.ts:16
  • +
  • app_cli3_command/1.4
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/api/cli-kit/interfaces/node_node_package_manager.DependencyVersion.html b/docs/api/cli-kit/interfaces/node_node_package_manager.DependencyVersion.html index a8813d32ff3..2a868bf55c4 100644 --- a/docs/api/cli-kit/interfaces/node_node_package_manager.DependencyVersion.html +++ b/docs/api/cli-kit/interfaces/node_node_package_manager.DependencyVersion.html @@ -24,7 +24,7 @@

    Hierarchy

    • DependencyVersion
    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:346
  • @@ -47,7 +47,7 @@

    Example

    In the example below name would be "react"

    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:358
  • version: undefined | string
    @@ -58,7 +58,7 @@

    Example

    In the example below version would be "1.2.3"

    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:371
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:263
  • devDependencies?: {
    ย ย ย ย [key: string]: string;
    }
    @@ -78,14 +78,14 @@

    Type declaration

  • [key: string]: string
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:268
  • name?: string

    The name attribute of the package.json

    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:243
  • oclif?: {
    ย ย ย ย plugins?: string[];
    }
    @@ -97,7 +97,7 @@

    Type declaration

  • Optional plugins?: string[]
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:278
  • overrides?: {
    ย ย ย ย [key: string]: string;
    }
    @@ -109,7 +109,7 @@

    Type declaration

  • [key: string]: string
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:295
  • peerDependencies?: {
    ย ย ย ย [key: string]: string;
    }
    @@ -121,14 +121,14 @@

    Type declaration

  • [key: string]: string
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:273
  • prettier?: string

    The prettier attribute of the package.json

    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:300
  • private?: boolean
    @@ -136,7 +136,7 @@
    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:306
  • resolutions?: {
    ย ย ย ย [key: string]: string;
    }
    @@ -148,7 +148,7 @@

    Type declaration

  • [key: string]: string
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:290
  • scripts?: {
    ย ย ย ย [key: string]: string;
    }
    @@ -160,21 +160,21 @@

    Type declaration

  • [key: string]: string
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:258
  • version?: string

    The version attribute of the package.json

    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:253
  • workspaces?: string[]

    The workspaces attribute of the package.json

    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:285
  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:341
  • prefix: string
    @@ -67,7 +67,7 @@
    +
  • Defined in packages/cli-kit/src/public/node/output.ts:335
  • +
  • Defined in packages/cli-kit/src/public/node/plugins.ts:45
  • tunnel_provider: {
    ย ย ย ย options: {
    ย ย ย ย ย ย ย ย [key: string]: never;
    ย ย ย ย };
    ย ย ย ย pluginReturns: {
    ย ย ย ย ย ย ย ย [pluginName: string]: {
    ย ย ย ย ย ย ย ย ย ย ย ย name: string;
    ย ย ย ย ย ย ย ย };
    ย ย ย ย };
    }
    @@ -117,7 +117,7 @@
    [pluginName: : string
    +
  • Defined in packages/cli-kit/src/public/node/plugins/tunnel.ts:38
  • tunnel_start: {
    ย ย ย ย options: {
    ย ย ย ย ย ย ย ย port: number;
    ย ย ย ย ย ย ย ย provider: string;
    ย ย ย ย };
    ย ย ย ย pluginReturns: {
    ย ย ย ย ย ย ย ย [key: string]: Result<TunnelClient, TunnelError>;
    ย ย ย ย };
    }
    @@ -138,7 +138,7 @@
    pluginReturns: [key: string]: Result<TunnelClient, TunnelError>
    +
  • Defined in packages/cli-kit/src/public/node/plugins/tunnel.ts:32
  • +
  • Defined in packages/cli-kit/src/public/node/plugins/tunnel.ts:32
  • +
  • Defined in packages/cli-kit/src/public/node/plugins/tunnel.ts:8
  • Returns Promise<void>

    +
  • Defined in packages/cli-kit/src/public/node/system.ts:20
  • input?: string
    +
  • Defined in packages/cli-kit/src/public/node/system.ts:17
  • signal?: AbortSignal
    +
  • Defined in packages/cli-kit/src/public/node/system.ts:18
  • stderr?: "inherit" | Writable
    +
  • Defined in packages/cli-kit/src/public/node/system.ts:15
  • stdin?: Readable | "inherit"
    +
  • Defined in packages/cli-kit/src/public/node/system.ts:13
  • stdio?: "inherit"
    +
  • Defined in packages/cli-kit/src/public/node/system.ts:16
  • stdout?: "inherit" | Writable
    +
  • Defined in packages/cli-kit/src/public/node/system.ts:14
  • +
  • Defined in packages/cli-kit/src/private/node/ui/components/TokenizedText.tsx:15
  • +
  • Defined in packages/cli-kit/src/private/node/ui/components/TokenizedText.tsx:38
  • Returns Promise<SearchResults<T>>

    +
  • Defined in packages/cli-kit/src/private/node/ui/components/AutocompletePrompt.tsx:28
  • +
  • Defined in packages/cli-kit/src/private/node/ui/components/ConcurrentOutput.tsx:25
  • onInput?: ((input: string, key: Key, exit: (() => void)) => void)
    @@ -87,24 +87,24 @@

    Returns voidReturns void

    +
  • Defined in packages/cli-kit/src/private/node/ui/components/ConcurrentOutput.tsx:24
  • processes: OutputProcess[]
    +
  • Defined in packages/cli-kit/src/private/node/ui/components/ConcurrentOutput.tsx:21
  • renderOptions?: RenderOptions
    +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:43
  • showTimestamps?: boolean
    +
  • Defined in packages/cli-kit/src/private/node/ui/components/ConcurrentOutput.tsx:23
  • +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:301
  • +
  • Defined in packages/cli-kit/src/private/node/ui/components/SelectPrompt.tsx:19
  • Returns undefined | string

    +
  • Defined in packages/cli-kit/src/private/node/ui/components/TextPrompt.tsx:17
  • +
  • Defined in packages/cli-kit/src/private/node/ui/components/Tasks.tsx:19
  • task: ((ctx: TContext, task: Task<TContext>) => Promise<void | Task<TContext>[]>)
    @@ -95,12 +95,12 @@
    ctx: TContex
    task: Task<TContext>

    Returns Promise<void | Task<TContext>[]>

    +
  • Defined in packages/cli-kit/src/private/node/ui/components/Tasks.tsx:15
  • title: string
    +
  • Defined in packages/cli-kit/src/private/node/ui/components/Tasks.tsx:14
  • +
  • Defined in packages/cli-kit/src/public/common/collection.ts:1
  • @@ -60,6 +60,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/common_function.html b/docs/api/cli-kit/modules/common_function.html index ed1fabb5822..5adbe215a52 100644 --- a/docs/api/cli-kit/modules/common_function.html +++ b/docs/api/cli-kit/modules/common_function.html @@ -16,7 +16,7 @@
  • common/function
  • Module common/function

    +
  • Defined in packages/cli-kit/src/public/common/function.ts:1
  • @@ -60,6 +60,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/common_lang.html b/docs/api/cli-kit/modules/common_lang.html index 377e067fb73..6c3354d7cf7 100644 --- a/docs/api/cli-kit/modules/common_lang.html +++ b/docs/api/cli-kit/modules/common_lang.html @@ -16,7 +16,7 @@
  • common/lang
  • Module common/lang

    +
  • Defined in packages/cli-kit/src/public/common/lang.ts:1
  • @@ -59,6 +59,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/common_object.html b/docs/api/cli-kit/modules/common_object.html index 459b4548c3b..90597fb206d 100644 --- a/docs/api/cli-kit/modules/common_object.html +++ b/docs/api/cli-kit/modules/common_object.html @@ -16,7 +16,7 @@
  • common/object
  • Module common/object

    +
  • Defined in packages/cli-kit/src/public/common/object.ts:1
  • @@ -61,6 +61,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/common_string.html b/docs/api/cli-kit/modules/common_string.html index b6bf13a6a5a..47a299e67d4 100644 --- a/docs/api/cli-kit/modules/common_string.html +++ b/docs/api/cli-kit/modules/common_string.html @@ -16,7 +16,7 @@
  • common/string
  • Module common/string

    +
  • Defined in packages/cli-kit/src/public/common/string.ts:1
  • @@ -73,6 +73,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/common_ts_deep_required.html b/docs/api/cli-kit/modules/common_ts_deep_required.html index 60e492fabe7..277c20efc57 100644 --- a/docs/api/cli-kit/modules/common_ts_deep_required.html +++ b/docs/api/cli-kit/modules/common_ts_deep_required.html @@ -16,7 +16,7 @@
  • common/ts/deep-required
  • Module common/ts/deep-required

    +
  • Defined in packages/cli-kit/src/public/common/ts/deep-required.ts:10
  • @@ -59,6 +59,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/common_ts_pick_by_prefix.html b/docs/api/cli-kit/modules/common_ts_pick_by_prefix.html index 7f6fb3d13d9..230f1e8af4e 100644 --- a/docs/api/cli-kit/modules/common_ts_pick_by_prefix.html +++ b/docs/api/cli-kit/modules/common_ts_pick_by_prefix.html @@ -16,7 +16,7 @@
  • common/ts/pick-by-prefix
  • Module common/ts/pick-by-prefix

    +
  • Defined in packages/cli-kit/src/public/common/ts/pick-by-prefix.ts:11
  • @@ -59,6 +59,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/common_url.html b/docs/api/cli-kit/modules/common_url.html index a1e7285696b..95d6984c667 100644 --- a/docs/api/cli-kit/modules/common_url.html +++ b/docs/api/cli-kit/modules/common_url.html @@ -16,7 +16,7 @@
  • common/url
  • Module common/url

    +
  • Defined in packages/cli-kit/src/public/common/url.ts:8
  • @@ -59,6 +59,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/common_version.html b/docs/api/cli-kit/modules/common_version.html index fa159df8d10..e1b4154b372 100644 --- a/docs/api/cli-kit/modules/common_version.html +++ b/docs/api/cli-kit/modules/common_version.html @@ -16,7 +16,7 @@
  • common/version
  • Module common/version

    +
  • Defined in packages/cli-kit/src/public/common/version.ts:1
  • @@ -59,6 +59,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_abort.html b/docs/api/cli-kit/modules/node_abort.html index d1c8e2487bc..6ac6f073b71 100644 --- a/docs/api/cli-kit/modules/node_abort.html +++ b/docs/api/cli-kit/modules/node_abort.html @@ -16,7 +16,7 @@
  • node/abort
  • Module node/abort

    +
  • Defined in packages/cli-kit/src/public/node/abort.ts:1
  • @@ -60,6 +60,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_analytics.html b/docs/api/cli-kit/modules/node_analytics.html index 719fe2bd8c0..f42a124ecf5 100644 --- a/docs/api/cli-kit/modules/node_analytics.html +++ b/docs/api/cli-kit/modules/node_analytics.html @@ -16,7 +16,7 @@
  • node/analytics
  • Module node/analytics

    +
  • Defined in packages/cli-kit/src/public/node/analytics.ts:1
  • @@ -59,6 +59,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_api_admin.html b/docs/api/cli-kit/modules/node_api_admin.html index 90772772de0..691b1763d4f 100644 --- a/docs/api/cli-kit/modules/node_api_admin.html +++ b/docs/api/cli-kit/modules/node_api_admin.html @@ -16,7 +16,7 @@
  • node/api/admin
  • Module node/api/admin

    +
  • Defined in packages/cli-kit/src/public/node/api/admin.ts:1
  • @@ -64,6 +64,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_api_business_platform.html b/docs/api/cli-kit/modules/node_api_business_platform.html new file mode 100644 index 00000000000..a2d6637c383 --- /dev/null +++ b/docs/api/cli-kit/modules/node_api_business_platform.html @@ -0,0 +1,118 @@ +node/api/business-platform | @shopify/cli-kit
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/api/cli-kit/modules/node_api_graphql.html b/docs/api/cli-kit/modules/node_api_graphql.html index 2a03788500c..e493f9ee16f 100644 --- a/docs/api/cli-kit/modules/node_api_graphql.html +++ b/docs/api/cli-kit/modules/node_api_graphql.html @@ -16,7 +16,7 @@
  • node/api/graphql
  • Module node/api/graphql

    +
  • Defined in packages/cli-kit/src/public/node/api/graphql.ts:1
  • @@ -69,6 +69,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_api_http.html b/docs/api/cli-kit/modules/node_api_http.html index f7673588385..f09cc8f90c1 100644 --- a/docs/api/cli-kit/modules/node_api_http.html +++ b/docs/api/cli-kit/modules/node_api_http.html @@ -16,7 +16,7 @@
  • node/api/http
  • Module node/api/http

    +
  • Defined in packages/cli-kit/src/public/node/api/http.ts:1
  • +
  • Defined in packages/cli-kit/src/public/node/archiver.ts:1
  • @@ -59,6 +59,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_base_command.html b/docs/api/cli-kit/modules/node_base_command.html index b4921b18292..9955f20a265 100644 --- a/docs/api/cli-kit/modules/node_base_command.html +++ b/docs/api/cli-kit/modules/node_base_command.html @@ -16,7 +16,7 @@
  • node/base-command
  • Module node/base-command

    +
  • Defined in packages/cli-kit/src/public/node/base-command.ts:1
  • @@ -63,6 +63,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_cli.html b/docs/api/cli-kit/modules/node_cli.html index e71358db59b..c8b88d57945 100644 --- a/docs/api/cli-kit/modules/node_cli.html +++ b/docs/api/cli-kit/modules/node_cli.html @@ -16,7 +16,7 @@
  • node/cli
  • Module node/cli

    +
  • Defined in packages/cli-kit/src/public/node/cli.ts:1
  • @@ -76,6 +76,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_colors.html b/docs/api/cli-kit/modules/node_colors.html index eb0c83a4e7d..858e6fc2789 100644 --- a/docs/api/cli-kit/modules/node_colors.html +++ b/docs/api/cli-kit/modules/node_colors.html @@ -16,7 +16,7 @@
  • node/colors
  • Module node/colors

    +
  • Defined in packages/cli-kit/src/public/node/colors.ts:1
  • Functions

    -
    @@ -68,6 +69,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • @@ -124,6 +126,7 @@

    CouldntObtainPartnersSpinFQDNError
  • CouldntObtainShopifySpinFQDNError
  • NotProvidedStoreFQDNError
  • +
  • businessPlatformFqdn
  • identityFqdn
  • normalizeStoreFqdn
  • partnersFqdn
  • diff --git a/docs/api/cli-kit/modules/node_context_local.html b/docs/api/cli-kit/modules/node_context_local.html index 35247b7c2fa..6d35b8af500 100644 --- a/docs/api/cli-kit/modules/node_context_local.html +++ b/docs/api/cli-kit/modules/node_context_local.html @@ -16,7 +16,7 @@
  • node/context/local
  • Module node/context/local

    +
  • Defined in packages/cli-kit/src/public/node/context/local.ts:1
  • @@ -80,6 +80,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_context_spin.html b/docs/api/cli-kit/modules/node_context_spin.html index ff4f585fdbd..48d9508c395 100644 --- a/docs/api/cli-kit/modules/node_context_spin.html +++ b/docs/api/cli-kit/modules/node_context_spin.html @@ -16,7 +16,7 @@
  • node/context/spin
  • Module node/context/spin

    +
  • Defined in packages/cli-kit/src/public/node/context/spin.ts:1
  • @@ -65,6 +65,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_crypto.html b/docs/api/cli-kit/modules/node_crypto.html index 710cf54e2fe..0d910607592 100644 --- a/docs/api/cli-kit/modules/node_crypto.html +++ b/docs/api/cli-kit/modules/node_crypto.html @@ -16,7 +16,7 @@
  • node/crypto
  • Module node/crypto

    +
  • Defined in packages/cli-kit/src/public/node/crypto.ts:1
  • @@ -65,6 +65,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_dot_env.html b/docs/api/cli-kit/modules/node_dot_env.html index eb882cdc493..151c1434338 100644 --- a/docs/api/cli-kit/modules/node_dot_env.html +++ b/docs/api/cli-kit/modules/node_dot_env.html @@ -16,7 +16,7 @@
  • node/dot-env
  • Module node/dot-env

    +
  • Defined in packages/cli-kit/src/public/node/dot-env.ts:1
  • @@ -66,6 +66,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_environment.html b/docs/api/cli-kit/modules/node_environment.html index 76601211c5e..89500de43e5 100644 --- a/docs/api/cli-kit/modules/node_environment.html +++ b/docs/api/cli-kit/modules/node_environment.html @@ -16,7 +16,7 @@
  • node/environment
  • Module node/environment

    +
  • Defined in packages/cli-kit/src/public/node/environment.ts:1
  • @@ -64,6 +64,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_environments.html b/docs/api/cli-kit/modules/node_environments.html index 06e17f07451..79f01e0772d 100644 --- a/docs/api/cli-kit/modules/node_environments.html +++ b/docs/api/cli-kit/modules/node_environments.html @@ -16,7 +16,7 @@
  • node/environments
  • Module node/environments

    +
  • Defined in packages/cli-kit/src/public/node/environments.ts:1
  • @@ -63,6 +63,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_error.html b/docs/api/cli-kit/modules/node_error.html index c14eff1052a..aa51c47eed2 100644 --- a/docs/api/cli-kit/modules/node_error.html +++ b/docs/api/cli-kit/modules/node_error.html @@ -16,7 +16,7 @@
  • node/error
  • Module node/error

    +
  • Defined in packages/cli-kit/src/public/node/error.ts:1
  • @@ -75,6 +75,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_error_handler.html b/docs/api/cli-kit/modules/node_error_handler.html index c74857b48ae..e9182a6ad02 100644 --- a/docs/api/cli-kit/modules/node_error_handler.html +++ b/docs/api/cli-kit/modules/node_error_handler.html @@ -16,7 +16,7 @@
  • node/error-handler
  • Module node/error-handler

    +
  • Defined in packages/cli-kit/src/public/node/error-handler.ts:1
  • @@ -63,6 +63,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_framework.html b/docs/api/cli-kit/modules/node_framework.html index 35fec4e3461..869a5b9b1ad 100644 --- a/docs/api/cli-kit/modules/node_framework.html +++ b/docs/api/cli-kit/modules/node_framework.html @@ -16,7 +16,7 @@
  • node/framework
  • Module node/framework

    +
  • Defined in packages/cli-kit/src/public/node/framework.ts:1
  • @@ -59,6 +59,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_fs.html b/docs/api/cli-kit/modules/node_fs.html index 0b52343c004..559cdc435c6 100644 --- a/docs/api/cli-kit/modules/node_fs.html +++ b/docs/api/cli-kit/modules/node_fs.html @@ -16,7 +16,7 @@
  • node/fs
  • Module node/fs

    +
  • Defined in packages/cli-kit/src/public/node/fs.ts:1
  • @@ -98,6 +98,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_git.html b/docs/api/cli-kit/modules/node_git.html index 1a46fef0f69..4ba7b0f6395 100644 --- a/docs/api/cli-kit/modules/node_git.html +++ b/docs/api/cli-kit/modules/node_git.html @@ -16,7 +16,7 @@
  • node/git
  • Module node/git

    +
  • Defined in packages/cli-kit/src/public/node/git.ts:1
  • @@ -81,6 +81,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_github.html b/docs/api/cli-kit/modules/node_github.html index 171beb554b1..66968c7bf14 100644 --- a/docs/api/cli-kit/modules/node_github.html +++ b/docs/api/cli-kit/modules/node_github.html @@ -16,7 +16,7 @@
  • node/github
  • Module node/github

    +
  • Defined in packages/cli-kit/src/public/node/github.ts:1
  • @@ -66,6 +66,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_hooks_deprecations.html b/docs/api/cli-kit/modules/node_hooks_deprecations.html index 17ecc325054..3e3646f27b4 100644 --- a/docs/api/cli-kit/modules/node_hooks_deprecations.html +++ b/docs/api/cli-kit/modules/node_hooks_deprecations.html @@ -16,7 +16,7 @@
  • node/hooks/deprecations
  • Module node/hooks/deprecations

    +
  • Defined in packages/cli-kit/src/public/node/hooks/deprecations.ts:1
  • @@ -59,6 +59,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_hooks_postrun.html b/docs/api/cli-kit/modules/node_hooks_postrun.html index 4005a446deb..69790aa46a4 100644 --- a/docs/api/cli-kit/modules/node_hooks_postrun.html +++ b/docs/api/cli-kit/modules/node_hooks_postrun.html @@ -16,7 +16,7 @@
  • node/hooks/postrun
  • Module node/hooks/postrun

    +
  • Defined in packages/cli-kit/src/public/node/hooks/postrun.ts:1
  • @@ -59,6 +59,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_hooks_prerun.html b/docs/api/cli-kit/modules/node_hooks_prerun.html index 4be2c645d74..2b97ea0854b 100644 --- a/docs/api/cli-kit/modules/node_hooks_prerun.html +++ b/docs/api/cli-kit/modules/node_hooks_prerun.html @@ -16,7 +16,7 @@
  • node/hooks/prerun
  • Module node/hooks/prerun

    +
  • Defined in packages/cli-kit/src/public/node/hooks/prerun.ts:1
  • @@ -64,6 +64,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_http.html b/docs/api/cli-kit/modules/node_http.html index 6420a797e66..1a99b1a590d 100644 --- a/docs/api/cli-kit/modules/node_http.html +++ b/docs/api/cli-kit/modules/node_http.html @@ -16,7 +16,7 @@
  • node/http
  • Module node/http

    +
  • Defined in packages/cli-kit/src/public/node/http.ts:1
  • @@ -66,6 +66,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_liquid.html b/docs/api/cli-kit/modules/node_liquid.html index c3eece9960f..1675a724958 100644 --- a/docs/api/cli-kit/modules/node_liquid.html +++ b/docs/api/cli-kit/modules/node_liquid.html @@ -16,7 +16,7 @@
  • node/liquid
  • Module node/liquid

    +
  • Defined in packages/cli-kit/src/public/node/liquid.ts:1
  • @@ -60,6 +60,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_local_storage.html b/docs/api/cli-kit/modules/node_local_storage.html index bcb5bde544a..386372e64c7 100644 --- a/docs/api/cli-kit/modules/node_local_storage.html +++ b/docs/api/cli-kit/modules/node_local_storage.html @@ -16,7 +16,7 @@
  • node/local-storage
  • Module node/local-storage

    +
  • Defined in packages/cli-kit/src/public/node/local-storage.ts:1
  • @@ -59,6 +59,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_metadata.html b/docs/api/cli-kit/modules/node_metadata.html index 8a98e21e908..e0d59f70ccf 100644 --- a/docs/api/cli-kit/modules/node_metadata.html +++ b/docs/api/cli-kit/modules/node_metadata.html @@ -16,7 +16,7 @@
  • node/metadata
  • Module node/metadata

    +
  • Defined in packages/cli-kit/src/public/node/metadata.ts:1
  • @@ -74,6 +74,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_mimes.html b/docs/api/cli-kit/modules/node_mimes.html index 1f03ba539cf..399ebb3b490 100644 --- a/docs/api/cli-kit/modules/node_mimes.html +++ b/docs/api/cli-kit/modules/node_mimes.html @@ -16,7 +16,7 @@
  • node/mimes
  • Module node/mimes

    +
  • Defined in packages/cli-kit/src/public/node/mimes.ts:2
  • @@ -60,6 +60,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_monorail.html b/docs/api/cli-kit/modules/node_monorail.html index 2903740c76f..2e7cb9fece0 100644 --- a/docs/api/cli-kit/modules/node_monorail.html +++ b/docs/api/cli-kit/modules/node_monorail.html @@ -16,7 +16,7 @@
  • node/monorail
  • Module node/monorail

    +
  • Defined in packages/cli-kit/src/public/node/monorail.ts:1
  • @@ -82,6 +82,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_node_package_manager.html b/docs/api/cli-kit/modules/node_node_package_manager.html index 2ef79ab2494..6bcdb446ca4 100644 --- a/docs/api/cli-kit/modules/node_node_package_manager.html +++ b/docs/api/cli-kit/modules/node_node_package_manager.html @@ -16,7 +16,7 @@
  • node/node-package-manager
  • Module node/node-package-manager

    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:1
  • @@ -95,6 +95,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_os.html b/docs/api/cli-kit/modules/node_os.html index d9a78a2361f..c2fd7943fbb 100644 --- a/docs/api/cli-kit/modules/node_os.html +++ b/docs/api/cli-kit/modules/node_os.html @@ -16,7 +16,7 @@
  • node/os
  • Module node/os

    +
  • Defined in packages/cli-kit/src/public/node/os.ts:1
  • @@ -60,6 +60,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_output.html b/docs/api/cli-kit/modules/node_output.html index 94821995311..f9a4fa911e3 100644 --- a/docs/api/cli-kit/modules/node_output.html +++ b/docs/api/cli-kit/modules/node_output.html @@ -16,7 +16,7 @@
  • node/output
  • Module node/output

    +
  • Defined in packages/cli-kit/src/public/node/output.ts:2
  • @@ -96,6 +96,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_path.html b/docs/api/cli-kit/modules/node_path.html index bc8602fbf99..35065888c09 100644 --- a/docs/api/cli-kit/modules/node_path.html +++ b/docs/api/cli-kit/modules/node_path.html @@ -16,7 +16,7 @@
  • node/path
  • Module node/path

    +
  • Defined in packages/cli-kit/src/public/node/path.ts:1
  • @@ -69,6 +69,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_plugins.html b/docs/api/cli-kit/modules/node_plugins.html index f6649c7d31c..b2def120d7a 100644 --- a/docs/api/cli-kit/modules/node_plugins.html +++ b/docs/api/cli-kit/modules/node_plugins.html @@ -16,7 +16,7 @@
  • node/plugins
  • Module node/plugins

    +
  • Defined in packages/cli-kit/src/public/node/plugins.ts:1
  • @@ -70,6 +70,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_plugins_tunnel.html b/docs/api/cli-kit/modules/node_plugins_tunnel.html index 33c3d759afb..7a1ee7b8a9c 100644 --- a/docs/api/cli-kit/modules/node_plugins_tunnel.html +++ b/docs/api/cli-kit/modules/node_plugins_tunnel.html @@ -16,7 +16,7 @@
  • node/plugins/tunnel
  • Module node/plugins/tunnel

    +
  • Defined in packages/cli-kit/src/public/node/plugins/tunnel.ts:1
  • @@ -78,6 +78,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_result.html b/docs/api/cli-kit/modules/node_result.html index 8d4e46e9a06..e47a0830c7d 100644 --- a/docs/api/cli-kit/modules/node_result.html +++ b/docs/api/cli-kit/modules/node_result.html @@ -16,7 +16,7 @@
  • node/result
  • Module node/result

    +
  • Defined in packages/cli-kit/src/public/node/result.ts:1
  • @@ -69,6 +69,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_ruby.html b/docs/api/cli-kit/modules/node_ruby.html index c036991a16e..9d6f379be17 100644 --- a/docs/api/cli-kit/modules/node_ruby.html +++ b/docs/api/cli-kit/modules/node_ruby.html @@ -16,7 +16,7 @@
  • node/ruby
  • Module node/ruby

    +
  • Defined in packages/cli-kit/src/public/node/ruby.ts:1
  • @@ -67,6 +67,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_schema.html b/docs/api/cli-kit/modules/node_schema.html index ab3c2d25663..ee5f5a32529 100644 --- a/docs/api/cli-kit/modules/node_schema.html +++ b/docs/api/cli-kit/modules/node_schema.html @@ -16,7 +16,7 @@
  • node/schema
  • Module node/schema

    +
  • Defined in packages/cli-kit/src/public/node/schema.ts:1
  • +
  • Defined in packages/cli-kit/src/public/node/tcp.ts:1
  • @@ -60,6 +60,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_testing_output.html b/docs/api/cli-kit/modules/node_testing_output.html index f2d3054898a..396522dad2c 100644 --- a/docs/api/cli-kit/modules/node_testing_output.html +++ b/docs/api/cli-kit/modules/node_testing_output.html @@ -16,7 +16,7 @@
  • node/testing/output
  • Module node/testing/output

    +
  • Defined in packages/cli-kit/src/public/node/testing/output.ts:1
  • @@ -59,6 +59,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_themes_conf.html b/docs/api/cli-kit/modules/node_themes_conf.html index f471713f54c..17b65d8b4d2 100644 --- a/docs/api/cli-kit/modules/node_themes_conf.html +++ b/docs/api/cli-kit/modules/node_themes_conf.html @@ -16,7 +16,7 @@
  • node/themes/conf
  • Module node/themes/conf

    +
  • Defined in packages/cli-kit/src/public/node/themes/conf.ts:1
  • @@ -62,6 +62,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_themes_models_theme.html b/docs/api/cli-kit/modules/node_themes_models_theme.html index 8eaa9b62fcc..d29f0dbb08e 100644 --- a/docs/api/cli-kit/modules/node_themes_models_theme.html +++ b/docs/api/cli-kit/modules/node_themes_models_theme.html @@ -16,7 +16,7 @@
  • node/themes/models/theme
  • Module node/themes/models/theme

    +
  • Defined in packages/cli-kit/src/public/node/themes/models/theme.ts:1
  • @@ -63,6 +63,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_themes_theme_manager.html b/docs/api/cli-kit/modules/node_themes_theme_manager.html index c6bd7d15a4b..3e3c5a61fcc 100644 --- a/docs/api/cli-kit/modules/node_themes_theme_manager.html +++ b/docs/api/cli-kit/modules/node_themes_theme_manager.html @@ -16,7 +16,7 @@
  • node/themes/theme-manager
  • Module node/themes/theme-manager

    +
  • Defined in packages/cli-kit/src/public/node/themes/theme-manager.ts:1
  • @@ -59,6 +59,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_themes_theme_urls.html b/docs/api/cli-kit/modules/node_themes_theme_urls.html index ab8dbe15dce..c02bafda6ef 100644 --- a/docs/api/cli-kit/modules/node_themes_theme_urls.html +++ b/docs/api/cli-kit/modules/node_themes_theme_urls.html @@ -16,7 +16,7 @@
  • node/themes/theme-urls
  • Module node/themes/theme-urls

    +
  • Defined in packages/cli-kit/src/public/node/themes/theme-urls.ts:1
  • @@ -61,6 +61,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_themes_themes_api.html b/docs/api/cli-kit/modules/node_themes_themes_api.html index edffb3bf72c..7f98be240c5 100644 --- a/docs/api/cli-kit/modules/node_themes_themes_api.html +++ b/docs/api/cli-kit/modules/node_themes_themes_api.html @@ -16,7 +16,7 @@
  • node/themes/themes-api
  • Module node/themes/themes-api

    +
  • Defined in packages/cli-kit/src/public/node/themes/themes-api.ts:1
  • @@ -68,6 +68,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_toml.html b/docs/api/cli-kit/modules/node_toml.html index 078fbbd8337..015a0f3d72b 100644 --- a/docs/api/cli-kit/modules/node_toml.html +++ b/docs/api/cli-kit/modules/node_toml.html @@ -16,7 +16,7 @@
  • node/toml
  • Module node/toml

    +
  • Defined in packages/cli-kit/src/public/node/toml.ts:1
  • @@ -60,6 +60,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_ui.html b/docs/api/cli-kit/modules/node_ui.html index 8f8ba84d5df..f96f27b124e 100644 --- a/docs/api/cli-kit/modules/node_ui.html +++ b/docs/api/cli-kit/modules/node_ui.html @@ -16,7 +16,7 @@
  • node/ui
  • Module node/ui

    +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:2
  • @@ -92,6 +92,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/modules/node_vscode.html b/docs/api/cli-kit/modules/node_vscode.html index 4895966d05c..260bc09e3d5 100644 --- a/docs/api/cli-kit/modules/node_vscode.html +++ b/docs/api/cli-kit/modules/node_vscode.html @@ -16,7 +16,7 @@
  • node/vscode
  • Module node/vscode

    +
  • Defined in packages/cli-kit/src/public/node/vscode.ts:1
  • @@ -60,6 +60,7 @@

    node/abort
  • node/analytics
  • node/api/admin
  • +
  • node/api/business-platform
  • node/api/graphql
  • node/api/http
  • node/api/partners
  • diff --git a/docs/api/cli-kit/types/common_string.RandomNameFamily.html b/docs/api/cli-kit/types/common_string.RandomNameFamily.html index 7a418cb69b1..f9d43ecc8d4 100644 --- a/docs/api/cli-kit/types/common_string.RandomNameFamily.html +++ b/docs/api/cli-kit/types/common_string.RandomNameFamily.html @@ -18,7 +18,7 @@

    Type alias RandomNameFamily

    RandomNameFamily: "business" | "creative"
    +
  • Defined in packages/cli-kit/src/public/common/string.ts:162
  • +
  • Defined in packages/cli-kit/src/public/common/ts/deep-required.ts:10
  • +
  • Defined in packages/cli-kit/src/public/common/ts/pick-by-prefix.ts:11
  • +
  • Defined in packages/cli-kit/src/public/node/api/graphql.ts:11
  • +
  • Defined in packages/cli-kit/src/public/node/context/local.ts:239
  • +
  • Defined in packages/cli-kit/src/public/node/fs.ts:78
  • +
  • Defined in packages/cli-kit/src/public/node/http.ts:20
  • +
  • Defined in packages/cli-kit/src/public/node/metadata.ts:126
  • +
  • Defined in packages/cli-kit/src/public/node/metadata.ts:43
  • +
  • Defined in packages/cli-kit/src/public/node/metadata.ts:127
  • +
  • Defined in packages/cli-kit/src/public/node/metadata.ts:44
  • +
  • Defined in packages/cli-kit/src/public/node/monorail.ts:123
  • +
  • Defined in packages/cli-kit/src/public/node/monorail.ts:124
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:34
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:26
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:40
  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:158
  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:26
  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:35
  • +
  • Defined in packages/cli-kit/src/public/node/plugins.ts:64
  • +
  • Defined in packages/cli-kit/src/public/node/plugins.ts:58
  • +
  • Defined in packages/cli-kit/src/public/node/plugins/tunnel.ts:5
  • +
  • Defined in packages/cli-kit/src/public/node/plugins/tunnel.ts:46
  • +
  • Defined in packages/cli-kit/src/public/node/plugins/tunnel.ts:49
  • +
  • Defined in packages/cli-kit/src/public/node/plugins/tunnel.ts:47
  • +
  • Defined in packages/cli-kit/src/public/node/plugins/tunnel.ts:48
  • +
  • Defined in packages/cli-kit/src/public/node/plugins/tunnel.ts:12
  • +
  • Defined in packages/cli-kit/src/public/node/result.ts:3
  • +
  • Defined in packages/cli-kit/src/public/node/themes/themes-api.ts:10
  • +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:79
  • +
  • Defined in packages/cli-kit/src/private/node/ui/components/TokenizedText.tsx:60
  • +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:568
  • +
  • Defined in packages/cli-kit/src/public/node/ui.tsx:80
  • +
  • Defined in packages/cli-kit/src/private/node/ui/components/Table/Table.tsx:7
  • +
  • Defined in packages/cli-kit/src/private/node/ui/components/TokenizedText.tsx:61
  • +
  • Defined in packages/cli-kit/src/public/common/version.ts:1
  • +
  • Defined in packages/cli-kit/src/public/node/cli.ts:156
  • +
  • Defined in packages/cli-kit/src/public/node/context/fqdn.ts:8
  • diff --git a/docs/api/cli-kit/variables/node_context_fqdn.CouldntObtainPartnersSpinFQDNError.html b/docs/api/cli-kit/variables/node_context_fqdn.CouldntObtainPartnersSpinFQDNError.html index 1db4411fd61..fadef2982ca 100644 --- a/docs/api/cli-kit/variables/node_context_fqdn.CouldntObtainPartnersSpinFQDNError.html +++ b/docs/api/cli-kit/variables/node_context_fqdn.CouldntObtainPartnersSpinFQDNError.html @@ -18,7 +18,7 @@

    Variable CouldntObtainPartnersSpinFQDNErrorConst

    CouldntObtainPartnersSpinFQDNError: AbortError = ...
    +
  • Defined in packages/cli-kit/src/public/node/context/fqdn.ts:5
  • diff --git a/docs/api/cli-kit/variables/node_context_fqdn.CouldntObtainShopifySpinFQDNError.html b/docs/api/cli-kit/variables/node_context_fqdn.CouldntObtainShopifySpinFQDNError.html index 4f4b569f984..c854974799a 100644 --- a/docs/api/cli-kit/variables/node_context_fqdn.CouldntObtainShopifySpinFQDNError.html +++ b/docs/api/cli-kit/variables/node_context_fqdn.CouldntObtainShopifySpinFQDNError.html @@ -18,7 +18,7 @@

    Variable CouldntObtainShopifySpinFQDNErrorConst

    CouldntObtainShopifySpinFQDNError: AbortError = ...
    +
  • Defined in packages/cli-kit/src/public/node/context/fqdn.ts:11
  • diff --git a/docs/api/cli-kit/variables/node_context_fqdn.NotProvidedStoreFQDNError.html b/docs/api/cli-kit/variables/node_context_fqdn.NotProvidedStoreFQDNError.html index bfa086d6540..a27ccbf043b 100644 --- a/docs/api/cli-kit/variables/node_context_fqdn.NotProvidedStoreFQDNError.html +++ b/docs/api/cli-kit/variables/node_context_fqdn.NotProvidedStoreFQDNError.html @@ -18,7 +18,7 @@

    Variable NotProvidedStoreFQDNErrorConst

    NotProvidedStoreFQDNError: AbortError = ...
    +
  • Defined in packages/cli-kit/src/public/node/context/fqdn.ts:14
  • diff --git a/docs/api/cli-kit/variables/node_monorail.MONORAIL_COMMAND_TOPIC.html b/docs/api/cli-kit/variables/node_monorail.MONORAIL_COMMAND_TOPIC.html index 70c4f3b570a..cae6b478d5a 100644 --- a/docs/api/cli-kit/variables/node_monorail.MONORAIL_COMMAND_TOPIC.html +++ b/docs/api/cli-kit/variables/node_monorail.MONORAIL_COMMAND_TOPIC.html @@ -16,9 +16,9 @@
  • node/monorail
  • MONORAIL_COMMAND_TOPIC
  • Variable MONORAIL_COMMAND_TOPICConst

    -
    MONORAIL_COMMAND_TOPIC: "app_cli3_command/1.3" = ...
    +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:25
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:16
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:19
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:22
  • +
  • Defined in packages/cli-kit/src/public/node/node-package-manager.ts:13
  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:214
  • Returns ErrorContentToken

    +
  • Defined in packages/cli-kit/src/public/node/output.ts:62
  • failIcon:function
  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:83
  • genericShellCommand:function

    Returns CommandContentToken

  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:41
  • green:function

    Returns ColorContentToken

  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:74
  • heading:function

    Returns HeadingContentToken

  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:53
  • italic:function

    Returns ItalicContentToken

  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:59
  • json:function
      @@ -118,7 +118,7 @@

      Parameters

      value: unknown

    Returns JsonContentToken

  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:44
  • linesDiff:function
      @@ -131,7 +131,7 @@

      Parameters

      value: Change[]

    Returns LinesDiffContentToken

  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:86
  • link:function
      @@ -146,7 +146,7 @@
      value: string

    Returns LinkContentToken

  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:50
  • magenta:function

    Returns ColorContentToken

  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:71
  • packagejsonScript:function
      @@ -176,7 +176,7 @@
      scriptName: string
      Rest ...scriptArgs: string[]

    Returns CommandContentToken

  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:77
  • path:function

    Returns PathContentToken

  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:47
  • raw:function
      @@ -202,7 +202,7 @@

      Parameters

      value: string

    Returns RawContentToken

  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:38
  • subheading:function

    Returns SubHeadingContentToken

  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:56
  • successIcon:function
  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:80
  • yellow:function

    Returns ColorContentToken

  • +
  • Defined in packages/cli-kit/src/public/node/output.ts:37
  • +
  • Defined in packages/cli-kit/src/public/node/ruby.ts:23
  • +
  • Defined in packages/cli-kit/src/public/node/ruby.ts:19
  • +
  • Defined in packages/cli-kit/src/public/node/themes/models/theme.ts:1