diff --git a/package.json b/package.json index b5423a2f..ec3dfb0a 100644 --- a/package.json +++ b/package.json @@ -5,23 +5,23 @@ "author": "Salesforce", "bugs": "https://github.com/forcedotcom/cli/issues", "dependencies": { - "@oclif/core": "^1.0.0", - "@salesforce/core": "3.6.5", - "@salesforce/sf-plugins-core": "^1.0.0", + "@oclif/core": "^1.0.2", + "@salesforce/core": "3.6.6", + "@salesforce/sf-plugins-core": "^1.0.4", "change-case": "^4.1.2", "cli-ux": "^5.6.3", "open": "^8.2.0", "tslib": "^2" }, "devDependencies": { - "@oclif/plugin-command-snapshot": "2.2.2", + "@oclif/plugin-command-snapshot": "^3.1.1", "@oclif/test": "^1.2.8", - "@salesforce/cli-plugins-testkit": "^1.4.2", + "@salesforce/cli-plugins-testkit": "^1.4.11", "@salesforce/dev-config": "^2.1.2", "@salesforce/dev-scripts": "^0.9.18", - "@salesforce/plugin-command-reference": "^2.0.11", - "@salesforce/plugin-config": "^2.2.6", - "@salesforce/plugin-functions": "^0.2.50", + "@salesforce/plugin-command-reference": "^2.1.1", + "@salesforce/plugin-config": "^2.2.9", + "@salesforce/plugin-functions": "^1.1.4", "@salesforce/prettier-config": "^0.0.2", "@salesforce/ts-sinon": "1.3.21", "@types/shelljs": "^0.8.8", diff --git a/schemas/hooks/sf-env-display.json b/schemas/hooks/sf-env-display.json new file mode 100644 index 00000000..0c56e3fd --- /dev/null +++ b/schemas/hooks/sf-env-display.json @@ -0,0 +1,75 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$ref": "#/definitions/OrgAuthorization", + "definitions": { + "OrgAuthorization": { + "type": "object", + "properties": { + "orgId": { + "type": "string" + }, + "username": { + "type": "string" + }, + "oauthMethod": { + "type": "string", + "enum": ["jwt", "web", "token", "unknown"] + }, + "aliases": { + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "null" + } + ] + }, + "configs": { + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "null" + } + ] + }, + "isScratchOrg": { + "type": "boolean" + }, + "isDevHub": { + "type": "boolean" + }, + "instanceUrl": { + "type": "string" + }, + "accessToken": { + "type": "string" + }, + "error": { + "type": "string" + }, + "isExpired": { + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "string", + "const": "unknown" + } + ] + } + }, + "required": ["orgId", "username", "oauthMethod", "isExpired"], + "additionalProperties": false + } + } +} diff --git a/schemas/hooks/sf-env-list.json b/schemas/hooks/sf-env-list.json new file mode 100644 index 00000000..0f850a0a --- /dev/null +++ b/schemas/hooks/sf-env-list.json @@ -0,0 +1,40 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$ref": "#/definitions/SalesforceOrg", + "definitions": { + "SalesforceOrg": { + "type": "object", + "properties": { + "aliases": { + "type": "array", + "items": { + "type": "string" + } + }, + "username": { + "type": "string" + }, + "orgId": { + "type": "string" + }, + "instanceUrl": { + "type": "string" + }, + "oauthMethod": { + "type": "string" + }, + "configs": { + "type": "array", + "items": { + "type": "string" + } + }, + "error": { + "type": "string" + } + }, + "required": ["aliases", "username", "orgId", "instanceUrl", "oauthMethod", "configs"], + "additionalProperties": false + } + } +} diff --git a/yarn.lock b/yarn.lock index 64f62e28..af62a3e0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -675,10 +675,10 @@ is-wsl "^2.1.1" tslib "^2.0.0" -"@oclif/core@0.5.39": - version "0.5.39" - resolved "https://registry.yarnpkg.com/@oclif/core/-/core-0.5.39.tgz#d00705f31c5e6617145e84bb9dd50156cf3b01c5" - integrity sha512-4XusxLX8PnHDQxtRP25PImlkIj1Mlx6wt0NWb1FxQGvTJOAgXGJZl3YB02ZeXZLYbeKA2A3AqqxFTTKbADnZng== +"@oclif/core@^0.5.34": + version "0.5.41" + resolved "https://registry.yarnpkg.com/@oclif/core/-/core-0.5.41.tgz#54ab600b1b6017f3849e629401eafd4f4e3a5c2e" + integrity sha512-zEYbpxSQr80t7MkLMHOmZr8QCrCIbVrI7fLSZWlsvD2AEM0vvzuhWymjo9/kHy2/kNfxwu7NTI4i2a0zoHu11w== dependencies: "@oclif/linewrap" "^1.0.0" chalk "^4.1.0" @@ -698,10 +698,10 @@ widest-line "^3.1.0" wrap-ansi "^7.0.0" -"@oclif/core@^0.5.34", "@oclif/core@^0.5.38", "@oclif/core@^0.5.39": - version "0.5.41" - resolved "https://registry.yarnpkg.com/@oclif/core/-/core-0.5.41.tgz#54ab600b1b6017f3849e629401eafd4f4e3a5c2e" - integrity sha512-zEYbpxSQr80t7MkLMHOmZr8QCrCIbVrI7fLSZWlsvD2AEM0vvzuhWymjo9/kHy2/kNfxwu7NTI4i2a0zoHu11w== +"@oclif/core@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@oclif/core/-/core-1.0.0.tgz#d9234f27368c058d9fb835dc9f57f3278af57777" + integrity sha512-YBpjahcSMtIsw+rgNkKLlqULc7Ste7EfhJj7d/elukhB3lj+sO0z34byPVGEGSb5zDO3Sk2GxBZw6BM0vjWqMw== dependencies: "@oclif/linewrap" "^1.0.0" chalk "^4.1.0" @@ -721,10 +721,33 @@ widest-line "^3.1.0" wrap-ansi "^7.0.0" -"@oclif/core@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@oclif/core/-/core-1.0.0.tgz#d9234f27368c058d9fb835dc9f57f3278af57777" - integrity sha512-YBpjahcSMtIsw+rgNkKLlqULc7Ste7EfhJj7d/elukhB3lj+sO0z34byPVGEGSb5zDO3Sk2GxBZw6BM0vjWqMw== +"@oclif/core@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@oclif/core/-/core-1.0.1.tgz#e97fc5c234db1a745fb4468eb79cabeea5f84af9" + integrity sha512-ai9XwnEZ+P34VUtV+fX/6HmRbo5CXGdZjX3iK3PsY6O+KYeJBKVAkPCKLz0qtAHxx0HX4+Yj2wnmy+hTCx6HYQ== + dependencies: + "@oclif/linewrap" "^1.0.0" + chalk "^4.1.0" + clean-stack "^3.0.0" + cli-ux "^5.1.0" + debug "^4.1.1" + fs-extra "^9.0.1" + get-package-type "^0.1.0" + globby "^11.0.1" + indent-string "^4.0.0" + is-wsl "^2.1.1" + lodash.template "^4.4.0" + semver "^7.3.2" + string-width "^4.2.0" + strip-ansi "^6.0.0" + tslib "^2.0.0" + widest-line "^3.1.0" + wrap-ansi "^7.0.0" + +"@oclif/core@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@oclif/core/-/core-1.0.2.tgz#f8f4eb12ff5adceb0a7ed262e9f5d46bbef1bf4f" + integrity sha512-5Qd4D+OkhCPLNML8S/LEu78CPbnd4hfsF+/7fzAnyUD4U3P+F+/Lnx/b/AnaXw6U8CPjSNO+sod0C+QpqTN13A== dependencies: "@oclif/linewrap" "^1.0.0" chalk "^4.1.0" @@ -799,13 +822,12 @@ chalk "^2.4.2" tslib "^1.9.3" -"@oclif/plugin-command-snapshot@2.2.2": - version "2.2.2" - resolved "https://registry.npmjs.org/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-2.2.2.tgz#2da73d06886e8b74c5e95f7369562d795dcfa5a2" - integrity sha512-8ujiuGTncfVEbIM4mtOe/PzBaE8m2Bgr13ILxSFf/ZRUVNPs/DSG2DlmxUUf2kpmMhKD7U4lGVqI4em+TJsBiQ== +"@oclif/plugin-command-snapshot@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-3.1.1.tgz#27cf85f47f2ded8b2ca879575fcfb62298eed53c" + integrity sha512-U8cTSfBjLW/79A5mjNGra6Tg3c22b+kWeq4ZWk8OvGhyC6EC6071UQqiFlvewBEHnC1Cq26h2pXZqLSRYoXB7w== dependencies: - "@oclif/command" "^1.6.0" - "@oclif/config" "^1" + "@oclif/core" "^1.0.1" chalk "^4.1.1" just-diff "^3.1.1" semver "^7.3.5" @@ -843,7 +865,7 @@ widest-line "^3.1.0" wrap-ansi "^4.0.0" -"@oclif/plugin-not-found@^1.2.2", "@oclif/plugin-not-found@^1.2.4": +"@oclif/plugin-not-found@^1.2.2": version "1.2.4" resolved "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-1.2.4.tgz#160108c82f0aa10f4fb52cee4e0135af34b7220b" integrity sha512-G440PCuMi/OT8b71aWkR+kCWikngGtyRjOR24sPMDbpUFV4+B3r51fz1fcqeUiiEOYqUpr0Uy/sneUe1O/NfBg== @@ -893,10 +915,10 @@ mv "~2" safe-json-stringify "~1" -"@salesforce/cli-plugins-testkit@^1.4.2": - version "1.4.5" - resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-1.4.5.tgz#d768881e7a31994ac362bae430e7920f6ce72a15" - integrity sha512-vHEhR5KwiMgV/IXwdJk/88v1tAKzYgyQZLgEqG8ObBY2bk93lrd+01RfgCAOPXOqy7E/Ya4H+2UA+g38PrdBQw== +"@salesforce/cli-plugins-testkit@^1.4.11": + version "1.4.11" + resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-1.4.11.tgz#6db0ce6c05c9089cf7d1926df8f15cd7edbe904a" + integrity sha512-9JrthcjAJf4HARO5LXkXquFC9++S3p6ptUlzb5E6a/t5zp02IfHR1mPP+gL9p9X+6lL37Ro9yJnd2+2ffXofAg== dependencies: "@salesforce/core" "^2.24.0" "@salesforce/kit" "^1.5.13" @@ -906,19 +928,19 @@ shelljs "^0.8.4" strip-ansi "6.0.1" -"@salesforce/command@^3.0.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@salesforce/command/-/command-3.1.3.tgz#d72ed2bc516ce7fea1151576a997b45fd1752d26" - integrity sha512-Yg9lhl3ghwPN7WwqFmgfWIn6i7vz43WTpEsYsChz80bKORlVbDvhwPZQUj0XTv3DKDnPZVU8FFIDsrLSOa9G1A== +"@salesforce/command@^4.1.3": + version "4.1.4" + resolved "https://registry.yarnpkg.com/@salesforce/command/-/command-4.1.4.tgz#84ffbbdd07a6b82c6a52dcd20edff677483b803e" + integrity sha512-rATEYdM370wFHcZw10W0vDaRZwtBUAD8xukzPRkSGCBhYwm8csLbW0Vlx+vaG2Wh7G85Uzy8ZEWpzmLDRtbvHQ== dependencies: "@oclif/command" "^1.5.17" "@oclif/errors" "^1.2.2" "@oclif/parser" "^3.8.3" "@oclif/plugin-help" "^2.2.0" "@oclif/test" "^1.2.4" - "@salesforce/core" "^2.23.4" - "@salesforce/kit" "^1.2.2" - "@salesforce/ts-types" "^1.2.0" + "@salesforce/core" "^2.28.0" + "@salesforce/kit" "^1.5.17" + "@salesforce/ts-types" "^1.5.20" chalk "^2.4.2" cli-ux "^4.9.3" @@ -942,10 +964,10 @@ mkdirp "1.0.4" sfdx-faye "^1.0.9" -"@salesforce/core@3.6.5", "@salesforce/core@^3.6.1", "@salesforce/core@^3.6.2", "@salesforce/core@^3.6.5": - version "3.6.5" - resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-3.6.5.tgz#4c3afa392eb61cd34e2683033c04fbfa4d546850" - integrity sha512-EqMZS4Awn/WctCqVWecXOIJKzLUleWw2fvViNP0lVJgt56ZAinZRBetXJFITyKVyslW/WIAhX92NHW7t3AG7Hg== +"@salesforce/core@3.6.6": + version "3.6.6" + resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-3.6.6.tgz#31e231080f42e20d66bc834b6e80e141f1aabd1f" + integrity sha512-ubf8dbFAdMcoK4sHXtJD/IrA8WXj8H2df7a8b7wGFBMegqziQDzL7yqwmE7qbAEtD7MxLm1FhQQP+WONPCdoWA== dependencies: "@salesforce/bunyan" "^2.0.0" "@salesforce/kit" "^1.5.8" @@ -964,7 +986,7 @@ sfdx-faye "^1.0.9" ts-retry-promise "^0.6.0" -"@salesforce/core@^2.2.0", "@salesforce/core@^2.20.10", "@salesforce/core@^2.23.4", "@salesforce/core@^2.24.0", "@salesforce/core@^2.27.0": +"@salesforce/core@^2.20.10", "@salesforce/core@^2.24.0": version "2.27.2" resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-2.27.2.tgz#a5933310e3b10ef46ad8129a30190c229fe074ee" integrity sha512-0BeORSY0Zv+9ACNMVZm7eqcT7QH9WtfObHSWyeYnhl1D5iCnZHMyk+AVql8urddNtL5WTquuens62jdYCniVew== @@ -985,6 +1007,49 @@ sfdx-faye "^1.0.9" ts-retry-promise "^0.6.0" +"@salesforce/core@^2.28.0": + version "2.28.1" + resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-2.28.1.tgz#a6ca31f151b097d567242e324f5e87e0bd76de83" + integrity sha512-n+cpGbhrBHQH9XzUTgefvhARESYZt65/QjV0Qiu0nNnetz9zrzwCxMSpOf8BjrScxtfqcgGD6vGnO2nv/AGO/Q== + dependencies: + "@salesforce/bunyan" "^2.0.0" + "@salesforce/kit" "^1.5.0" + "@salesforce/schemas" "^1.0.1" + "@salesforce/ts-types" "^1.5.13" + "@types/graceful-fs" "^4.1.5" + "@types/jsforce" "^1.9.29" + "@types/mkdirp" "^1.0.1" + debug "^3.1.0" + graceful-fs "^4.2.4" + jsen "0.6.6" + jsforce "^1.10.1" + jsonwebtoken "8.5.0" + mkdirp "1.0.4" + sfdx-faye "^1.0.9" + ts-retry-promise "^0.6.0" + +"@salesforce/core@^3.6.5": + version "3.6.5" + resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-3.6.5.tgz#4c3afa392eb61cd34e2683033c04fbfa4d546850" + integrity sha512-EqMZS4Awn/WctCqVWecXOIJKzLUleWw2fvViNP0lVJgt56ZAinZRBetXJFITyKVyslW/WIAhX92NHW7t3AG7Hg== + dependencies: + "@salesforce/bunyan" "^2.0.0" + "@salesforce/kit" "^1.5.8" + "@salesforce/schemas" "^1.0.1" + "@salesforce/ts-types" "^1.5.20" + "@types/graceful-fs" "^4.1.5" + "@types/jsforce" "^1.9.29" + "@types/mkdirp" "^1.0.1" + change-case "^4.1.2" + debug "^3.1.0" + graceful-fs "^4.2.4" + jsen "0.6.6" + jsforce "^1.10.1" + jsonwebtoken "8.5.0" + mkdirp "1.0.4" + sfdx-faye "^1.0.9" + ts-retry-promise "^0.6.0" + "@salesforce/dev-config@^2.1.2": version "2.1.2" resolved "https://registry.yarnpkg.com/@salesforce/dev-config/-/dev-config-2.1.2.tgz#b4e206f860e87065d068bf8ba3994a032389ad81" @@ -1031,7 +1096,7 @@ typescript "^4.1.3" xunit-file "^1.0.0" -"@salesforce/kit@^1.2.2", "@salesforce/kit@^1.4.5", "@salesforce/kit@^1.5.0", "@salesforce/kit@^1.5.13", "@salesforce/kit@^1.5.17", "@salesforce/kit@^1.5.8": +"@salesforce/kit@^1.5.0", "@salesforce/kit@^1.5.13", "@salesforce/kit@^1.5.17", "@salesforce/kit@^1.5.8": version "1.5.17" resolved "https://registry.npmjs.org/@salesforce/kit/-/kit-1.5.17.tgz#4fd9c50ba2e072c50d319654f86f86808c544795" integrity sha512-Uuh+v7WPSo+L21moVprl+jbDTl3ndmcJM5et/vFLZW4ur6CCJCJSoReM9ttF1qZuQskyCyhVZo6/aMZrVUe+rQ== @@ -1039,36 +1104,36 @@ "@salesforce/ts-types" "^1.5.20" tslib "^2.2.0" -"@salesforce/plugin-command-reference@^2.0.11": - version "2.0.11" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-command-reference/-/plugin-command-reference-2.0.11.tgz#150ee6693de7ac39ec6291fb2fb8acec11368a9a" - integrity sha512-+wONOaaYtQ3nROIQ0v9h93ers/EB71rj+rN6ea6BP5Kf6DlwJy3HvkLwxwsAfhAPt/XZsIJkLVswEAq9F4GyYA== +"@salesforce/plugin-command-reference@^2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-command-reference/-/plugin-command-reference-2.1.1.tgz#ac5bea9e670f5bea6b1a3c589b80737026982075" + integrity sha512-U98pEqUSycU6j05996adLTHCMadPMK2S1bt5iklURe56oWFtVsY993EbkMW9JfqFInui3lTPS+n1zI5MxUDzgw== dependencies: - "@oclif/core" "^0.5.38" - "@salesforce/core" "^2.2.0" + "@oclif/core" "^1.0.0" + "@salesforce/core" "^3.6.5" "@salesforce/kit" "^1.5.17" - "@salesforce/sf-plugins-core" "^0.0.23" + "@salesforce/sf-plugins-core" "^1.0.0" "@salesforce/ts-types" "^1.5.20" chalk "^3.0.0" handlebars "^4.7.7" tslib "^2" -"@salesforce/plugin-config@^2.2.6": - version "2.2.6" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-config/-/plugin-config-2.2.6.tgz#b584083b17f3f527890f14925742cddd78a9f887" - integrity sha512-p0vdw3EASn6zC97uIKQX+b4TfKmod+/RRp3qQ24OoHXojbgSLE+QfIUZlEl26isEVF3Bv3GJLm4BmvX5e4tCUQ== +"@salesforce/plugin-config@^2.2.9": + version "2.2.9" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-config/-/plugin-config-2.2.9.tgz#c3ecfef4b00ad1ce3826d1de5a68b143f3f7ba1b" + integrity sha512-zsGyKQ9qphYuvzeDaPjAB0+OEjEJ3xRjSLRMTZjOOg5wjdjAeIpDFbyFlNx1kNHQts2LagN1sLyXzyRn7LNiNw== dependencies: - "@oclif/core" "^1.0.0" - "@salesforce/core" "3.6.5" - "@salesforce/sf-plugins-core" "^1.0.0" + "@oclif/core" "^1.0.2" + "@salesforce/core" "3.6.6" + "@salesforce/sf-plugins-core" "^1.0.4" chalk "^4.1.1" cli-ux "^5.6.3" tslib "^2" -"@salesforce/plugin-functions@^0.2.50": - version "0.2.54" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-functions/-/plugin-functions-0.2.54.tgz#5d7b00bbbfcf4727929d566a8c254a827f29c2c7" - integrity sha512-PU87r8cYI2u5DsZelTcCAKLyHbiYoWbc9dD98bvH9rsE6w0fuuHzp0vkLL2Yc4jgLyHGbs1odKVIF1YeYUSYFw== +"@salesforce/plugin-functions@^1.1.4": + version "1.1.4" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-functions/-/plugin-functions-1.1.4.tgz#395c63f82bfb6140e4e96a72df71fb2ce7b21f35" + integrity sha512-mizG6G7NiyBQaBsey26ULq4Y3cjqQO5Und5qfl1+Uod2gyP6Gm62f4KCYCDGxsdq3fT8RWgt4SE2ByaDWpQFww== dependencies: "@heroku-cli/color" "^1.1.14" "@heroku-cli/schema" "^1.0.25" @@ -1076,11 +1141,10 @@ "@heroku/function-toml" "^0.0.3" "@heroku/functions-core" "0.1.3" "@heroku/project-descriptor" "0.0.5" - "@oclif/core" "0.5.39" - "@oclif/plugin-not-found" "^1.2.4" - "@salesforce/core" "3.6.5" - "@salesforce/plugin-org" "^1.6.7" - "@salesforce/sf-plugins-core" "^0.0.25" + "@oclif/core" "^1.0.2" + "@salesforce/core" "3.6.6" + "@salesforce/plugin-org" "^1.8.1" + "@salesforce/sf-plugins-core" "^1.0.4" "@salesforce/ts-sinon" "^1.3.18" "@salesforce/ts-types" "^1.5.5" axios "^0.21.1" @@ -1100,15 +1164,15 @@ sha256-file "^1.0.0" uuid "^8.3.2" -"@salesforce/plugin-org@^1.6.7": - version "1.7.0" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-org/-/plugin-org-1.7.0.tgz#bf89f4819a143cbcee8f1d3fcb8b1fda13c8c66e" - integrity sha512-sFm/5rR7iQfmAYL04elm59qf9L5tXYmyQR5pXHdGEni3J+beC2txLctQlCHcPGqm3f9Yv5P5aq7mDwW8RgXDUQ== +"@salesforce/plugin-org@^1.8.1": + version "1.8.2" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-org/-/plugin-org-1.8.2.tgz#2ee271e8f4249703ee62ab48c3fdf0bc07cd78b0" + integrity sha512-+W1Mi6W3GaOO1d5brj/YuOFPYuy6XTAj6UchJixsmFbvPeltBwnwKTlpWhEqc1toA/2KkMrTiwgF4iZe38bafg== dependencies: "@oclif/config" "^1" - "@salesforce/command" "^3.0.3" - "@salesforce/core" "^2.27.0" - "@salesforce/kit" "^1.4.5" + "@salesforce/command" "^4.1.3" + "@salesforce/core" "^2.28.0" + "@salesforce/kit" "^1.5.17" open "8.2.1" tslib "^2" @@ -1122,30 +1186,6 @@ resolved "https://registry.yarnpkg.com/@salesforce/schemas/-/schemas-1.1.0.tgz#bbf94a11ee036f2b0ec6ba82306cd9565a6ba26b" integrity sha512-6D7DvE6nFxpLyyTnrOIbbAeCJw2r/EpinFAcMh6gU0gA/CGfSbwV/8uR3uHLYL2zCyCZLH8jJ4dZ3BzCMqc+Eg== -"@salesforce/sf-plugins-core@^0.0.23": - version "0.0.23" - resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-0.0.23.tgz#3019efe54cedbd6d20e01a135660089c0dcbe6bc" - integrity sha512-4yGxxUrSh5y6m+kakWMerTmeFCDzdmWAOZgJ6t0wbGNM66GK4ylG8BlS/s11oEuUWKtKUBOdANH6TwJp44ppew== - dependencies: - "@oclif/core" "^0.5.38" - "@salesforce/core" "^3.6.1" - "@salesforce/kit" "^1.5.17" - "@salesforce/ts-types" "^1.5.20" - cli-ux "^5.6.3" - inquirer "^8.1.1" - -"@salesforce/sf-plugins-core@^0.0.25": - version "0.0.25" - resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-0.0.25.tgz#bb8012cae2911c8965d959595006a570ab5c6405" - integrity sha512-2mxQvEldZYG5BSvFNReeu/MIZ0h2+6KYfGC8i1lWan8YYsUbrzdWS6JK3pVw/IOMTuBXuxs05vOVVmzsR6vyCA== - dependencies: - "@oclif/core" "^0.5.39" - "@salesforce/core" "^3.6.2" - "@salesforce/kit" "^1.5.17" - "@salesforce/ts-types" "^1.5.20" - cli-ux "^5.6.3" - inquirer "^8.1.1" - "@salesforce/sf-plugins-core@^1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-1.0.0.tgz#0a267560eb73a04b946959c048578131fa8a0a46" @@ -1158,6 +1198,18 @@ cli-ux "^5.6.3" inquirer "^8.1.1" +"@salesforce/sf-plugins-core@^1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-1.0.4.tgz#53c1a6a90d8ca7350f007ba5ff397327c843518e" + integrity sha512-E/UPSzV3UoV0YC4hfmJHHoFF5o7sEBbbSo4SIlCsNGar3KVF4fL/CKhoB9VL1j3XDLqZ9V7/494f6I4MTO2Glg== + dependencies: + "@oclif/core" "^1.0.2" + "@salesforce/core" "3.6.6" + "@salesforce/kit" "^1.5.17" + "@salesforce/ts-types" "^1.5.20" + cli-ux "^5.6.3" + inquirer "^8.2.0" + "@salesforce/templates@^52.0.0": version "52.1.0" resolved "https://registry.yarnpkg.com/@salesforce/templates/-/templates-52.1.0.tgz#d37377e93ccb5486136ac8aab976ffd3360fc3a2" @@ -1178,7 +1230,7 @@ sinon "^5.1.1" tslib "^2.2.0" -"@salesforce/ts-types@^1.0.0", "@salesforce/ts-types@^1.2.0", "@salesforce/ts-types@^1.5.13", "@salesforce/ts-types@^1.5.17", "@salesforce/ts-types@^1.5.20", "@salesforce/ts-types@^1.5.5": +"@salesforce/ts-types@^1.0.0", "@salesforce/ts-types@^1.5.13", "@salesforce/ts-types@^1.5.17", "@salesforce/ts-types@^1.5.20", "@salesforce/ts-types@^1.5.5": version "1.5.20" resolved "https://registry.yarnpkg.com/@salesforce/ts-types/-/ts-types-1.5.20.tgz#f6875a710ceca48223b240026a14af6d3b39882f" integrity sha512-Ov6um4CWd63EvkRavkHG0J/P9XYL55sdkDWPMr7+AIgqh5flHxDRz09/C4e9M94aX30rzJxW4TVX6EBf4Cu2BQ== @@ -5132,6 +5184,26 @@ inquirer@^8.1.1: strip-ansi "^6.0.0" through "^2.3.6" +inquirer@^8.2.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.0.tgz#f44f008dd344bbfc4b30031f45d984e034a3ac3a" + integrity sha512-0crLweprevJ02tTuA6ThpoAERAGyVILC4sS74uib58Xf/zSr1/ZWtmm7D5CI+bSQEaA04f0K7idaHpQbSWgiVQ== + dependencies: + ansi-escapes "^4.2.1" + chalk "^4.1.1" + cli-cursor "^3.1.0" + cli-width "^3.0.0" + external-editor "^3.0.3" + figures "^3.0.0" + lodash "^4.17.21" + mute-stream "0.0.8" + ora "^5.4.1" + run-async "^2.4.0" + rxjs "^7.2.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + through "^2.3.6" + interpret@^1.0.0: version "1.4.0" resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e"