diff --git a/README.md b/README.md
deleted file mode 100644
index 618c6e0c..00000000
--- a/README.md
+++ /dev/null
@@ -1,861 +0,0 @@
-# Apify command-line interface (Apify CLI)
-
-
-
-
-Apify command-line interface (Apify CLI) helps you create, develop, build and run
-[Apify Actors](https://www.apify.com/actors),
-and manage the Apify cloud platform from any computer.
-
-Apify Actors are cloud programs that can perform arbitrary web scraping, automation or data processing job.
-They accept input, perform their job and generate output.
-While you can develop Actors in an online IDE directly in the [Apify web application](https://console.apify.com/),
-for complex projects it is more convenient to develop Actors locally on your computer
-using Apify SDK
-and only push the Actors to the Apify cloud during deployment.
-This is where the Apify CLI comes in.
-
-Note that Actors running on the Apify platform are executed in Docker containers, so with an appropriate `Dockerfile`
-you can build your Actors in any programming language.
-However, we recommend using JavaScript / Node.js, for which we provide most libraries and support.
-
-## Installation
-
-### Via Homebrew
-
-On macOS (or Linux), you can install the Apify CLI via the [Homebrew package manager](https://brew.sh).
-
-```bash
-brew install apify-cli
-```
-
-### Via NPM
-
-First, make sure you have [Node.js](https://nodejs.org) version 16 or higher with NPM installed on your computer:
-
-```bash
-node --version
-npm --version
-```
-
-Install or upgrade Apify CLI by running:
-
-```bash
-npm -g install apify-cli
-```
-
-If you receive an `EACCES` error, you might need to run the command as root:
-
-```bash
-sudo npm -g install apify-cli
-```
-
-Alternatively, you can use [Node Version Manager (nvm)](https://github.com/nvm-sh/nvm) and install Apify CLI only into a selected user-level Node version without requiring root privileges:
-
-```
-nvm install 16
-nvm use 16
-npm -g install apify-cli
-```
-
-Finally, verify that Apify CLI was installed correctly by running:
-
-```bash
-apify --version
-```
-
-which should print something like:
-
-```
-apify-cli/0.10.0 darwin-x64 node-v16.14.2
-```
-
-> You can also skip the manual global installation altogether and use `npx apify-cli` with all the following commands instead.
-
-## Basic usage
-
-The following examples demonstrate the basic usage of Apify CLI.
-
-### Create a new Actor from scratch
-
-```bash
-apify create my-hello-world
-```
-
-First, you will be prompted to select a template with the boilerplate for the Actor, to help you get started quickly.
-The command will create a directory called `my-hello-world` that contains a Node.js project
-for the Actor and a few configuration files.
-
-> If you decided to skip the installation and go with `npx`, the command will be `npx apify-cli create my-hello-world`.
-
-### Create a new Actor from existing project
-
-```bash
-cd ./my/awesome/project
-apify init
-```
-
-This command will only set up local Actor development environment in an existing directory,
-i.e. it will create the `.actor/actor.json` file and `apify_storage` directory.
-
-Before you can run your project locally using `apify run`, you have to set up the right start command in `package.json` under scripts.start. For example:
-
-```text
-{
- ...
- "scripts": {
- "start": "node your_main_file.js",
- },
- ...
-}
-```
-
-You can find more information about by running `apify help run`.
-
-### Create a new Actor from Scrapy project
-
-If you want to run a Scrapy project on Apify platform, follow the Scrapy integration guide [here](https://docs.apify.com/cli/docs/integrating-scrapy).
-
-### Run the Actor locally
-
-```bash
-cd my-hello-world
-apify run
-```
-
-This command runs the Actor on your local machine.
-Now's your chance to develop the logic - or magic :smirk:
-
-### Login with your Apify account
-
-```bash
-apify login
-```
-
-Before you can interact with the Apify cloud, you need to [create an Apify account](https://console.apify.com/)
-and log in to it using the above command. You will be prompted for
-your [Apify API token](https://console.apify.com/settings/integrations).
-Note that the command will store the API token and other sensitive information to `~/.apify`.
-
-### Push the Actor to the Apify cloud
-
-```bash
-apify push
-```
-
-This command uploads your project to the Apify cloud and builds an Actor from it. On the platform, Actor needs to be built before it can be run.
-
-### Run an Actor on the Apify cloud
-
-```bash
-apify call
-```
-
-Runs the Actor corresponding to the current directory on the Apify platform.
-
-This command can also be used to run other Actors, for example:
-
-```bash
-apify call apify/hello-world
-```
-
-### So what's in this .actor/actor.json file?
-
-This file associates your local development project with an Actor on the Apify platform.
-It contains information such as Actor name, version, build tag and environment variables.
-Make sure you commit this file to the Git repository.
-
-For example, `.actor/actor.json` file can look as follows:
-
-```json
-{
- "actorSpecification": 1,
- "name": "name-of-my-scraper",
- "version": "0.0",
- "buildTag": "latest",
- "environmentVariables": {
- "MYSQL_USER": "my_username",
- "MYSQL_PASSWORD": "@mySecretPassword"
- },
- "dockerfile": "./Dockerfile",
- "readme": "./ACTOR.md",
- "input": "./input_schema.json",
- "storages": {
- "dataset": "./dataset_schema.json"
- }
-}
-```
-
-**`Dockerfile` field**\
-If you specify the path to your Docker file under the `dockerfile` field, this file will be used for Actor builds on the platform. If not specified, the system will look for Docker files at `.actor/Dockerfile` and `Dockerfile` in this order of preference.
-
-**`Readme` field** \
-If you specify the path to your readme file under the `readme` field, the readme at this path will be used on the platform. If not specified, readme at `.actor/README.md` and `README.md` will be used in this order of preference.
-
-**`Input` field**\
-You can embed your [input schema](https://docs.apify.com/actors/development/input-schema#specification-version-1) object directly in `actor.json` under `input` field. Alternatively, you can provide a path to a custom input schema. If not provided, the input schema at `.actor/INPUT_SCHEMA.json` and `INPUT_SCHEMA.json` is used in this order of preference.
-
-**`Storages.dataset` field**\
-You can define the schema of the items in your dataset under the `storages.dataset` field. This can be either an embedded object or a path to a JSON schema file. You can read more about the schema of your Actor output [here](https://docs.apify.com/actors/development/output-schema#specification-version-1).
-
-**Note on migration from deprecated config "apify.json"**\
-_Note that previously, Actor config was stored in the `apify.json` file that has been deprecated. You can find the (very slight) differences and migration info in [migration guidelines](https://github.com/apify/apify-cli/blob/master/MIGRATIONS.md)._
-
-## Environment variables
-
-There are two options how you can set up environment variables for Actors.
-
-### Set up environment variables in .actor/actor.json
-
-All keys from `env` will be set as environment variables into Apify platform after you push Actor to Apify. Current values on Apify will be overridden.
-
-```json
-{
- "actorSpecification": 1,
- "name": "dataset-to-mysql",
- "version": "0.1",
- "buildTag": "latest",
- "environmentVariables": {
- "MYSQL_USER": "my_username",
- "MYSQL_PASSWORD": "@mySecretPassword"
- }
-}
-```
-
-### Set up environment variables in Apify Console
-
-In [Apify Console](https://console.apify.com/actors) select your Actor, you can set up variables into Source tab.
-After setting up variables in the app, remove the `environmentVariables` from `.actor/actor.json`. Otherwise, variables from `.actor/actor.json` will override variables in the app.
-
-```json
-{
- "actorSpecification": 1,
- "name": "dataset-to-mysql",
- "version": "0.1",
- "buildTag": "latest"
-}
-```
-
-#### How to set secret environment variables in .actor/actor.json
-
-CLI provides commands to manage secrets environment variables. Secrets are stored to the `~/.apify` directory.
-You can add a new secret using the command:
-
-```bash
-apify secrets:add mySecretPassword pwd1234
-```
-
-After adding a new secret you can use the secret in `.actor/actor.json`.
-
-```text
-{
- "actorSpecification": 1,
- "name": "dataset-to-mysql",
- ...
- "environmentVariables": {
- "MYSQL_PASSWORD": "@mySecretPassword"
- },
- ...
-}
-```
-
-### Need help?
-
-To see all CLI commands simply run:
-
-```bash
-apify help
-```
-
-To get information about a specific command run:
-
-```bash
-apify help COMMAND
-```
-
-Still haven't found what you were looking for? Please go to [Apify Help center](https://www.apify.com/help)
-or [contact us](https://www.apify.com/contact).
-
-## Command reference
-
-This section contains printouts of `apify help` for all commands.
-
-
-
-* [`apify actor`](#apify-actor)
-* [`apify actor get-input`](#apify-actor-get-input)
-* [`apify actor get-value KEY`](#apify-actor-get-value-key)
-* [`apify actor push-data [ITEM]`](#apify-actor-push-data-item)
-* [`apify actor set-value KEY [VALUE]`](#apify-actor-set-value-key-value)
-* [`apify actors`](#apify-actors)
-* [`apify call [ACTORID]`](#apify-call-actorid)
-* [`apify create [ACTORNAME]`](#apify-create-actorname)
-* [`apify datasets`](#apify-datasets)
-* [`apify help [COMMAND]`](#apify-help-command)
-* [`apify info`](#apify-info)
-* [`apify init [ACTORNAME]`](#apify-init-actorname)
-* [`apify key-value-stores`](#apify-key-value-stores)
-* [`apify login`](#apify-login)
-* [`apify logout`](#apify-logout)
-* [`apify pull [ACTORID]`](#apify-pull-actorid)
-* [`apify push [ACTORID]`](#apify-push-actorid)
-* [`apify request-queues`](#apify-request-queues)
-* [`apify run`](#apify-run)
-* [`apify runs`](#apify-runs)
-* [`apify secrets`](#apify-secrets)
-* [`apify secrets add NAME VALUE`](#apify-secrets-add-name-value)
-* [`apify secrets rm NAME`](#apify-secrets-rm-name)
-* [`apify task`](#apify-task)
-* [`apify task run TASKID`](#apify-task-run-taskid)
-* [`apify validate-schema [PATH]`](#apify-validate-schema-path)
-
-## `apify actor`
-
-Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.
-
-```
-USAGE
- $ apify actor
-
-DESCRIPTION
- Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.
-```
-
-_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/actor/index.ts)_
-
-## `apify actor get-input`
-
-Gets the Actor input value from the default key-value store associated with the Actor run.
-
-```
-USAGE
- $ apify actor get-input
-
-DESCRIPTION
- Gets the Actor input value from the default key-value store associated with the Actor run.
-```
-
-_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/actor/get-input.ts)_
-
-## `apify actor get-value KEY`
-
-Gets a value from the default key-value store associated with the Actor run.
-
-```
-USAGE
- $ apify actor get-value KEY
-
-ARGUMENTS
- KEY Key of the record in key-value store
-
-DESCRIPTION
- Gets a value from the default key-value store associated with the Actor run.
-```
-
-_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/actor/get-value.ts)_
-
-## `apify actor push-data [ITEM]`
-
-Stores an object or an array of objects to the default dataset of the Actor run.
-
-```
-USAGE
- $ apify actor push-data [ITEM]
-
-ARGUMENTS
- ITEM JSON string with one object or array of objects containing data to be stored in the default dataset.
-
-DESCRIPTION
- Stores an object or an array of objects to the default dataset of the Actor run.
- It is possible to pass data using item argument or stdin.
- Passing data using argument:
- $ apify actor push-data {"foo": "bar"}
- Passing data using stdin with pipe:
- $ cat ./test.json | apify actor push-data
-```
-
-_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/actor/push-data.ts)_
-
-## `apify actor set-value KEY [VALUE]`
-
-Sets or removes record into the default KeyValueStore associated with the Actor run.
-
-```
-USAGE
- $ apify actor set-value KEY [VALUE] [-c ]
-
-ARGUMENTS
- KEY Key of the record in key-value store.
- VALUE Record data, which can be one of the following values:
- - If empty, the record in the key-value store is deleted.
- - If no `contentType` flag is specified, value is expected to be any JSON string value.
- - If options.contentType is set, value is taken as is.
-
-FLAGS
- -c, --contentType= Specifies a custom MIME content type of the record. By default "application/json" is used.
-
-DESCRIPTION
- Sets or removes record into the default KeyValueStore associated with the Actor run.
- It is possible to pass data using argument or stdin.
- Passing data using argument:
- $ apify actor set-value KEY my-value
- Passing data using stdin with pipe:
- $ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain
-```
-
-_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/actor/set-value.ts)_
-
-## `apify actors`
-
-Commands are designed to be used with Actors.
-
-```
-USAGE
- $ apify actors
-
-DESCRIPTION
- Commands are designed to be used with Actors.
-```
-
-_See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/actors/index.ts)_
-
-## `apify call [ACTORID]`
-
-Runs a specific Actor remotely on the Apify cloud platform.
-
-```
-USAGE
- $ apify call [ACTORID] [-b ] [-t ] [-m ] [-w ] [-i | --input-file
- ] [-s] [-o]
-
-ARGUMENTS
- ACTORID Name or ID of the Actor to run (e.g. "my-actor", "apify/hello-world" or "E2jjCZBezvAZnX8Rb"). If not
- provided, the command runs the remote Actor specified in the ".actor/actor.json" file.
-
-FLAGS
- -b, --build= Tag or number of the build to run (e.g. "latest" or "1.2.34").
- -i, --input= Optional JSON input to be given to the Actor.
- -m, --memory= Amount of memory allocated for the Actor run, in megabytes.
- -o, --output-dataset Prints out the entire default dataset on successful run of the Actor.
- -s, --silent Prevents printing the logs of the Actor run to the console.
- -t, --timeout= Timeout for the Actor run in seconds. Zero value means there is no timeout.
- -w, --wait-for-finish= Seconds for waiting to run to finish, if no value passed, it waits forever.
- --input-file= Optional path to a file with JSON input to be given to the Actor. The file must be a
- valid JSON file. You can also specify `-` to read from standard input.
-
-DESCRIPTION
- Runs a specific Actor remotely on the Apify cloud platform.
- The Actor is run under your current Apify account. Therefore you need to be logged in by calling "apify login". It
- takes input for the Actor from the default local key-value store by default.
-```
-
-_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/call.ts)_
-
-## `apify create [ACTORNAME]`
-
-Creates a new Actor project directory from a selected boilerplate template.
-
-```
-USAGE
- $ apify create [ACTORNAME] [-t ] [--skip-dependency-install] [--omit-optional-deps]
-
-ARGUMENTS
- ACTORNAME Name of the Actor and its directory
-
-FLAGS
- -t, --template= Template for the Actor. If not provided, the command will prompt for it.
- Visit
- https://raw.githubusercontent.com/apify/actor-templates/master/templates/manifest.json
- to find available template names.
- --omit-optional-deps Skip installing optional dependencies.
- --skip-dependency-install Skip installing Actor dependencies.
-
-DESCRIPTION
- Creates a new Actor project directory from a selected boilerplate template.
-```
-
-_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/create.ts)_
-
-## `apify datasets`
-
-Commands are designed to be used with Datasets.
-
-```
-USAGE
- $ apify datasets
-
-DESCRIPTION
- Commands are designed to be used with Datasets.
-```
-
-_See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/datasets/index.ts)_
-
-## `apify help [COMMAND]`
-
-Display help for apify.
-
-```
-USAGE
- $ apify help [COMMAND...] [-n]
-
-ARGUMENTS
- COMMAND... Command to show help for.
-
-FLAGS
- -n, --nested-commands Include all nested commands in the output.
-
-DESCRIPTION
- Display help for apify.
-```
-
-_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.10/src/commands/help.ts)_
-
-## `apify info`
-
-Displays information about the currently active Apify account.
-
-```
-USAGE
- $ apify info
-
-DESCRIPTION
- Displays information about the currently active Apify account.
- The information is printed to the console.
-```
-
-_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/info.ts)_
-
-## `apify init [ACTORNAME]`
-
-Initializes a new Actor project in an existing directory.
-
-```
-USAGE
- $ apify init [ACTORNAME] [-y]
-
-ARGUMENTS
- ACTORNAME Name of the Actor. If not provided, you will be prompted for it.
-
-FLAGS
- -y, --yes Automatic yes to prompts; assume "yes" as answer to all prompts. Note that in some cases, the command may
- still ask for confirmation.
-
-DESCRIPTION
- Initializes a new Actor project in an existing directory.
- If the directory contains a Scrapy project in Python, the command automatically creates wrappers so that you can run
- your scrapers without changes.
-
- The command creates the ".actor/actor.json" file and the "storage" directory in the current directory, but does not
- touch any other existing files or directories.
-
- WARNING: The directory at "storage" will be overwritten if it already exists.
-```
-
-_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/init.ts)_
-
-## `apify key-value-stores`
-
-Commands are designed to be used with Key Value Stores.
-
-```
-USAGE
- $ apify key-value-stores
-
-DESCRIPTION
- Commands are designed to be used with Key Value Stores.
-```
-
-_See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/key-value-stores/index.ts)_
-
-## `apify login`
-
-Logs in to your Apify account.
-
-```
-USAGE
- $ apify login [-t ] [-m console|manual]
-
-FLAGS
- -m, --method= [Optional] Method of logging in to Apify
-
- -t, --token= [Optional] Apify API token
-
-DESCRIPTION
- Logs in to your Apify account.
- The API token and other account information is stored in the ~/.apify directory, from where it is read by all other
- "apify" commands. To log out, call "apify logout".
-```
-
-_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/login.ts)_
-
-## `apify logout`
-
-Logs out of your Apify account.
-
-```
-USAGE
- $ apify logout
-
-DESCRIPTION
- Logs out of your Apify account.
- The command deletes the API token and all other account information stored in the ~/.apify directory. To log in again,
- call "apify login".
-```
-
-_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/logout.ts)_
-
-## `apify pull [ACTORID]`
-
-Pulls an Actor from the Apify platform to the current directory. If it is defined as Git repository, it will be cloned. If it is defined as Web IDE, it will fetch the files.
-
-```
-USAGE
- $ apify pull [ACTORID] [-v ]
-
-ARGUMENTS
- ACTORID Name or ID of the Actor to run (e.g. "apify/hello-world" or "E2jjCZBezvAZnX8Rb"). If not provided, the
- command will update the Actor in the current directory based on its name in ".actor/actor.json" file.
-
-FLAGS
- -v, --version= Actor version number which will be pulled, e.g. 1.2. Default: the highest version
-
-DESCRIPTION
- Pulls an Actor from the Apify platform to the current directory. If it is defined as Git repository, it will be
- cloned. If it is defined as Web IDE, it will fetch the files.
-```
-
-_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/pull.ts)_
-
-## `apify push [ACTORID]`
-
-Uploads the Actor to the Apify platform and builds it there.
-
-```
-USAGE
- $ apify push [ACTORID] [--version-number ] [-v ] [-b ] [-w ] [--no-prompt]
- [--force]
-
-ARGUMENTS
- ACTORID Name or ID of the Actor to push (e.g. "apify/hello-world" or "E2jjCZBezvAZnX8Rb"). If not provided, the
- command will create or modify the Actor with the name specified in ".actor/actor.json" file.
-
-FLAGS
- -b, --build-tag= Build tag to be applied to the successful Actor build. By default, it is taken from the
- ".actor/actor.json" file
- -v, --version= Actor version number to which the files should be pushed. By default, it is taken from
- the ".actor/actor.json" file.
- -w, --wait-for-finish= Seconds for waiting to build to finish, if no value passed, it waits forever.
- --force Push an Actor even when the local files are older than the Actor on the platform.
- --no-prompt Do not prompt for opening the Actor details in a browser. This will also not open the
- browser automatically.
- --version-number= DEPRECATED: Use flag version instead. Actor version number to which the files should be
- pushed. By default, it is taken from the ".actor/actor.json" file.
-
-DESCRIPTION
- Uploads the Actor to the Apify platform and builds it there.
- The Actor settings are read from the ".actor/actor.json" file in the current directory, but they can be overridden
- using command-line options.
- NOTE: If the source files are smaller than 3 MB then they are uploaded as
- "Multiple source files", otherwise they are uploaded as "Zip file".
-
- When there's an attempt to push files that are older than the Actor on the platform, the command will fail. Can be
- overwritten with --force flag.
-```
-
-_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/push.ts)_
-
-## `apify request-queues`
-
-Commands are designed to be used with Request Queues.
-
-```
-USAGE
- $ apify request-queues
-
-DESCRIPTION
- Commands are designed to be used with Request Queues.
-```
-
-_See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/request-queues/index.ts)_
-
-## `apify run`
-
-Runs the Actor locally in the current directory.
-
-```
-USAGE
- $ apify run [-p] [--purge-queue] [--purge-dataset] [--purge-key-value-store] [--entrypoint ] [-i
- | --input-file ]
-
-FLAGS
- -i, --input= Optional JSON input to be given to the Actor.
- -p, --purge Shortcut that combines the --purge-queue, --purge-dataset and --purge-key-value-store
- options.
- --entrypoint= Optional entrypoint for running with injected environment variables.
- For Python, it is the module name, or a path to a file.
- For node.js, it is the npm script name, or a path to a JS/MJS file. You can also pass in
- a directory name, provided that directory contains an "index.js" file.
- --input-file= Optional path to a file with JSON input to be given to the Actor. The file must be a
- valid JSON file. You can also specify `-` to read from standard input.
- --purge-dataset Deletes the local directory containing the default dataset before the run starts.
- --purge-key-value-store Deletes all records from the default key-value store in the local directory before the
- run starts, except for the "INPUT" key.
- --purge-queue Deletes the local directory containing the default request queue before the run starts.
-
-DESCRIPTION
- Runs the Actor locally in the current directory.
- It sets various APIFY_XYZ environment variables in order to provide a working execution environment for the Actor. For
- example, this causes the Actor input, as well as all other data in key-value stores, datasets or request queues to be
- stored in the "storage" directory, rather than on the Apify platform.
-
- NOTE: You can override the command's default behavior for Node.js Actors by overriding the "start" script in the
- package.json file. You can set up your own main file or environment variables by changing it.
-```
-
-_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/run.ts)_
-
-## `apify runs`
-
-Commands are designed to be used with Actor Runs.
-
-```
-USAGE
- $ apify runs
-
-DESCRIPTION
- Commands are designed to be used with Actor Runs.
-```
-
-_See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/runs/index.ts)_
-
-## `apify secrets`
-
-Manages secret values for Actor environment variables.
-
-```
-USAGE
- $ apify secrets
-
-DESCRIPTION
- Manages secret values for Actor environment variables.
-
- Example:
- $ apify secrets add mySecret TopSecretValue123
-
- Now the "mySecret" value can be used in an environment variable defined in ".actor/actor.json" file by adding the "@"
- prefix:
-
- {
- "actorSpecification": 1,
- "name": "my_actor",
- "environmentVariables": { "SECRET_ENV_VAR": "@mySecret" },
- "version": "0.1
- }
-
- When the Actor is pushed to Apify cloud, the "SECRET_ENV_VAR" and its value is stored as a secret environment variable
- of the Actor.
-```
-
-_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/secrets/index.ts)_
-
-## `apify secrets add NAME VALUE`
-
-Adds a new secret value.
-
-```
-USAGE
- $ apify secrets add NAME VALUE
-
-ARGUMENTS
- NAME Name of the secret
- VALUE Value of the secret
-
-DESCRIPTION
- Adds a new secret value.
- The secrets are stored to a file at ~/.apify
-```
-
-_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/secrets/add.ts)_
-
-## `apify secrets rm NAME`
-
-Removes the secret.
-
-```
-USAGE
- $ apify secrets rm NAME
-
-ARGUMENTS
- NAME Name of the secret
-
-DESCRIPTION
- Removes the secret.
-```
-
-_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/secrets/rm.ts)_
-
-## `apify task`
-
-Commands are designed to be used to interact with Tasks.
-
-```
-USAGE
- $ apify task
-
-DESCRIPTION
- Commands are designed to be used to interact with Tasks.
-```
-
-_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/task/index.ts)_
-
-## `apify task run TASKID`
-
-Runs a specific Actor remotely on the Apify cloud platform.
-
-```
-USAGE
- $ apify task run TASKID [-b ] [-t ] [-m ] [-w ]
-
-ARGUMENTS
- TASKID Name or ID of the Task to run (e.g. "my-task" or "E2jjCZBezvAZnX8Rb").
-
-FLAGS
- -b, --build= Tag or number of the build to run (e.g. "latest" or "1.2.34").
- -m, --memory= Amount of memory allocated for the Task run, in megabytes.
- -t, --timeout= Timeout for the Task run in seconds. Zero value means there is no timeout.
- -w, --wait-for-finish= Seconds for waiting to run to finish, if no value passed, it waits forever.
-
-DESCRIPTION
- Runs a specific Actor remotely on the Apify cloud platform.
- The Actor is run under your current Apify account. Therefore you need to be logged in by calling "apify login". It
- takes input for the Actor from the default local key-value store by default.
-```
-
-_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/task/run.ts)_
-
-## `apify validate-schema [PATH]`
-
-Validates input schema and prints errors found.
-
-```
-USAGE
- $ apify validate-schema [PATH]
-
-ARGUMENTS
- PATH Optional path to your INPUT_SCHEMA.json file. If not provided ./INPUT_SCHEMA.json is used.
-
-DESCRIPTION
- Validates input schema and prints errors found.
- The input schema for the Actor is used from these locations in order of preference.
- The first one found is validated as it would be the one used on the Apify platform.
- 1. Directly embedded object in ".actor/actor.json" under 'input' key
- 2. Path to JSON file referenced in ".actor/actor.json" under 'input' key
- 3. JSON file at .actor/INPUT_SCHEMA.json
- 4. JSON file at INPUT_SCHEMA.json
-
- You can also pass any custom path to your input schema to have it validated instead.
-```
-
-_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.20.7/src/commands/validate-schema.ts)_
-
-
diff --git a/docs/reference.md b/docs/reference.md
index d736e419..86c6ace1 100644
--- a/docs/reference.md
+++ b/docs/reference.md
@@ -14,6 +14,7 @@ This section contains printouts of `apify help` for all commands.
* [`apify actors`](#apify-actors)
* [`apify actors build [ACTORID]`](#apify-actors-build-actorid)
* [`apify actors call [ACTORID]`](#apify-actors-call-actorid)
+* [`apify actors info ACTORID`](#apify-actors-info-actorid)
* [`apify actors ls`](#apify-actors-ls)
* [`apify actors pull [ACTORID]`](#apify-actors-pull-actorid)
* [`apify actors push [ACTORID]`](#apify-actors-push-actorid)
@@ -30,8 +31,9 @@ This section contains printouts of `apify help` for all commands.
* [`apify datasets`](#apify-datasets)
* [`apify datasets create [DATASETNAME]`](#apify-datasets-create-datasetname)
* [`apify datasets get-items DATASETID`](#apify-datasets-get-items-datasetid)
+* [`apify datasets info STOREID`](#apify-datasets-info-storeid)
* [`apify datasets ls`](#apify-datasets-ls)
-* [`apify datasets push-items NAMEORID ITEM`](#apify-datasets-push-items-nameorid-item)
+* [`apify datasets push-items NAMEORID [ITEM]`](#apify-datasets-push-items-nameorid-item)
* [`apify datasets rename NAMEORID [NEWNAME]`](#apify-datasets-rename-nameorid-newname)
* [`apify datasets rm DATASETNAMEORID`](#apify-datasets-rm-datasetnameorid)
* [`apify help [COMMAND]`](#apify-help-command)
@@ -41,6 +43,7 @@ This section contains printouts of `apify help` for all commands.
* [`apify key-value-stores create [KEYVALUESTORENAME]`](#apify-key-value-stores-create-keyvaluestorename)
* [`apify key-value-stores delete-value STOREID ITEMKEY`](#apify-key-value-stores-delete-value-storeid-itemkey)
* [`apify key-value-stores get-value KEYVALUESTOREID ITEMKEY`](#apify-key-value-stores-get-value-keyvaluestoreid-itemkey)
+* [`apify key-value-stores info STOREID`](#apify-key-value-stores-info-storeid)
* [`apify key-value-stores keys STOREID`](#apify-key-value-stores-keys-storeid)
* [`apify key-value-stores ls`](#apify-key-value-stores-ls)
* [`apify key-value-stores rename KEYVALUESTORENAMEORID [NEWNAME]`](#apify-key-value-stores-rename-keyvaluestorenameorid-newname)
@@ -68,14 +71,14 @@ This section contains printouts of `apify help` for all commands.
## `apify actor`
-Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.
+Manages runtime data operations inside of a running Actor.
```
USAGE
$ apify actor
DESCRIPTION
- Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.
+ Manages runtime data operations inside of a running Actor.
```
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/actor/index.ts)_
@@ -113,7 +116,7 @@ _See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/
## `apify actor push-data [ITEM]`
-Stores an object or an array of objects to the default dataset of the Actor run.
+Saves data to Actor's run default dataset.
```
USAGE
@@ -123,11 +126,12 @@ ARGUMENTS
ITEM JSON string with one object or array of objects containing data to be stored in the default dataset.
DESCRIPTION
- Stores an object or an array of objects to the default dataset of the Actor run.
- It is possible to pass data using item argument or stdin.
- Passing data using argument:
- $ apify actor push-data {"foo": "bar"}
- Passing data using stdin with pipe:
+ Saves data to Actor's run default dataset.
+
+ Accept input as:
+ - JSON argument:
+ $ apify actor push-data {"key": "value"}
+ - Piped stdin:
$ cat ./test.json | apify actor push-data
```
@@ -135,7 +139,7 @@ _See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/
## `apify actor set-value KEY [VALUE]`
-Sets or removes record into the default KeyValueStore associated with the Actor run.
+Sets or removes record into the default key-value store associated with the Actor run.
```
USAGE
@@ -152,10 +156,13 @@ FLAGS
-c, --contentType= Specifies a custom MIME content type of the record. By default "application/json" is used.
DESCRIPTION
- Sets or removes record into the default KeyValueStore associated with the Actor run.
+ Sets or removes record into the default key-value store associated with the Actor run.
+
It is possible to pass data using argument or stdin.
+
Passing data using argument:
$ apify actor set-value KEY my-value
+
Passing data using stdin with pipe:
$ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain
```
@@ -164,14 +171,14 @@ _See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/
## `apify actors`
-Commands are designed to be used with Actors.
+Manages Actor creation, deployment, and execution on the Apify platform.
```
USAGE
$ apify actors
DESCRIPTION
- Commands are designed to be used with Actors.
+ Manages Actor creation, deployment, and execution on the Apify platform.
```
_See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/actors/index.ts)_
@@ -205,7 +212,7 @@ _See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blo
## `apify actors call [ACTORID]`
-Runs a specific Actor remotely on the Apify cloud platform.
+Executes Actor remotely using your authenticated account.
```
USAGE
@@ -214,7 +221,7 @@ USAGE
ARGUMENTS
ACTORID Name or ID of the Actor to run (e.g. "my-actor", "apify/hello-world" or "E2jjCZBezvAZnX8Rb"). If not
- provided, the command runs the remote Actor specified in the ".actor/actor.json" file.
+ provided, the command runs the remote Actor specified in the '.actor/actor.json' file.
FLAGS
-b, --build= Tag or number of the build to run (e.g. "latest" or "1.2.34").
@@ -230,16 +237,39 @@ GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
- Runs a specific Actor remotely on the Apify cloud platform.
- The Actor is run under your current Apify account. Therefore you need to be logged in by calling "apify login". It
- takes input for the Actor from the default local key-value store by default.
+ Executes Actor remotely using your authenticated account.
+ Reads input from local key-value store by default.
```
_See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/actors/call.ts)_
+## `apify actors info ACTORID`
+
+Get information about an Actor.
+
+```
+USAGE
+ $ apify actors info ACTORID [--json] [--readme | --input]
+
+ARGUMENTS
+ ACTORID The ID of the Actor to return information about.
+
+FLAGS
+ --input Return the Actor input schema.
+ --readme Return the Actor README.
+
+GLOBAL FLAGS
+ --json Format output as json.
+
+DESCRIPTION
+ Get information about an Actor.
+```
+
+_See code: [src/commands/actors/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/actors/info.ts)_
+
## `apify actors ls`
-Lists all recently ran Actors or your own Actors.
+Prints a list of recently executed Actors or Actors you own.
```
USAGE
@@ -255,14 +285,14 @@ GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
- Lists all recently ran Actors or your own Actors.
+ Prints a list of recently executed Actors or Actors you own.
```
_See code: [src/commands/actors/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/actors/ls.ts)_
## `apify actors pull [ACTORID]`
-Pulls an Actor from the Apify platform to the current directory. If it is defined as Git repository, it will be cloned. If it is defined as Web IDE, it will fetch the files.
+Download Actor code to current directory. Clones Git repositories or fetches Actor files based on the source type.
```
USAGE
@@ -277,15 +307,14 @@ FLAGS
--dir= Directory where the Actor should be pulled to
DESCRIPTION
- Pulls an Actor from the Apify platform to the current directory. If it is defined as Git repository, it will be
- cloned. If it is defined as Web IDE, it will fetch the files.
+ Download Actor code to current directory. Clones Git repositories or fetches Actor files based on the source type.
```
_See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/actors/pull.ts)_
## `apify actors push [ACTORID]`
-Uploads the Actor to the Apify platform and builds it there.
+Deploys Actor to Apify platform using settings from '.actor/actor.json'.
```
USAGE
@@ -293,13 +322,13 @@ USAGE
ARGUMENTS
ACTORID Name or ID of the Actor to push (e.g. "apify/hello-world" or "E2jjCZBezvAZnX8Rb"). If not provided, the
- command will create or modify the Actor with the name specified in ".actor/actor.json" file.
+ command will create or modify the Actor with the name specified in '.actor/actor.json' file.
FLAGS
-b, --build-tag= Build tag to be applied to the successful Actor build. By default, it is taken from the
- ".actor/actor.json" file
+ '.actor/actor.json' file
-v, --version= Actor version number to which the files should be pushed. By default, it is taken from
- the ".actor/actor.json" file.
+ the '.actor/actor.json' file.
-w, --wait-for-finish= Seconds for waiting to build to finish, if no value passed, it waits forever.
--dir= Directory where the Actor is located
--force Push an Actor even when the local files are older than the Actor on the platform.
@@ -307,21 +336,16 @@ FLAGS
browser automatically.
DESCRIPTION
- Uploads the Actor to the Apify platform and builds it there.
- The Actor settings are read from the ".actor/actor.json" file in the current directory, but they can be overridden
- using command-line options.
- NOTE: If the source files are smaller than 3 MB then they are uploaded as
- "Multiple source files", otherwise they are uploaded as "Zip file".
-
- When there's an attempt to push files that are older than the Actor on the platform, the command will fail. Can be
- overwritten with --force flag.
+ Deploys Actor to Apify platform using settings from '.actor/actor.json'.
+ Files under '3' MB upload as "Multiple source files"; larger projects upload as ZIP file.
+ Use --force to override newer remote versions.
```
_See code: [src/commands/actors/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/actors/push.ts)_
## `apify actors rm ACTORID`
-Deletes an Actor.
+Permanently removes an Actor from your account.
```
USAGE
@@ -331,14 +355,14 @@ ARGUMENTS
ACTORID The Actor ID to delete.
DESCRIPTION
- Deletes an Actor.
+ Permanently removes an Actor from your account.
```
_See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/actors/rm.ts)_
## `apify actors start [ACTORID]`
-Runs a specific Actor remotely on the Apify cloud platform and immediately returns information about the run.
+Starts Actor remotely and returns run details immediately.
```
USAGE
@@ -347,7 +371,7 @@ USAGE
ARGUMENTS
ACTORID Name or ID of the Actor to run (e.g. "my-actor", "apify/hello-world" or "E2jjCZBezvAZnX8Rb"). If not
- provided, the command runs the remote Actor specified in the ".actor/actor.json" file.
+ provided, the command runs the remote Actor specified in the '.actor/actor.json' file.
FLAGS
-b, --build= Tag or number of the build to run (e.g. "latest" or "1.2.34").
@@ -361,23 +385,22 @@ GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
- Runs a specific Actor remotely on the Apify cloud platform and immediately returns information about the run.
- The Actor is run under your current Apify account. Therefore you need to be logged in by calling "apify login". It
- takes input for the Actor from the default local key-value store by default.
+ Starts Actor remotely and returns run details immediately.
+ Uses authenticated account and local key-value store for input.
```
_See code: [src/commands/actors/start.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/actors/start.ts)_
## `apify builds`
-Commands are designed to be used with Actor Builds.
+Manages Actor build processes and versioning.
```
USAGE
$ apify builds
DESCRIPTION
- Commands are designed to be used with Actor Builds.
+ Manages Actor build processes and versioning.
```
_See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/builds/index.ts)_
@@ -474,7 +497,7 @@ _See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v
## `apify builds rm BUILDID`
-Deletes an Actor Build.
+Permanently removes an Actor build from the Apify platform.
```
USAGE
@@ -484,14 +507,14 @@ ARGUMENTS
BUILDID The build ID to delete.
DESCRIPTION
- Deletes an Actor Build.
+ Permanently removes an Actor build from the Apify platform.
```
_See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/builds/rm.ts)_
## `apify call [ACTORID]`
-Runs a specific Actor remotely on the Apify cloud platform.
+Executes Actor remotely using your authenticated account.
```
USAGE
@@ -500,7 +523,7 @@ USAGE
ARGUMENTS
ACTORID Name or ID of the Actor to run (e.g. "my-actor", "apify/hello-world" or "E2jjCZBezvAZnX8Rb"). If not
- provided, the command runs the remote Actor specified in the ".actor/actor.json" file.
+ provided, the command runs the remote Actor specified in the '.actor/actor.json' file.
FLAGS
-b, --build= Tag or number of the build to run (e.g. "latest" or "1.2.34").
@@ -516,16 +539,15 @@ GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
- Runs a specific Actor remotely on the Apify cloud platform.
- The Actor is run under your current Apify account. Therefore you need to be logged in by calling "apify login". It
- takes input for the Actor from the default local key-value store by default.
+ Executes Actor remotely using your authenticated account.
+ Reads input from local key-value store by default.
```
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/call.ts)_
## `apify create [ACTORNAME]`
-Creates a new Actor project directory from a selected boilerplate template.
+Creates an Actor project from a template in a new directory.
```
USAGE
@@ -543,28 +565,28 @@ FLAGS
--skip-dependency-install Skip installing Actor dependencies.
DESCRIPTION
- Creates a new Actor project directory from a selected boilerplate template.
+ Creates an Actor project from a template in a new directory.
```
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/create.ts)_
## `apify datasets`
-Commands are designed to be used with Datasets.
+Manages structured data storage and retrieval.
```
USAGE
$ apify datasets
DESCRIPTION
- Commands are designed to be used with Datasets.
+ Manages structured data storage and retrieval.
```
_See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/datasets/index.ts)_
## `apify datasets create [DATASETNAME]`
-Creates a new Dataset on your account
+Creates a new dataset for storing structured data on your account.
```
USAGE
@@ -577,14 +599,14 @@ GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
- Creates a new Dataset on your account
+ Creates a new dataset for storing structured data on your account.
```
_See code: [src/commands/datasets/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/datasets/create.ts)_
## `apify datasets get-items DATASETID`
-Exports the items present in a Dataset.
+Retrieves dataset items in specified format (JSON, CSV, etc).
```
USAGE
@@ -600,86 +622,106 @@ FLAGS
--offset= The offset in the dataset where to start getting items.
DESCRIPTION
- Exports the items present in a Dataset.
+ Retrieves dataset items in specified format (JSON, CSV, etc).
```
_See code: [src/commands/datasets/get-items.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/datasets/get-items.ts)_
+## `apify datasets info STOREID`
+
+Prints information about a specific dataset.
+
+```
+USAGE
+ $ apify datasets info STOREID [--json]
+
+ARGUMENTS
+ STOREID The dataset store ID to print information about.
+
+GLOBAL FLAGS
+ --json Format output as json.
+
+DESCRIPTION
+ Prints information about a specific dataset.
+```
+
+_See code: [src/commands/datasets/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/datasets/info.ts)_
+
## `apify datasets ls`
-Lists all Datasets on your account.
+Prints all datasets on your account.
```
USAGE
$ apify datasets ls [--json] [--offset ] [--limit ] [--desc] [--unnamed]
FLAGS
- --desc Sorts Datasets in descending order.
- --limit= [default: 20] Number of Datasets that will be listed.
- --offset= Number of Datasets that will be skipped.
- --unnamed Lists Datasets that don't have a name set.
+ --desc Sorts datasets in descending order.
+ --limit= [default: 20] Number of datasets that will be listed.
+ --offset= Number of datasets that will be skipped.
+ --unnamed Lists datasets that don't have a name set.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
- Lists all Datasets on your account.
+ Prints all datasets on your account.
```
_See code: [src/commands/datasets/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/datasets/ls.ts)_
-## `apify datasets push-items NAMEORID ITEM`
+## `apify datasets push-items NAMEORID [ITEM]`
-Pushes an object or an array of objects to the provided Dataset.
+Adds data items to specified dataset. Accepts single object or array of objects.
```
USAGE
- $ apify datasets push-items NAMEORID ITEM
+ $ apify datasets push-items NAMEORID [ITEM]
ARGUMENTS
- NAMEORID The Dataset ID or name to push the objects to
+ NAMEORID The dataset ID or name to push the objects to
ITEM The object or array of objects to be pushed.
DESCRIPTION
- Pushes an object or an array of objects to the provided Dataset.
+ Adds data items to specified dataset. Accepts single object or array of objects.
```
_See code: [src/commands/datasets/push-items.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/datasets/push-items.ts)_
## `apify datasets rename NAMEORID [NEWNAME]`
-Renames a Dataset, or removes its unique name
+Change dataset name or removes name with --unname flag.
```
USAGE
$ apify datasets rename NAMEORID [NEWNAME] [--unname]
ARGUMENTS
- NAMEORID The Dataset ID or name to delete
- NEWNAME The new name for the Dataset
+ NAMEORID The dataset ID or name to delete.
+ NEWNAME The new name for the dataset.
FLAGS
- --unname Removes the unique name of the Dataset
+ --unname Removes the unique name of the dataset.
DESCRIPTION
- Renames a Dataset, or removes its unique name
+ Change dataset name or removes name with --unname flag.
```
_See code: [src/commands/datasets/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/datasets/rename.ts)_
## `apify datasets rm DATASETNAMEORID`
-Deletes a Dataset
+Permanently removes a dataset.
```
USAGE
$ apify datasets rm DATASETNAMEORID
ARGUMENTS
- DATASETNAMEORID The Dataset ID or name to delete
+ DATASETNAMEORID The dataset ID or name to delete
DESCRIPTION
- Deletes a Dataset
+ Permanently removes a dataset.
```
_See code: [src/commands/datasets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/datasets/rm.ts)_
@@ -702,26 +744,25 @@ DESCRIPTION
Display help for apify.
```
-_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.16/src/commands/help.ts)_
+_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.22/src/commands/help.ts)_
## `apify info`
-Displays information about the currently active Apify account.
+Prints details about your currently authenticated Apify account.
```
USAGE
$ apify info
DESCRIPTION
- Displays information about the currently active Apify account.
- The information is printed to the console.
+ Prints details about your currently authenticated Apify account.
```
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/info.ts)_
## `apify init [ACTORNAME]`
-Initializes a new Actor project in an existing directory.
+Sets up an Actor project in your current directory by creating actor.json and storage files.
```
USAGE
@@ -735,50 +776,49 @@ FLAGS
still ask for confirmation.
DESCRIPTION
- Initializes a new Actor project in an existing directory.
+ Sets up an Actor project in your current directory by creating actor.json and storage files.
If the directory contains a Scrapy project in Python, the command automatically creates wrappers so that you can run
your scrapers without changes.
+ Creates the '.actor/actor.json' file and the 'storage' directory in the current directory, but does not touch any
+ other existing files or directories.
- The command creates the ".actor/actor.json" file and the "storage" directory in the current directory, but does not
- touch any other existing files or directories.
-
- WARNING: The directory at "storage" will be overwritten if it already exists.
+ WARNING: Overwrites existing 'storage' directory.
```
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/init.ts)_
## `apify key-value-stores`
-Commands are designed to be used with Key Value Stores.
+Manages persistent key-value storage.
```
USAGE
$ apify key-value-stores
DESCRIPTION
- Commands are designed to be used with Key Value Stores.
+ Manages persistent key-value storage.
- Aliases: kvs
+ Alias: kvs
```
_See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/key-value-stores/index.ts)_
## `apify key-value-stores create [KEYVALUESTORENAME]`
-Creates a new Key-value store on your account
+Creates a new key-value store on your account.
```
USAGE
$ apify key-value-stores create [KEYVALUESTORENAME] [--json]
ARGUMENTS
- KEYVALUESTORENAME Optional name for the Key-value store
+ KEYVALUESTORENAME Optional name for the key-value store
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
- Creates a new Key-value store on your account
+ Creates a new key-value store on your account.
```
_See code: [src/commands/key-value-stores/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/key-value-stores/create.ts)_
@@ -803,7 +843,7 @@ _See code: [src/commands/key-value-stores/delete-value.ts](https://github.com/ap
## `apify key-value-stores get-value KEYVALUESTOREID ITEMKEY`
-Gets a value by key in the given key-value store.
+Retrieves stored value for specified key. Use --only-content-type to check MIME type.
```
USAGE
@@ -817,11 +857,31 @@ FLAGS
--only-content-type Only return the content type of the specified key
DESCRIPTION
- Gets a value by key in the given key-value store.
+ Retrieves stored value for specified key. Use --only-content-type to check MIME type.
```
_See code: [src/commands/key-value-stores/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/key-value-stores/get-value.ts)_
+## `apify key-value-stores info STOREID`
+
+Shows information about a key-value store.
+
+```
+USAGE
+ $ apify key-value-stores info STOREID [--json]
+
+ARGUMENTS
+ STOREID The key-value store ID to print information about.
+
+GLOBAL FLAGS
+ --json Format output as json.
+
+DESCRIPTION
+ Shows information about a key-value store.
+```
+
+_See code: [src/commands/key-value-stores/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/key-value-stores/info.ts)_
+
## `apify key-value-stores keys STOREID`
Lists all keys in a key-value store.
@@ -848,68 +908,68 @@ _See code: [src/commands/key-value-stores/keys.ts](https://github.com/apify/apif
## `apify key-value-stores ls`
-Lists all Key-value stores on your account.
+Lists all key-value stores on your account.
```
USAGE
$ apify key-value-stores ls [--json] [--offset ] [--limit ] [--desc] [--unnamed]
FLAGS
- --desc Sorts Key-value stores in descending order.
- --limit= [default: 20] Number of Key-value stores that will be listed.
- --offset= Number of Key-value stores that will be skipped.
- --unnamed Lists Key-value stores that don't have a name set.
+ --desc Sorts key-value stores in descending order.
+ --limit= [default: 20] Number of key-value stores that will be listed.
+ --offset= Number of key-value stores that will be skipped.
+ --unnamed Lists key-value stores that don't have a name set.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
- Lists all Key-value stores on your account.
+ Lists all key-value stores on your account.
```
_See code: [src/commands/key-value-stores/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/key-value-stores/ls.ts)_
## `apify key-value-stores rename KEYVALUESTORENAMEORID [NEWNAME]`
-Renames a Key-value store, or removes its unique name
+Renames a key-value store, or removes its unique name.
```
USAGE
$ apify key-value-stores rename KEYVALUESTORENAMEORID [NEWNAME] [--unname]
ARGUMENTS
- KEYVALUESTORENAMEORID The Key-value store ID or name to delete
- NEWNAME The new name for the Key-value store
+ KEYVALUESTORENAMEORID The key-value store ID or name to delete
+ NEWNAME The new name for the key-value store
FLAGS
- --unname Removes the unique name of the Key-value store
+ --unname Removes the unique name of the key-value store
DESCRIPTION
- Renames a Key-value store, or removes its unique name
+ Renames a key-value store, or removes its unique name.
```
_See code: [src/commands/key-value-stores/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/key-value-stores/rename.ts)_
## `apify key-value-stores rm KEYVALUESTORENAMEORID`
-Deletes a Key-value store
+Permanently removes a key-value store.
```
USAGE
$ apify key-value-stores rm KEYVALUESTORENAMEORID
ARGUMENTS
- KEYVALUESTORENAMEORID The Key-value store ID or name to delete
+ KEYVALUESTORENAMEORID The key-value store ID or name to delete
DESCRIPTION
- Deletes a Key-value store
+ Permanently removes a key-value store.
```
_See code: [src/commands/key-value-stores/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/key-value-stores/rm.ts)_
## `apify key-value-stores set-value STOREID ITEMKEY [VALUE]`
-Sets a value in a key-value store.
+Stores value with specified key. Set content-type with --content-type flag.
```
USAGE
@@ -925,14 +985,14 @@ FLAGS
is assumed.
DESCRIPTION
- Sets a value in a key-value store.
+ Stores value with specified key. Set content-type with --content-type flag.
```
_See code: [src/commands/key-value-stores/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/key-value-stores/set-value.ts)_
## `apify login`
-Logs in to your Apify account.
+Authenticates your Apify account and saves credentials to '~/.apify'.
```
USAGE
@@ -944,32 +1004,32 @@ FLAGS
-t, --token= [Optional] Apify API token
DESCRIPTION
- Logs in to your Apify account.
- The API token and other account information is stored in the ~/.apify directory, from where it is read by all other
- "apify" commands. To log out, call "apify logout".
+ Authenticates your Apify account and saves credentials to '~/.apify'.
+ All other commands use these stored credentials.
+
+ Run 'apify logout' to remove authentication.
```
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/login.ts)_
## `apify logout`
-Logs out of your Apify account.
+Removes authentication by deleting your API token and account information from '~/.apify'.
```
USAGE
$ apify logout
DESCRIPTION
- Logs out of your Apify account.
- The command deletes the API token and all other account information stored in the ~/.apify directory. To log in again,
- call "apify login".
+ Removes authentication by deleting your API token and account information from '~/.apify'.
+ Run 'apify login' to authenticate again.
```
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/logout.ts)_
## `apify pull [ACTORID]`
-Pulls an Actor from the Apify platform to the current directory. If it is defined as Git repository, it will be cloned. If it is defined as Web IDE, it will fetch the files.
+Download Actor code to current directory. Clones Git repositories or fetches Actor files based on the source type.
```
USAGE
@@ -984,15 +1044,14 @@ FLAGS
--dir= Directory where the Actor should be pulled to
DESCRIPTION
- Pulls an Actor from the Apify platform to the current directory. If it is defined as Git repository, it will be
- cloned. If it is defined as Web IDE, it will fetch the files.
+ Download Actor code to current directory. Clones Git repositories or fetches Actor files based on the source type.
```
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/pull.ts)_
## `apify push [ACTORID]`
-Uploads the Actor to the Apify platform and builds it there.
+Deploys Actor to Apify platform using settings from '.actor/actor.json'.
```
USAGE
@@ -1000,13 +1059,13 @@ USAGE
ARGUMENTS
ACTORID Name or ID of the Actor to push (e.g. "apify/hello-world" or "E2jjCZBezvAZnX8Rb"). If not provided, the
- command will create or modify the Actor with the name specified in ".actor/actor.json" file.
+ command will create or modify the Actor with the name specified in '.actor/actor.json' file.
FLAGS
-b, --build-tag= Build tag to be applied to the successful Actor build. By default, it is taken from the
- ".actor/actor.json" file
+ '.actor/actor.json' file
-v, --version= Actor version number to which the files should be pushed. By default, it is taken from
- the ".actor/actor.json" file.
+ the '.actor/actor.json' file.
-w, --wait-for-finish= Seconds for waiting to build to finish, if no value passed, it waits forever.
--dir= Directory where the Actor is located
--force Push an Actor even when the local files are older than the Actor on the platform.
@@ -1014,35 +1073,30 @@ FLAGS
browser automatically.
DESCRIPTION
- Uploads the Actor to the Apify platform and builds it there.
- The Actor settings are read from the ".actor/actor.json" file in the current directory, but they can be overridden
- using command-line options.
- NOTE: If the source files are smaller than 3 MB then they are uploaded as
- "Multiple source files", otherwise they are uploaded as "Zip file".
-
- When there's an attempt to push files that are older than the Actor on the platform, the command will fail. Can be
- overwritten with --force flag.
+ Deploys Actor to Apify platform using settings from '.actor/actor.json'.
+ Files under '3' MB upload as "Multiple source files"; larger projects upload as ZIP file.
+ Use --force to override newer remote versions.
```
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/push.ts)_
## `apify request-queues`
-Commands are designed to be used with Request Queues.
+Manages URL queues for web scraping and automation tasks.
```
USAGE
$ apify request-queues
DESCRIPTION
- Commands are designed to be used with Request Queues.
+ Manages URL queues for web scraping and automation tasks.
```
_See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/request-queues/index.ts)_
## `apify run`
-Runs the Actor locally in the current directory.
+Executes Actor locally with simulated Apify environment variables.
```
USAGE
@@ -1065,34 +1119,31 @@ FLAGS
--purge-queue Deletes the local directory containing the default request queue before the run starts.
DESCRIPTION
- Runs the Actor locally in the current directory.
- It sets various APIFY_XYZ environment variables in order to provide a working execution environment for the Actor. For
- example, this causes the Actor input, as well as all other data in key-value stores, datasets or request queues to be
- stored in the "storage" directory, rather than on the Apify platform.
+ Executes Actor locally with simulated Apify environment variables.
+ Stores data in local 'storage' directory.
- NOTE: You can override the command's default behavior for Node.js Actors by overriding the "start" script in the
- package.json file. You can set up your own main file or environment variables by changing it.
+ NOTE: For Node.js Actors, customize behavior by modifying the 'start' script in package.json file.
```
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/run.ts)_
## `apify runs`
-Commands are designed to be used with Actor Runs.
+Manages Actor run operations
```
USAGE
$ apify runs
DESCRIPTION
- Commands are designed to be used with Actor Runs.
+ Manages Actor run operations
```
_See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/runs/index.ts)_
## `apify runs abort RUNID`
-Aborts an Actor Run.
+Aborts an Actor run.
```
USAGE
@@ -1108,14 +1159,14 @@ GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
- Aborts an Actor Run.
+ Aborts an Actor run.
```
_See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/runs/abort.ts)_
## `apify runs info RUNID`
-Prints information about an Actor Run.
+Prints information about an Actor run.
```
USAGE
@@ -1125,13 +1176,13 @@ ARGUMENTS
RUNID The run ID to print information about.
FLAGS
- -v, --verbose Prints more in-depth information about the Actor Run.
+ -v, --verbose Prints more in-depth information about the Actor run.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
- Prints information about an Actor Run.
+ Prints information about an Actor run.
```
_See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/runs/info.ts)_
@@ -1218,26 +1269,26 @@ _See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.
## `apify secrets`
-Manages secret values for Actor environment variables.
+Manages secure environment variables for Actors.
```
USAGE
$ apify secrets
DESCRIPTION
- Manages secret values for Actor environment variables.
+ Manages secure environment variables for Actors.
Example:
$ apify secrets add mySecret TopSecretValue123
- Now the "mySecret" value can be used in an environment variable defined in ".actor/actor.json" file by adding the "@"
+ The "mySecret" value can be used in an environment variable defined in '.actor/actor.json' file by adding the "@"
prefix:
{
"actorSpecification": 1,
"name": "my_actor",
"environmentVariables": { "SECRET_ENV_VAR": "@mySecret" },
- "version": "0.1
+ "version": "0.1"
}
When the Actor is pushed to Apify cloud, the "SECRET_ENV_VAR" and its value is stored as a secret environment variable
@@ -1248,7 +1299,7 @@ _See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/bl
## `apify secrets add NAME VALUE`
-Adds a new secret value.
+Adds a new secret to '~/.apify' for use in Actor environment variables.
```
USAGE
@@ -1259,15 +1310,14 @@ ARGUMENTS
VALUE Value of the secret
DESCRIPTION
- Adds a new secret value.
- The secrets are stored to a file at ~/.apify
+ Adds a new secret to '~/.apify' for use in Actor environment variables.
```
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/secrets/add.ts)_
## `apify secrets rm NAME`
-Removes the secret.
+Permanently deletes a secret from your stored credentials.
```
USAGE
@@ -1277,28 +1327,28 @@ ARGUMENTS
NAME Name of the secret
DESCRIPTION
- Removes the secret.
+ Permanently deletes a secret from your stored credentials.
```
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/secrets/rm.ts)_
## `apify task`
-Commands are designed to be used to interact with Tasks.
+Manages scheduled and predefined Actor configurations.
```
USAGE
$ apify task
DESCRIPTION
- Commands are designed to be used to interact with Tasks.
+ Manages scheduled and predefined Actor configurations.
```
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/task/index.ts)_
## `apify task run TASKID`
-Runs a specific Actor remotely on the Apify cloud platform.
+Executes predefined Actor task remotely using local key-value store for input.
```
USAGE
@@ -1313,16 +1363,15 @@ FLAGS
-t, --timeout= Timeout for the Task run in seconds. Zero value means there is no timeout.
DESCRIPTION
- Runs a specific Actor remotely on the Apify cloud platform.
- The Actor is run under your current Apify account. Therefore you need to be logged in by calling "apify login". It
- takes input for the Actor from the default local key-value store by default.
+ Executes predefined Actor task remotely using local key-value store for input.
+ Customize with --memory and --timeout flags.
```
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/task/run.ts)_
## `apify validate-schema [PATH]`
-Validates input schema and prints errors found.
+Validates Actor input schema from one of these locations (in priority order):
```
USAGE
@@ -1332,15 +1381,13 @@ ARGUMENTS
PATH Optional path to your INPUT_SCHEMA.json file. If not provided ./INPUT_SCHEMA.json is used.
DESCRIPTION
- Validates input schema and prints errors found.
- The input schema for the Actor is used from these locations in order of preference.
- The first one found is validated as it would be the one used on the Apify platform.
- 1. Directly embedded object in ".actor/actor.json" under 'input' key
- 2. Path to JSON file referenced in ".actor/actor.json" under 'input' key
- 3. JSON file at .actor/INPUT_SCHEMA.json
- 4. JSON file at INPUT_SCHEMA.json
-
- You can also pass any custom path to your input schema to have it validated instead.
+ Validates Actor input schema from one of these locations (in priority order):
+ 1. Object in '.actor/actor.json' under "input" key
+ 2. JSON file path in '.actor/actor.json' "input" key
+ 3. .actor/INPUT_SCHEMA.json
+ 4. INPUT_SCHEMA.json
+
+ Optionally specify custom schema path to validate.
```
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0/src/commands/validate-schema.ts)_
diff --git a/package.json b/package.json
index 8c0b7133..c99730d8 100644
--- a/package.json
+++ b/package.json
@@ -19,7 +19,8 @@
"postpack": "rimraf oclif.manifest.json",
"prepack": "yarn build && oclif manifest && oclif readme && yarn update-docs",
"update-docs": "oclif readme --readme-path=docs/reference.md",
- "postinstallDev": "yarn build && node ./bin/run.js check-version && node ./dist/lib/community.js"
+ "postinstallDev": "yarn build && node ./bin/run.js check-version && node ./dist/lib/community.js",
+ "postinstall": "patch-package"
},
"files": [
"dist",
diff --git a/patches/oclif+4.17.10.patch b/patches/oclif+4.17.10.patch
new file mode 100644
index 00000000..1aef3143
--- /dev/null
+++ b/patches/oclif+4.17.10.patch
@@ -0,0 +1,18 @@
+diff --git a/node_modules/oclif/lib/tarballs/build.js b/node_modules/oclif/lib/tarballs/build.js
+index f0c8d95..744c6ac 100644
+--- a/node_modules/oclif/lib/tarballs/build.js
++++ b/node_modules/oclif/lib/tarballs/build.js
+@@ -96,6 +96,13 @@ const copyCoreYarnFiles = async (yarnRootPath, workspacePath) => {
+ await copyYarnDirectory('./.yarn/releases/', yarnRootPath, workspacePath);
+ // copy yarn plugins if they exists
+ await copyYarnDirectory('./.yarn/plugins/', yarnRootPath, workspacePath);
++
++ // NETMILK ADDED
++ await(0, fs_extra_1.copy)(path.join(yarnRootPath, 'tsconfig.typechecking.json'), path.join(workspacePath, 'tsconfig.typechecking.json'));
++ await(0, fs_extra_1.copy)(path.join(yarnRootPath, 'tsconfig.json'), path.join(workspacePath, 'tsconfig.json'));
++ await copyYarnDirectory('./src', yarnRootPath, workspacePath);
++
++
+ };
+ async function build(c, options = {}) {
+ (0, log_1.log)(`gathering workspace for ${c.config.bin} to ${c.workspace()}`);
diff --git a/yarn.lock b/yarn.lock
index d0edb368..6b648c83 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -12,10 +12,10 @@ __metadata:
languageName: node
linkType: hard
-"@apify/consts@npm:^2.20.0, @apify/consts@npm:^2.23.0, @apify/consts@npm:^2.25.0, @apify/consts@npm:^2.36.0":
- version: 2.36.0
- resolution: "@apify/consts@npm:2.36.0"
- checksum: 10c0/49004de665590ca14e0115b38333c7141f43e45e696379535291f3bfecc448a088785810b4e9d037625ecaffe2ecebbcfb7adb3a3bfd2707533042bbb895d3ee
+"@apify/consts@npm:^2.20.0, @apify/consts@npm:^2.23.0, @apify/consts@npm:^2.25.0, @apify/consts@npm:^2.36.0, @apify/consts@npm:^2.37.0":
+ version: 2.37.0
+ resolution: "@apify/consts@npm:2.37.0"
+ checksum: 10c0/f8d48904e07382c9c9a5cc7823fd4ea1ccd6bb91dade0d88d10a75c7c24146b43ee996861a66e1b43d33c63496eaa82aa850c59a1be03ce804783a6d142225ef
languageName: node
linkType: hard
@@ -63,15 +63,15 @@ __metadata:
linkType: hard
"@apify/input_schema@npm:^3.12.0":
- version: 3.12.4
- resolution: "@apify/input_schema@npm:3.12.4"
+ version: 3.13.0
+ resolution: "@apify/input_schema@npm:3.13.0"
dependencies:
- "@apify/consts": "npm:^2.36.0"
+ "@apify/consts": "npm:^2.37.0"
acorn-loose: "npm:^8.4.0"
countries-list: "npm:^3.0.0"
peerDependencies:
ajv: ^8.0.0
- checksum: 10c0/4d3682e1e453822b4d4786324679971d44f5e2fb5a46e01d14aad601cbf70eebe347f49253a8cc00eb31d8edeb23d1777f7116afcfa0556e9c2b09f1edf1ce2f
+ checksum: 10c0/ed8d58c0eb53461a60327e829fe317e1ee97888c527a04c765b163012b9ecd2441ba9181470e310d6d918d41815421c43ebdba1f86d7762aad75917276cc45f1
languageName: node
linkType: hard
@@ -96,6 +96,16 @@ __metadata:
languageName: node
linkType: hard
+"@apify/log@npm:^2.5.13":
+ version: 2.5.13
+ resolution: "@apify/log@npm:2.5.13"
+ dependencies:
+ "@apify/consts": "npm:^2.37.0"
+ ansi-colors: "npm:^4.1.1"
+ checksum: 10c0/b4295fec3101e63ed13af4c6ea103af6bd2bc2062091b1d6d921e23e4272883a262cba5fd1b68136a4dff207a40a4a36b5370eba0dac4f6f056c0bd2648a8118
+ languageName: node
+ linkType: hard
+
"@apify/ps-tree@npm:^1.2.0":
version: 1.2.0
resolution: "@apify/ps-tree@npm:1.2.0"
@@ -131,12 +141,12 @@ __metadata:
linkType: hard
"@apify/utilities@npm:^2.12.0, @apify/utilities@npm:^2.12.1, @apify/utilities@npm:^2.7.10, @apify/utilities@npm:^2.9.3":
- version: 2.12.1
- resolution: "@apify/utilities@npm:2.12.1"
+ version: 2.12.2
+ resolution: "@apify/utilities@npm:2.12.2"
dependencies:
- "@apify/consts": "npm:^2.36.0"
- "@apify/log": "npm:^2.5.12"
- checksum: 10c0/e76657df9f19ee1ad3c14a3d6a93d5662fc1aedb186e6a288c2d54ccc842161dfe8743a971af89a86d92c8f7379f90df9c89275305d3d06215c7beb17c22173c
+ "@apify/consts": "npm:^2.37.0"
+ "@apify/log": "npm:^2.5.13"
+ checksum: 10c0/417c14a1352e54d3de81c73e2fb765c6118730ab7a9fa58b5f75b8d7be4c01e3c35a369b6143185f90eced234fd4d29b0b1b26f2cbaf57d42c5afe906d1dd5d6
languageName: node
linkType: hard
@@ -231,25 +241,25 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/client-cloudfront@npm:^3.726.1":
- version: 3.726.1
- resolution: "@aws-sdk/client-cloudfront@npm:3.726.1"
+"@aws-sdk/client-cloudfront@npm:^3.716.0":
+ version: 3.723.0
+ resolution: "@aws-sdk/client-cloudfront@npm:3.723.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
- "@aws-sdk/client-sso-oidc": "npm:3.726.0"
- "@aws-sdk/client-sts": "npm:3.726.1"
+ "@aws-sdk/client-sso-oidc": "npm:3.723.0"
+ "@aws-sdk/client-sts": "npm:3.723.0"
"@aws-sdk/core": "npm:3.723.0"
- "@aws-sdk/credential-provider-node": "npm:3.726.0"
+ "@aws-sdk/credential-provider-node": "npm:3.723.0"
"@aws-sdk/middleware-host-header": "npm:3.723.0"
"@aws-sdk/middleware-logger": "npm:3.723.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.723.0"
- "@aws-sdk/middleware-user-agent": "npm:3.726.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.723.0"
"@aws-sdk/region-config-resolver": "npm:3.723.0"
"@aws-sdk/types": "npm:3.723.0"
- "@aws-sdk/util-endpoints": "npm:3.726.0"
+ "@aws-sdk/util-endpoints": "npm:3.723.0"
"@aws-sdk/util-user-agent-browser": "npm:3.723.0"
- "@aws-sdk/util-user-agent-node": "npm:3.726.0"
+ "@aws-sdk/util-user-agent-node": "npm:3.723.0"
"@aws-sdk/xml-builder": "npm:3.723.0"
"@smithy/config-resolver": "npm:^4.0.0"
"@smithy/core": "npm:^3.0.0"
@@ -279,22 +289,22 @@ __metadata:
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/e637cc3082dc8fb055231d5ce5029b5e581702c88cd87a56a4d02ba692f203aa7cd8d17e506cf357e4d9fcc8255919524ebb0b15552c5af13286f5d4fd21694d
+ checksum: 10c0/2b809c15a2a953badd689836aac172bdfae86f553a6f421cf1f5c10f818a1502a06408cd239bb2a20c1c06ad90e41b3c27f1822b3624a02b0463ff24279adced
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.722.0":
- version: 3.726.1
- resolution: "@aws-sdk/client-s3@npm:3.726.1"
+ version: 3.723.0
+ resolution: "@aws-sdk/client-s3@npm:3.723.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
- "@aws-sdk/client-sso-oidc": "npm:3.726.0"
- "@aws-sdk/client-sts": "npm:3.726.1"
+ "@aws-sdk/client-sso-oidc": "npm:3.723.0"
+ "@aws-sdk/client-sts": "npm:3.723.0"
"@aws-sdk/core": "npm:3.723.0"
- "@aws-sdk/credential-provider-node": "npm:3.726.0"
- "@aws-sdk/middleware-bucket-endpoint": "npm:3.726.0"
+ "@aws-sdk/credential-provider-node": "npm:3.723.0"
+ "@aws-sdk/middleware-bucket-endpoint": "npm:3.723.0"
"@aws-sdk/middleware-expect-continue": "npm:3.723.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.723.0"
"@aws-sdk/middleware-host-header": "npm:3.723.0"
@@ -303,13 +313,13 @@ __metadata:
"@aws-sdk/middleware-recursion-detection": "npm:3.723.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.723.0"
"@aws-sdk/middleware-ssec": "npm:3.723.0"
- "@aws-sdk/middleware-user-agent": "npm:3.726.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.723.0"
"@aws-sdk/region-config-resolver": "npm:3.723.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.723.0"
"@aws-sdk/types": "npm:3.723.0"
- "@aws-sdk/util-endpoints": "npm:3.726.0"
+ "@aws-sdk/util-endpoints": "npm:3.723.0"
"@aws-sdk/util-user-agent-browser": "npm:3.723.0"
- "@aws-sdk/util-user-agent-node": "npm:3.726.0"
+ "@aws-sdk/util-user-agent-node": "npm:3.723.0"
"@aws-sdk/xml-builder": "npm:3.723.0"
"@smithy/config-resolver": "npm:^4.0.0"
"@smithy/core": "npm:^3.0.0"
@@ -345,27 +355,27 @@ __metadata:
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/4c751c0302f1db8509a14ef4533b60d709bf751d543d78d08097a7e116be4e9ee7ada5c0d5061a156d5096f6b3f07d10d3c12ba998712226d1aedde6222b5f02
+ checksum: 10c0/101a0fe6ccde623eb99577c11a2051fa3e70ee0fdce56e0dcfcc451af1217b6fdaa14a03f0cb46c446bf37d28396a3e47b6611d56abb3c868339a7392c86b79b
languageName: node
linkType: hard
-"@aws-sdk/client-sso-oidc@npm:3.726.0":
- version: 3.726.0
- resolution: "@aws-sdk/client-sso-oidc@npm:3.726.0"
+"@aws-sdk/client-sso-oidc@npm:3.723.0":
+ version: 3.723.0
+ resolution: "@aws-sdk/client-sso-oidc@npm:3.723.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.723.0"
- "@aws-sdk/credential-provider-node": "npm:3.726.0"
+ "@aws-sdk/credential-provider-node": "npm:3.723.0"
"@aws-sdk/middleware-host-header": "npm:3.723.0"
"@aws-sdk/middleware-logger": "npm:3.723.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.723.0"
- "@aws-sdk/middleware-user-agent": "npm:3.726.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.723.0"
"@aws-sdk/region-config-resolver": "npm:3.723.0"
"@aws-sdk/types": "npm:3.723.0"
- "@aws-sdk/util-endpoints": "npm:3.726.0"
+ "@aws-sdk/util-endpoints": "npm:3.723.0"
"@aws-sdk/util-user-agent-browser": "npm:3.723.0"
- "@aws-sdk/util-user-agent-node": "npm:3.726.0"
+ "@aws-sdk/util-user-agent-node": "npm:3.723.0"
"@smithy/config-resolver": "npm:^4.0.0"
"@smithy/core": "npm:^3.0.0"
"@smithy/fetch-http-handler": "npm:^5.0.0"
@@ -393,14 +403,14 @@ __metadata:
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
- "@aws-sdk/client-sts": ^3.726.0
- checksum: 10c0/e68ad3a05639e668d8cd089f92d8ed8e183153262cab068e705d75dff7dfd61be815c545e3cf073b148ac67fdb7a73923201d1360e4e23382ab85e6e96bf370f
+ "@aws-sdk/client-sts": ^3.723.0
+ checksum: 10c0/76c1807b5f1b6b49acdfc3ccee627e62a27396e7963ceacd0561a52d537d2275e973738bf4694607669284bc976292169c536a8ee7122fa58b0a0579707f4986
languageName: node
linkType: hard
-"@aws-sdk/client-sso@npm:3.726.0":
- version: 3.726.0
- resolution: "@aws-sdk/client-sso@npm:3.726.0"
+"@aws-sdk/client-sso@npm:3.723.0":
+ version: 3.723.0
+ resolution: "@aws-sdk/client-sso@npm:3.723.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
@@ -408,12 +418,12 @@ __metadata:
"@aws-sdk/middleware-host-header": "npm:3.723.0"
"@aws-sdk/middleware-logger": "npm:3.723.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.723.0"
- "@aws-sdk/middleware-user-agent": "npm:3.726.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.723.0"
"@aws-sdk/region-config-resolver": "npm:3.723.0"
"@aws-sdk/types": "npm:3.723.0"
- "@aws-sdk/util-endpoints": "npm:3.726.0"
+ "@aws-sdk/util-endpoints": "npm:3.723.0"
"@aws-sdk/util-user-agent-browser": "npm:3.723.0"
- "@aws-sdk/util-user-agent-node": "npm:3.726.0"
+ "@aws-sdk/util-user-agent-node": "npm:3.723.0"
"@smithy/config-resolver": "npm:^4.0.0"
"@smithy/core": "npm:^3.0.0"
"@smithy/fetch-http-handler": "npm:^5.0.0"
@@ -440,28 +450,28 @@ __metadata:
"@smithy/util-retry": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/addfc32045db960a76b3d8977ac1f3093b3b75420d77a7c89d4df3148214b9ea01d6602ebc974f28953ab1f6fbda6195c026f7e61bc27838f191e3683ec6d24e
+ checksum: 10c0/456c08e48723bdaeda383d72055c24265fad2e6cbd60a37a872d2dc5a3c9cbb7bfb2f2d585010ddc933bb5a046d8708d12cf15d34317d141f9440cb83687a87a
languageName: node
linkType: hard
-"@aws-sdk/client-sts@npm:3.726.1":
- version: 3.726.1
- resolution: "@aws-sdk/client-sts@npm:3.726.1"
+"@aws-sdk/client-sts@npm:3.723.0":
+ version: 3.723.0
+ resolution: "@aws-sdk/client-sts@npm:3.723.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
- "@aws-sdk/client-sso-oidc": "npm:3.726.0"
+ "@aws-sdk/client-sso-oidc": "npm:3.723.0"
"@aws-sdk/core": "npm:3.723.0"
- "@aws-sdk/credential-provider-node": "npm:3.726.0"
+ "@aws-sdk/credential-provider-node": "npm:3.723.0"
"@aws-sdk/middleware-host-header": "npm:3.723.0"
"@aws-sdk/middleware-logger": "npm:3.723.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.723.0"
- "@aws-sdk/middleware-user-agent": "npm:3.726.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.723.0"
"@aws-sdk/region-config-resolver": "npm:3.723.0"
"@aws-sdk/types": "npm:3.723.0"
- "@aws-sdk/util-endpoints": "npm:3.726.0"
+ "@aws-sdk/util-endpoints": "npm:3.723.0"
"@aws-sdk/util-user-agent-browser": "npm:3.723.0"
- "@aws-sdk/util-user-agent-node": "npm:3.726.0"
+ "@aws-sdk/util-user-agent-node": "npm:3.723.0"
"@smithy/config-resolver": "npm:^4.0.0"
"@smithy/core": "npm:^3.0.0"
"@smithy/fetch-http-handler": "npm:^5.0.0"
@@ -488,7 +498,7 @@ __metadata:
"@smithy/util-retry": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/23e7140e939fc0ba0903df4e2fc4e43ae6f079f4359396ebc2e2126250bfc39a794f1e64c4600a780d6556abceb390c359a7181a0a43ede862db7690fd890c22
+ checksum: 10c0/eb18bb3e43803d95f2eeb47aa6de904df17ca8568c98b9e46874afd45003358229b2f3ca2f3e2f0afdb340d00610142d4b2b474925046bd4617769a4bd8ca3a3
languageName: node
linkType: hard
@@ -542,15 +552,15 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-ini@npm:3.726.0":
- version: 3.726.0
- resolution: "@aws-sdk/credential-provider-ini@npm:3.726.0"
+"@aws-sdk/credential-provider-ini@npm:3.723.0":
+ version: 3.723.0
+ resolution: "@aws-sdk/credential-provider-ini@npm:3.723.0"
dependencies:
"@aws-sdk/core": "npm:3.723.0"
"@aws-sdk/credential-provider-env": "npm:3.723.0"
"@aws-sdk/credential-provider-http": "npm:3.723.0"
"@aws-sdk/credential-provider-process": "npm:3.723.0"
- "@aws-sdk/credential-provider-sso": "npm:3.726.0"
+ "@aws-sdk/credential-provider-sso": "npm:3.723.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.723.0"
"@aws-sdk/types": "npm:3.723.0"
"@smithy/credential-provider-imds": "npm:^4.0.0"
@@ -559,20 +569,20 @@ __metadata:
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
- "@aws-sdk/client-sts": ^3.726.0
- checksum: 10c0/0ae11a9195a4368eb8c12cf42f716771ed1486a042e2e71292f9c5cd6c2accf0b8805e3c16b709b366ea5fb27468fc24aeb18f324b80f1ae2227330d1481ea77
+ "@aws-sdk/client-sts": ^3.723.0
+ checksum: 10c0/0d432dfabec92221360ee0ee3e43618d83eabcbc3f16a783d2679dc00e563e66d6971ab4f7e99d4dffeddf04ae404bd2ff5b6aaa023f35a6fdfcff90bdf9f7e5
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-node@npm:3.726.0":
- version: 3.726.0
- resolution: "@aws-sdk/credential-provider-node@npm:3.726.0"
+"@aws-sdk/credential-provider-node@npm:3.723.0":
+ version: 3.723.0
+ resolution: "@aws-sdk/credential-provider-node@npm:3.723.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.723.0"
"@aws-sdk/credential-provider-http": "npm:3.723.0"
- "@aws-sdk/credential-provider-ini": "npm:3.726.0"
+ "@aws-sdk/credential-provider-ini": "npm:3.723.0"
"@aws-sdk/credential-provider-process": "npm:3.723.0"
- "@aws-sdk/credential-provider-sso": "npm:3.726.0"
+ "@aws-sdk/credential-provider-sso": "npm:3.723.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.723.0"
"@aws-sdk/types": "npm:3.723.0"
"@smithy/credential-provider-imds": "npm:^4.0.0"
@@ -580,7 +590,7 @@ __metadata:
"@smithy/shared-ini-file-loader": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/e208e6f880a2a9251c22c0b66ee63f375f5e3ffe1f91efc23af3d030d3b4b8a8f6c154ad2481a69ae15f80167d0bfbfa2f638eb2f73a2377a146f30ce2996c34
+ checksum: 10c0/ebfdcea3d856060ad7a4c809bf0755fcd28a1c61614b8cfd23bb4e355726fdf7e21be70211cc8e6ea5168467b2343aea50967b2d6912f80c60bdb8183f4e8fc7
languageName: node
linkType: hard
@@ -598,11 +608,11 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-sso@npm:3.726.0":
- version: 3.726.0
- resolution: "@aws-sdk/credential-provider-sso@npm:3.726.0"
+"@aws-sdk/credential-provider-sso@npm:3.723.0":
+ version: 3.723.0
+ resolution: "@aws-sdk/credential-provider-sso@npm:3.723.0"
dependencies:
- "@aws-sdk/client-sso": "npm:3.726.0"
+ "@aws-sdk/client-sso": "npm:3.723.0"
"@aws-sdk/core": "npm:3.723.0"
"@aws-sdk/token-providers": "npm:3.723.0"
"@aws-sdk/types": "npm:3.723.0"
@@ -610,7 +620,7 @@ __metadata:
"@smithy/shared-ini-file-loader": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/5114fdb65ad15a9838c72dd030108b12cf1e59ba2b12a7c4d8482e033ae23f6cc633a8e43f532eed9330358afffe2b2fe728266c63616920f9e23208a9e1d2b7
+ checksum: 10c0/b051420762d1c815dbf7e04ddae4a625049393c1651ed0c507429f14e44d0f5ea70c9bfec87cf6f9a3e7f13932786cbec6a9f3c830bf3f56ec758746751baa5e
languageName: node
linkType: hard
@@ -629,9 +639,9 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/middleware-bucket-endpoint@npm:3.726.0":
- version: 3.726.0
- resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.726.0"
+"@aws-sdk/middleware-bucket-endpoint@npm:3.723.0":
+ version: 3.723.0
+ resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.723.0"
dependencies:
"@aws-sdk/types": "npm:3.723.0"
"@aws-sdk/util-arn-parser": "npm:3.723.0"
@@ -640,7 +650,7 @@ __metadata:
"@smithy/types": "npm:^4.0.0"
"@smithy/util-config-provider": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/c871546a59e473e95a0a83e776d7c27e790721043a1bc497a3311ee1dc5418b7fa40a2d44ef9d9676f6c6c667dcdff6307f1f69a301489c808cb20072ee0eb5b
+ checksum: 10c0/7b7fbcb968cf6b0e837ca264263c9e078eb13a550655f8e44f6b1dbe730353c230ca03360de4e2c614025c76d6a95c3a49252a5805ec3c91f40530015bc79949
languageName: node
linkType: hard
@@ -756,18 +766,18 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/middleware-user-agent@npm:3.726.0":
- version: 3.726.0
- resolution: "@aws-sdk/middleware-user-agent@npm:3.726.0"
+"@aws-sdk/middleware-user-agent@npm:3.723.0":
+ version: 3.723.0
+ resolution: "@aws-sdk/middleware-user-agent@npm:3.723.0"
dependencies:
"@aws-sdk/core": "npm:3.723.0"
"@aws-sdk/types": "npm:3.723.0"
- "@aws-sdk/util-endpoints": "npm:3.726.0"
+ "@aws-sdk/util-endpoints": "npm:3.723.0"
"@smithy/core": "npm:^3.0.0"
"@smithy/protocol-http": "npm:^5.0.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/3cbfa117531cc4fd09b4ce0e273af86b1fdb656f078033babb7d1e87fb849efae662f0e86081e62404c6876539011fc444de89758dc64c01a33789c88bdfa6c3
+ checksum: 10c0/9eaf19dcedc85ebfdcf3298ae7142fb1c1cc350e03456311f77f3785b5549ad0fdbb5615f8afd90242e6916cc9b5e02609028532d740f14ce310a6a28e20ffab
languageName: node
linkType: hard
@@ -833,15 +843,15 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/util-endpoints@npm:3.726.0":
- version: 3.726.0
- resolution: "@aws-sdk/util-endpoints@npm:3.726.0"
+"@aws-sdk/util-endpoints@npm:3.723.0":
+ version: 3.723.0
+ resolution: "@aws-sdk/util-endpoints@npm:3.723.0"
dependencies:
"@aws-sdk/types": "npm:3.723.0"
"@smithy/types": "npm:^4.0.0"
"@smithy/util-endpoints": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/43bf94ddc07310b8ee44cd489b0bb47cf6189eb12072cba946403ff63831e93c3c2e1d17779b298f4dd74732cee2349d5038942ebdf8a1f030ebd215b5c7f5ac
+ checksum: 10c0/e5c977537c7f85f8772aae1d5df9355d827cb169d7a8d69e144c360ac219bd7a4e8803e5e0215d1c45704b0a4078f2fdb148943470ca3be64401d0c6c284f65a
languageName: node
linkType: hard
@@ -866,11 +876,11 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/util-user-agent-node@npm:3.726.0":
- version: 3.726.0
- resolution: "@aws-sdk/util-user-agent-node@npm:3.726.0"
+"@aws-sdk/util-user-agent-node@npm:3.723.0":
+ version: 3.723.0
+ resolution: "@aws-sdk/util-user-agent-node@npm:3.723.0"
dependencies:
- "@aws-sdk/middleware-user-agent": "npm:3.726.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.723.0"
"@aws-sdk/types": "npm:3.723.0"
"@smithy/node-config-provider": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
@@ -880,7 +890,7 @@ __metadata:
peerDependenciesMeta:
aws-crt:
optional: true
- checksum: 10c0/627f5fdb1dbc14fbfc14c51d14135a5be46fe48a315cb38625f783791d6c0013f2f2df49150fdb920fc5181845e1e75831545453a672af997f5f148b1db5128d
+ checksum: 10c0/dd4ed9baae07861517013ac86994a90fc2a95bee4352623f14506102e139bb024833254723d4f854652516da265b5f78890802e527bde138829de5bae30a4c35
languageName: node
linkType: hard
@@ -1272,13 +1282,13 @@ __metadata:
linkType: hard
"@cucumber/query@npm:^13.0.2":
- version: 13.1.0
- resolution: "@cucumber/query@npm:13.1.0"
+ version: 13.0.3
+ resolution: "@cucumber/query@npm:13.0.3"
dependencies:
"@teppeis/multimaps": "npm:3.0.0"
peerDependencies:
"@cucumber/messages": "*"
- checksum: 10c0/05b3fd6c3ebfbc8a869fade5b76cbe64bb3f48a9c44df98e41bf1901b225c3953f8f7ffe169a5758b5e212ec9f52f57053fce2ed337d87295d015c5b92bae08b
+ checksum: 10c0/c6b83f6b31dfee67941f05dd3ee06ec0555317e878465fa5ef4d57dacb9cf023401cc33882f54e5e4a8526f2e2aa477173aad0f535a5ca34ec3e52a8bd2e6e9c
languageName: node
linkType: hard
@@ -1685,6 +1695,21 @@ __metadata:
languageName: node
linkType: hard
+"@inquirer/checkbox@npm:^4.0.4":
+ version: 4.0.4
+ resolution: "@inquirer/checkbox@npm:4.0.4"
+ dependencies:
+ "@inquirer/core": "npm:^10.1.2"
+ "@inquirer/figures": "npm:^1.0.9"
+ "@inquirer/type": "npm:^3.0.2"
+ ansi-escapes: "npm:^4.3.2"
+ yoctocolors-cjs: "npm:^2.1.2"
+ peerDependencies:
+ "@types/node": ">=18"
+ checksum: 10c0/b88a09769901b4ccad238af7637d19dab956a2f625f9a58756e98a9a7efaeb9ddfa9864c34f964e360812bfc71275d80d063d69b1c57731d65709016a7641317
+ languageName: node
+ linkType: hard
+
"@inquirer/checkbox@npm:^4.0.6":
version: 4.0.6
resolution: "@inquirer/checkbox@npm:4.0.6"
@@ -1710,6 +1735,18 @@ __metadata:
languageName: node
linkType: hard
+"@inquirer/confirm@npm:^5.1.1":
+ version: 5.1.1
+ resolution: "@inquirer/confirm@npm:5.1.1"
+ dependencies:
+ "@inquirer/core": "npm:^10.1.2"
+ "@inquirer/type": "npm:^3.0.2"
+ peerDependencies:
+ "@types/node": ">=18"
+ checksum: 10c0/acca658c2b0a4546560d4c22e405aa7a94644a1126fd0ca895c7d2d11a3a5c836e85ffb45b7b2f9c955c5c0cc44975dbefa17d66e82de01b545e73d6f8de5c80
+ languageName: node
+ linkType: hard
+
"@inquirer/confirm@npm:^5.1.3":
version: 5.1.3
resolution: "@inquirer/confirm@npm:5.1.3"
@@ -1722,6 +1759,23 @@ __metadata:
languageName: node
linkType: hard
+"@inquirer/core@npm:^10.1.2":
+ version: 10.1.2
+ resolution: "@inquirer/core@npm:10.1.2"
+ dependencies:
+ "@inquirer/figures": "npm:^1.0.9"
+ "@inquirer/type": "npm:^3.0.2"
+ ansi-escapes: "npm:^4.3.2"
+ cli-width: "npm:^4.1.0"
+ mute-stream: "npm:^2.0.0"
+ signal-exit: "npm:^4.1.0"
+ strip-ansi: "npm:^6.0.1"
+ wrap-ansi: "npm:^6.2.0"
+ yoctocolors-cjs: "npm:^2.1.2"
+ checksum: 10c0/95eeb5955a85026ae947d52d5c9b3c116954567fd7b989fad76e8908aca836eb63a3ce463e12690a05fb467d60dec732f831ba19493bc80cb0ab3a55990567a5
+ languageName: node
+ linkType: hard
+
"@inquirer/core@npm:^10.1.4":
version: 10.1.4
resolution: "@inquirer/core@npm:10.1.4"
@@ -1759,6 +1813,19 @@ __metadata:
languageName: node
linkType: hard
+"@inquirer/editor@npm:^4.2.1":
+ version: 4.2.1
+ resolution: "@inquirer/editor@npm:4.2.1"
+ dependencies:
+ "@inquirer/core": "npm:^10.1.2"
+ "@inquirer/type": "npm:^3.0.2"
+ external-editor: "npm:^3.1.0"
+ peerDependencies:
+ "@types/node": ">=18"
+ checksum: 10c0/b8a85c139537ecebe6120588b2e9faa3ca27beeeed593187264e9c2b62df652e02cd661bd9cb8815478416a65ff8ceaf0a6607c852ec5f1a1c59327ecae831e8
+ languageName: node
+ linkType: hard
+
"@inquirer/editor@npm:^4.2.3":
version: 4.2.3
resolution: "@inquirer/editor@npm:4.2.3"
@@ -1772,6 +1839,19 @@ __metadata:
languageName: node
linkType: hard
+"@inquirer/expand@npm:^4.0.4":
+ version: 4.0.4
+ resolution: "@inquirer/expand@npm:4.0.4"
+ dependencies:
+ "@inquirer/core": "npm:^10.1.2"
+ "@inquirer/type": "npm:^3.0.2"
+ yoctocolors-cjs: "npm:^2.1.2"
+ peerDependencies:
+ "@types/node": ">=18"
+ checksum: 10c0/364802c6ce4691b663333d73cfdd22b16925055b7d355137023f781cc5b16ebd8f0d24f79785e5fd9c17f850369d0e39c4e031d69ffaab885fcdff62886e78bf
+ languageName: node
+ linkType: hard
+
"@inquirer/expand@npm:^4.0.6":
version: 4.0.6
resolution: "@inquirer/expand@npm:4.0.6"
@@ -1802,6 +1882,18 @@ __metadata:
languageName: node
linkType: hard
+"@inquirer/input@npm:^4.1.1":
+ version: 4.1.1
+ resolution: "@inquirer/input@npm:4.1.1"
+ dependencies:
+ "@inquirer/core": "npm:^10.1.2"
+ "@inquirer/type": "npm:^3.0.2"
+ peerDependencies:
+ "@types/node": ">=18"
+ checksum: 10c0/8e574f4de2d5c28cb71a24ac338df3d89762fada1e6f71b2f34ee6e3861ec571aee0b2ee77b88059cbebc7cbcfbfc0492e663ae87ab61b4e5c5538a6997ad17e
+ languageName: node
+ linkType: hard
+
"@inquirer/input@npm:^4.1.3":
version: 4.1.3
resolution: "@inquirer/input@npm:4.1.3"
@@ -1814,6 +1906,18 @@ __metadata:
languageName: node
linkType: hard
+"@inquirer/number@npm:^3.0.4":
+ version: 3.0.4
+ resolution: "@inquirer/number@npm:3.0.4"
+ dependencies:
+ "@inquirer/core": "npm:^10.1.2"
+ "@inquirer/type": "npm:^3.0.2"
+ peerDependencies:
+ "@types/node": ">=18"
+ checksum: 10c0/76c1e13af59620f8105efdadf30061caa7448c74c1c2de9ee04dbd78f831f09d9ca5463a2433071c131d0a0a7d12418b180e6a24653d2b34f4dbf8add2b60dfa
+ languageName: node
+ linkType: hard
+
"@inquirer/number@npm:^3.0.6":
version: 3.0.6
resolution: "@inquirer/number@npm:3.0.6"
@@ -1826,6 +1930,19 @@ __metadata:
languageName: node
linkType: hard
+"@inquirer/password@npm:^4.0.4":
+ version: 4.0.4
+ resolution: "@inquirer/password@npm:4.0.4"
+ dependencies:
+ "@inquirer/core": "npm:^10.1.2"
+ "@inquirer/type": "npm:^3.0.2"
+ ansi-escapes: "npm:^4.3.2"
+ peerDependencies:
+ "@types/node": ">=18"
+ checksum: 10c0/ab7b28b7e424fa56b6c0da49231ac59a9a348fcd6492add27b7aac2f018a8ef3fafb054368efe49476d60b44a723188513328bcda66c8ebe59cb57e2d95eb89b
+ languageName: node
+ linkType: hard
+
"@inquirer/password@npm:^4.0.6":
version: 4.0.6
resolution: "@inquirer/password@npm:4.0.6"
@@ -1839,7 +1956,27 @@ __metadata:
languageName: node
linkType: hard
-"@inquirer/prompts@npm:^7.2.1, @inquirer/prompts@npm:^7.2.3":
+"@inquirer/prompts@npm:^7.2.1":
+ version: 7.2.1
+ resolution: "@inquirer/prompts@npm:7.2.1"
+ dependencies:
+ "@inquirer/checkbox": "npm:^4.0.4"
+ "@inquirer/confirm": "npm:^5.1.1"
+ "@inquirer/editor": "npm:^4.2.1"
+ "@inquirer/expand": "npm:^4.0.4"
+ "@inquirer/input": "npm:^4.1.1"
+ "@inquirer/number": "npm:^3.0.4"
+ "@inquirer/password": "npm:^4.0.4"
+ "@inquirer/rawlist": "npm:^4.0.4"
+ "@inquirer/search": "npm:^3.0.4"
+ "@inquirer/select": "npm:^4.0.4"
+ peerDependencies:
+ "@types/node": ">=18"
+ checksum: 10c0/a548f560f0c5edf941ecf536ad405b73935f6892699e41b221ffdab9dcaf2396be57d74cbd5d833edaeae31aa787f6fe5144b18468f2bbe8d19e591c0dd06743
+ languageName: node
+ linkType: hard
+
+"@inquirer/prompts@npm:^7.2.3":
version: 7.2.3
resolution: "@inquirer/prompts@npm:7.2.3"
dependencies:
@@ -1859,6 +1996,19 @@ __metadata:
languageName: node
linkType: hard
+"@inquirer/rawlist@npm:^4.0.4":
+ version: 4.0.4
+ resolution: "@inquirer/rawlist@npm:4.0.4"
+ dependencies:
+ "@inquirer/core": "npm:^10.1.2"
+ "@inquirer/type": "npm:^3.0.2"
+ yoctocolors-cjs: "npm:^2.1.2"
+ peerDependencies:
+ "@types/node": ">=18"
+ checksum: 10c0/92eff5e59508bac677eda479b3324dbb7cb512540ca5b76bd1ad309316a6f68d21ce98e6485ba4deb503764dfa6eb2742bdd64e23391bd8f8e06073e6d527510
+ languageName: node
+ linkType: hard
+
"@inquirer/rawlist@npm:^4.0.6":
version: 4.0.6
resolution: "@inquirer/rawlist@npm:4.0.6"
@@ -1872,6 +2022,20 @@ __metadata:
languageName: node
linkType: hard
+"@inquirer/search@npm:^3.0.4":
+ version: 3.0.4
+ resolution: "@inquirer/search@npm:3.0.4"
+ dependencies:
+ "@inquirer/core": "npm:^10.1.2"
+ "@inquirer/figures": "npm:^1.0.9"
+ "@inquirer/type": "npm:^3.0.2"
+ yoctocolors-cjs: "npm:^2.1.2"
+ peerDependencies:
+ "@types/node": ">=18"
+ checksum: 10c0/15a91edf12f966bc269838fd4b037aed4b5164b7bf2eb814cab6ddeb18a9937746bbd44cda6dfb59408e5d9ae41286952150f2e134af08b2892ceaacac2591a7
+ languageName: node
+ linkType: hard
+
"@inquirer/search@npm:^3.0.6":
version: 3.0.6
resolution: "@inquirer/search@npm:3.0.6"
@@ -1899,6 +2063,21 @@ __metadata:
languageName: node
linkType: hard
+"@inquirer/select@npm:^4.0.4":
+ version: 4.0.4
+ resolution: "@inquirer/select@npm:4.0.4"
+ dependencies:
+ "@inquirer/core": "npm:^10.1.2"
+ "@inquirer/figures": "npm:^1.0.9"
+ "@inquirer/type": "npm:^3.0.2"
+ ansi-escapes: "npm:^4.3.2"
+ yoctocolors-cjs: "npm:^2.1.2"
+ peerDependencies:
+ "@types/node": ">=18"
+ checksum: 10c0/c77ef1292483e4f2f3239b87c50177608e0a62895a37598ba37d48e1a3e544459d31687e6b8f2383b263a42a9f437b8a056da2f170352fc67541a40ff9282265
+ languageName: node
+ linkType: hard
+
"@inquirer/select@npm:^4.0.6":
version: 4.0.6
resolution: "@inquirer/select@npm:4.0.6"
@@ -2035,11 +2214,11 @@ __metadata:
linkType: hard
"@oclif/core@npm:^4, @oclif/core@npm:^4.2.0, @oclif/core@npm:~4.2.0":
- version: 4.2.3
- resolution: "@oclif/core@npm:4.2.3"
+ version: 4.2.4
+ resolution: "@oclif/core@npm:4.2.4"
dependencies:
ansi-escapes: "npm:^4.3.2"
- ansis: "npm:^3.8.1"
+ ansis: "npm:^3.9.0"
clean-stack: "npm:^3.0.1"
cli-spinners: "npm:^2.9.2"
debug: "npm:^4.4.0"
@@ -2056,34 +2235,34 @@ __metadata:
widest-line: "npm:^3.1.0"
wordwrap: "npm:^1.0.0"
wrap-ansi: "npm:^7.0.0"
- checksum: 10c0/164cc90a2b1af5243419f1a1ec8275e63a55184f61dcb2c4745247cb689324fac97b73e927f9bff9adb1b2cca4e592a581a8400812e8eb8823d1bb3a1e900723
+ checksum: 10c0/5f85466e0506300d5e759d4e3b9bca2e3565f0b387d5fefd69bf261176dd76be3064ab8deadf21fdfbbd595f09291f3653d729740e527a1f85e5902ce5b0ac4a
languageName: node
linkType: hard
-"@oclif/plugin-help@npm:^6.2.21, @oclif/plugin-help@npm:~6.2.8":
- version: 6.2.21
- resolution: "@oclif/plugin-help@npm:6.2.21"
+"@oclif/plugin-help@npm:^6.2.20, @oclif/plugin-help@npm:~6.2.8":
+ version: 6.2.22
+ resolution: "@oclif/plugin-help@npm:6.2.22"
dependencies:
"@oclif/core": "npm:^4"
- checksum: 10c0/45350bda34d69f6d7532ad899d4619353a59572399eb3dafe21778b2341f9dc945d24606a4a98f852f5fb0f634489e0f3f333dec44dc7ec7eb0c306d332e0faa
+ checksum: 10c0/4e52912244e663e52dae5852cde17743557aeb1050b48c97a7c89485f567887636cd0a4871b3f6d5ac36d8fe1ab348001e6851e2edde2a25a41d77f5eb8a20b0
languageName: node
linkType: hard
"@oclif/plugin-not-found@npm:^3.2.32":
- version: 3.2.35
- resolution: "@oclif/plugin-not-found@npm:3.2.35"
+ version: 3.2.33
+ resolution: "@oclif/plugin-not-found@npm:3.2.33"
dependencies:
"@inquirer/prompts": "npm:^7.2.1"
"@oclif/core": "npm:^4"
- ansis: "npm:^3.8.1"
+ ansis: "npm:^3.5.2"
fast-levenshtein: "npm:^3.0.0"
- checksum: 10c0/e109d716d95128a4896fb05ac439db7f6ff8f23d33ac95cad5703842923e3d83b32dbedf25a1b079562e855a09e87463324b291ed384ae140ca6cb5e4af2df57
+ checksum: 10c0/3da47067786cdac405ca6142bd054094d6dbcc7e876e8b94a887a46ea8da7458896bd536c408824042f9bb6ca22b2c1e1c8e76ae109d9a6c56cd0dea826790a0
languageName: node
linkType: hard
"@oclif/plugin-warn-if-update-available@npm:^3.1.29":
- version: 3.1.30
- resolution: "@oclif/plugin-warn-if-update-available@npm:3.1.30"
+ version: 3.1.29
+ resolution: "@oclif/plugin-warn-if-update-available@npm:3.1.29"
dependencies:
"@oclif/core": "npm:^4"
ansis: "npm:^3.5.2"
@@ -2091,19 +2270,19 @@ __metadata:
http-call: "npm:^5.2.2"
lodash: "npm:^4.17.21"
registry-auth-token: "npm:^5.0.3"
- checksum: 10c0/9a9818d3c9661f463241f63e5f7b62af061e50676d57ae09f94c3831ecda2e3cf400055d37ce046c73f8e7969149bb73d476e29bfe7e210f63c261f8e2a7a8c3
+ checksum: 10c0/ab642f1c7ad237295bea61851f073c0048561a3ed0c5658bcddbcd3b482144f2da812f034499ee134b4fbff2c52f62e8470bf8249da6f71a0b91d1bdbd8181b0
languageName: node
linkType: hard
"@oclif/test@npm:^4.0.8":
- version: 4.1.7
- resolution: "@oclif/test@npm:4.1.7"
+ version: 4.1.6
+ resolution: "@oclif/test@npm:4.1.6"
dependencies:
- ansis: "npm:^3.8.1"
+ ansis: "npm:^3.6.0"
debug: "npm:^4.4.0"
peerDependencies:
"@oclif/core": ">= 3.0.0"
- checksum: 10c0/2a253180ca6fbafd6669cfac0324c339d6431dad5fba62017262d62f24eeb508bf8ff9f64412551bcf875614e9454a8b4596b71078112f40330192b886b6ad18
+ checksum: 10c0/82464b2a9558f5632ab9824f72354a8dbf18d81b6803d708811661e55f50de2b16f1236cfd94932421c9250abe06a996bf6145104d2010090f575951225ec0e0
languageName: node
linkType: hard
@@ -2375,13 +2554,13 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/abort-controller@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/abort-controller@npm:4.0.1"
+"@smithy/abort-controller@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/abort-controller@npm:4.0.0"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/1ecd5c3454ced008463e6de826c294f31f6073ba91e22e443e0269ee0854d9376f73ea756b3acf77aa806a9a98e8b2568ce2e7f15ddf0a7816c99b7deefeef57
+ checksum: 10c0/4a6f5cf0a0e99d30ade7520d813a6fd721aa0abf1fb380067c2423f2818258bd87e5d25cefab3225b82cb87c79b6fab732a953d610d28d2535a5e353af02d9c5
languageName: node
linkType: hard
@@ -2404,158 +2583,158 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/config-resolver@npm:^4.0.0, @smithy/config-resolver@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/config-resolver@npm:4.0.1"
+"@smithy/config-resolver@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/config-resolver@npm:4.0.0"
dependencies:
- "@smithy/node-config-provider": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/node-config-provider": "npm:^4.0.0"
+ "@smithy/types": "npm:^4.0.0"
"@smithy/util-config-provider": "npm:^4.0.0"
- "@smithy/util-middleware": "npm:^4.0.1"
+ "@smithy/util-middleware": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/4ec3486deb3017607ed1b9a42b4b806b78e2c7a00f6dd51b98ccb82d9f7506b206bd9412ec0d2a05e95bc2ac3fbbafe55b1ffce9faccc4086f837645f3f7e64d
+ checksum: 10c0/2f36f9ac4c9e0819831a24c28ea6d3eaaaf4c5b1bff0ce6ecc27252aa8620b2fb3ca2ed0e151fe387819d122483262e348f4170b1f4bc37e2e2f73613846e12b
languageName: node
linkType: hard
-"@smithy/core@npm:^3.0.0, @smithy/core@npm:^3.1.0":
- version: 3.1.0
- resolution: "@smithy/core@npm:3.1.0"
+"@smithy/core@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "@smithy/core@npm:3.0.0"
dependencies:
- "@smithy/middleware-serde": "npm:^4.0.1"
- "@smithy/protocol-http": "npm:^5.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/middleware-serde": "npm:^4.0.0"
+ "@smithy/protocol-http": "npm:^5.0.0"
+ "@smithy/types": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
- "@smithy/util-middleware": "npm:^4.0.1"
- "@smithy/util-stream": "npm:^4.0.1"
+ "@smithy/util-middleware": "npm:^4.0.0"
+ "@smithy/util-stream": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/94695aaa98b58431b255cb8f6f603d049a1fdad2995db69b13105e9d69b8a5a978885d879f09a4df6cbb0fd5cbcbbd912ba6515bf86736ce5c1d98b88df1eb77
+ checksum: 10c0/04b460ac20307e3024a07b19647804d2dd195625cc1afdd737c125706e50c9371fbfddd5e0d7ee8d1d38963b1db8c71c89662500eaa90afad3512c5360586f6e
languageName: node
linkType: hard
-"@smithy/credential-provider-imds@npm:^4.0.0, @smithy/credential-provider-imds@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/credential-provider-imds@npm:4.0.1"
+"@smithy/credential-provider-imds@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/credential-provider-imds@npm:4.0.0"
dependencies:
- "@smithy/node-config-provider": "npm:^4.0.1"
- "@smithy/property-provider": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
- "@smithy/url-parser": "npm:^4.0.1"
+ "@smithy/node-config-provider": "npm:^4.0.0"
+ "@smithy/property-provider": "npm:^4.0.0"
+ "@smithy/types": "npm:^4.0.0"
+ "@smithy/url-parser": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/76b5d82dfd2924f2b7a701fa159af54d3e9b16a644a210e3a74e5a3776bb28c2ffbdd342ed3f2bb1d2adf401e8144e84614523b1fad245b43e319e1d01fa1652
+ checksum: 10c0/30dd13c47147a3d7d2a4e2809141c0925ad60d95dd1d6ccdb6034a3ba60e7a12c5963ab331d7706265564ed0f7198206432f4992ef586095d6bad417e67d85dc
languageName: node
linkType: hard
-"@smithy/eventstream-codec@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/eventstream-codec@npm:4.0.1"
+"@smithy/eventstream-codec@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/eventstream-codec@npm:4.0.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^4.0.0"
"@smithy/util-hex-encoding": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/439262fddae863cadad83cc468418294d1d998134619dd67e2836cc93bbfa5b01448e852516046f03b62d0edcd558014b755b1fb0d71b9317268d5c3a5e55bbd
+ checksum: 10c0/d34d87b6cb1437e37a3b97938123d7b7cb274d79c0a33de9c71a6e49afb3dff8da07b29e842a4da58982c302d8414df2ae860386a65cc59681f7d2c68ebd0656
languageName: node
linkType: hard
"@smithy/eventstream-serde-browser@npm:^4.0.0":
- version: 4.0.1
- resolution: "@smithy/eventstream-serde-browser@npm:4.0.1"
+ version: 4.0.0
+ resolution: "@smithy/eventstream-serde-browser@npm:4.0.0"
dependencies:
- "@smithy/eventstream-serde-universal": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/eventstream-serde-universal": "npm:^4.0.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/4766a8a735085dea1ed9aad486fa70cb04908a31843d4e698a28accc373a6dc80bc8abe9834d390f347326458c03424afbd7f7f9e59a66970b839de3d44940e1
+ checksum: 10c0/7c704d9ee94b76064b4e6310b6869474e0d138d4cea03d3d3791fe436b006adf1db20a87db5724544747350d64403a4da8d9be2157411c196373e8ac51ac5612
languageName: node
linkType: hard
"@smithy/eventstream-serde-config-resolver@npm:^4.0.0":
- version: 4.0.1
- resolution: "@smithy/eventstream-serde-config-resolver@npm:4.0.1"
+ version: 4.0.0
+ resolution: "@smithy/eventstream-serde-config-resolver@npm:4.0.0"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/4ba8bba39392025389c610ce984b612adfe0ed2b37f926e6ce2acafaf178d04aec395924ff37d2ad9534a28652fc64c4938b66b4bd1d2ff695ac8fcdcc4d356e
+ checksum: 10c0/9fedbbb1250b92d8fbdfa7620280bf2c5848d0cfdd6052b5da4c3ac9008ad3d0b709037a679958ce74c9360b6d9eb24aa66c9758f461f885d6395feb7ac63223
languageName: node
linkType: hard
"@smithy/eventstream-serde-node@npm:^4.0.0":
- version: 4.0.1
- resolution: "@smithy/eventstream-serde-node@npm:4.0.1"
+ version: 4.0.0
+ resolution: "@smithy/eventstream-serde-node@npm:4.0.0"
dependencies:
- "@smithy/eventstream-serde-universal": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/eventstream-serde-universal": "npm:^4.0.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/ed451ed4483ca62cb450a7540e43ba99b816e32da7bd306d14ea49dd3ceb8a37f791578a0e5d21caf9b9f75c36c69e025c7add117cf8b0510ad3ef32ac38b08c
+ checksum: 10c0/66af71e6c2c2bfe796da38202fcb3e39208226b406992b5bcffa79968e350a5f9cc91dcee675e006b0329209debccd4737a1584e041f25b0fcab55ab563f0495
languageName: node
linkType: hard
-"@smithy/eventstream-serde-universal@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/eventstream-serde-universal@npm:4.0.1"
+"@smithy/eventstream-serde-universal@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/eventstream-serde-universal@npm:4.0.0"
dependencies:
- "@smithy/eventstream-codec": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/eventstream-codec": "npm:^4.0.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/8a1261fca8df7559bf78234f961903281b8602ffdbe0ff25f506cba25f013e4bb93bd8380703224fe63aeaf66e13bfebbdaf8083f38628750fc5f3c4ee07dff8
+ checksum: 10c0/f33e622842e7e5134d540dc20686a9f91033396a116f58200d5b1664bd1c77bc9ba319ccfa99c10a091f80e27f671e3302c702e1494e691a99c96a2c70b33335
languageName: node
linkType: hard
-"@smithy/fetch-http-handler@npm:^5.0.0, @smithy/fetch-http-handler@npm:^5.0.1":
- version: 5.0.1
- resolution: "@smithy/fetch-http-handler@npm:5.0.1"
+"@smithy/fetch-http-handler@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "@smithy/fetch-http-handler@npm:5.0.0"
dependencies:
- "@smithy/protocol-http": "npm:^5.0.1"
- "@smithy/querystring-builder": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/protocol-http": "npm:^5.0.0"
+ "@smithy/querystring-builder": "npm:^4.0.0"
+ "@smithy/types": "npm:^4.0.0"
"@smithy/util-base64": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/5123f6119de50d4c992ebf29b769382d7000db4ed8f564680c5727e2a8beb71664198eb2eaf7cb6152ab777f654d54cf9bff5a4658e1cfdeef2987eeea7f1149
+ checksum: 10c0/6df4d5e497da6ac3a668d5169002905fc421b8113e8f461dedc330603548e484cdbe320e168c2b26cef08d8dab749f981a49859746aacfa62926c25c700d3abd
languageName: node
linkType: hard
"@smithy/hash-blob-browser@npm:^4.0.0":
- version: 4.0.1
- resolution: "@smithy/hash-blob-browser@npm:4.0.1"
+ version: 4.0.0
+ resolution: "@smithy/hash-blob-browser@npm:4.0.0"
dependencies:
"@smithy/chunked-blob-reader": "npm:^5.0.0"
"@smithy/chunked-blob-reader-native": "npm:^4.0.0"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/16c61fe0ff52074aa374a439955f0ea0a6c6fb64744b55c840f29db1da05cefb340a6d1d4b2a7708ca6f447e972015a95bdfef4fc5361d0bc7c2c3b5cd4c1ca8
+ checksum: 10c0/e2e97a43bb96e716cbe3c8ca3d6fda7a186224e7b20fc138b2525a6a0d16ccab652b36affeea31afd978c8688fc6407460e96d8c946c8b41153feb54f7f71215
languageName: node
linkType: hard
"@smithy/hash-node@npm:^4.0.0":
- version: 4.0.1
- resolution: "@smithy/hash-node@npm:4.0.1"
+ version: 4.0.0
+ resolution: "@smithy/hash-node@npm:4.0.0"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^4.0.0"
"@smithy/util-buffer-from": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/d84be63a2c8a4aafa3b9f23ae76c9cf92a31fa7c49c85930424da1335259b29f6333c5c82d2e7bf689549290ffd0d995043c9ea6f05b0b2a8dfad1f649eac43f
+ checksum: 10c0/c4a4c0b36326bf6d1670d487e06581a3ee2285003da0d2577efe8bac70796f525a22b61b479350c779899fae641b57ff52a2c55142b6cda887a75eb0d078e06f
languageName: node
linkType: hard
"@smithy/hash-stream-node@npm:^4.0.0":
- version: 4.0.1
- resolution: "@smithy/hash-stream-node@npm:4.0.1"
+ version: 4.0.0
+ resolution: "@smithy/hash-stream-node@npm:4.0.0"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/c214460da504008905dff7c654cc8b49dfcb060fedef77e63fc36e3c71972be39b018e4a5618e3efb654a6b63a604975521c161ae4614d2580a4c821dfb6e1d5
+ checksum: 10c0/a5afbab36c5fbdf7bfeea0f8deef4070ad11431740db7b2da2881774764d1f4a383ab7b5ace196c17b183729024d96caef4157e8c704cb5652e6275d16351494
languageName: node
linkType: hard
"@smithy/invalid-dependency@npm:^4.0.0":
- version: 4.0.1
- resolution: "@smithy/invalid-dependency@npm:4.0.1"
+ version: 4.0.0
+ resolution: "@smithy/invalid-dependency@npm:4.0.0"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/74bebdffb6845f6060eed482ad6e921df66af90d2f8c63f39a3bb334fa68a3e3aa8bd5cd7aa5f65628857e235e113895433895db910ba290633daa0df5725eb7
+ checksum: 10c0/bf9192baecea26a176cca24266229e3ad354b95c1098f9f1d2fe76089ccd6222669ff9153c4889d950ad61981116adad40c017ecfa05d7798328afd3e9cc662f
languageName: node
linkType: hard
@@ -2578,213 +2757,213 @@ __metadata:
linkType: hard
"@smithy/md5-js@npm:^4.0.0":
- version: 4.0.1
- resolution: "@smithy/md5-js@npm:4.0.1"
+ version: 4.0.0
+ resolution: "@smithy/md5-js@npm:4.0.0"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/b5e3fa1d31832535b3a35d0a52ebf983da7cf1a1658b6a7f8bcc948cde808eb361696575d78e5e5df92f3c9b9569b5a1f2d1dff7b465d0a803fa901e0286599d
+ checksum: 10c0/d7a20801287c0f4eed9d5dd8c1ce8dbabea3cab3121561a8826b443ae0eea45eb7ffccea14aad1023efd4c7385892a7d3db0d7e4178e5c430457d5541ae3f02f
languageName: node
linkType: hard
"@smithy/middleware-content-length@npm:^4.0.0":
- version: 4.0.1
- resolution: "@smithy/middleware-content-length@npm:4.0.1"
+ version: 4.0.0
+ resolution: "@smithy/middleware-content-length@npm:4.0.0"
dependencies:
- "@smithy/protocol-http": "npm:^5.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/protocol-http": "npm:^5.0.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/3dfbfe658cc8636e9e923a10151a32c6234897c4a86856e55fe4fadc322b3f3e977e50d15553afcb34cadb213de2d95a82af9c8f735e758f4dc21a031e8ecb17
+ checksum: 10c0/1e3eb15e29d2e930c8449eaa8efda03ca58d97e664e46a1d9880b6a805000c992ba0159099449850f90884256ed09d9fe184e2bb08c2f737642d4ba9ae23bda0
languageName: node
linkType: hard
-"@smithy/middleware-endpoint@npm:^4.0.0, @smithy/middleware-endpoint@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/middleware-endpoint@npm:4.0.1"
- dependencies:
- "@smithy/core": "npm:^3.1.0"
- "@smithy/middleware-serde": "npm:^4.0.1"
- "@smithy/node-config-provider": "npm:^4.0.1"
- "@smithy/shared-ini-file-loader": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
- "@smithy/url-parser": "npm:^4.0.1"
- "@smithy/util-middleware": "npm:^4.0.1"
+"@smithy/middleware-endpoint@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/middleware-endpoint@npm:4.0.0"
+ dependencies:
+ "@smithy/core": "npm:^3.0.0"
+ "@smithy/middleware-serde": "npm:^4.0.0"
+ "@smithy/node-config-provider": "npm:^4.0.0"
+ "@smithy/shared-ini-file-loader": "npm:^4.0.0"
+ "@smithy/types": "npm:^4.0.0"
+ "@smithy/url-parser": "npm:^4.0.0"
+ "@smithy/util-middleware": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/b47425491804adbe1264a8d8fc1769104aa29a9951f77f1979d142ef46e436dd88901c72ee9d53276c6593bbb4f6d191c558ddc142653536cc61e80cc3c5ba34
+ checksum: 10c0/33a478958fdb24cf388db4584f7f3f471fcea77bd0ddea8fa1e65f66adf09aa92d20bc604be47b76b7074d4ab3a96b542a1dea12a43fb84e5e7082b035459028
languageName: node
linkType: hard
"@smithy/middleware-retry@npm:^4.0.0":
- version: 4.0.2
- resolution: "@smithy/middleware-retry@npm:4.0.2"
- dependencies:
- "@smithy/node-config-provider": "npm:^4.0.1"
- "@smithy/protocol-http": "npm:^5.0.1"
- "@smithy/service-error-classification": "npm:^4.0.1"
- "@smithy/smithy-client": "npm:^4.1.1"
- "@smithy/types": "npm:^4.1.0"
- "@smithy/util-middleware": "npm:^4.0.1"
- "@smithy/util-retry": "npm:^4.0.1"
+ version: 4.0.0
+ resolution: "@smithy/middleware-retry@npm:4.0.0"
+ dependencies:
+ "@smithy/node-config-provider": "npm:^4.0.0"
+ "@smithy/protocol-http": "npm:^5.0.0"
+ "@smithy/service-error-classification": "npm:^4.0.0"
+ "@smithy/smithy-client": "npm:^4.0.0"
+ "@smithy/types": "npm:^4.0.0"
+ "@smithy/util-middleware": "npm:^4.0.0"
+ "@smithy/util-retry": "npm:^4.0.0"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
- checksum: 10c0/9226ddea605d475b3e7d68bda155dbc6c18dc6bd817695a3ec1c484c1321946ab8c8b5e5c4a5a2502675d6287cf9cdb532b0c7a55a7dfc13b43e3bba87bc0cd3
+ checksum: 10c0/83a96a951dc4de2cac046a7c08b7ebe1f5ac0c2abd7007027037794fa49f1b4b85a975c220a7d77490a41ec0f8ebc710da6859b6694d96e806362a28ad90e630
languageName: node
linkType: hard
-"@smithy/middleware-serde@npm:^4.0.0, @smithy/middleware-serde@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/middleware-serde@npm:4.0.1"
+"@smithy/middleware-serde@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/middleware-serde@npm:4.0.0"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/b133aa4b5c98da47a38225310ba2e6feea712d98f8ccae81825c1eec5a006214dbbb4b89415b9ad644f9cbcabe5461f84032cf4a3d0d68b705b9a73e29af80e2
+ checksum: 10c0/68c190480450c05df35f83203d460b8b540ec8c75927075ee01fe736015663ed7807be98937669ca3ac5506a840ae50d614157c3562f8de7222ebee55ddf11d4
languageName: node
linkType: hard
-"@smithy/middleware-stack@npm:^4.0.0, @smithy/middleware-stack@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/middleware-stack@npm:4.0.1"
+"@smithy/middleware-stack@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/middleware-stack@npm:4.0.0"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/b7f710e263e37a8c80c8d31c7d8fe5f66dec2955cde412054eefcc8df53905e1e2e53a01fd7930eb82c82a3a28eadd00e69f07dfc6e793b1d9272db58a982e9b
+ checksum: 10c0/1c86ca1043ddff7997c5e2e88481a08713a5d3e930eea61678fa9c580c9cf07d09ed05a878d6eb85ac51f972926b449c3dab92d28de894577ae80e09e92e2428
languageName: node
linkType: hard
-"@smithy/node-config-provider@npm:^4.0.0, @smithy/node-config-provider@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/node-config-provider@npm:4.0.1"
+"@smithy/node-config-provider@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/node-config-provider@npm:4.0.0"
dependencies:
- "@smithy/property-provider": "npm:^4.0.1"
- "@smithy/shared-ini-file-loader": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/property-provider": "npm:^4.0.0"
+ "@smithy/shared-ini-file-loader": "npm:^4.0.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/f8d3b1fe91eeba41426ec57d62cfbeaed027650b5549fb2ba5bc889c1cfb7880d4fdb5a484d231b3fb2a9c9023c1f4e8907a5d18d75b3787481cde9f87c4d9cb
+ checksum: 10c0/7065ce53705ec74df53bf927fd1f7ccfba8b8a6ec2b3e04482a34abf972da95edf1908871d8bef89aeb842b26c1261451b8643ac45d042148b2f8674a6eb2263
languageName: node
linkType: hard
-"@smithy/node-http-handler@npm:^4.0.0, @smithy/node-http-handler@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/node-http-handler@npm:4.0.1"
+"@smithy/node-http-handler@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/node-http-handler@npm:4.0.0"
dependencies:
- "@smithy/abort-controller": "npm:^4.0.1"
- "@smithy/protocol-http": "npm:^5.0.1"
- "@smithy/querystring-builder": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/abort-controller": "npm:^4.0.0"
+ "@smithy/protocol-http": "npm:^5.0.0"
+ "@smithy/querystring-builder": "npm:^4.0.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/ab6181d6b4754f3c417abe5494807ac74a29fccd6a321d1240ba8ea9699df3d78ff204fa1a447d6415d8c523bf94ffa744d23e5f2608c63ae9cf827b6369c9d8
+ checksum: 10c0/e2e0e97f43fde3b029b24644eec4dadfcd36b7f1d94e1cb5e06b5268b2a29a2509fe795dabf613f32c3982da0b65f5d08e67daba14c4644239b6846f2efdbfe6
languageName: node
linkType: hard
-"@smithy/property-provider@npm:^4.0.0, @smithy/property-provider@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/property-provider@npm:4.0.1"
+"@smithy/property-provider@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/property-provider@npm:4.0.0"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/43960a6bdf25944e1cc9d4ee83bf45ab5641f7e2068c46d5015166c0f035b1752e03847d7c15d3c013f5f0467441c9c5a8d6a0428f5401988035867709e4dea3
+ checksum: 10c0/84ee0769c6c9c9b28c2c8f446fb77d4ac5a8923bcf29bd1a7c82fca54b316aa63fc6ea3bb92b46f3df4dd5685e323cdc555b10063ee6aee56429815e5361d414
languageName: node
linkType: hard
-"@smithy/protocol-http@npm:^5.0.0, @smithy/protocol-http@npm:^5.0.1":
- version: 5.0.1
- resolution: "@smithy/protocol-http@npm:5.0.1"
+"@smithy/protocol-http@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "@smithy/protocol-http@npm:5.0.0"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/87b157cc86c23f7199acad237e5e0cc309b18a2a4162dfd8f99609f6cca403f832b645535e58173e2933b4d96ec71f2df16d04e1bdcf52b7b0fcbdbc0067de93
+ checksum: 10c0/96d82ca90420d6ee0fce3856626fe02e2f3d88a870fc29aba8db24965a4cbf7e06c7c1ec44f2b06233feac9e327ea2e88c22bdd803dcca1c8da1eba3fcc38749
languageName: node
linkType: hard
-"@smithy/querystring-builder@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/querystring-builder@npm:4.0.1"
+"@smithy/querystring-builder@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/querystring-builder@npm:4.0.0"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^4.0.0"
"@smithy/util-uri-escape": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/21f39e3a79458d343f3dec76b38598c49a34a3c4d1d3c23b6c8895eae2b610fb3c704f995a1730599ef7a881216ea064a25bb7dc8abe5bb1ee50dc6078ad97a4
+ checksum: 10c0/c31b95b9a0625a770860d2f66515c30a0bc3dd45cddfb1834f9cbe079bf7d7e5db5a1daea1311060be7a62c0bd00601b0597eafd17383bdcf0545c48d4300923
languageName: node
linkType: hard
-"@smithy/querystring-parser@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/querystring-parser@npm:4.0.1"
+"@smithy/querystring-parser@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/querystring-parser@npm:4.0.0"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/10e5aba13fbb9a602299fb92f02142e291ab5c7cd221e0ca542981414533e081abdd7442de335f2267ee4a9ff8eba4d7ba848455df50d2771f0ddb8b7d8f9d8b
+ checksum: 10c0/dc171ad1c663a3612e7a03531862ce13f54e3c742d2726768b59409986abefdc228cf9b448aa834003998dac96c07c7f4ff39f95761d79017f7a33109a14727f
languageName: node
linkType: hard
-"@smithy/service-error-classification@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/service-error-classification@npm:4.0.1"
+"@smithy/service-error-classification@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/service-error-classification@npm:4.0.0"
dependencies:
- "@smithy/types": "npm:^4.1.0"
- checksum: 10c0/de015fd140bf4e97da34a2283ce73971eb3b3aae53a257000dce0c99b8974a5e76bae9e517545ef58bd00ca8094c813cd1bcf0696c2c51e731418e2a769c744f
+ "@smithy/types": "npm:^4.0.0"
+ checksum: 10c0/4f5779ee816ffa68e291fce2e36eccaaa093f21bf821cce8fc794d2151f3a21222b3e54e929a8d6270cb2f39367e64cc79f06cbbbeacf589d16e596dafa3c3a9
languageName: node
linkType: hard
-"@smithy/shared-ini-file-loader@npm:^4.0.0, @smithy/shared-ini-file-loader@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/shared-ini-file-loader@npm:4.0.1"
+"@smithy/shared-ini-file-loader@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/shared-ini-file-loader@npm:4.0.0"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/0f0173dbe61c8dac6847cc2c5115db5f1292c956c7f0559ce7bc8e5ed196a4b102977445ee1adb72206a15226a1098cdea01e92aa8ce19f4343f1135e7d37bcf
+ checksum: 10c0/b406991fc2053c7d6784e5ab30cc3cb578c2096607966a42d9d0a0ef02597f7ae34af075732f8c5db5aff514cb9f0a86d755bc6cbda67488a817392531ceeaa2
languageName: node
linkType: hard
"@smithy/signature-v4@npm:^5.0.0":
- version: 5.0.1
- resolution: "@smithy/signature-v4@npm:5.0.1"
+ version: 5.0.0
+ resolution: "@smithy/signature-v4@npm:5.0.0"
dependencies:
"@smithy/is-array-buffer": "npm:^4.0.0"
- "@smithy/protocol-http": "npm:^5.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/protocol-http": "npm:^5.0.0"
+ "@smithy/types": "npm:^4.0.0"
"@smithy/util-hex-encoding": "npm:^4.0.0"
- "@smithy/util-middleware": "npm:^4.0.1"
+ "@smithy/util-middleware": "npm:^4.0.0"
"@smithy/util-uri-escape": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/a7f118642c9641f813098faad355fc5b54ae215fec589fb238d72d44149248c02e32dcfe034000f151ab665450542df88c70d269f9a3233e01a905ec03512514
+ checksum: 10c0/e71357c8d9cf8ace83f05ecf0a0ef3d132d8bf762680ea28978f5f7b01876bd6ce0f60dd8fa750fd8ab9dbbb23fb3e6dda097dd0ff75bc726194232096cc5af7
languageName: node
linkType: hard
-"@smithy/smithy-client@npm:^4.0.0, @smithy/smithy-client@npm:^4.1.1":
- version: 4.1.1
- resolution: "@smithy/smithy-client@npm:4.1.1"
- dependencies:
- "@smithy/core": "npm:^3.1.0"
- "@smithy/middleware-endpoint": "npm:^4.0.1"
- "@smithy/middleware-stack": "npm:^4.0.1"
- "@smithy/protocol-http": "npm:^5.0.1"
- "@smithy/types": "npm:^4.1.0"
- "@smithy/util-stream": "npm:^4.0.1"
+"@smithy/smithy-client@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/smithy-client@npm:4.0.0"
+ dependencies:
+ "@smithy/core": "npm:^3.0.0"
+ "@smithy/middleware-endpoint": "npm:^4.0.0"
+ "@smithy/middleware-stack": "npm:^4.0.0"
+ "@smithy/protocol-http": "npm:^5.0.0"
+ "@smithy/types": "npm:^4.0.0"
+ "@smithy/util-stream": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/c0df761e3a85f14580789c04a27594e46d8195fabe88848819ef357ebed47062ceec326c8f2ad484100622f64ab87fffac3c77dae195496b25a83cd99b4756d2
+ checksum: 10c0/67038be8786dc35597aaf16c81cb701251d6f27834a00558d0383a6d30b2f0555e8da9fffdef695e08b402bf27f24504e1734b603f92d80c7760680d7c15ba7e
languageName: node
linkType: hard
-"@smithy/types@npm:^4.0.0, @smithy/types@npm:^4.1.0":
- version: 4.1.0
- resolution: "@smithy/types@npm:4.1.0"
+"@smithy/types@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/types@npm:4.0.0"
dependencies:
tslib: "npm:^2.6.2"
- checksum: 10c0/d8817145ea043c5b29783df747ed47c3a1c584fd9d02bbdb609d38b7cb4dded1197ac214ae112744c86abe0537a314dae0edbc0e752bb639ef2d9fb84c67a9d9
+ checksum: 10c0/c145925aca10519fa735ad92ad8de5dc9e6f44f28fad4ceac7bbde9511ab25f108c2ff2887ef7b859c689f8d625f3ef7e3f694d8708a4aaa006f64941e260296
languageName: node
linkType: hard
-"@smithy/url-parser@npm:^4.0.0, @smithy/url-parser@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/url-parser@npm:4.0.1"
+"@smithy/url-parser@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/url-parser@npm:4.0.0"
dependencies:
- "@smithy/querystring-parser": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/querystring-parser": "npm:^4.0.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/fc969b55857b3bcdc920f54bbb9b0c88b5c7695ac7100bea1c7038fd4c9a09ebe0fbb38c4839d39acea28da0d8cb4fea71ffbf362d8aec295acbb94c1b45fc86
+ checksum: 10c0/6eb21e63dceeddc59d7b7c8ddef6103e678b28556d1286f977197d41c5ded2afe500d15ed3bb4ab160e0842f4203e23640522c84791dc32237bf2962202a7b8e
languageName: node
linkType: hard
@@ -2847,41 +3026,41 @@ __metadata:
linkType: hard
"@smithy/util-defaults-mode-browser@npm:^4.0.0":
- version: 4.0.2
- resolution: "@smithy/util-defaults-mode-browser@npm:4.0.2"
+ version: 4.0.0
+ resolution: "@smithy/util-defaults-mode-browser@npm:4.0.0"
dependencies:
- "@smithy/property-provider": "npm:^4.0.1"
- "@smithy/smithy-client": "npm:^4.1.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/property-provider": "npm:^4.0.0"
+ "@smithy/smithy-client": "npm:^4.0.0"
+ "@smithy/types": "npm:^4.0.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/4dc87b93e9020644a93a7aaa66779bd10d604814e66c6737625bf3b7b66a2d61054f27369ddc142e773a40c26bc02ffe38b8c39182f1d591449b58bd98d6f614
+ checksum: 10c0/ef56090d4bf951a76c3d4724e28d277b038c26ee2cf04908f5446565e5b689c45f561aebee171604f98589dc22220f030058d3134e960ec79347bea0bc7e0c95
languageName: node
linkType: hard
"@smithy/util-defaults-mode-node@npm:^4.0.0":
- version: 4.0.2
- resolution: "@smithy/util-defaults-mode-node@npm:4.0.2"
- dependencies:
- "@smithy/config-resolver": "npm:^4.0.1"
- "@smithy/credential-provider-imds": "npm:^4.0.1"
- "@smithy/node-config-provider": "npm:^4.0.1"
- "@smithy/property-provider": "npm:^4.0.1"
- "@smithy/smithy-client": "npm:^4.1.1"
- "@smithy/types": "npm:^4.1.0"
+ version: 4.0.0
+ resolution: "@smithy/util-defaults-mode-node@npm:4.0.0"
+ dependencies:
+ "@smithy/config-resolver": "npm:^4.0.0"
+ "@smithy/credential-provider-imds": "npm:^4.0.0"
+ "@smithy/node-config-provider": "npm:^4.0.0"
+ "@smithy/property-provider": "npm:^4.0.0"
+ "@smithy/smithy-client": "npm:^4.0.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/abbb9b5d51afbdc04108589f6d32a2dffe4b8970f20a6c85a0dad6f79a2e3477239746c0c927f8655ef408049e4958439e37dff836fc2f2d292c230d55a70bd6
+ checksum: 10c0/52d9c85fe7abbde015b96f5259fb65862de4a0991734ab6331707ff94361d0a8dfbb32491c8b24186ceb8774a103ab4ed359ff085fe2790250530f4bb6310cfe
languageName: node
linkType: hard
"@smithy/util-endpoints@npm:^3.0.0":
- version: 3.0.1
- resolution: "@smithy/util-endpoints@npm:3.0.1"
+ version: 3.0.0
+ resolution: "@smithy/util-endpoints@npm:3.0.0"
dependencies:
- "@smithy/node-config-provider": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/node-config-provider": "npm:^4.0.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/fed80f300e6a6e69873e613cdd12f640d33a19fc09a41e3afd536f7ea36f7785edd96fbd0402b6980a0e5dfc9bcb8b37f503d522b4ef317f31f4fd0100c466ff
+ checksum: 10c0/a949360419685607db3eaadfd51f79e7514b70ceae12b1d142f0a033bcea2a3d6d61f9441ee3c0984c6d5fdb958e2fc9c4b8469293126d9789a486904dc72622
languageName: node
linkType: hard
@@ -2894,40 +3073,40 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/util-middleware@npm:^4.0.0, @smithy/util-middleware@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/util-middleware@npm:4.0.1"
+"@smithy/util-middleware@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/util-middleware@npm:4.0.0"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/1dd2b058f392fb6788809f14c2c1d53411f79f6e9f88b515ffd36792f9f5939fe4af96fb5b0486a3d0cd30181783b7a5393dce2e8b83ba62db7c6d3af6572eff
+ checksum: 10c0/00de8c5a169e89452d3cc19dfd5d8a883ce7989701da6961b1fb89b0e5574f15b8b2dc0023f012605158087ab1b7e9325b9eb34f6fd132b36ac1845fdc92bcc4
languageName: node
linkType: hard
-"@smithy/util-retry@npm:^4.0.0, @smithy/util-retry@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/util-retry@npm:4.0.1"
+"@smithy/util-retry@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/util-retry@npm:4.0.0"
dependencies:
- "@smithy/service-error-classification": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/service-error-classification": "npm:^4.0.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/93ef89572651b8a30b9a648292660ae9532508ec6d2577afc62e1d9125fe6d14086e0f70a2981bf9f12256b41a57152368b5ed839cdd2df47ba78dd005615173
+ checksum: 10c0/3525e118b56c62a826df1007155d9ad59989c8d5072eff052c34c2392959ec5967f19951f8f670c8e8e4dfc6da827fc4244ea25e0891ffd74b198ade9fcb4d2e
languageName: node
linkType: hard
-"@smithy/util-stream@npm:^4.0.0, @smithy/util-stream@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/util-stream@npm:4.0.1"
+"@smithy/util-stream@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/util-stream@npm:4.0.0"
dependencies:
- "@smithy/fetch-http-handler": "npm:^5.0.1"
- "@smithy/node-http-handler": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/fetch-http-handler": "npm:^5.0.0"
+ "@smithy/node-http-handler": "npm:^4.0.0"
+ "@smithy/types": "npm:^4.0.0"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-buffer-from": "npm:^4.0.0"
"@smithy/util-hex-encoding": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/066d54981bc2d4aa5aa4026b88a5bfd79605c57c86c279c1811735d9f7fdd0e0fecacaecb727679d360101d5f31f5d68b463ce76fd8f25a38b274bfa62a6c7a5
+ checksum: 10c0/8b1261623cbb7fd62fbc4af666a4645322034623f4fd3d8bbe282a17ee58248f468416a960454f4b974deb2c26609186885f010ae579fcb01e347b0329d26130
languageName: node
linkType: hard
@@ -2961,13 +3140,13 @@ __metadata:
linkType: hard
"@smithy/util-waiter@npm:^4.0.0":
- version: 4.0.2
- resolution: "@smithy/util-waiter@npm:4.0.2"
+ version: 4.0.1
+ resolution: "@smithy/util-waiter@npm:4.0.1"
dependencies:
- "@smithy/abort-controller": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/abort-controller": "npm:^4.0.0"
+ "@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/36ee71b41923ae58d9246745e3b7497fe45577dbb97f6e15dd07b4fddb4f82f32e0b7604c7b388fc92d5cbe49d9499998eda979a77a4a770c1b25686a5aed4ce
+ checksum: 10c0/b10e347773e6a573e369e81af08639da9e580ce6ffa9f2a71d74ed1ffd30ca5fc5ff1a0cff703757285ebe9b5f87a585d79af6c300997f13a58138dca459157a
languageName: node
linkType: hard
@@ -3223,11 +3402,11 @@ __metadata:
linkType: hard
"@types/node@npm:*, @types/node@npm:^22.0.0, @types/node@npm:^22.5.5":
- version: 22.10.6
- resolution: "@types/node@npm:22.10.6"
+ version: 22.10.5
+ resolution: "@types/node@npm:22.10.5"
dependencies:
undici-types: "npm:~6.20.0"
- checksum: 10c0/8b67affc211e5f9c74f7949cda04ca669721e50b83d71b8772a7bed7a4a3c41d663b3a794413f618e763ca6c5da8c234c25ffebcb0737983fc3e7415818ab9a7
+ checksum: 10c0/6a0e7d1fe6a86ef6ee19c3c6af4c15542e61aea2f4cee655b6252efb356795f1f228bc8299921e82924e80ff8eca29b74d9dd0dd5cc1a90983f892f740b480df
languageName: node
linkType: hard
@@ -3239,9 +3418,9 @@ __metadata:
linkType: hard
"@types/qs@npm:*":
- version: 6.9.18
- resolution: "@types/qs@npm:6.9.18"
- checksum: 10c0/790b9091348e06dde2c8e4118b5771ab386a8c22a952139a2eb0675360a2070d0b155663bf6f75b23f258fd0a1f7ffc0ba0f059d99a719332c03c40d9e9cd63b
+ version: 6.9.17
+ resolution: "@types/qs@npm:6.9.17"
+ checksum: 10c0/a183fa0b3464267f8f421e2d66d960815080e8aab12b9aadab60479ba84183b1cdba8f4eff3c06f76675a8e42fe6a3b1313ea76c74f2885c3e25d32499c17d1b
languageName: node
linkType: hard
@@ -3648,10 +3827,10 @@ __metadata:
languageName: node
linkType: hard
-"abbrev@npm:^2.0.0":
- version: 2.0.0
- resolution: "abbrev@npm:2.0.0"
- checksum: 10c0/f742a5a107473946f426c691c08daba61a1d15942616f300b5d32fd735be88fef5cba24201757b6c407fd564555fb48c751cfa33519b2605c8a7aadd22baf372
+"abbrev@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "abbrev@npm:3.0.0"
+ checksum: 10c0/049704186396f571650eb7b22ed3627b77a5aedf98bb83caf2eac81ca2a3e25e795394b0464cfb2d6076df3db6a5312139eac5b6a126ca296ac53c5008069c28
languageName: node
linkType: hard
@@ -3829,7 +4008,14 @@ __metadata:
languageName: node
linkType: hard
-"ansis@npm:^3.5.2, ansis@npm:^3.8.1":
+"ansis@npm:^3.5.2, ansis@npm:^3.6.0":
+ version: 3.7.0
+ resolution: "ansis@npm:3.7.0"
+ checksum: 10c0/001c40ed229966dbd48d7fba49974bf64870134589fa189af4bdcf7dd25056a13c4a6f7ebb82406f70a36e16f138ab8f253f2f0e3951b06c7972e8499a079b53
+ languageName: node
+ linkType: hard
+
+"ansis@npm:^3.9.0":
version: 3.9.0
resolution: "ansis@npm:3.9.0"
checksum: 10c0/5821849b4c09730cf0f3fc747f1c1d2e28675ec36c9cc12d48fed456d680e8511ebd849704e7c824d4713e514761fc719e11e9abf41741cb2a7deaec609c6985
@@ -5465,9 +5651,9 @@ __metadata:
linkType: hard
"electron-to-chromium@npm:^1.5.73":
- version: 1.5.82
- resolution: "electron-to-chromium@npm:1.5.82"
- checksum: 10c0/0d495077406adf4701c2b14d63a10e03128fbff0ca960c3c4132ef9b3ef36378f90618d8ca9f9f909270414b5e90b3912b65d10ea7f33418ea2e429d83593196
+ version: 1.5.79
+ resolution: "electron-to-chromium@npm:1.5.79"
+ checksum: 10c0/ad781ad55add24b5c61c9d77c3a8efeb781ca0de9d9e4dd55658c70447ac41297d0babfd975d59eeab83de5f863ab1309276d310648f0316231340eb9a18590e
languageName: node
linkType: hard
@@ -5694,11 +5880,11 @@ __metadata:
linkType: hard
"es-object-atoms@npm:^1.0.0":
- version: 1.1.1
- resolution: "es-object-atoms@npm:1.1.1"
+ version: 1.0.0
+ resolution: "es-object-atoms@npm:1.0.0"
dependencies:
es-errors: "npm:^1.3.0"
- checksum: 10c0/65364812ca4daf48eb76e2a3b7a89b3f6a2e62a1c420766ce9f692665a29d94fe41fe88b65f24106f449859549711e4b40d9fb8002d862dfd7eb1c512d10be0c
+ checksum: 10c0/1fed3d102eb27ab8d983337bb7c8b159dd2a1e63ff833ec54eea1311c96d5b08223b433060ba240541ca8adba9eee6b0a60cdbf2f80634b784febc9cc8b687b4
languageName: node
linkType: hard
@@ -6103,8 +6289,8 @@ __metadata:
linkType: hard
"eslint-plugin-react@npm:^7.27.0, eslint-plugin-react@npm:^7.33.2":
- version: 7.37.4
- resolution: "eslint-plugin-react@npm:7.37.4"
+ version: 7.37.3
+ resolution: "eslint-plugin-react@npm:7.37.3"
dependencies:
array-includes: "npm:^3.1.8"
array.prototype.findlast: "npm:^1.2.5"
@@ -6126,7 +6312,7 @@ __metadata:
string.prototype.repeat: "npm:^1.0.0"
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
- checksum: 10c0/4acbbdb19669dfa9a162ed8847c3ad1918f6aea1ceb675ee320b5d903b4e463fdef25e15233295b6d0a726fef2ea8b015c527da769c7690932ddc52d5b82ba12
+ checksum: 10c0/e8b267ab928c63e651e35ba936e84098f4189fbaebbf3607341e6affedcfe39f2afba85fb3ef83ec322b32829b22d7433230eb6af0f692d262473c6a19441ba5
languageName: node
linkType: hard
@@ -6459,9 +6645,9 @@ __metadata:
linkType: hard
"fast-uri@npm:^3.0.1":
- version: 3.0.5
- resolution: "fast-uri@npm:3.0.5"
- checksum: 10c0/f5501fd849e02f16f1730d2c8628078718c492b5bc00198068bc5c2880363ae948287fdc8cebfff47465229b517dbeaf668866fbabdff829b4138a899e5c2ba3
+ version: 3.0.6
+ resolution: "fast-uri@npm:3.0.6"
+ checksum: 10c0/74a513c2af0584448aee71ce56005185f81239eab7a2343110e5bad50c39ad4fb19c5a6f99783ead1cac7ccaf3461a6034fda89fffa2b30b6d99b9f21c2f9d29
languageName: node
linkType: hard
@@ -6707,13 +6893,13 @@ __metadata:
linkType: hard
"fs-extra@npm:^11.0.0, fs-extra@npm:^11.2.0":
- version: 11.2.0
- resolution: "fs-extra@npm:11.2.0"
+ version: 11.3.0
+ resolution: "fs-extra@npm:11.3.0"
dependencies:
graceful-fs: "npm:^4.2.0"
jsonfile: "npm:^6.0.1"
universalify: "npm:^2.0.0"
- checksum: 10c0/d77a9a9efe60532d2e790e938c81a02c1b24904ef7a3efb3990b835514465ba720e99a6ea56fd5e2db53b4695319b644d76d5a0e9988a2beef80aa7b1da63398
+ checksum: 10c0/5f95e996186ff45463059feb115a22fb048bdaf7e487ecee8a8646c78ed8fdca63630e3077d4c16ce677051f5e60d3355a06f3cd61f3ca43f48cc58822a44d0a
languageName: node
linkType: hard
@@ -8889,7 +9075,7 @@ __metadata:
languageName: node
linkType: hard
-"nanoid@npm:^3.3.8":
+"nanoid@npm:^3.3.7":
version: 3.3.8
resolution: "nanoid@npm:3.3.8"
bin:
@@ -8964,13 +9150,13 @@ __metadata:
linkType: hard
"nopt@npm:^8.0.0":
- version: 8.0.0
- resolution: "nopt@npm:8.0.0"
+ version: 8.1.0
+ resolution: "nopt@npm:8.1.0"
dependencies:
- abbrev: "npm:^2.0.0"
+ abbrev: "npm:^3.0.0"
bin:
nopt: bin/nopt.js
- checksum: 10c0/19cb986f79abaca2d0f0b560021da7b32ee6fcc3de48f3eaeb0c324d36755c17754f886a754c091f01f740c17caf7d6aea8237b7fbaf39f476ae5e30a249f18f
+ checksum: 10c0/62e9ea70c7a3eb91d162d2c706b6606c041e4e7b547cbbb48f8b3695af457dd6479904d7ace600856bf923dd8d1ed0696f06195c8c20f02ac87c1da0e1d315ef
languageName: node
linkType: hard
@@ -9116,16 +9302,16 @@ __metadata:
linkType: hard
"oclif@npm:^4.14.15":
- version: 4.17.13
- resolution: "oclif@npm:4.17.13"
+ version: 4.17.10
+ resolution: "oclif@npm:4.17.10"
dependencies:
- "@aws-sdk/client-cloudfront": "npm:^3.726.1"
+ "@aws-sdk/client-cloudfront": "npm:^3.716.0"
"@aws-sdk/client-s3": "npm:^3.722.0"
"@inquirer/confirm": "npm:^3.1.22"
"@inquirer/input": "npm:^2.2.4"
"@inquirer/select": "npm:^2.5.0"
"@oclif/core": "npm:^4.2.0"
- "@oclif/plugin-help": "npm:^6.2.21"
+ "@oclif/plugin-help": "npm:^6.2.20"
"@oclif/plugin-not-found": "npm:^3.2.32"
"@oclif/plugin-warn-if-update-available": "npm:^3.1.29"
async-retry: "npm:^1.3.3"
@@ -9145,7 +9331,7 @@ __metadata:
validate-npm-package-name: "npm:^5.0.1"
bin:
oclif: bin/run.js
- checksum: 10c0/f5cd86230c754d99254186a92d78b79f43eedc6a59be98ffcdd6635db0c71d78f0d49c9cac17d5080a512d920583644add4075509f417d404d0db7b9b429a020
+ checksum: 10c0/1c20b9a6f003c1638453aeed04e4fbc0626d55069726e6a7aeb352562e5c59917bf121710ebdc3a0dd39001bdb2322fd5a2b85df909b766a3624b9a8c56f8f61
languageName: node
linkType: hard
@@ -9618,13 +9804,13 @@ __metadata:
linkType: hard
"postcss@npm:^8.4.43":
- version: 8.5.1
- resolution: "postcss@npm:8.5.1"
+ version: 8.4.49
+ resolution: "postcss@npm:8.4.49"
dependencies:
- nanoid: "npm:^3.3.8"
+ nanoid: "npm:^3.3.7"
picocolors: "npm:^1.1.1"
source-map-js: "npm:^1.2.1"
- checksum: 10c0/c4d90c59c98e8a0c102b77d3f4cac190f883b42d63dc60e2f3ed840f16197c0c8e25a4327d2e9a847b45a985612317dc0534178feeebd0a1cf3eb0eecf75cae4
+ checksum: 10c0/f1b3f17aaf36d136f59ec373459f18129908235e65dbdc3aee5eef8eba0756106f52de5ec4682e29a2eab53eb25170e7e871b3e4b52a8f1de3d344a514306be3
languageName: node
linkType: hard
@@ -10638,8 +10824,8 @@ __metadata:
linkType: hard
"sort-package-json@npm:^2.12.0":
- version: 2.13.0
- resolution: "sort-package-json@npm:2.13.0"
+ version: 2.12.0
+ resolution: "sort-package-json@npm:2.12.0"
dependencies:
detect-indent: "npm:^7.0.1"
detect-newline: "npm:^4.0.0"
@@ -10651,7 +10837,7 @@ __metadata:
tinyglobby: "npm:^0.2.9"
bin:
sort-package-json: cli.js
- checksum: 10c0/16765fead87546d7c51ee0863e43d69a9bc0447dd0ede6551c693a74e8a75fdf4a1a78643424ae5f7a702643901dc1813a277f155554fd3c3f727fa8768f1d76
+ checksum: 10c0/3c6b31068cfdd06a09993fa149e23d52ba33fe4cb54868aef06c4e589a1ad701b2cd74ff552749d06fbc2c64183fe0a0aee82fbef312f7f3cc14dd043430dc8f
languageName: node
linkType: hard
@@ -11343,11 +11529,11 @@ __metadata:
linkType: hard
"tough-cookie@npm:^5.0.0":
- version: 5.1.0
- resolution: "tough-cookie@npm:5.1.0"
+ version: 5.0.0
+ resolution: "tough-cookie@npm:5.0.0"
dependencies:
tldts: "npm:^6.1.32"
- checksum: 10c0/cae151040c9fc43169a1cac5af5c6d56aa3d31435b985fd5749669430d45a0c3a3be03991b210af40c1aa175050955b57509f8d275bd06735e7e268a7e0b78af
+ checksum: 10c0/4a69c885bf6f45c5a64e60262af99e8c0d58a33bd3d0ce5da62121eeb9c00996d0128a72df8fc4614cbde59cc8b70aa3e21e4c3c98c2bbde137d7aba7fa00124
languageName: node
linkType: hard