From 170cd5f2252a9310a9aed884e980a574864e2211 Mon Sep 17 00:00:00 2001 From: Jordan Labrosse Date: Thu, 15 Jun 2023 17:10:08 +0200 Subject: [PATCH] refactor(kratos-hydra-example): refactoring example to using Kratos SelfService UI Node Docker image --- kratos-hydra/.dockerignore | 3 - kratos-hydra/.gitignore | 109 - kratos-hydra/.npmignore | 2 - kratos-hydra/.prettierignore | 7 - kratos-hydra/.reference-ignore | 3 - kratos-hydra/Dockerfile | 28 - kratos-hydra/Dockerfile-dev | 17 - kratos-hydra/Makefile | 60 - kratos-hydra/README.md | 44 +- kratos-hydra/contrib/hydra/README.md | 38 - kratos-hydra/contrib/hydra/pg-init/pg-init.sh | 22 - kratos-hydra/contrib/sdk/.gitignore | 3 - kratos-hydra/contrib/sdk/api.json | 5523 --------------- kratos-hydra/contrib/sdk/typescript.yml | 7 - .../{contrib/hydra => }/docker-compose.yml | 7 +- kratos-hydra/hydra/hydra.yml | 19 + .../hydra => }/kratos/identity.schema.json | 0 .../{contrib/hydra => }/kratos/kratos.yml | 1 - kratos-hydra/nodemon.json | 5 - kratos-hydra/openapitools.json | 7 - kratos-hydra/package-lock.json | 5903 ----------------- kratos-hydra/package.json | 67 - kratos-hydra/public/auth-layout.css | 8 - kratos-hydra/public/content-layout.css | 117 - kratos-hydra/public/favico.png | Bin 78488 -> 0 bytes kratos-hydra/public/main.css | 119 - kratos-hydra/public/ory-logo.svg | 8 - kratos-hydra/public/ory-small.svg | 8 - kratos-hydra/src/index.ts | 80 - kratos-hydra/src/pkg/index.ts | 109 - kratos-hydra/src/pkg/logger.ts | 12 - kratos-hydra/src/pkg/middleware.ts | 108 - kratos-hydra/src/pkg/route.ts | 28 - kratos-hydra/src/pkg/sdk/index.ts | 61 - kratos-hydra/src/pkg/ui.ts | 152 - kratos-hydra/src/routes/404.ts | 24 - kratos-hydra/src/routes/500.ts | 26 - kratos-hydra/src/routes/consent.ts | 286 - kratos-hydra/src/routes/error.ts | 61 - kratos-hydra/src/routes/health.ts | 10 - kratos-hydra/src/routes/index.ts | 16 - kratos-hydra/src/routes/login.ts | 130 - kratos-hydra/src/routes/recovery.ts | 71 - kratos-hydra/src/routes/registration.ts | 118 - kratos-hydra/src/routes/sessions.ts | 102 - kratos-hydra/src/routes/settings.ts | 201 - kratos-hydra/src/routes/static.ts | 25 - kratos-hydra/src/routes/stub/oidc-cert.ts | 88 - kratos-hydra/src/routes/verification.ts | 73 - kratos-hydra/src/routes/welcome.ts | 92 - kratos-hydra/tsconfig.json | 16 - kratos-hydra/types/express/index.d.ts | 10 - kratos-hydra/views/consent.hbs | 3 - kratos-hydra/views/error.hbs | 1 - kratos-hydra/views/layouts/auth.hbs | 15 - kratos-hydra/views/layouts/settings.hbs | 19 - kratos-hydra/views/layouts/welcome.hbs | 19 - kratos-hydra/views/login.hbs | 13 - kratos-hydra/views/partials/fork_me.hbs | 10 - kratos-hydra/views/partials/messages.hbs | 5 - kratos-hydra/views/partials/ory_branding.hbs | 3 - .../views/partials/standard_headers.hbs | 18 - kratos-hydra/views/partials/ui.hbs | 4 - .../views/partials/ui_docs_button.hbs | 9 - .../views/partials/ui_node_anchor.hbs | 13 - kratos-hydra/views/partials/ui_node_image.hbs | 6 - .../views/partials/ui_node_input_button.hbs | 18 - .../views/partials/ui_node_input_checkbox.hbs | 26 - .../views/partials/ui_node_input_default.hbs | 22 - .../views/partials/ui_node_input_hidden.hbs | 4 - .../views/partials/ui_node_input_password.hbs | 9 - .../partials/ui_node_input_social_button.hbs | 18 - .../views/partials/ui_node_script.hbs | 9 - kratos-hydra/views/partials/ui_node_text.hbs | 25 - kratos-hydra/views/partials/ui_nodes.hbs | 3 - .../views/partials/ui_screen_button.hbs | 21 - kratos-hydra/views/recovery.hbs | 3 - kratos-hydra/views/registration.hbs | 14 - kratos-hydra/views/session.hbs | 58 - kratos-hydra/views/settings.hbs | 28 - kratos-hydra/views/verification.hbs | 3 - kratos-hydra/views/welcome.hbs | 29 - 82 files changed, 61 insertions(+), 14401 deletions(-) delete mode 100644 kratos-hydra/.dockerignore delete mode 100644 kratos-hydra/.gitignore delete mode 100644 kratos-hydra/.npmignore delete mode 100644 kratos-hydra/.prettierignore delete mode 100644 kratos-hydra/.reference-ignore delete mode 100644 kratos-hydra/Dockerfile delete mode 100644 kratos-hydra/Dockerfile-dev delete mode 100644 kratos-hydra/Makefile delete mode 100644 kratos-hydra/contrib/hydra/README.md delete mode 100755 kratos-hydra/contrib/hydra/pg-init/pg-init.sh delete mode 100644 kratos-hydra/contrib/sdk/.gitignore delete mode 100755 kratos-hydra/contrib/sdk/api.json delete mode 100644 kratos-hydra/contrib/sdk/typescript.yml rename kratos-hydra/{contrib/hydra => }/docker-compose.yml (95%) create mode 100644 kratos-hydra/hydra/hydra.yml rename kratos-hydra/{contrib/hydra => }/kratos/identity.schema.json (100%) rename kratos-hydra/{contrib/hydra => }/kratos/kratos.yml (95%) delete mode 100644 kratos-hydra/nodemon.json delete mode 100644 kratos-hydra/openapitools.json delete mode 100644 kratos-hydra/package-lock.json delete mode 100644 kratos-hydra/package.json delete mode 100644 kratos-hydra/public/auth-layout.css delete mode 100644 kratos-hydra/public/content-layout.css delete mode 100644 kratos-hydra/public/favico.png delete mode 100644 kratos-hydra/public/main.css delete mode 100644 kratos-hydra/public/ory-logo.svg delete mode 100644 kratos-hydra/public/ory-small.svg delete mode 100644 kratos-hydra/src/index.ts delete mode 100644 kratos-hydra/src/pkg/index.ts delete mode 100644 kratos-hydra/src/pkg/logger.ts delete mode 100644 kratos-hydra/src/pkg/middleware.ts delete mode 100644 kratos-hydra/src/pkg/route.ts delete mode 100644 kratos-hydra/src/pkg/sdk/index.ts delete mode 100644 kratos-hydra/src/pkg/ui.ts delete mode 100644 kratos-hydra/src/routes/404.ts delete mode 100644 kratos-hydra/src/routes/500.ts delete mode 100644 kratos-hydra/src/routes/consent.ts delete mode 100644 kratos-hydra/src/routes/error.ts delete mode 100644 kratos-hydra/src/routes/health.ts delete mode 100644 kratos-hydra/src/routes/index.ts delete mode 100644 kratos-hydra/src/routes/login.ts delete mode 100644 kratos-hydra/src/routes/recovery.ts delete mode 100644 kratos-hydra/src/routes/registration.ts delete mode 100644 kratos-hydra/src/routes/sessions.ts delete mode 100644 kratos-hydra/src/routes/settings.ts delete mode 100644 kratos-hydra/src/routes/static.ts delete mode 100644 kratos-hydra/src/routes/stub/oidc-cert.ts delete mode 100644 kratos-hydra/src/routes/verification.ts delete mode 100644 kratos-hydra/src/routes/welcome.ts delete mode 100644 kratos-hydra/tsconfig.json delete mode 100644 kratos-hydra/types/express/index.d.ts delete mode 100644 kratos-hydra/views/consent.hbs delete mode 100644 kratos-hydra/views/error.hbs delete mode 100644 kratos-hydra/views/layouts/auth.hbs delete mode 100644 kratos-hydra/views/layouts/settings.hbs delete mode 100644 kratos-hydra/views/layouts/welcome.hbs delete mode 100644 kratos-hydra/views/login.hbs delete mode 100644 kratos-hydra/views/partials/fork_me.hbs delete mode 100644 kratos-hydra/views/partials/messages.hbs delete mode 100644 kratos-hydra/views/partials/ory_branding.hbs delete mode 100644 kratos-hydra/views/partials/standard_headers.hbs delete mode 100644 kratos-hydra/views/partials/ui.hbs delete mode 100644 kratos-hydra/views/partials/ui_docs_button.hbs delete mode 100644 kratos-hydra/views/partials/ui_node_anchor.hbs delete mode 100644 kratos-hydra/views/partials/ui_node_image.hbs delete mode 100644 kratos-hydra/views/partials/ui_node_input_button.hbs delete mode 100644 kratos-hydra/views/partials/ui_node_input_checkbox.hbs delete mode 100644 kratos-hydra/views/partials/ui_node_input_default.hbs delete mode 100644 kratos-hydra/views/partials/ui_node_input_hidden.hbs delete mode 100644 kratos-hydra/views/partials/ui_node_input_password.hbs delete mode 100644 kratos-hydra/views/partials/ui_node_input_social_button.hbs delete mode 100644 kratos-hydra/views/partials/ui_node_script.hbs delete mode 100644 kratos-hydra/views/partials/ui_node_text.hbs delete mode 100644 kratos-hydra/views/partials/ui_nodes.hbs delete mode 100644 kratos-hydra/views/partials/ui_screen_button.hbs delete mode 100644 kratos-hydra/views/recovery.hbs delete mode 100644 kratos-hydra/views/registration.hbs delete mode 100644 kratos-hydra/views/session.hbs delete mode 100644 kratos-hydra/views/settings.hbs delete mode 100644 kratos-hydra/views/verification.hbs delete mode 100644 kratos-hydra/views/welcome.hbs diff --git a/kratos-hydra/.dockerignore b/kratos-hydra/.dockerignore deleted file mode 100644 index febfd09e..00000000 --- a/kratos-hydra/.dockerignore +++ /dev/null @@ -1,3 +0,0 @@ -node_modules/ -lib/ -.git diff --git a/kratos-hydra/.gitignore b/kratos-hydra/.gitignore deleted file mode 100644 index 2625fa3b..00000000 --- a/kratos-hydra/.gitignore +++ /dev/null @@ -1,109 +0,0 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -lerna-debug.log* - -# Diagnostic reports (https://nodejs.org/api/report.html) -report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json - -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage -*.lcov - -# nyc test coverage -.nyc_output - -# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (https://nodejs.org/api/addons.html) -build/Release - -# Dependency directories -node_modules/ -jspm_packages/ - -# TypeScript cache -*.tsbuildinfo - -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Microbundle cache -.rpt2_cache/ -.rts2_cache_cjs/ -.rts2_cache_es/ -.rts2_cache_umd/ - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# Yarn Integrity file -.yarn-integrity - -# dotenv environment variables file -.env -.env.test - -# parcel-bundler cache (https://parceljs.org/) -.cache - -# next.js build output -.next - -# nuxt.js build output -.nuxt - -# gatsby files -.cache/ - -# vuepress build output -.vuepress/dist - -# Serverless directories -.serverless/ - -# FuseBox cache -.fusebox/ - -# DynamoDB Local files -.dynamodb/ - -# TernJS port file -.tern-port - -lib -.idea -.bin - -pnpm-lock.yaml - -.vscode - -# Ignore the elements repository that gets cloned in on npm install -elements/ -.bin/ diff --git a/kratos-hydra/.npmignore b/kratos-hydra/.npmignore deleted file mode 100644 index 94ea8c89..00000000 --- a/kratos-hydra/.npmignore +++ /dev/null @@ -1,2 +0,0 @@ -!dist -elements \ No newline at end of file diff --git a/kratos-hydra/.prettierignore b/kratos-hydra/.prettierignore deleted file mode 100644 index 40534160..00000000 --- a/kratos-hydra/.prettierignore +++ /dev/null @@ -1,7 +0,0 @@ -*.hbs -.github/pull_request_template.md -CONTRIBUTING.md -contrib/sdk -public/flexboxgrid.min.css - -elements/ \ No newline at end of file diff --git a/kratos-hydra/.reference-ignore b/kratos-hydra/.reference-ignore deleted file mode 100644 index eee2a89c..00000000 --- a/kratos-hydra/.reference-ignore +++ /dev/null @@ -1,3 +0,0 @@ -**/node_modules -docs -CHANGELOG.md diff --git a/kratos-hydra/Dockerfile b/kratos-hydra/Dockerfile deleted file mode 100644 index 257c6bc6..00000000 --- a/kratos-hydra/Dockerfile +++ /dev/null @@ -1,28 +0,0 @@ -FROM node:18.12.1-alpine - -RUN mkdir -p /usr/src/app -WORKDIR /usr/src/app - -ARG LINK=no - -RUN adduser -S ory -D -u 10000 -s /bin/nologin - -COPY package.json . -COPY package-lock.json . - -RUN npm ci --fetch-timeout=600000 - -COPY . /usr/src/app - -RUN if [ "$LINK" == "true" ]; then (cd ./contrib/sdk/generated; rm -rf node_modules; npm ci; npm run build); \ - cp -r ./contrib/sdk/generated/* node_modules/@ory/kratos-client/; \ - fi - -RUN npm run build - -USER 10000 - -ENTRYPOINT ["/bin/sh", "-c"] -CMD ["npm run serve"] - -EXPOSE 3000 diff --git a/kratos-hydra/Dockerfile-dev b/kratos-hydra/Dockerfile-dev deleted file mode 100644 index ade6ebb4..00000000 --- a/kratos-hydra/Dockerfile-dev +++ /dev/null @@ -1,17 +0,0 @@ -FROM node:17.0-alpine - -RUN mkdir -p /usr/src/app &&\ - chown -R nobody:nogroup /usr/src/app - -ENV HOME=/usr/src/app -WORKDIR /usr/src/app -USER nobody - -ADD --chown=nobody:nogroup ./package* ./ -RUN npm ci --fetch-timeout=600000 - -EXPOSE 3000 -ENTRYPOINT ["npm", "run"] -CMD ["start"] - -COPY --chown=nobody:nogroup . . diff --git a/kratos-hydra/Makefile b/kratos-hydra/Makefile deleted file mode 100644 index 615e3b0b..00000000 --- a/kratos-hydra/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -rand := $(shell openssl rand -hex 6) - -.PHONY: docker-dev-build -docker-dev-build: - docker build -f ./Dockerfile-dev -t oryd/kratos-selfservice-ui-node:latest . - -.PHONY: docker -docker: - docker build -t oryd/kratos-selfservice-ui-node:latest . - -.PHONY: build-sdk -build-sdk: - (cd $$KRATOS_DIR; make sdk) - cp $$KRATOS_DIR/spec/api.json ./contrib/sdk/api.json - npx @openapitools/openapi-generator-cli generate -i "./contrib/sdk/api.json" \ - -g typescript-axios \ - -o "./contrib/sdk/generated" \ - --git-user-id ory \ - --git-repo-id sdk \ - --git-host github.com \ - -c ./contrib/sdk/typescript.yml - (cd ./contrib/sdk/generated; npm i; npm run build) - rm -rf node_modules/@ory/kratos-client/* - cp -r ./contrib/sdk/generated/* node_modules/@ory/client - -.PHONY: publish-sdk -publish-sdk: build-sdk - (cd ./contrib/sdk/generated/; \ - npm --no-git-tag-version version v0.0.0-next.$(rand) && \ - npm publish) - rm -rf node_modules/@ory/client/* - sleep 15 - npm i @ory/client@0.0.0-next.$(rand) - -.PHONY: build-sdk-docker -build-sdk-docker: build-sdk - docker build -t oryd/kratos-selfservice-ui-node:latest . --build-arg LINK=true - -.PHONY: clean-sdk -clean-sdk: - rm -rf node_modules/@ory/client/ - npm i - -format: .bin/ory node_modules - .bin/ory dev headers copyright --type=open-source --exclude=.prettierrc.js --exclude=types - npm exec -- prettier --write . - -licenses: .bin/licenses node_modules # checks open-source licenses - .bin/licenses - -.bin/licenses: Makefile - curl https://raw.githubusercontent.com/ory/ci/master/licenses/install | sh - -.bin/ory: Makefile - curl https://raw.githubusercontent.com/ory/meta/master/install.sh | bash -s -- -b .bin ory v0.2.1 - touch .bin/ory - -node_modules: package-lock.json - npm ci - touch node_modules diff --git a/kratos-hydra/README.md b/kratos-hydra/README.md index f1420b1a..b9c4359b 100644 --- a/kratos-hydra/README.md +++ b/kratos-hydra/README.md @@ -29,8 +29,6 @@ You'll need the following software to run this example: The example uses the following environment variables: -- DATABASE_URL: The URL of the database used by Ory Kratos - - PUBLIC_PORT: The public port of the Ory Hydra server - ADMIN_PORT: The admin port of the Ory Hydra server @@ -52,11 +50,49 @@ URLS_SELF_ISSUER=http://localhost:4445/ To run the example locally, clone the repository and run the following commands in the root of the project: -``` +```shell script docker-compose up ``` -This will start the Ory Hydra and Ory Kratos servers in Docker containers. +This will start the Ory Hydra, Ory Kratos, Kratos SelfService UI Node servers in +Docker containers. + +Next, create an OAuth2 client and store its data in variable + +```shell script +code_client=$(docker-compose exec hydra \ + hydra create client \ + --endpoint http://127.0.0.1:4445 \ + --grant-type authorization_code,refresh_token \ + --response-type code,id_token \ + --format json \ + --scope openid --scope offline \ + --redirect-uri http://127.0.0.1:5555/callback) +``` + +Store OAuth2 client identifier and secret in variables + +```shell script +code_client_id=$(echo $code_client | jq -r '.client_id') +``` + +```shell script +code_client_secret=$(echo $code_client | jq -r '.client_secret') +``` + +And perform an OAuth2 Authorize Code Flow + +```shell script +docker-compose exec hydra \ + hydra perform authorization-code \ + --client-id $code_client_id \ + --client-secret $code_client_secret \ + --endpoint http://127.0.0.1:4444/ \ + --port 5555 \ + --scope openid --scope offline +``` + +And navigate to http://127.0.0.1:5555 in your browser ### Run tests diff --git a/kratos-hydra/contrib/hydra/README.md b/kratos-hydra/contrib/hydra/README.md deleted file mode 100644 index 670929a6..00000000 --- a/kratos-hydra/contrib/hydra/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# ORY Kratos as Login Provider for ORY Hydra - -**Warning: ** this is a preliminary example and will properly be implemented in -ORY Kratos directly. - -For now, to run this example execute: - -```shell script -$ docker-compose up --build -``` - -Next, create an OAuth2 Client - -```shell script -$ code_client=$(docker-compose exec hydra \ - hydra create client \ - --endpoint http://127.0.0.1:4445 \ - --grant-type authorization_code,refresh_token \ - --response-type code,id_token \ - --format json \ - --scope openid --scope offline \ - --redirect-uri http://127.0.0.1:5555/callback) - -code_client_id=$(echo $code_client | jq -r '.client_id') -code_client_secret=$(echo $code_client | jq -r '.client_secret') -``` - -and perform an OAuth2 Authorize Code Flow - -```shell script -$ docker-compose exec hydra \ - hydra perform authorization-code \ - --client-id $code_client_id \ - --client-secret $code_client_secret \ - --endpoint http://127.0.0.1:4444/ \ - --port 5555 \ - --scope openid --scope offline -``` diff --git a/kratos-hydra/contrib/hydra/pg-init/pg-init.sh b/kratos-hydra/contrib/hydra/pg-init/pg-init.sh deleted file mode 100755 index 4114e0b8..00000000 --- a/kratos-hydra/contrib/hydra/pg-init/pg-init.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -set -e -set -u - -function create_user_and_database() { - local database=$1 - echo " Creating user and database '$database'" - psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" <<-EOSQL - CREATE USER $database; - CREATE DATABASE $database; - GRANT ALL PRIVILEGES ON DATABASE $database TO $database; -EOSQL -} - -if [ -n "$POSTGRES_MULTIPLE_DATABASES" ]; then - echo "Multiple database creation requested: $POSTGRES_MULTIPLE_DATABASES" - for db in $(echo $POSTGRES_MULTIPLE_DATABASES | tr ',' ' '); do - create_user_and_database $db - done - echo "Multiple databases created" -fi diff --git a/kratos-hydra/contrib/sdk/.gitignore b/kratos-hydra/contrib/sdk/.gitignore deleted file mode 100644 index 78151bab..00000000 --- a/kratos-hydra/contrib/sdk/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -generated/ -api.swagger.json -openapi.json \ No newline at end of file diff --git a/kratos-hydra/contrib/sdk/api.json b/kratos-hydra/contrib/sdk/api.json deleted file mode 100755 index d6a50431..00000000 --- a/kratos-hydra/contrib/sdk/api.json +++ /dev/null @@ -1,5523 +0,0 @@ -{ - "components": { - "responses": { - "emptyResponse": { - "description": "Empty responses are sent when, for example, resources are deleted. The HTTP status code for empty responses is typically 201." - } - }, - "schemas": { - "AdminUpdateIdentityBody": { - "properties": { - "credentials": { - "$ref": "#/components/schemas/adminIdentityImportCredentials" - }, - "metadata_admin": { - "description": "Store metadata about the user which is only accessible through admin APIs such as `GET /admin/identities/\u003cid\u003e`." - }, - "metadata_public": { - "description": "Store metadata about the identity which the identity itself can see when calling for example the\nsession endpoint. Do not store sensitive information (e.g. credit score) about the identity in this field." - }, - "schema_id": { - "description": "SchemaID is the ID of the JSON Schema to be used for validating the identity's traits. If set\nwill update the Identity's SchemaID.", - "type": "string" - }, - "state": { - "$ref": "#/components/schemas/identityState" - }, - "traits": { - "description": "Traits represent an identity's traits. The identity is able to create, modify, and delete traits\nin a self-service manner. The input will always be validated against the JSON Schema defined\nin `schema_id`.", - "type": "object" - } - }, - "required": ["schema_id", "traits", "state"], - "type": "object" - }, - "Duration": { - "description": "A Duration represents the elapsed time between two instants\nas an int64 nanosecond count. The representation limits the\nlargest representable duration to approximately 290 years.", - "format": "int64", - "type": "integer" - }, - "ID": { - "format": "int64", - "type": "integer" - }, - "JSONRawMessage": { - "title": "JSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger.", - "type": "object" - }, - "LoginRequest": { - "description": "LoginRequest struct for LoginRequest", - "properties": { - "challenge": { - "description": "ID is the identifier (\\\"login challenge\\\") of the login request. It is used to identify the session.", - "type": "string" - }, - "client": { - "$ref": "#/components/schemas/OAuth2Client" - }, - "oidc_context": { - "$ref": "#/components/schemas/OpenIDConnectContext" - }, - "request_url": { - "description": "RequestURL is the original OAuth 2.0 Authorization URL requested by the OAuth 2.0 client. It is the URL which initiates the OAuth 2.0 Authorization Code or OAuth 2.0 Implicit flow. This URL is typically not needed, but might come in handy if you want to deal with additional request parameters.", - "type": "string" - }, - "requested_access_token_audience": { - "items": { - "type": "string" - }, - "type": "array" - }, - "requested_scope": { - "items": { - "type": "string" - }, - "type": "array" - }, - "session_id": { - "description": "SessionID is the login session ID. If the user-agent reuses a login session (via cookie / remember flag) this ID will remain the same. If the user-agent did not have an existing authentication session (e.g. remember is false) this will be a new random value. This value is used as the \\\"sid\\\" parameter in the ID Token and in OIDC Front-/Back- channel logout. It's value can generally be used to associate consecutive login requests by a certain user.", - "type": "string" - }, - "skip": { - "description": "Skip, if true, implies that the client has requested the same scopes from the same user previously. If true, you can skip asking the user to grant the requested scopes, and simply forward the user to the redirect URL. This feature allows you to update / set session information.", - "type": "boolean" - }, - "subject": { - "description": "Subject is the user ID of the end-user that authenticated. Now, that end user needs to grant or deny the scope requested by the OAuth 2.0 client. If this value is set and `skip` is true, you MUST include this subject type when accepting the login request, or the request will fail.", - "type": "string" - } - }, - "type": "object" - }, - "NullBool": { - "nullable": true, - "type": "boolean" - }, - "NullInt": { - "nullable": true, - "type": "integer" - }, - "NullString": { - "nullable": true, - "type": "string" - }, - "NullTime": { - "format": "date-time", - "nullable": true, - "type": "string" - }, - "NullUUID": { - "format": "uuid4", - "nullable": true, - "type": "string" - }, - "OAuth2Client": { - "description": "OAuth2Client struct for OAuth2Client", - "properties": { - "allowed_cors_origins": { - "items": { - "type": "string" - }, - "type": "array" - }, - "audience": { - "items": { - "type": "string" - }, - "type": "array" - }, - "backchannel_logout_session_required": { - "description": "Boolean value specifying whether the RP requires that a sid (session ID) Claim be included in the Logout Token to identify the RP session with the OP when the backchannel_logout_uri is used. If omitted, the default value is false.", - "type": "boolean" - }, - "backchannel_logout_uri": { - "description": "RP URL that will cause the RP to log itself out when sent a Logout Token by the OP.", - "type": "string" - }, - "client_id": { - "description": "ID is the id for this client.", - "type": "string" - }, - "client_name": { - "description": "Name is the human-readable string name of the client to be presented to the end-user during authorization.", - "type": "string" - }, - "client_secret": { - "description": "Secret is the client's secret. The secret will be included in the create request as cleartext, and then never again. The secret is stored using BCrypt so it is impossible to recover it. Tell your users that they need to write the secret down as it will not be made available again.", - "type": "string" - }, - "client_secret_expires_at": { - "description": "SecretExpiresAt is an integer holding the time at which the client secret will expire or 0 if it will not expire. The time is represented as the number of seconds from 1970-01-01T00:00:00Z as measured in UTC until the date/time of expiration. This feature is currently not supported and it's value will always be set to 0.", - "format": "int64", - "type": "integer" - }, - "client_uri": { - "description": "ClientURI is an URL string of a web page providing information about the client. If present, the server SHOULD display this URL to the end-user in a clickable fashion.", - "type": "string" - }, - "contacts": { - "items": { - "type": "string" - }, - "type": "array" - }, - "created_at": { - "description": "CreatedAt returns the timestamp of the client's creation.", - "format": "date-time", - "type": "string" - }, - "frontchannel_logout_session_required": { - "description": "Boolean value specifying whether the RP requires that iss (issuer) and sid (session ID) query parameters be included to identify the RP session with the OP when the frontchannel_logout_uri is used. If omitted, the default value is false.", - "type": "boolean" - }, - "frontchannel_logout_uri": { - "description": "RP URL that will cause the RP to log itself out when rendered in an iframe by the OP. An iss (issuer) query parameter and a sid (session ID) query parameter MAY be included by the OP to enable the RP to validate the request and to determine which of the potentially multiple sessions is to be logged out; if either is included, both MUST be.", - "type": "string" - }, - "grant_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "jwks": { - "additionalProperties": {}, - "type": "object" - }, - "jwks_uri": { - "description": "URL for the Client's JSON Web Key Set [JWK] document. If the Client signs requests to the Server, it contains the signing key(s) the Server uses to validate signatures from the Client. The JWK Set MAY also contain the Client's encryption keys(s), which are used by the Server to encrypt responses to the Client. When both signing and encryption keys are made available, a use (Key Use) parameter value is REQUIRED for all keys in the referenced JWK Set to indicate each key's intended usage. Although some algorithms allow the same key to be used for both signatures and encryption, doing so is NOT RECOMMENDED, as it is less secure. The JWK x5c parameter MAY be used to provide X.509 representations of keys provided. When used, the bare key values MUST still be present and MUST match those in the certificate.", - "type": "string" - }, - "logo_uri": { - "description": "LogoURI is an URL string that references a logo for the client.", - "type": "string" - }, - "metadata": { - "additionalProperties": {}, - "type": "object" - }, - "owner": { - "description": "Owner is a string identifying the owner of the OAuth 2.0 Client.", - "type": "string" - }, - "policy_uri": { - "description": "PolicyURI is a URL string that points to a human-readable privacy policy document that describes how the deployment organization collects, uses, retains, and discloses personal data.", - "type": "string" - }, - "post_logout_redirect_uris": { - "items": { - "type": "string" - }, - "type": "array" - }, - "redirect_uris": { - "items": { - "type": "string" - }, - "type": "array" - }, - "registration_access_token": { - "description": "RegistrationAccessToken can be used to update, get, or delete the OAuth2 Client.", - "type": "string" - }, - "registration_client_uri": { - "description": "RegistrationClientURI is the URL used to update, get, or delete the OAuth2 Client.", - "type": "string" - }, - "request_object_signing_alg": { - "description": "JWS [JWS] alg algorithm [JWA] that MUST be used for signing Request Objects sent to the OP. All Request Objects from this Client MUST be rejected, if not signed with this algorithm.", - "type": "string" - }, - "request_uris": { - "items": { - "type": "string" - }, - "type": "array" - }, - "response_types": { - "items": { - "type": "string" - }, - "type": "array" - }, - "scope": { - "description": "Scope is a string containing a space-separated list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749]) that the client can use when requesting access tokens.", - "type": "string" - }, - "sector_identifier_uri": { - "description": "URL using the https scheme to be used in calculating Pseudonymous Identifiers by the OP. The URL references a file with a single JSON array of redirect_uri values.", - "type": "string" - }, - "subject_type": { - "description": "SubjectType requested for responses to this Client. The subject_types_supported Discovery parameter contains a list of the supported subject_type values for this server. Valid types include `pairwise` and `public`.", - "type": "string" - }, - "token_endpoint_auth_method": { - "description": "Requested Client Authentication method for the Token Endpoint. The options are client_secret_post, client_secret_basic, private_key_jwt, and none.", - "type": "string" - }, - "token_endpoint_auth_signing_alg": { - "description": "Requested Client Authentication signing algorithm for the Token Endpoint.", - "type": "string" - }, - "tos_uri": { - "description": "TermsOfServiceURI is a URL string that points to a human-readable terms of service document for the client that describes a contractual relationship between the end-user and the client that the end-user accepts when authorizing the client.", - "type": "string" - }, - "updated_at": { - "description": "UpdatedAt returns the timestamp of the last update.", - "format": "date-time", - "type": "string" - }, - "userinfo_signed_response_alg": { - "description": "JWS alg algorithm [JWA] REQUIRED for signing UserInfo Responses. If this is specified, the response will be JWT [JWT] serialized, and signed using JWS. The default, if omitted, is for the UserInfo Response to return the Claims as a UTF-8 encoded JSON object using the application/json content-type.", - "type": "string" - } - }, - "type": "object" - }, - "OpenIDConnectContext": { - "description": "OpenIDConnectContext struct for OpenIDConnectContext", - "properties": { - "acr_values": { - "description": "ACRValues is the Authentication AuthorizationContext Class Reference requested in the OAuth 2.0 Authorization request. It is a parameter defined by OpenID Connect and expresses which level of authentication (e.g. 2FA) is required. OpenID Connect defines it as follows: \u003e Requested Authentication AuthorizationContext Class Reference values. Space-separated string that specifies the acr values that the Authorization Server is being requested to use for processing this Authentication Request, with the values appearing in order of preference. The Authentication AuthorizationContext Class satisfied by the authentication performed is returned as the acr Claim Value, as specified in Section 2. The acr Claim is requested as a Voluntary Claim by this parameter.", - "items": { - "type": "string" - }, - "type": "array" - }, - "display": { - "description": "Display is a string value that specifies how the Authorization Server displays the authentication and consent user interface pages to the End-User. The defined values are: page: The Authorization Server SHOULD display the authentication and consent UI consistent with a full User Agent page view. If the display parameter is not specified, this is the default display mode. popup: The Authorization Server SHOULD display the authentication and consent UI consistent with a popup User Agent window. The popup User Agent window should be of an appropriate size for a login-focused dialog and should not obscure the entire window that it is popping up over. touch: The Authorization Server SHOULD display the authentication and consent UI consistent with a device that leverages a touch interface. wap: The Authorization Server SHOULD display the authentication and consent UI consistent with a \\\"feature phone\\\" type display. The Authorization Server MAY also attempt to detect the capabilities of the User Agent and present an appropriate display.", - "type": "string" - }, - "id_token_hint_claims": { - "additionalProperties": true, - "description": "IDTokenHintClaims are the claims of the ID Token previously issued by the Authorization Server being passed as a hint about the End-User's current or past authenticated session with the Client.", - "type": "object" - }, - "login_hint": { - "description": "LoginHint hints about the login identifier the End-User might use to log in (if necessary). This hint can be used by an RP if it first asks the End-User for their e-mail address (or other identifier) and then wants to pass that value as a hint to the discovered authorization service. This value MAY also be a phone number in the format specified for the phone_number Claim. The use of this parameter is optional.", - "type": "string" - }, - "ui_locales": { - "description": "UILocales is the End-User'id preferred languages and scripts for the user interface, represented as a space-separated list of BCP47 [RFC5646] language tag values, ordered by preference. For instance, the value \\\"fr-CA fr en\\\" represents a preference for French as spoken in Canada, then French (without a region designation), followed by English (without a region designation). An error SHOULD NOT result if some or all of the requested locales are not supported by the OpenID Provider.", - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "RecoveryAddressType": { - "title": "RecoveryAddressType must not exceed 16 characters as that is the limitation in the SQL Schema.", - "type": "string" - }, - "TemplateType": { - "type": "string" - }, - "Time": { - "format": "date-time", - "type": "string" - }, - "UUID": { - "format": "uuid4", - "type": "string" - }, - "adminCreateIdentityBody": { - "properties": { - "credentials": { - "$ref": "#/components/schemas/adminIdentityImportCredentials" - }, - "metadata_admin": { - "description": "Store metadata about the user which is only accessible through admin APIs such as `GET /admin/identities/\u003cid\u003e`." - }, - "metadata_public": { - "description": "Store metadata about the identity which the identity itself can see when calling for example the\nsession endpoint. Do not store sensitive information (e.g. credit score) about the identity in this field." - }, - "recovery_addresses": { - "description": "RecoveryAddresses contains all the addresses that can be used to recover an identity.\n\nUse this structure to import recovery addresses for an identity. Please keep in mind\nthat the address needs to be represented in the Identity Schema or this field will be overwritten\non the next identity update.", - "items": { - "$ref": "#/components/schemas/recoveryIdentityAddress" - }, - "type": "array" - }, - "schema_id": { - "description": "SchemaID is the ID of the JSON Schema to be used for validating the identity's traits.", - "type": "string" - }, - "state": { - "$ref": "#/components/schemas/identityState" - }, - "traits": { - "description": "Traits represent an identity's traits. The identity is able to create, modify, and delete traits\nin a self-service manner. The input will always be validated against the JSON Schema defined\nin `schema_url`.", - "type": "object" - }, - "verifiable_addresses": { - "description": "VerifiableAddresses contains all the addresses that can be verified by the user.\n\nUse this structure to import verified addresses for an identity. Please keep in mind\nthat the address needs to be represented in the Identity Schema or this field will be overwritten\non the next identity update.", - "items": { - "$ref": "#/components/schemas/verifiableIdentityAddress" - }, - "type": "array" - } - }, - "required": ["schema_id", "traits"], - "type": "object" - }, - "adminCreateIdentityImportCredentialsOidc": { - "properties": { - "config": { - "$ref": "#/components/schemas/adminCreateIdentityImportCredentialsOidcConfig" - } - }, - "type": "object" - }, - "adminCreateIdentityImportCredentialsOidcConfig": { - "properties": { - "config": { - "$ref": "#/components/schemas/adminCreateIdentityImportCredentialsPasswordConfig" - }, - "providers": { - "description": "A list of OpenID Connect Providers", - "items": { - "$ref": "#/components/schemas/adminCreateIdentityImportCredentialsOidcProvider" - }, - "type": "array" - } - }, - "type": "object" - }, - "adminCreateIdentityImportCredentialsOidcProvider": { - "properties": { - "provider": { - "description": "The OpenID Connect provider to link the subject to. Usually something like `google` or `github`.", - "type": "string" - }, - "subject": { - "description": "The subject (`sub`) of the OpenID Connect connection. Usually the `sub` field of the ID Token.", - "type": "string" - } - }, - "required": ["subject", "provider"], - "type": "object" - }, - "adminCreateIdentityImportCredentialsPassword": { - "properties": { - "config": { - "$ref": "#/components/schemas/adminCreateIdentityImportCredentialsPasswordConfig" - } - }, - "type": "object" - }, - "adminCreateIdentityImportCredentialsPasswordConfig": { - "properties": { - "hashed_password": { - "description": "The hashed password in [PHC format]( https://www.ory.sh/docs/kratos/concepts/credentials/username-email-password#hashed-password-format)", - "type": "string" - }, - "password": { - "description": "The password in plain text if no hash is available.", - "type": "string" - } - }, - "type": "object" - }, - "adminCreateSelfServiceRecoveryLinkBody": { - "properties": { - "expires_in": { - "description": "Link Expires In\n\nThe recovery link will expire at that point in time. Defaults to the configuration value of\n`selfservice.flows.recovery.request_lifespan`.", - "pattern": "^[0-9]+(ns|us|ms|s|m|h)$", - "type": "string" - }, - "identity_id": { - "description": "Identity to Recover\n\nThe identity's ID you wish to recover.", - "format": "uuid", - "type": "string" - } - }, - "required": ["identity_id"], - "type": "object" - }, - "adminIdentityImportCredentials": { - "properties": { - "oidc": { - "$ref": "#/components/schemas/adminCreateIdentityImportCredentialsOidc" - }, - "password": { - "$ref": "#/components/schemas/adminCreateIdentityImportCredentialsPassword" - } - }, - "type": "object" - }, - "authenticatorAssuranceLevel": { - "description": "The authenticator assurance level can be one of \"aal1\", \"aal2\", or \"aal3\". A higher number means that it is harder\nfor an attacker to compromise the account.\n\nGenerally, \"aal1\" implies that one authentication factor was used while AAL2 implies that two factors (e.g.\npassword + TOTP) have been used.\n\nTo learn more about these levels please head over to: https://www.ory.sh/kratos/docs/concepts/credentials", - "enum": ["aal0", "aal1", "aal2", "aal3"], - "title": "Authenticator Assurance Level (AAL)", - "type": "string" - }, - "courierMessageList": { - "items": { - "$ref": "#/components/schemas/message" - }, - "title": "A list of messages.", - "type": "array" - }, - "courierMessageStatus": { - "description": "A Message's Status", - "enum": ["queued", "sent", "processing", "abandoned"], - "type": "string" - }, - "courierMessageType": { - "description": "It can either be `email` or `phone`", - "enum": ["email", "phone"], - "title": "A Message's Type", - "type": "string" - }, - "errorAuthenticatorAssuranceLevelNotSatisfied": { - "properties": { - "code": { - "description": "The status code", - "example": 404, - "format": "int64", - "type": "integer" - }, - "debug": { - "description": "Debug information\n\nThis field is often not exposed to protect against leaking\nsensitive information.", - "example": "SQL field \"foo\" is not a bool.", - "type": "string" - }, - "details": { - "additionalProperties": {}, - "description": "Further error details", - "type": "object" - }, - "id": { - "description": "The error ID\n\nUseful when trying to identify various errors in application logic.", - "type": "string" - }, - "message": { - "description": "Error message\n\nThe error's message.", - "example": "The resource could not be found", - "type": "string" - }, - "reason": { - "description": "A human-readable reason for the error", - "example": "User with ID 1234 does not exist.", - "type": "string" - }, - "redirect_browser_to": { - "type": "string" - }, - "request": { - "description": "The request ID\n\nThe request ID is often exposed internally in order to trace\nerrors across service architectures. This is often a UUID.", - "example": "d7ef54b1-ec15-46e6-bccb-524b82c035e6", - "type": "string" - }, - "status": { - "description": "The status description", - "example": "Not Found", - "type": "string" - } - }, - "required": ["message"], - "title": "ErrAALNotSatisfied is returned when an active session was found but the requested AAL is not satisfied.", - "type": "object" - }, - "genericError": { - "properties": { - "code": { - "description": "The status code", - "example": 404, - "format": "int64", - "type": "integer" - }, - "debug": { - "description": "Debug information\n\nThis field is often not exposed to protect against leaking\nsensitive information.", - "example": "SQL field \"foo\" is not a bool.", - "type": "string" - }, - "details": { - "additionalProperties": false, - "description": "Further error details", - "type": "object" - }, - "id": { - "description": "The error ID\n\nUseful when trying to identify various errors in application logic.", - "type": "string" - }, - "message": { - "description": "Error message\n\nThe error's message.", - "example": "The resource could not be found", - "type": "string" - }, - "reason": { - "description": "A human-readable reason for the error", - "example": "User with ID 1234 does not exist.", - "type": "string" - }, - "request": { - "description": "The request ID\n\nThe request ID is often exposed internally in order to trace\nerrors across service architectures. This is often a UUID.", - "example": "d7ef54b1-ec15-46e6-bccb-524b82c035e6", - "type": "string" - }, - "status": { - "description": "The status description", - "example": "Not Found", - "type": "string" - } - }, - "required": ["message"], - "type": "object" - }, - "healthNotReadyStatus": { - "properties": { - "errors": { - "additionalProperties": { - "type": "string" - }, - "description": "Errors contains a list of errors that caused the not ready status.", - "type": "object" - } - }, - "type": "object" - }, - "healthStatus": { - "properties": { - "status": { - "description": "Status always contains \"ok\".", - "type": "string" - } - }, - "type": "object" - }, - "identity": { - "description": "An identity can be a real human, a service, an IoT device - everything that\ncan be described as an \"actor\" in a system.", - "properties": { - "created_at": { - "description": "CreatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "credentials": { - "additionalProperties": { - "$ref": "#/components/schemas/identityCredentials" - }, - "description": "Credentials represents all credentials that can be used for authenticating this identity.", - "type": "object" - }, - "id": { - "description": "ID is the identity's unique identifier.\n\nThe Identity ID can not be changed and can not be chosen. This ensures future\ncompatibility and optimization for distributed stores such as CockroachDB.", - "format": "uuid", - "type": "string" - }, - "metadata_admin": { - "$ref": "#/components/schemas/nullJsonRawMessage" - }, - "metadata_public": { - "$ref": "#/components/schemas/nullJsonRawMessage" - }, - "recovery_addresses": { - "description": "RecoveryAddresses contains all the addresses that can be used to recover an identity.", - "items": { - "$ref": "#/components/schemas/recoveryIdentityAddress" - }, - "type": "array", - "x-omitempty": true - }, - "schema_id": { - "description": "SchemaID is the ID of the JSON Schema to be used for validating the identity's traits.", - "type": "string" - }, - "schema_url": { - "description": "SchemaURL is the URL of the endpoint where the identity's traits schema can be fetched from.\n\nformat: url", - "type": "string" - }, - "state": { - "$ref": "#/components/schemas/identityState" - }, - "state_changed_at": { - "$ref": "#/components/schemas/nullTime" - }, - "traits": { - "$ref": "#/components/schemas/identityTraits" - }, - "updated_at": { - "description": "UpdatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "verifiable_addresses": { - "description": "VerifiableAddresses contains all the addresses that can be verified by the user.", - "items": { - "$ref": "#/components/schemas/verifiableIdentityAddress" - }, - "type": "array", - "x-omitempty": true - } - }, - "required": ["id", "schema_id", "schema_url", "traits"], - "title": "Identity represents an Ory Kratos identity", - "type": "object" - }, - "identityCredentials": { - "description": "Credentials represents a specific credential type", - "properties": { - "config": { - "$ref": "#/components/schemas/JSONRawMessage" - }, - "created_at": { - "description": "CreatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "identifiers": { - "description": "Identifiers represents a list of unique identifiers this credential type matches.", - "items": { - "type": "string" - }, - "type": "array" - }, - "type": { - "$ref": "#/components/schemas/identityCredentialsType" - }, - "updated_at": { - "description": "UpdatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "version": { - "description": "Version refers to the version of the credential. Useful when changing the config schema.", - "format": "int64", - "type": "integer" - } - }, - "type": "object" - }, - "identityCredentialsOidc": { - "properties": { - "providers": { - "items": { - "$ref": "#/components/schemas/identityCredentialsOidcProvider" - }, - "type": "array" - } - }, - "title": "CredentialsOIDC is contains the configuration for credentials of the type oidc.", - "type": "object" - }, - "identityCredentialsOidcProvider": { - "properties": { - "initial_access_token": { - "type": "string" - }, - "initial_id_token": { - "type": "string" - }, - "initial_refresh_token": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "subject": { - "type": "string" - } - }, - "title": "CredentialsOIDCProvider is contains a specific OpenID COnnect credential for a particular connection (e.g. Google).", - "type": "object" - }, - "identityCredentialsPassword": { - "properties": { - "hashed_password": { - "description": "HashedPassword is a hash-representation of the password.", - "type": "string" - } - }, - "title": "CredentialsPassword is contains the configuration for credentials of the type password.", - "type": "object" - }, - "identityCredentialsType": { - "description": "and so on.", - "enum": ["password", "totp", "oidc", "webauthn", "lookup_secret"], - "title": "CredentialsType represents several different credential types, like password credentials, passwordless credentials,", - "type": "string" - }, - "identityList": { - "items": { - "$ref": "#/components/schemas/identity" - }, - "title": "A list of identities.", - "type": "array" - }, - "identitySchema": { - "description": "Raw JSON Schema", - "type": "object" - }, - "identitySchemaContainer": { - "properties": { - "id": { - "description": "The ID of the Identity JSON Schema", - "type": "string" - }, - "schema": { - "$ref": "#/components/schemas/identitySchema" - } - }, - "type": "object" - }, - "identitySchemas": { - "description": "Raw identity Schema list", - "items": { - "$ref": "#/components/schemas/identitySchemaContainer" - }, - "type": "array" - }, - "identityState": { - "description": "The state can either be `active` or `inactive`.", - "enum": ["active", "inactive"], - "title": "An Identity's State", - "type": "string" - }, - "identityTraits": { - "description": "Traits represent an identity's traits. The identity is able to create, modify, and delete traits\nin a self-service manner. The input will always be validated against the JSON Schema defined\nin `schema_url`." - }, - "identityVerifiableAddressStatus": { - "description": "VerifiableAddressStatus must not exceed 16 characters as that is the limitation in the SQL Schema", - "type": "string" - }, - "identityVerifiableAddressType": { - "description": "VerifiableAddressType must not exceed 16 characters as that is the limitation in the SQL Schema", - "type": "string" - }, - "jsonError": { - "description": "The standard Ory JSON API error format.", - "properties": { - "error": { - "$ref": "#/components/schemas/genericError" - } - }, - "required": ["error"], - "title": "JSON API Error Response", - "type": "object" - }, - "jsonPatch": { - "description": "A JSONPatch document as defined by RFC 6902", - "properties": { - "from": { - "description": "This field is used together with operation \"move\" and uses JSON Pointer notation.\n\nLearn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).", - "example": "/name", - "type": "string" - }, - "op": { - "description": "The operation to be performed. One of \"add\", \"remove\", \"replace\", \"move\", \"copy\", or \"test\".", - "example": "replace", - "type": "string" - }, - "path": { - "description": "The path to the target path. Uses JSON pointer notation.\n\nLearn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).", - "example": "/name", - "type": "string" - }, - "value": { - "description": "The value to be used within the operations.\n\nLearn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).", - "example": "foobar" - } - }, - "required": ["op", "path"], - "type": "object" - }, - "jsonPatchDocument": { - "description": "A JSONPatchDocument request", - "items": { - "$ref": "#/components/schemas/jsonPatch" - }, - "type": "array" - }, - "message": { - "properties": { - "body": { - "type": "string" - }, - "created_at": { - "description": "CreatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "id": { - "format": "uuid", - "type": "string" - }, - "recipient": { - "type": "string" - }, - "send_count": { - "format": "int64", - "type": "integer" - }, - "status": { - "$ref": "#/components/schemas/courierMessageStatus" - }, - "subject": { - "type": "string" - }, - "template_type": { - "$ref": "#/components/schemas/TemplateType" - }, - "type": { - "$ref": "#/components/schemas/courierMessageType" - }, - "updated_at": { - "description": "UpdatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - } - }, - "type": "object" - }, - "needsPrivilegedSessionError": { - "properties": { - "code": { - "description": "The status code", - "example": 404, - "format": "int64", - "type": "integer" - }, - "debug": { - "description": "Debug information\n\nThis field is often not exposed to protect against leaking\nsensitive information.", - "example": "SQL field \"foo\" is not a bool.", - "type": "string" - }, - "details": { - "additionalProperties": {}, - "description": "Further error details", - "type": "object" - }, - "id": { - "description": "The error ID\n\nUseful when trying to identify various errors in application logic.", - "type": "string" - }, - "message": { - "description": "Error message\n\nThe error's message.", - "example": "The resource could not be found", - "type": "string" - }, - "reason": { - "description": "A human-readable reason for the error", - "example": "User with ID 1234 does not exist.", - "type": "string" - }, - "redirect_browser_to": { - "description": "Points to where to redirect the user to next.", - "type": "string" - }, - "request": { - "description": "The request ID\n\nThe request ID is often exposed internally in order to trace\nerrors across service architectures. This is often a UUID.", - "example": "d7ef54b1-ec15-46e6-bccb-524b82c035e6", - "type": "string" - }, - "status": { - "description": "The status description", - "example": "Not Found", - "type": "string" - } - }, - "required": ["message", "redirect_browser_to"], - "title": "Is sent when a privileged session is required to perform the settings update.", - "type": "object" - }, - "nullDuration": { - "nullable": true, - "pattern": "^[0-9]+(ns|us|ms|s|m|h)$", - "type": "string" - }, - "nullInt64": { - "nullable": true, - "type": "integer" - }, - "nullJsonRawMessage": { - "description": "NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-" - }, - "nullTime": { - "format": "date-time", - "title": "NullTime implements sql.NullTime functionality.", - "type": "string" - }, - "pagination": { - "properties": { - "page": { - "default": 1, - "description": "Pagination Page\n\nThis value is currently an integer, but it is not sequential. The value is not the page number, but a\nreference. The next page can be any number and some numbers might return an empty list.\n\nFor example, page 2 might not follow after page 1. And even if page 3 and 5 exist, but page 4 might not exist.", - "format": "int64", - "minimum": 1, - "type": "integer" - }, - "per_page": { - "default": 250, - "description": "Items per Page\n\nThis is the number of items per page.", - "format": "int64", - "maximum": 1000, - "minimum": 1, - "type": "integer" - } - }, - "type": "object" - }, - "recoveryIdentityAddress": { - "properties": { - "created_at": { - "description": "CreatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "id": { - "format": "uuid", - "type": "string" - }, - "updated_at": { - "description": "UpdatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "value": { - "type": "string" - }, - "via": { - "$ref": "#/components/schemas/RecoveryAddressType" - } - }, - "required": ["id", "value", "via"], - "type": "object" - }, - "revokedSessions": { - "properties": { - "count": { - "description": "The number of sessions that were revoked.", - "format": "int64", - "type": "integer" - } - }, - "type": "object" - }, - "selfServiceBrowserLocationChangeRequiredError": { - "properties": { - "code": { - "description": "The status code", - "example": 404, - "format": "int64", - "type": "integer" - }, - "debug": { - "description": "Debug information\n\nThis field is often not exposed to protect against leaking\nsensitive information.", - "example": "SQL field \"foo\" is not a bool.", - "type": "string" - }, - "details": { - "additionalProperties": {}, - "description": "Further error details", - "type": "object" - }, - "id": { - "description": "The error ID\n\nUseful when trying to identify various errors in application logic.", - "type": "string" - }, - "message": { - "description": "Error message\n\nThe error's message.", - "example": "The resource could not be found", - "type": "string" - }, - "reason": { - "description": "A human-readable reason for the error", - "example": "User with ID 1234 does not exist.", - "type": "string" - }, - "redirect_browser_to": { - "description": "Since when the flow has expired", - "type": "string" - }, - "request": { - "description": "The request ID\n\nThe request ID is often exposed internally in order to trace\nerrors across service architectures. This is often a UUID.", - "example": "d7ef54b1-ec15-46e6-bccb-524b82c035e6", - "type": "string" - }, - "status": { - "description": "The status description", - "example": "Not Found", - "type": "string" - } - }, - "required": ["message"], - "title": "Is sent when a flow requires a browser to change its location.", - "type": "object" - }, - "selfServiceError": { - "properties": { - "created_at": { - "description": "CreatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "error": { - "type": "object" - }, - "id": { - "description": "ID of the error container.", - "format": "uuid", - "type": "string" - }, - "updated_at": { - "description": "UpdatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - } - }, - "required": ["id"], - "type": "object" - }, - "selfServiceFlowExpiredError": { - "description": "Is sent when a flow is expired", - "properties": { - "code": { - "description": "The status code", - "example": 404, - "format": "int64", - "type": "integer" - }, - "debug": { - "description": "Debug information\n\nThis field is often not exposed to protect against leaking\nsensitive information.", - "example": "SQL field \"foo\" is not a bool.", - "type": "string" - }, - "details": { - "additionalProperties": {}, - "description": "Further error details", - "type": "object" - }, - "id": { - "description": "The error ID\n\nUseful when trying to identify various errors in application logic.", - "type": "string" - }, - "message": { - "description": "Error message\n\nThe error's message.", - "example": "The resource could not be found", - "type": "string" - }, - "reason": { - "description": "A human-readable reason for the error", - "example": "User with ID 1234 does not exist.", - "type": "string" - }, - "request": { - "description": "The request ID\n\nThe request ID is often exposed internally in order to trace\nerrors across service architectures. This is often a UUID.", - "example": "d7ef54b1-ec15-46e6-bccb-524b82c035e6", - "type": "string" - }, - "since": { - "$ref": "#/components/schemas/Duration" - }, - "status": { - "description": "The status description", - "example": "Not Found", - "type": "string" - }, - "use_flow_id": { - "description": "The flow ID that should be used for the new flow as it contains the correct messages.", - "format": "uuid", - "type": "string" - } - }, - "required": ["message"], - "type": "object" - }, - "selfServiceFlowType": { - "description": "The flow type can either be `api` or `browser`.", - "title": "Type is the flow type.", - "type": "string" - }, - "selfServiceLoginFlow": { - "description": "This object represents a login flow. A login flow is initiated at the \"Initiate Login API / Browser Flow\"\nendpoint by a client.\n\nOnce a login flow is completed successfully, a session cookie or session token will be issued.", - "properties": { - "active": { - "$ref": "#/components/schemas/identityCredentialsType" - }, - "created_at": { - "description": "CreatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "expires_at": { - "description": "ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in,\na new flow has to be initiated.", - "format": "date-time", - "type": "string" - }, - "id": { - "description": "ID represents the flow's unique ID. When performing the login flow, this\nrepresents the id in the login UI's query parameter: http://\u003cselfservice.flows.login.ui_url\u003e/?flow=\u003cflow_id\u003e", - "format": "uuid", - "type": "string" - }, - "issued_at": { - "description": "IssuedAt is the time (UTC) when the flow started.", - "format": "date-time", - "type": "string" - }, - "oauth2_login_challenge": { - "$ref": "#/components/schemas/NullUUID" - }, - "oauth2_login_request": { - "$ref": "#/components/schemas/LoginRequest" - }, - "refresh": { - "description": "Refresh stores whether this login flow should enforce re-authentication.", - "type": "boolean" - }, - "request_url": { - "description": "RequestURL is the initial URL that was requested from Ory Kratos. It can be used\nto forward information contained in the URL's path or query for example.", - "type": "string" - }, - "requested_aal": { - "$ref": "#/components/schemas/authenticatorAssuranceLevel" - }, - "return_to": { - "description": "ReturnTo contains the requested return_to URL.", - "type": "string" - }, - "type": { - "$ref": "#/components/schemas/selfServiceFlowType" - }, - "ui": { - "$ref": "#/components/schemas/uiContainer" - }, - "updated_at": { - "description": "UpdatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - } - }, - "required": [ - "id", - "type", - "expires_at", - "issued_at", - "request_url", - "ui" - ], - "title": "Login Flow", - "type": "object" - }, - "selfServiceLogoutUrl": { - "properties": { - "logout_token": { - "description": "LogoutToken can be used to perform logout using AJAX.", - "type": "string" - }, - "logout_url": { - "description": "LogoutURL can be opened in a browser to sign the user out.\n\nformat: uri", - "type": "string" - } - }, - "required": ["logout_url", "logout_token"], - "type": "object" - }, - "selfServiceRecoveryFlow": { - "description": "This request is used when an identity wants to recover their account.\n\nWe recommend reading the [Account Recovery Documentation](../self-service/flows/password-reset-account-recovery)", - "properties": { - "active": { - "description": "Active, if set, contains the registration method that is being used. It is initially\nnot set.", - "type": "string" - }, - "expires_at": { - "description": "ExpiresAt is the time (UTC) when the request expires. If the user still wishes to update the setting,\na new request has to be initiated.", - "format": "date-time", - "type": "string" - }, - "id": { - "description": "ID represents the request's unique ID. When performing the recovery flow, this\nrepresents the id in the recovery ui's query parameter: http://\u003cselfservice.flows.recovery.ui_url\u003e?request=\u003cid\u003e", - "format": "uuid", - "type": "string" - }, - "issued_at": { - "description": "IssuedAt is the time (UTC) when the request occurred.", - "format": "date-time", - "type": "string" - }, - "request_url": { - "description": "RequestURL is the initial URL that was requested from Ory Kratos. It can be used\nto forward information contained in the URL's path or query for example.", - "type": "string" - }, - "return_to": { - "description": "ReturnTo contains the requested return_to URL.", - "type": "string" - }, - "state": { - "$ref": "#/components/schemas/selfServiceRecoveryFlowState" - }, - "type": { - "$ref": "#/components/schemas/selfServiceFlowType" - }, - "ui": { - "$ref": "#/components/schemas/uiContainer" - } - }, - "required": [ - "id", - "type", - "expires_at", - "issued_at", - "request_url", - "ui", - "state" - ], - "title": "A Recovery Flow", - "type": "object" - }, - "selfServiceRecoveryFlowState": { - "description": "The state represents the state of the recovery flow.\n\nchoose_method: ask the user to choose a method (e.g. recover account via email)\nsent_email: the email has been sent to the user\npassed_challenge: the request was successful and the recovery challenge was passed.", - "enum": ["choose_method", "sent_email", "passed_challenge"], - "title": "Recovery Flow State", - "type": "string" - }, - "selfServiceRecoveryLink": { - "properties": { - "expires_at": { - "description": "Recovery Link Expires At\n\nThe timestamp when the recovery link expires.", - "format": "date-time", - "type": "string" - }, - "recovery_link": { - "description": "Recovery Link\n\nThis link can be used to recover the account.", - "type": "string" - } - }, - "required": ["recovery_link"], - "type": "object" - }, - "selfServiceRegistrationFlow": { - "properties": { - "active": { - "$ref": "#/components/schemas/identityCredentialsType" - }, - "expires_at": { - "description": "ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in,\na new flow has to be initiated.", - "format": "date-time", - "type": "string" - }, - "id": { - "description": "ID represents the flow's unique ID. When performing the registration flow, this\nrepresents the id in the registration ui's query parameter: http://\u003cselfservice.flows.registration.ui_url\u003e/?flow=\u003cid\u003e", - "format": "uuid", - "type": "string" - }, - "issued_at": { - "description": "IssuedAt is the time (UTC) when the flow occurred.", - "format": "date-time", - "type": "string" - }, - "oauth2_login_challenge": { - "$ref": "#/components/schemas/NullUUID" - }, - "oauth2_login_request": { - "$ref": "#/components/schemas/LoginRequest" - }, - "request_url": { - "description": "RequestURL is the initial URL that was requested from Ory Kratos. It can be used\nto forward information contained in the URL's path or query for example.", - "type": "string" - }, - "return_to": { - "description": "ReturnTo contains the requested return_to URL.", - "type": "string" - }, - "type": { - "$ref": "#/components/schemas/selfServiceFlowType" - }, - "ui": { - "$ref": "#/components/schemas/uiContainer" - } - }, - "required": [ - "id", - "type", - "expires_at", - "issued_at", - "request_url", - "ui" - ], - "type": "object" - }, - "selfServiceSettingsFlow": { - "description": "This flow is used when an identity wants to update settings\n(e.g. profile data, passwords, ...) in a selfservice manner.\n\nWe recommend reading the [User Settings Documentation](../self-service/flows/user-settings)", - "properties": { - "active": { - "description": "Active, if set, contains the registration method that is being used. It is initially\nnot set.", - "type": "string" - }, - "expires_at": { - "description": "ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to update the setting,\na new flow has to be initiated.", - "format": "date-time", - "type": "string" - }, - "id": { - "description": "ID represents the flow's unique ID. When performing the settings flow, this\nrepresents the id in the settings ui's query parameter: http://\u003cselfservice.flows.settings.ui_url\u003e?flow=\u003cid\u003e", - "format": "uuid", - "type": "string" - }, - "identity": { - "$ref": "#/components/schemas/identity" - }, - "issued_at": { - "description": "IssuedAt is the time (UTC) when the flow occurred.", - "format": "date-time", - "type": "string" - }, - "request_url": { - "description": "RequestURL is the initial URL that was requested from Ory Kratos. It can be used\nto forward information contained in the URL's path or query for example.", - "type": "string" - }, - "return_to": { - "description": "ReturnTo contains the requested return_to URL.", - "type": "string" - }, - "state": { - "$ref": "#/components/schemas/selfServiceSettingsFlowState" - }, - "type": { - "$ref": "#/components/schemas/selfServiceFlowType" - }, - "ui": { - "$ref": "#/components/schemas/uiContainer" - } - }, - "required": [ - "id", - "type", - "expires_at", - "issued_at", - "request_url", - "ui", - "identity", - "state" - ], - "title": "Flow represents a Settings Flow", - "type": "object" - }, - "selfServiceSettingsFlowState": { - "description": "show_form: No user data has been collected, or it is invalid, and thus the form should be shown.\nsuccess: Indicates that the settings flow has been updated successfully with the provided data.\nDone will stay true when repeatedly checking. If set to true, done will revert back to false only\nwhen a flow with invalid (e.g. \"please use a valid phone number\") data was sent.", - "enum": ["show_form", "success"], - "title": "State represents the state of this flow. It knows two states:", - "type": "string" - }, - "selfServiceVerificationFlow": { - "description": "Used to verify an out-of-band communication\nchannel such as an email address or a phone number.\n\nFor more information head over to: https://www.ory.sh/docs/kratos/selfservice/flows/verify-email-account-activation", - "properties": { - "active": { - "description": "Active, if set, contains the registration method that is being used. It is initially\nnot set.", - "type": "string" - }, - "expires_at": { - "description": "ExpiresAt is the time (UTC) when the request expires. If the user still wishes to verify the address,\na new request has to be initiated.", - "format": "date-time", - "type": "string" - }, - "id": { - "description": "ID represents the request's unique ID. When performing the verification flow, this\nrepresents the id in the verify ui's query parameter: http://\u003cselfservice.flows.verification.ui_url\u003e?request=\u003cid\u003e\n\ntype: string\nformat: uuid", - "format": "uuid", - "type": "string" - }, - "issued_at": { - "description": "IssuedAt is the time (UTC) when the request occurred.", - "format": "date-time", - "type": "string" - }, - "request_url": { - "description": "RequestURL is the initial URL that was requested from Ory Kratos. It can be used\nto forward information contained in the URL's path or query for example.", - "type": "string" - }, - "return_to": { - "description": "ReturnTo contains the requested return_to URL.", - "type": "string" - }, - "state": { - "$ref": "#/components/schemas/selfServiceVerificationFlowState" - }, - "type": { - "$ref": "#/components/schemas/selfServiceFlowType" - }, - "ui": { - "$ref": "#/components/schemas/uiContainer" - } - }, - "required": ["id", "type", "ui", "state"], - "title": "A Verification Flow", - "type": "object" - }, - "selfServiceVerificationFlowState": { - "description": "The state represents the state of the verification flow.\n\nchoose_method: ask the user to choose a method (e.g. recover account via email)\nsent_email: the email has been sent to the user\npassed_challenge: the request was successful and the recovery challenge was passed.", - "enum": ["choose_method", "sent_email", "passed_challenge"], - "title": "Verification Flow State", - "type": "string" - }, - "session": { - "description": "A Session", - "properties": { - "active": { - "description": "Active state. If false the session is no longer active.", - "type": "boolean" - }, - "authenticated_at": { - "description": "The Session Authentication Timestamp\n\nWhen this session was authenticated at. If multi-factor authentication was used this\nis the time when the last factor was authenticated (e.g. the TOTP code challenge was completed).", - "format": "date-time", - "type": "string" - }, - "authentication_methods": { - "$ref": "#/components/schemas/sessionAuthenticationMethods" - }, - "authenticator_assurance_level": { - "$ref": "#/components/schemas/authenticatorAssuranceLevel" - }, - "expires_at": { - "description": "The Session Expiry\n\nWhen this session expires at.", - "format": "date-time", - "type": "string" - }, - "id": { - "description": "Session ID", - "format": "uuid", - "type": "string" - }, - "identity": { - "$ref": "#/components/schemas/identity" - }, - "issued_at": { - "description": "The Session Issuance Timestamp\n\nWhen this session was issued at. Usually equal or close to `authenticated_at`.", - "format": "date-time", - "type": "string" - } - }, - "required": ["id", "identity"], - "type": "object" - }, - "sessionAuthenticationMethod": { - "description": "A singular authenticator used during authentication / login.", - "properties": { - "aal": { - "$ref": "#/components/schemas/authenticatorAssuranceLevel" - }, - "completed_at": { - "description": "When the authentication challenge was completed.", - "format": "date-time", - "type": "string" - }, - "method": { - "enum": [ - "link_recovery", - "password", - "totp", - "oidc", - "webauthn", - "lookup_secret", - "v0.6_legacy_session" - ], - "title": "The method used", - "type": "string" - } - }, - "title": "AuthenticationMethod identifies an authentication method", - "type": "object" - }, - "sessionAuthenticationMethods": { - "description": "A list of authenticators which were used to authenticate the session.", - "items": { - "$ref": "#/components/schemas/sessionAuthenticationMethod" - }, - "title": "List of (Used) AuthenticationMethods", - "type": "array" - }, - "sessionDevice": { - "properties": { - "user_agent": { - "description": "UserAgent of this device", - "type": "string" - } - }, - "type": "object" - }, - "sessionList": { - "items": { - "$ref": "#/components/schemas/session" - }, - "type": "array" - }, - "settingsProfileFormConfig": { - "properties": { - "action": { - "description": "Action should be used as the form action URL `\u003cform action=\"{{ .Action }}\" method=\"post\"\u003e`.", - "type": "string" - }, - "messages": { - "$ref": "#/components/schemas/uiTexts" - }, - "method": { - "description": "Method is the form method (e.g. POST)", - "type": "string" - }, - "nodes": { - "$ref": "#/components/schemas/uiNodes" - } - }, - "required": ["action", "method", "nodes"], - "type": "object" - }, - "submitSelfServiceFlowWithWebAuthnRegistrationMethod": { - "properties": { - "webauthn_register": { - "description": "Register a WebAuthn Security Key\n\nIt is expected that the JSON returned by the WebAuthn registration process\nis included here.", - "type": "string" - }, - "webauthn_register_displayname": { - "description": "Name of the WebAuthn Security Key to be Added\n\nA human-readable name for the security key which will be added.", - "type": "string" - } - }, - "type": "object" - }, - "submitSelfServiceLoginFlowBody": { - "discriminator": { - "mapping": { - "lookup_secret": "#/components/schemas/submitSelfServiceLoginFlowWithLookupSecretMethodBody", - "oidc": "#/components/schemas/submitSelfServiceLoginFlowWithOidcMethodBody", - "password": "#/components/schemas/submitSelfServiceLoginFlowWithPasswordMethodBody", - "totp": "#/components/schemas/submitSelfServiceLoginFlowWithTotpMethodBody", - "webauthn": "#/components/schemas/submitSelfServiceLoginFlowWithWebAuthnMethodBody" - }, - "propertyName": "method" - }, - "oneOf": [ - { - "$ref": "#/components/schemas/submitSelfServiceLoginFlowWithPasswordMethodBody" - }, - { - "$ref": "#/components/schemas/submitSelfServiceLoginFlowWithOidcMethodBody" - }, - { - "$ref": "#/components/schemas/submitSelfServiceLoginFlowWithTotpMethodBody" - }, - { - "$ref": "#/components/schemas/submitSelfServiceLoginFlowWithWebAuthnMethodBody" - }, - { - "$ref": "#/components/schemas/submitSelfServiceLoginFlowWithLookupSecretMethodBody" - } - ] - }, - "submitSelfServiceLoginFlowWithLookupSecretMethodBody": { - "properties": { - "csrf_token": { - "description": "Sending the anti-csrf token is only required for browser login flows.", - "type": "string" - }, - "lookup_secret": { - "description": "The lookup secret.", - "type": "string" - }, - "method": { - "description": "Method should be set to \"lookup_secret\" when logging in using the lookup_secret strategy.", - "type": "string" - } - }, - "required": ["method", "lookup_secret"], - "title": "submitSelfServiceLoginFlowWithLookupSecretMethodBody is used to decode the login form payload.", - "type": "object" - }, - "submitSelfServiceLoginFlowWithOidcMethodBody": { - "description": "SubmitSelfServiceLoginFlowWithOidcMethodBody is used to decode the login form payload\nwhen using the oidc method.", - "properties": { - "csrf_token": { - "description": "The CSRF Token", - "type": "string" - }, - "method": { - "description": "Method to use\n\nThis field must be set to `oidc` when using the oidc method.", - "type": "string" - }, - "provider": { - "description": "The provider to register with", - "type": "string" - }, - "traits": { - "description": "The identity traits. This is a placeholder for the registration flow.", - "type": "object" - } - }, - "required": ["provider", "method"], - "type": "object" - }, - "submitSelfServiceLoginFlowWithPasswordMethodBody": { - "properties": { - "csrf_token": { - "description": "Sending the anti-csrf token is only required for browser login flows.", - "type": "string" - }, - "identifier": { - "description": "Identifier is the email or username of the user trying to log in.", - "type": "string" - }, - "method": { - "description": "Method should be set to \"password\" when logging in using the identifier and password strategy.", - "type": "string" - }, - "password": { - "description": "The user's password.", - "type": "string" - }, - "password_identifier": { - "description": "Identifier is the email or username of the user trying to log in.\nThis field is deprecated!", - "type": "string" - } - }, - "required": ["method", "password", "identifier"], - "title": "submitSelfServiceLoginFlowWithPasswordMethodBody is used to decode the login form payload.", - "type": "object" - }, - "submitSelfServiceLoginFlowWithTotpMethodBody": { - "properties": { - "csrf_token": { - "description": "Sending the anti-csrf token is only required for browser login flows.", - "type": "string" - }, - "method": { - "description": "Method should be set to \"totp\" when logging in using the TOTP strategy.", - "type": "string" - }, - "totp_code": { - "description": "The TOTP code.", - "type": "string" - } - }, - "required": ["method", "totp_code"], - "title": "submitSelfServiceLoginFlowWithTotpMethodBody is used to decode the login form payload.", - "type": "object" - }, - "submitSelfServiceLoginFlowWithWebAuthnMethodBody": { - "properties": { - "csrf_token": { - "description": "Sending the anti-csrf token is only required for browser login flows.", - "type": "string" - }, - "identifier": { - "description": "Identifier is the email or username of the user trying to log in.", - "type": "string" - }, - "method": { - "description": "Method should be set to \"webAuthn\" when logging in using the WebAuthn strategy.", - "type": "string" - }, - "webauthn_login": { - "description": "Login a WebAuthn Security Key\n\nThis must contain the ID of the WebAuthN connection.", - "type": "string" - } - }, - "required": ["identifier", "method"], - "title": "submitSelfServiceLoginFlowWithWebAuthnMethodBody is used to decode the login form payload.", - "type": "object" - }, - "submitSelfServiceLogoutFlowWithoutBrowserBody": { - "description": "nolint:deadcode,unused", - "properties": { - "session_token": { - "description": "The Session Token\n\nInvalidate this session token.", - "type": "string" - } - }, - "required": ["session_token"], - "type": "object" - }, - "submitSelfServiceRecoveryFlowBody": { - "discriminator": { - "mapping": { - "link": "#/components/schemas/submitSelfServiceRecoveryFlowWithLinkMethodBody" - }, - "propertyName": "method" - }, - "oneOf": [ - { - "$ref": "#/components/schemas/submitSelfServiceRecoveryFlowWithLinkMethodBody" - } - ] - }, - "submitSelfServiceRecoveryFlowWithLinkMethodBody": { - "properties": { - "csrf_token": { - "description": "Sending the anti-csrf token is only required for browser login flows.", - "type": "string" - }, - "email": { - "description": "Email to Recover\n\nNeeds to be set when initiating the flow. If the email is a registered\nrecovery email, a recovery link will be sent. If the email is not known,\na email with details on what happened will be sent instead.\n\nformat: email", - "type": "string" - }, - "method": { - "description": "Method supports `link` only right now.", - "type": "string" - } - }, - "required": ["email", "method"], - "type": "object" - }, - "submitSelfServiceRegistrationFlowBody": { - "discriminator": { - "mapping": { - "oidc": "#/components/schemas/submitSelfServiceRegistrationFlowWithOidcMethodBody", - "password": "#/components/schemas/submitSelfServiceRegistrationFlowWithPasswordMethodBody", - "webauthn": "#/components/schemas/submitSelfServiceRegistrationFlowWithWebAuthnMethodBody" - }, - "propertyName": "method" - }, - "oneOf": [ - { - "$ref": "#/components/schemas/submitSelfServiceRegistrationFlowWithPasswordMethodBody" - }, - { - "$ref": "#/components/schemas/submitSelfServiceRegistrationFlowWithOidcMethodBody" - }, - { - "$ref": "#/components/schemas/submitSelfServiceRegistrationFlowWithWebAuthnMethodBody" - } - ] - }, - "submitSelfServiceRegistrationFlowWithOidcMethodBody": { - "description": "SubmitSelfServiceRegistrationFlowWithOidcMethodBody is used to decode the registration form payload\nwhen using the oidc method.", - "properties": { - "csrf_token": { - "description": "The CSRF Token", - "type": "string" - }, - "method": { - "description": "Method to use\n\nThis field must be set to `oidc` when using the oidc method.", - "type": "string" - }, - "provider": { - "description": "The provider to register with", - "type": "string" - }, - "traits": { - "description": "The identity traits", - "type": "object" - } - }, - "required": ["provider", "method"], - "type": "object" - }, - "submitSelfServiceRegistrationFlowWithPasswordMethodBody": { - "description": "SubmitSelfServiceRegistrationFlowWithPasswordMethodBody is used to decode the registration form payload\nwhen using the password method.", - "properties": { - "csrf_token": { - "description": "The CSRF Token", - "type": "string" - }, - "method": { - "description": "Method to use\n\nThis field must be set to `password` when using the password method.", - "type": "string" - }, - "password": { - "description": "Password to sign the user up with", - "type": "string" - }, - "traits": { - "description": "The identity's traits", - "type": "object" - } - }, - "required": ["password", "traits", "method"], - "type": "object" - }, - "submitSelfServiceRegistrationFlowWithWebAuthnMethodBody": { - "properties": { - "csrf_token": { - "description": "CSRFToken is the anti-CSRF token", - "type": "string" - }, - "method": { - "description": "Method\n\nShould be set to \"webauthn\" when trying to add, update, or remove a webAuthn pairing.", - "type": "string" - }, - "traits": { - "description": "The identity's traits", - "type": "object" - }, - "webauthn_register": { - "description": "Register a WebAuthn Security Key\n\nIt is expected that the JSON returned by the WebAuthn registration process\nis included here.", - "type": "string" - }, - "webauthn_register_displayname": { - "description": "Name of the WebAuthn Security Key to be Added\n\nA human-readable name for the security key which will be added.", - "type": "string" - } - }, - "required": ["traits", "method"], - "type": "object" - }, - "submitSelfServiceSettingsFlowBody": { - "discriminator": { - "mapping": { - "lookup_secret": "#/components/schemas/submitSelfServiceSettingsFlowWithLookupMethodBody", - "oidc": "#/components/schemas/submitSelfServiceSettingsFlowWithOidcMethodBody", - "password": "#/components/schemas/submitSelfServiceSettingsFlowWithPasswordMethodBody", - "profile": "#/components/schemas/submitSelfServiceSettingsFlowWithProfileMethodBody", - "totp": "#/components/schemas/submitSelfServiceSettingsFlowWithTotpMethodBody", - "webauthn": "#/components/schemas/submitSelfServiceSettingsFlowWithWebAuthnMethodBody" - }, - "propertyName": "method" - }, - "oneOf": [ - { - "$ref": "#/components/schemas/submitSelfServiceSettingsFlowWithPasswordMethodBody" - }, - { - "$ref": "#/components/schemas/submitSelfServiceSettingsFlowWithProfileMethodBody" - }, - { - "$ref": "#/components/schemas/submitSelfServiceSettingsFlowWithOidcMethodBody" - }, - { - "$ref": "#/components/schemas/submitSelfServiceSettingsFlowWithOidcMethodBody" - }, - { - "$ref": "#/components/schemas/submitSelfServiceSettingsFlowWithTotpMethodBody" - }, - { - "$ref": "#/components/schemas/submitSelfServiceSettingsFlowWithWebAuthnMethodBody" - }, - { - "$ref": "#/components/schemas/submitSelfServiceSettingsFlowWithLookupMethodBody" - } - ] - }, - "submitSelfServiceSettingsFlowWithLookupMethodBody": { - "properties": { - "csrf_token": { - "description": "CSRFToken is the anti-CSRF token", - "type": "string" - }, - "lookup_secret_confirm": { - "description": "If set to true will save the regenerated lookup secrets", - "type": "boolean" - }, - "lookup_secret_disable": { - "description": "Disables this method if true.", - "type": "boolean" - }, - "lookup_secret_regenerate": { - "description": "If set to true will regenerate the lookup secrets", - "type": "boolean" - }, - "lookup_secret_reveal": { - "description": "If set to true will reveal the lookup secrets", - "type": "boolean" - }, - "method": { - "description": "Method\n\nShould be set to \"lookup\" when trying to add, update, or remove a lookup pairing.", - "type": "string" - } - }, - "required": ["method"], - "type": "object" - }, - "submitSelfServiceSettingsFlowWithOidcMethodBody": { - "description": "nolint:deadcode,unused", - "properties": { - "flow": { - "description": "Flow ID is the flow's ID.\n\nin: query", - "type": "string" - }, - "link": { - "description": "Link this provider\n\nEither this or `unlink` must be set.\n\ntype: string\nin: body", - "type": "string" - }, - "method": { - "description": "Method\n\nShould be set to profile when trying to update a profile.", - "type": "string" - }, - "traits": { - "description": "The identity's traits\n\nin: body", - "type": "object" - }, - "unlink": { - "description": "Unlink this provider\n\nEither this or `link` must be set.\n\ntype: string\nin: body", - "type": "string" - } - }, - "required": ["method"], - "type": "object" - }, - "submitSelfServiceSettingsFlowWithPasswordMethodBody": { - "properties": { - "csrf_token": { - "description": "CSRFToken is the anti-CSRF token", - "type": "string" - }, - "method": { - "description": "Method\n\nShould be set to password when trying to update a password.", - "type": "string" - }, - "password": { - "description": "Password is the updated password", - "type": "string" - } - }, - "required": ["password", "method"], - "type": "object" - }, - "submitSelfServiceSettingsFlowWithProfileMethodBody": { - "description": "nolint:deadcode,unused", - "properties": { - "csrf_token": { - "description": "The Anti-CSRF Token\n\nThis token is only required when performing browser flows.", - "type": "string" - }, - "method": { - "description": "Method\n\nShould be set to profile when trying to update a profile.", - "type": "string" - }, - "traits": { - "description": "Traits contains all of the identity's traits.", - "type": "object" - } - }, - "required": ["traits", "method"], - "type": "object" - }, - "submitSelfServiceSettingsFlowWithTotpMethodBody": { - "properties": { - "csrf_token": { - "description": "CSRFToken is the anti-CSRF token", - "type": "string" - }, - "method": { - "description": "Method\n\nShould be set to \"totp\" when trying to add, update, or remove a totp pairing.", - "type": "string" - }, - "totp_code": { - "description": "ValidationTOTP must contain a valid TOTP based on the", - "type": "string" - }, - "totp_unlink": { - "description": "UnlinkTOTP if true will remove the TOTP pairing,\neffectively removing the credential. This can be used\nto set up a new TOTP device.", - "type": "boolean" - } - }, - "required": ["method"], - "type": "object" - }, - "submitSelfServiceSettingsFlowWithWebAuthnMethodBody": { - "properties": { - "csrf_token": { - "description": "CSRFToken is the anti-CSRF token", - "type": "string" - }, - "method": { - "description": "Method\n\nShould be set to \"webauthn\" when trying to add, update, or remove a webAuthn pairing.", - "type": "string" - }, - "webauthn_register": { - "description": "Register a WebAuthn Security Key\n\nIt is expected that the JSON returned by the WebAuthn registration process\nis included here.", - "type": "string" - }, - "webauthn_register_displayname": { - "description": "Name of the WebAuthn Security Key to be Added\n\nA human-readable name for the security key which will be added.", - "type": "string" - }, - "webauthn_remove": { - "description": "Remove a WebAuthn Security Key\n\nThis must contain the ID of the WebAuthN connection.", - "type": "string" - } - }, - "required": ["method"], - "type": "object" - }, - "submitSelfServiceVerificationFlowBody": { - "description": "nolint:deadcode,unused", - "discriminator": { - "mapping": { - "link": "#/components/schemas/submitSelfServiceVerificationFlowWithLinkMethodBody" - }, - "propertyName": "method" - }, - "oneOf": [ - { - "$ref": "#/components/schemas/submitSelfServiceVerificationFlowWithLinkMethodBody" - } - ] - }, - "submitSelfServiceVerificationFlowWithLinkMethodBody": { - "properties": { - "csrf_token": { - "description": "Sending the anti-csrf token is only required for browser login flows.", - "type": "string" - }, - "email": { - "description": "Email to Verify\n\nNeeds to be set when initiating the flow. If the email is a registered\nverification email, a verification link will be sent. If the email is not known,\na email with details on what happened will be sent instead.\n\nformat: email", - "type": "string" - }, - "method": { - "description": "Method supports `link` only right now.", - "type": "string" - } - }, - "required": ["email", "method"], - "type": "object" - }, - "successfulSelfServiceLoginWithoutBrowser": { - "description": "The Response for Login Flows via API", - "properties": { - "session": { - "$ref": "#/components/schemas/session" - }, - "session_token": { - "description": "The Session Token\n\nA session token is equivalent to a session cookie, but it can be sent in the HTTP Authorization\nHeader:\n\nAuthorization: bearer ${session-token}\n\nThe session token is only issued for API flows, not for Browser flows!", - "type": "string" - } - }, - "required": ["session"], - "type": "object" - }, - "successfulSelfServiceRegistrationWithoutBrowser": { - "description": "The Response for Registration Flows via API", - "properties": { - "identity": { - "$ref": "#/components/schemas/identity" - }, - "session": { - "$ref": "#/components/schemas/session" - }, - "session_token": { - "description": "The Session Token\n\nThis field is only set when the session hook is configured as a post-registration hook.\n\nA session token is equivalent to a session cookie, but it can be sent in the HTTP Authorization\nHeader:\n\nAuthorization: bearer ${session-token}\n\nThe session token is only issued for API flows, not for Browser flows!", - "type": "string" - } - }, - "required": ["identity"], - "type": "object" - }, - "tokenPagination": { - "properties": { - "page_size": { - "default": 250, - "description": "Items per page\n\nThis is the number of items per page to return.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).", - "format": "int64", - "maximum": 1000, - "minimum": 1, - "type": "integer" - }, - "page_token": { - "default": "1", - "description": "Next Page Token\n\nThe next page token.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).", - "minimum": 1, - "type": "string" - } - }, - "type": "object" - }, - "tokenPaginationHeaders": { - "properties": { - "link": { - "description": "The link header contains pagination links.\n\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).\n\nin: header", - "type": "string" - }, - "x-total-count": { - "description": "The total number of clients.\n\nin: header", - "type": "string" - } - }, - "type": "object" - }, - "uiContainer": { - "description": "Container represents a HTML Form. The container can work with both HTTP Form and JSON requests", - "properties": { - "action": { - "description": "Action should be used as the form action URL `\u003cform action=\"{{ .Action }}\" method=\"post\"\u003e`.", - "type": "string" - }, - "messages": { - "$ref": "#/components/schemas/uiTexts" - }, - "method": { - "description": "Method is the form method (e.g. POST)", - "type": "string" - }, - "nodes": { - "$ref": "#/components/schemas/uiNodes" - } - }, - "required": ["action", "method", "nodes"], - "type": "object" - }, - "uiNode": { - "description": "Nodes are represented as HTML elements or their native UI equivalents. For example,\na node can be an `\u003cimg\u003e` tag, or an `\u003cinput element\u003e` but also `some plain text`.", - "properties": { - "attributes": { - "$ref": "#/components/schemas/uiNodeAttributes" - }, - "group": { - "description": "Group specifies which group (e.g. password authenticator) this node belongs to.\ndefault DefaultGroup\npassword PasswordGroup\noidc OpenIDConnectGroup\nprofile ProfileGroup\nlink LinkGroup\ntotp TOTPGroup\nlookup_secret LookupGroup\nwebauthn WebAuthnGroup", - "enum": [ - "default", - "password", - "oidc", - "profile", - "link", - "totp", - "lookup_secret", - "webauthn" - ], - "type": "string", - "x-go-enum-desc": "default DefaultGroup\npassword PasswordGroup\noidc OpenIDConnectGroup\nprofile ProfileGroup\nlink LinkGroup\ntotp TOTPGroup\nlookup_secret LookupGroup\nwebauthn WebAuthnGroup" - }, - "messages": { - "$ref": "#/components/schemas/uiTexts" - }, - "meta": { - "$ref": "#/components/schemas/uiNodeMeta" - }, - "type": { - "description": "The node's type\ntext Text\ninput Input\nimg Image\na Anchor\nscript Script", - "enum": ["text", "input", "img", "a", "script"], - "type": "string", - "x-go-enum-desc": "text Text\ninput Input\nimg Image\na Anchor\nscript Script" - } - }, - "required": ["type", "group", "attributes", "messages", "meta"], - "title": "Node represents a flow's nodes", - "type": "object" - }, - "uiNodeAnchorAttributes": { - "properties": { - "href": { - "description": "The link's href (destination) URL.\n\nformat: uri", - "type": "string" - }, - "id": { - "description": "A unique identifier", - "type": "string" - }, - "node_type": { - "description": "NodeType represents this node's types. It is a mirror of `node.type` and\nis primarily used to allow compatibility with OpenAPI 3.0. In this struct it technically always is \"a\".", - "type": "string" - }, - "title": { - "$ref": "#/components/schemas/uiText" - } - }, - "required": ["href", "title", "id", "node_type"], - "title": "AnchorAttributes represents the attributes of an anchor node.", - "type": "object" - }, - "uiNodeAttributes": { - "discriminator": { - "mapping": { - "a": "#/components/schemas/uiNodeAnchorAttributes", - "img": "#/components/schemas/uiNodeImageAttributes", - "input": "#/components/schemas/uiNodeInputAttributes", - "script": "#/components/schemas/uiNodeScriptAttributes", - "text": "#/components/schemas/uiNodeTextAttributes" - }, - "propertyName": "node_type" - }, - "oneOf": [ - { - "$ref": "#/components/schemas/uiNodeInputAttributes" - }, - { - "$ref": "#/components/schemas/uiNodeTextAttributes" - }, - { - "$ref": "#/components/schemas/uiNodeImageAttributes" - }, - { - "$ref": "#/components/schemas/uiNodeAnchorAttributes" - }, - { - "$ref": "#/components/schemas/uiNodeScriptAttributes" - } - ], - "title": "Attributes represents a list of attributes (e.g. `href=\"foo\"` for links)." - }, - "uiNodeImageAttributes": { - "properties": { - "height": { - "description": "Height of the image", - "format": "int64", - "type": "integer" - }, - "id": { - "description": "A unique identifier", - "type": "string" - }, - "node_type": { - "description": "NodeType represents this node's types. It is a mirror of `node.type` and\nis primarily used to allow compatibility with OpenAPI 3.0. In this struct it technically always is \"img\".", - "type": "string" - }, - "src": { - "description": "The image's source URL.\n\nformat: uri", - "type": "string" - }, - "width": { - "description": "Width of the image", - "format": "int64", - "type": "integer" - } - }, - "required": ["src", "id", "width", "height", "node_type"], - "title": "ImageAttributes represents the attributes of an image node.", - "type": "object" - }, - "uiNodeInputAttributes": { - "description": "InputAttributes represents the attributes of an input node", - "properties": { - "autocomplete": { - "description": "The autocomplete attribute for the input.\nemail InputAttributeAutocompleteEmail\ntel InputAttributeAutocompleteTel\nurl InputAttributeAutocompleteUrl\ncurrent-password InputAttributeAutocompleteCurrentPassword\nnew-password InputAttributeAutocompleteNewPassword\none-time-code InputAttributeAutocompleteOneTimeCode", - "enum": [ - "email", - "tel", - "url", - "current-password", - "new-password", - "one-time-code" - ], - "type": "string", - "x-go-enum-desc": "email InputAttributeAutocompleteEmail\ntel InputAttributeAutocompleteTel\nurl InputAttributeAutocompleteUrl\ncurrent-password InputAttributeAutocompleteCurrentPassword\nnew-password InputAttributeAutocompleteNewPassword\none-time-code InputAttributeAutocompleteOneTimeCode" - }, - "disabled": { - "description": "Sets the input's disabled field to true or false.", - "type": "boolean" - }, - "label": { - "$ref": "#/components/schemas/uiText" - }, - "name": { - "description": "The input's element name.", - "type": "string" - }, - "node_type": { - "description": "NodeType represents this node's types. It is a mirror of `node.type` and\nis primarily used to allow compatibility with OpenAPI 3.0. In this struct it technically always is \"input\".", - "type": "string" - }, - "onclick": { - "description": "OnClick may contain javascript which should be executed on click. This is primarily\nused for WebAuthn.", - "type": "string" - }, - "pattern": { - "description": "The input's pattern.", - "type": "string" - }, - "required": { - "description": "Mark this input field as required.", - "type": "boolean" - }, - "type": { - "description": "The input's element type.\ntext InputAttributeTypeText\npassword InputAttributeTypePassword\nnumber InputAttributeTypeNumber\ncheckbox InputAttributeTypeCheckbox\nhidden InputAttributeTypeHidden\nemail InputAttributeTypeEmail\ntel InputAttributeTypeTel\nsubmit InputAttributeTypeSubmit\nbutton InputAttributeTypeButton\ndatetime-local InputAttributeTypeDateTimeLocal\ndate InputAttributeTypeDate\nurl InputAttributeTypeURI", - "enum": [ - "text", - "password", - "number", - "checkbox", - "hidden", - "email", - "tel", - "submit", - "button", - "datetime-local", - "date", - "url" - ], - "type": "string", - "x-go-enum-desc": "text InputAttributeTypeText\npassword InputAttributeTypePassword\nnumber InputAttributeTypeNumber\ncheckbox InputAttributeTypeCheckbox\nhidden InputAttributeTypeHidden\nemail InputAttributeTypeEmail\ntel InputAttributeTypeTel\nsubmit InputAttributeTypeSubmit\nbutton InputAttributeTypeButton\ndatetime-local InputAttributeTypeDateTimeLocal\ndate InputAttributeTypeDate\nurl InputAttributeTypeURI" - }, - "value": { - "description": "The input's value.", - "nullable": true - } - }, - "required": ["name", "type", "disabled", "node_type"], - "type": "object" - }, - "uiNodeMeta": { - "description": "This might include a label and other information that can optionally\nbe used to render UIs.", - "properties": { - "label": { - "$ref": "#/components/schemas/uiText" - } - }, - "title": "A Node's Meta Information", - "type": "object" - }, - "uiNodeScriptAttributes": { - "properties": { - "async": { - "description": "The script async type", - "type": "boolean" - }, - "crossorigin": { - "description": "The script cross origin policy", - "type": "string" - }, - "id": { - "description": "A unique identifier", - "type": "string" - }, - "integrity": { - "description": "The script's integrity hash", - "type": "string" - }, - "node_type": { - "description": "NodeType represents this node's types. It is a mirror of `node.type` and\nis primarily used to allow compatibility with OpenAPI 3.0. In this struct it technically always is \"script\".", - "type": "string" - }, - "nonce": { - "description": "Nonce for CSP\n\nA nonce you may want to use to improve your Content Security Policy.\nYou do not have to use this value but if you want to improve your CSP\npolicies you may use it. You can also choose to use your own nonce value!", - "type": "string" - }, - "referrerpolicy": { - "description": "The script referrer policy", - "type": "string" - }, - "src": { - "description": "The script source", - "type": "string" - }, - "type": { - "description": "The script MIME type", - "type": "string" - } - }, - "required": [ - "src", - "async", - "referrerpolicy", - "crossorigin", - "integrity", - "type", - "id", - "nonce", - "node_type" - ], - "title": "ScriptAttributes represent script nodes which load javascript.", - "type": "object" - }, - "uiNodeTextAttributes": { - "properties": { - "id": { - "description": "A unique identifier", - "type": "string" - }, - "node_type": { - "description": "NodeType represents this node's types. It is a mirror of `node.type` and\nis primarily used to allow compatibility with OpenAPI 3.0. In this struct it technically always is \"text\".", - "type": "string" - }, - "text": { - "$ref": "#/components/schemas/uiText" - } - }, - "required": ["text", "id", "node_type"], - "title": "TextAttributes represents the attributes of a text node.", - "type": "object" - }, - "uiNodes": { - "items": { - "$ref": "#/components/schemas/uiNode" - }, - "type": "array" - }, - "uiText": { - "properties": { - "context": { - "description": "The message's context. Useful when customizing messages.", - "type": "object" - }, - "id": { - "$ref": "#/components/schemas/ID" - }, - "text": { - "description": "The message text. Written in american english.", - "type": "string" - }, - "type": { - "$ref": "#/components/schemas/uiTextType" - } - }, - "required": ["id", "text", "type"], - "type": "object" - }, - "uiTextType": { - "type": "string" - }, - "uiTexts": { - "items": { - "$ref": "#/components/schemas/uiText" - }, - "type": "array" - }, - "verifiableIdentityAddress": { - "description": "VerifiableAddress is an identity's verifiable address", - "properties": { - "created_at": { - "description": "When this entry was created", - "example": "2014-01-01T23:28:56.782Z", - "format": "date-time", - "type": "string" - }, - "id": { - "description": "The ID", - "format": "uuid", - "type": "string" - }, - "status": { - "$ref": "#/components/schemas/identityVerifiableAddressStatus" - }, - "updated_at": { - "description": "When this entry was last updated", - "example": "2014-01-01T23:28:56.782Z", - "format": "date-time", - "type": "string" - }, - "value": { - "description": "The address value\n\nexample foo@user.com", - "type": "string" - }, - "verified": { - "description": "Indicates if the address has already been verified", - "example": true, - "type": "boolean" - }, - "verified_at": { - "$ref": "#/components/schemas/nullTime" - }, - "via": { - "$ref": "#/components/schemas/identityVerifiableAddressType" - } - }, - "required": ["value", "verified", "via", "status"], - "type": "object" - }, - "version": { - "properties": { - "version": { - "description": "Version is the service's version.", - "type": "string" - } - }, - "type": "object" - }, - "webAuthnJavaScript": { - "type": "string" - } - }, - "securitySchemes": { - "oryAccessToken": { - "in": "header", - "name": "Authorization", - "type": "apiKey" - } - } - }, - "info": { - "contact": { - "email": "hi@ory.sh" - }, - "description": "Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs\nare exposed on different ports. Public APIs can face the public internet without any protection\nwhile administrative APIs should never be exposed without prior authorization. To protect\nthe administative API port you should use something like Nginx, Ory Oathkeeper, or any other\ntechnology capable of authorizing incoming requests.\n", - "license": { - "name": "Apache 2.0" - }, - "title": "Ory Kratos API", - "version": "" - }, - "openapi": "3.0.3", - "paths": { - "/.well-known/ory/webauthn.js": { - "get": { - "description": "This endpoint provides JavaScript which is needed in order to perform WebAuthn login and registration.\n\nIf you are building a JavaScript Browser App (e.g. in ReactJS or AngularJS) you will need to load this file:\n\n```html\n\u003cscript src=\"https://public-kratos.example.org/.well-known/ory/webauthn.js\" type=\"script\" async /\u003e\n```\n\nMore information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).", - "operationId": "getWebAuthnJavaScript", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/webAuthnJavaScript" - } - } - }, - "description": "webAuthnJavaScript" - } - }, - "summary": "Get WebAuthn JavaScript", - "tags": ["v0alpha2"] - } - }, - "/admin/courier/messages": { - "get": { - "description": "Lists all messages by given status and recipient.", - "operationId": "adminListCourierMessages", - "parameters": [ - { - "description": "Items per Page\n\nThis is the number of items per page.", - "in": "query", - "name": "per_page", - "schema": { - "default": 250, - "format": "int64", - "maximum": 1000, - "minimum": 1, - "type": "integer" - } - }, - { - "description": "Pagination Page\n\nThis value is currently an integer, but it is not sequential. The value is not the page number, but a\nreference. The next page can be any number and some numbers might return an empty list.\n\nFor example, page 2 might not follow after page 1. And even if page 3 and 5 exist, but page 4 might not exist.", - "in": "query", - "name": "page", - "schema": { - "default": 1, - "format": "int64", - "minimum": 1, - "type": "integer" - } - }, - { - "description": "Status filters out messages based on status.\nIf no value is provided, it doesn't take effect on filter.", - "in": "query", - "name": "status", - "schema": { - "$ref": "#/components/schemas/courierMessageStatus" - } - }, - { - "description": "Recipient filters out messages based on recipient.\nIf no value is provided, it doesn't take effect on filter.", - "in": "query", - "name": "recipient", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/courierMessageList" - } - } - }, - "description": "courierMessageList" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "List Messages", - "tags": ["v0alpha2"] - } - }, - "/admin/identities": { - "get": { - "description": "Lists all identities. Does not support search at the moment.\n\nLearn how identities work in [Ory Kratos' User And Identity Model Documentation](https://www.ory.sh/docs/next/kratos/concepts/identity-user-model).", - "operationId": "adminListIdentities", - "parameters": [ - { - "description": "Items per Page\n\nThis is the number of items per page.", - "in": "query", - "name": "per_page", - "schema": { - "default": 250, - "format": "int64", - "maximum": 1000, - "minimum": 1, - "type": "integer" - } - }, - { - "description": "Pagination Page\n\nThis value is currently an integer, but it is not sequential. The value is not the page number, but a\nreference. The next page can be any number and some numbers might return an empty list.\n\nFor example, page 2 might not follow after page 1. And even if page 3 and 5 exist, but page 4 might not exist.", - "in": "query", - "name": "page", - "schema": { - "default": 1, - "format": "int64", - "minimum": 1, - "type": "integer" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/identityList" - } - } - }, - "description": "identityList" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "List Identities", - "tags": ["v0alpha2"] - }, - "post": { - "description": "This endpoint creates an identity. Learn how identities work in [Ory Kratos' User And Identity Model Documentation](https://www.ory.sh/docs/next/kratos/concepts/identity-user-model).", - "operationId": "adminCreateIdentity", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/adminCreateIdentityBody" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "201": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/identity" - } - } - }, - "description": "identity" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "409": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Create an Identity", - "tags": ["v0alpha2"] - } - }, - "/admin/identities/{id}": { - "delete": { - "description": "Calling this endpoint irrecoverably and permanently deletes the identity given its ID. This action can not be undone.\nThis endpoint returns 204 when the identity was deleted or when the identity was not found, in which case it is\nassumed that is has been deleted already.\n\nLearn how identities work in [Ory Kratos' User And Identity Model Documentation](https://www.ory.sh/docs/next/kratos/concepts/identity-user-model).", - "operationId": "adminDeleteIdentity", - "parameters": [ - { - "description": "ID is the identity's ID.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Delete an Identity", - "tags": ["v0alpha2"] - }, - "get": { - "description": "Learn how identities work in [Ory Kratos' User And Identity Model Documentation](https://www.ory.sh/docs/next/kratos/concepts/identity-user-model).", - "operationId": "adminGetIdentity", - "parameters": [ - { - "description": "ID must be set to the ID of identity you want to get", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "DeclassifyCredentials will declassify one or more identity's credentials\n\nCurrently, only `oidc` is supported. This will return the initial OAuth 2.0 Access,\nRefresh and (optionally) OpenID Connect ID Token.", - "in": "query", - "name": "include_credential", - "schema": { - "items": { - "type": "string" - }, - "type": "array" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/identity" - } - } - }, - "description": "identity" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Get an Identity", - "tags": ["v0alpha2"] - }, - "patch": { - "description": "NOTE: The fields `id`, `stateChangedAt` and `credentials` are not updateable.\n\nLearn how identities work in [Ory Kratos' User And Identity Model Documentation](https://www.ory.sh/docs/next/kratos/concepts/identity-user-model).", - "operationId": "adminPatchIdentity", - "parameters": [ - { - "description": "ID must be set to the ID of identity you want to update", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonPatchDocument" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/identity" - } - } - }, - "description": "identity" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "409": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Partially updates an Identity's field using [JSON Patch](https://jsonpatch.com/)", - "tags": ["v0alpha2"] - }, - "put": { - "description": "This endpoint updates an identity. The full identity payload (except credentials) is expected. This endpoint does not support patching.\n\nLearn how identities work in [Ory Kratos' User And Identity Model Documentation](https://www.ory.sh/docs/next/kratos/concepts/identity-user-model).", - "operationId": "adminUpdateIdentity", - "parameters": [ - { - "description": "ID must be set to the ID of identity you want to update", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AdminUpdateIdentityBody" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/identity" - } - } - }, - "description": "identity" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "409": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Update an Identity", - "tags": ["v0alpha2"] - } - }, - "/admin/identities/{id}/sessions": { - "delete": { - "description": "This endpoint is useful for:\n\nTo forcefully logout Identity from all devices and sessions", - "operationId": "adminDeleteIdentitySessions", - "parameters": [ - { - "description": "ID is the identity's ID.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Calling this endpoint irrecoverably and permanently deletes and invalidates all sessions that belong to the given Identity.", - "tags": ["v0alpha2"] - }, - "get": { - "description": "This endpoint is useful for:\n\nListing all sessions that belong to an Identity in an administrative context.", - "operationId": "adminListIdentitySessions", - "parameters": [ - { - "description": "ID is the identity's ID.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "Items per Page\n\nThis is the number of items per page.", - "in": "query", - "name": "per_page", - "schema": { - "default": 250, - "format": "int64", - "maximum": 1000, - "minimum": 1, - "type": "integer" - } - }, - { - "description": "Pagination Page\n\nThis value is currently an integer, but it is not sequential. The value is not the page number, but a\nreference. The next page can be any number and some numbers might return an empty list.\n\nFor example, page 2 might not follow after page 1. And even if page 3 and 5 exist, but page 4 might not exist.", - "in": "query", - "name": "page", - "schema": { - "default": 1, - "format": "int64", - "minimum": 1, - "type": "integer" - } - }, - { - "description": "Active is a boolean flag that filters out sessions based on the state. If no value is provided, all sessions are returned.", - "in": "query", - "name": "active", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/sessionList" - } - } - }, - "description": "sessionList" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "This endpoint returns all sessions that belong to the given Identity.", - "tags": ["v0alpha2"] - } - }, - "/admin/recovery/link": { - "post": { - "description": "This endpoint creates a recovery link which should be given to the user in order for them to recover\n(or activate) their account.", - "operationId": "adminCreateSelfServiceRecoveryLink", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/adminCreateSelfServiceRecoveryLinkBody" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceRecoveryLink" - } - } - }, - "description": "selfServiceRecoveryLink" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Create a Recovery Link", - "tags": ["v0alpha2"] - } - }, - "/admin/sessions/{id}/extend": { - "patch": { - "description": "Retrieve the session ID from the `/sessions/whoami` endpoint / `toSession` SDK method.", - "operationId": "adminExtendSession", - "parameters": [ - { - "description": "ID is the session's ID.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/session" - } - } - }, - "description": "session" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Calling this endpoint extends the given session ID. If `session.earliest_possible_extend` is set it\nwill only extend the session after the specified time has passed.", - "tags": ["v0alpha2"] - } - }, - "/health/alive": { - "get": { - "description": "This endpoint returns a HTTP 200 status code when Ory Kratos is accepting incoming\nHTTP requests. This status does currently not include checks whether the database connection is working.\n\nIf the service supports TLS Edge Termination, this endpoint does not require the\n`X-Forwarded-Proto` header to be set.\n\nBe aware that if you are running multiple nodes of this service, the health status will never\nrefer to the cluster state, only to a single instance.", - "operationId": "isAlive", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "properties": { - "status": { - "description": "Always \"ok\".", - "type": "string" - } - }, - "required": ["status"], - "type": "object" - } - } - }, - "description": "Ory Kratos is ready to accept connections." - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - } - }, - "summary": "Check HTTP Server Status", - "tags": ["metadata"] - } - }, - "/health/ready": { - "get": { - "description": "This endpoint returns a HTTP 200 status code when Ory Kratos is up running and the environment dependencies (e.g.\nthe database) are responsive as well.\n\nIf the service supports TLS Edge Termination, this endpoint does not require the\n`X-Forwarded-Proto` header to be set.\n\nBe aware that if you are running multiple nodes of Ory Kratos, the health status will never\nrefer to the cluster state, only to a single instance.", - "operationId": "isReady", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "properties": { - "status": { - "description": "Always \"ok\".", - "type": "string" - } - }, - "required": ["status"], - "type": "object" - } - } - }, - "description": "Ory Kratos is ready to accept requests." - }, - "503": { - "content": { - "application/json": { - "schema": { - "properties": { - "errors": { - "additionalProperties": { - "type": "string" - }, - "description": "Errors contains a list of errors that caused the not ready status.", - "type": "object" - } - }, - "required": ["errors"], - "type": "object" - } - } - }, - "description": "Ory Kratos is not yet ready to accept requests." - } - }, - "summary": "Check HTTP Server and Database Status", - "tags": ["metadata"] - } - }, - "/schemas": { - "get": { - "description": "Get all Identity Schemas", - "operationId": "listIdentitySchemas", - "parameters": [ - { - "description": "Items per Page\n\nThis is the number of items per page.", - "in": "query", - "name": "per_page", - "schema": { - "default": 250, - "format": "int64", - "maximum": 1000, - "minimum": 1, - "type": "integer" - } - }, - { - "description": "Pagination Page\n\nThis value is currently an integer, but it is not sequential. The value is not the page number, but a\nreference. The next page can be any number and some numbers might return an empty list.\n\nFor example, page 2 might not follow after page 1. And even if page 3 and 5 exist, but page 4 might not exist.", - "in": "query", - "name": "page", - "schema": { - "default": 1, - "format": "int64", - "minimum": 1, - "type": "integer" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/identitySchemas" - } - } - }, - "description": "identitySchemas" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "tags": ["v0alpha2"] - } - }, - "/schemas/{id}": { - "get": { - "description": "Get a JSON Schema", - "operationId": "getIdentitySchema", - "parameters": [ - { - "description": "ID must be set to the ID of schema you want to get", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/identitySchema" - } - } - }, - "description": "identitySchema" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "tags": ["v0alpha2"] - } - }, - "/self-service/errors": { - "get": { - "description": "This endpoint returns the error associated with a user-facing self service errors.\n\nThis endpoint supports stub values to help you implement the error UI:\n\n`?id=stub:500` - returns a stub 500 (Internal Server Error) error.\n\nMore information can be found at [Ory Kratos User User Facing Error Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-facing-errors).", - "operationId": "getSelfServiceError", - "parameters": [ - { - "description": "Error is the error's ID", - "in": "query", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceError" - } - } - }, - "description": "selfServiceError" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Get Self-Service Errors", - "tags": ["v0alpha2"] - } - }, - "/self-service/login": { - "post": { - "description": ":::info\n\nThis endpoint is EXPERIMENTAL and subject to potential breaking changes in the future.\n\n:::\n\nUse this endpoint to complete a login flow. This endpoint\nbehaves differently for API and browser flows.\n\nAPI flows expect `application/json` to be sent in the body and responds with\nHTTP 200 and a application/json body with the session token on success;\nHTTP 410 if the original flow expired with the appropriate error messages set and optionally a `use_flow_id` parameter in the body;\nHTTP 400 on form validation errors.\n\nBrowser flows expect a Content-Type of `application/x-www-form-urlencoded` or `application/json` to be sent in the body and respond with\na HTTP 303 redirect to the post/after login URL or the `return_to` value if it was set and if the login succeeded;\na HTTP 303 redirect to the login UI URL with the flow ID containing the validation errors otherwise.\n\nBrowser flows with an accept header of `application/json` will not redirect but instead respond with\nHTTP 200 and a application/json body with the signed in identity and a `Set-Cookie` header on success;\nHTTP 303 redirect to a fresh login flow if the original flow expired with the appropriate error messages set;\nHTTP 400 on form validation errors.\n\nIf this endpoint is called with `Accept: application/json` in the header, the response contains the flow without a redirect. In the\ncase of an error, the `error.id` of the JSON response body can be one of:\n\n`session_already_available`: The user is already signed in.\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n`security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!\n`browser_location_change_required`: Usually sent when an AJAX request indicates that the browser needs to open a specific URL.\nMost likely used in Social Sign In flows.\n\nMore information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).", - "operationId": "submitSelfServiceLoginFlow", - "parameters": [ - { - "description": "The Login Flow ID\n\nThe value for this parameter comes from `flow` URL Query parameter sent to your\napplication (e.g. `/login?flow=abcde`).", - "in": "query", - "name": "flow", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "The Session Token of the Identity performing the settings flow.", - "in": "header", - "name": "X-Session-Token", - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/submitSelfServiceLoginFlowBody" - } - }, - "application/x-www-form-urlencoded": { - "schema": { - "$ref": "#/components/schemas/submitSelfServiceLoginFlowBody" - } - } - }, - "required": true, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/successfulSelfServiceLoginWithoutBrowser" - } - } - }, - "description": "successfulSelfServiceLoginWithoutBrowser" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceLoginFlow" - } - } - }, - "description": "selfServiceLoginFlow" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "422": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceBrowserLocationChangeRequiredError" - } - } - }, - "description": "selfServiceBrowserLocationChangeRequiredError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Submit a Login Flow", - "tags": ["v0alpha2"] - } - }, - "/self-service/login/api": { - "get": { - "description": "This endpoint initiates a login flow for API clients that do not use a browser, such as mobile devices, smart TVs, and so on.\n\nIf a valid provided session cookie or session token is provided, a 400 Bad Request error\nwill be returned unless the URL query parameter `?refresh=true` is set.\n\nTo fetch an existing login flow call `/self-service/login/flows?flow=\u003cflow_id\u003e`.\n\nYou MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server\nPages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make\nyou vulnerable to a variety of CSRF attacks, including CSRF login attacks.\n\nIn the case of an error, the `error.id` of the JSON response body can be one of:\n\n`session_already_available`: The user is already signed in.\n`session_aal1_required`: Multi-factor auth (e.g. 2fa) was requested but the user has no session yet.\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n\nThis endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).\n\nMore information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).", - "operationId": "initializeSelfServiceLoginFlowWithoutBrowser", - "parameters": [ - { - "description": "Refresh a login session\n\nIf set to true, this will refresh an existing login session by\nasking the user to sign in again. This will reset the\nauthenticated_at time of the session.", - "in": "query", - "name": "refresh", - "schema": { - "type": "boolean" - } - }, - { - "description": "Request a Specific AuthenticationMethod Assurance Level\n\nUse this parameter to upgrade an existing session's authenticator assurance level (AAL). This\nallows you to ask for multi-factor authentication. When an identity sign in using e.g. username+password,\nthe AAL is 1. If you wish to \"upgrade\" the session's security by asking the user to perform TOTP / WebAuth/ ...\nyou would set this to \"aal2\".", - "in": "query", - "name": "aal", - "schema": { - "type": "string" - } - }, - { - "description": "The Session Token of the Identity performing the settings flow.", - "in": "header", - "name": "X-Session-Token", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceLoginFlow" - } - } - }, - "description": "selfServiceLoginFlow" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Initialize Login Flow for APIs, Services, Apps, ...", - "tags": ["v0alpha2"] - } - }, - "/self-service/login/browser": { - "get": { - "description": "This endpoint initializes a browser-based user login flow. This endpoint will set the appropriate\ncookies and anti-CSRF measures required for browser-based flows.\n\nIf this endpoint is opened as a link in the browser, it will be redirected to\n`selfservice.flows.login.ui_url` with the flow ID set as the query parameter `?flow=`. If a valid user session\nexists already, the browser will be redirected to `urls.default_redirect_url` unless the query parameter\n`?refresh=true` was set.\n\nIf this endpoint is called via an AJAX request, the response contains the flow without a redirect. In the\ncase of an error, the `error.id` of the JSON response body can be one of:\n\n`session_already_available`: The user is already signed in.\n`session_aal1_required`: Multi-factor auth (e.g. 2fa) was requested but the user has no session yet.\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n`security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!\n\nThe optional query parameter login_challenge is set when using Kratos with\nHydra in an OAuth2 flow. See the selfservice.hydra_admin_url configuration\noption.\n\nThis endpoint is NOT INTENDED for clients that do not have a browser (Chrome, Firefox, ...) as cookies are needed.\n\nMore information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).", - "operationId": "initializeSelfServiceLoginFlowForBrowsers", - "parameters": [ - { - "description": "An optional Hydra login challenge. If present, Kratos will cooperate with\nOry Hydra to act as an OAuth2 identity provider.\n\nThe value for this parameter comes from `login_challenge` URL Query parameter sent to your\napplication (e.g. `/login?login_challenge=abcde`).", - "in": "query", - "name": "login_challenge", - "schema": { - "type": "string" - } - }, - { - "description": "Refresh a login session\n\nIf set to true, this will refresh an existing login session by\nasking the user to sign in again. This will reset the\nauthenticated_at time of the session.", - "in": "query", - "name": "refresh", - "schema": { - "type": "boolean" - } - }, - { - "description": "Request a Specific AuthenticationMethod Assurance Level\n\nUse this parameter to upgrade an existing session's authenticator assurance level (AAL). This\nallows you to ask for multi-factor authentication. When an identity sign in using e.g. username+password,\nthe AAL is 1. If you wish to \"upgrade\" the session's security by asking the user to perform TOTP / WebAuth/ ...\nyou would set this to \"aal2\".", - "in": "query", - "name": "aal", - "schema": { - "type": "string" - } - }, - { - "description": "The URL to return the browser to after the flow was completed.", - "in": "query", - "name": "return_to", - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceLoginFlow" - } - } - }, - "description": "selfServiceLoginFlow" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Initialize Login Flow for Browsers", - "tags": ["v0alpha2"] - } - }, - "/self-service/login/flows": { - "get": { - "description": "This endpoint returns a login flow's context with, for example, error details and other information.\n\nBrowser flows expect the anti-CSRF cookie to be included in the request's HTTP Cookie Header.\nFor AJAX requests you must ensure that cookies are included in the request or requests will fail.\n\nIf you use the browser-flow for server-side apps, the services need to run on a common top-level-domain\nand you need to forward the incoming HTTP Cookie header to this endpoint:\n\n```js\npseudo-code example\nrouter.get('/login', async function (req, res) {\nconst flow = await client.getSelfServiceLoginFlow(req.header('cookie'), req.query['flow'])\n\nres.render('login', flow)\n})\n```\n\nThis request may fail due to several reasons. The `error.id` can be one of:\n\n`session_already_available`: The user is already signed in.\n`self_service_flow_expired`: The flow is expired and you should request a new one.\n\nMore information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).", - "operationId": "getSelfServiceLoginFlow", - "parameters": [ - { - "description": "The Login Flow ID\n\nThe value for this parameter comes from `flow` URL Query parameter sent to your\napplication (e.g. `/login?flow=abcde`).", - "in": "query", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceLoginFlow" - } - } - }, - "description": "selfServiceLoginFlow" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Get Login Flow", - "tags": ["v0alpha2"] - } - }, - "/self-service/logout": { - "get": { - "description": "This endpoint logs out an identity in a self-service manner.\n\nIf the `Accept` HTTP header is not set to `application/json`, the browser will be redirected (HTTP 303 See Other)\nto the `return_to` parameter of the initial request or fall back to `urls.default_return_to`.\n\nIf the `Accept` HTTP header is set to `application/json`, a 204 No Content response\nwill be sent on successful logout instead.\n\nThis endpoint is NOT INTENDED for API clients and only works\nwith browsers (Chrome, Firefox, ...). For API clients you can\ncall the `/self-service/logout/api` URL directly with the Ory Session Token.\n\nMore information can be found at [Ory Kratos User Logout Documentation](https://www.ory.sh/docs/next/kratos/self-service/flows/user-logout).", - "operationId": "submitSelfServiceLogoutFlow", - "parameters": [ - { - "description": "A Valid Logout Token\n\nIf you do not have a logout token because you only have a session cookie,\ncall `/self-service/logout/browser` to generate a URL for this endpoint.", - "in": "query", - "name": "token", - "schema": { - "type": "string" - } - }, - { - "description": "The URL to return to after the logout was completed.", - "in": "query", - "name": "return_to", - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Complete Self-Service Logout", - "tags": ["v0alpha2"] - } - }, - "/self-service/logout/api": { - "delete": { - "description": "Use this endpoint to log out an identity using an Ory Session Token. If the Ory Session Token was successfully\nrevoked, the server returns a 204 No Content response. A 204 No Content response is also sent when\nthe Ory Session Token has been revoked already before.\n\nIf the Ory Session Token is malformed or does not exist a 403 Forbidden response will be returned.\n\nThis endpoint does not remove any HTTP\nCookies - use the Browser-Based Self-Service Logout Flow instead.", - "operationId": "submitSelfServiceLogoutFlowWithoutBrowser", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/submitSelfServiceLogoutFlowWithoutBrowserBody" - } - } - }, - "required": true, - "x-originalParamName": "Body" - }, - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Perform Logout for APIs, Services, Apps, ...", - "tags": ["v0alpha2"] - } - }, - "/self-service/logout/browser": { - "get": { - "description": "This endpoint initializes a browser-based user logout flow and a URL which can be used to log out the user.\n\nThis endpoint is NOT INTENDED for API clients and only works\nwith browsers (Chrome, Firefox, ...). For API clients you can\ncall the `/self-service/logout/api` URL directly with the Ory Session Token.\n\nThe URL is only valid for the currently signed in user. If no user is signed in, this endpoint returns\na 401 error.\n\nWhen calling this endpoint from a backend, please ensure to properly forward the HTTP cookies.", - "operationId": "createSelfServiceLogoutFlowUrlForBrowsers", - "parameters": [ - { - "description": "HTTP Cookies\n\nIf you call this endpoint from a backend, please include the\noriginal Cookie header in the request.", - "in": "header", - "name": "cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceLogoutUrl" - } - } - }, - "description": "selfServiceLogoutUrl" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Create a Logout URL for Browsers", - "tags": ["v0alpha2"] - } - }, - "/self-service/recovery": { - "post": { - "description": "Use this endpoint to complete a recovery flow. This endpoint\nbehaves differently for API and browser flows and has several states:\n\n`choose_method` expects `flow` (in the URL query) and `email` (in the body) to be sent\nand works with API- and Browser-initiated flows.\nFor API clients and Browser clients with HTTP Header `Accept: application/json` it either returns a HTTP 200 OK when the form is valid and HTTP 400 OK when the form is invalid.\nand a HTTP 303 See Other redirect with a fresh recovery flow if the flow was otherwise invalid (e.g. expired).\nFor Browser clients without HTTP Header `Accept` or with `Accept: text/*` it returns a HTTP 303 See Other redirect to the Recovery UI URL with the Recovery Flow ID appended.\n`sent_email` is the success state after `choose_method` for the `link` method and allows the user to request another recovery email. It\nworks for both API and Browser-initiated flows and returns the same responses as the flow in `choose_method` state.\n`passed_challenge` expects a `token` to be sent in the URL query and given the nature of the flow (\"sending a recovery link\")\ndoes not have any API capabilities. The server responds with a HTTP 303 See Other redirect either to the Settings UI URL\n(if the link was valid) and instructs the user to update their password, or a redirect to the Recover UI URL with\na new Recovery Flow ID which contains an error message that the recovery link was invalid.\n\nMore information can be found at [Ory Kratos Account Recovery Documentation](../self-service/flows/account-recovery).", - "operationId": "submitSelfServiceRecoveryFlow", - "parameters": [ - { - "description": "The Recovery Flow ID\n\nThe value for this parameter comes from `flow` URL Query parameter sent to your\napplication (e.g. `/recovery?flow=abcde`).", - "in": "query", - "name": "flow", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "Recovery Token\n\nThe recovery token which completes the recovery request. If the token\nis invalid (e.g. expired) an error will be shown to the end-user.\n\nThis parameter is usually set in a link and not used by any direct API call.", - "in": "query", - "name": "token", - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/submitSelfServiceRecoveryFlowBody" - } - }, - "application/x-www-form-urlencoded": { - "schema": { - "$ref": "#/components/schemas/submitSelfServiceRecoveryFlowBody" - } - } - }, - "required": true, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceRecoveryFlow" - } - } - }, - "description": "selfServiceRecoveryFlow" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceRecoveryFlow" - } - } - }, - "description": "selfServiceRecoveryFlow" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Complete Recovery Flow", - "tags": ["v0alpha2"] - } - }, - "/self-service/recovery/api": { - "get": { - "description": "This endpoint initiates a recovery flow for API clients such as mobile devices, smart TVs, and so on.\n\nIf a valid provided session cookie or session token is provided, a 400 Bad Request error.\n\nTo fetch an existing recovery flow call `/self-service/recovery/flows?flow=\u003cflow_id\u003e`.\n\nYou MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server\nPages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make\nyou vulnerable to a variety of CSRF attacks.\n\nThis endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).\n\nMore information can be found at [Ory Kratos Account Recovery Documentation](../self-service/flows/account-recovery).", - "operationId": "initializeSelfServiceRecoveryFlowWithoutBrowser", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceRecoveryFlow" - } - } - }, - "description": "selfServiceRecoveryFlow" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Initialize Recovery Flow for APIs, Services, Apps, ...", - "tags": ["v0alpha2"] - } - }, - "/self-service/recovery/browser": { - "get": { - "description": "This endpoint initializes a browser-based account recovery flow. Once initialized, the browser will be redirected to\n`selfservice.flows.recovery.ui_url` with the flow ID set as the query parameter `?flow=`. If a valid user session\nexists, the browser is returned to the configured return URL.\n\nIf this endpoint is called via an AJAX request, the response contains the recovery flow without any redirects\nor a 400 bad request error if the user is already authenticated.\n\nThis endpoint is NOT INTENDED for clients that do not have a browser (Chrome, Firefox, ...) as cookies are needed.\n\nMore information can be found at [Ory Kratos Account Recovery Documentation](../self-service/flows/account-recovery).", - "operationId": "initializeSelfServiceRecoveryFlowForBrowsers", - "parameters": [ - { - "description": "The URL to return the browser to after the flow was completed.", - "in": "query", - "name": "return_to", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceRecoveryFlow" - } - } - }, - "description": "selfServiceRecoveryFlow" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Initialize Recovery Flow for Browsers", - "tags": ["v0alpha2"] - } - }, - "/self-service/recovery/flows": { - "get": { - "description": "This endpoint returns a recovery flow's context with, for example, error details and other information.\n\nBrowser flows expect the anti-CSRF cookie to be included in the request's HTTP Cookie Header.\nFor AJAX requests you must ensure that cookies are included in the request or requests will fail.\n\nIf you use the browser-flow for server-side apps, the services need to run on a common top-level-domain\nand you need to forward the incoming HTTP Cookie header to this endpoint:\n\n```js\npseudo-code example\nrouter.get('/recovery', async function (req, res) {\nconst flow = await client.getSelfServiceRecoveryFlow(req.header('Cookie'), req.query['flow'])\n\nres.render('recovery', flow)\n})\n```\n\nMore information can be found at [Ory Kratos Account Recovery Documentation](../self-service/flows/account-recovery).", - "operationId": "getSelfServiceRecoveryFlow", - "parameters": [ - { - "description": "The Flow ID\n\nThe value for this parameter comes from `request` URL Query parameter sent to your\napplication (e.g. `/recovery?flow=abcde`).", - "in": "query", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceRecoveryFlow" - } - } - }, - "description": "selfServiceRecoveryFlow" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Get Recovery Flow", - "tags": ["v0alpha2"] - } - }, - "/self-service/registration": { - "post": { - "description": "Use this endpoint to complete a registration flow by sending an identity's traits and password. This endpoint\nbehaves differently for API and browser flows.\n\nAPI flows expect `application/json` to be sent in the body and respond with\nHTTP 200 and a application/json body with the created identity success - if the session hook is configured the\n`session` and `session_token` will also be included;\nHTTP 410 if the original flow expired with the appropriate error messages set and optionally a `use_flow_id` parameter in the body;\nHTTP 400 on form validation errors.\n\nBrowser flows expect a Content-Type of `application/x-www-form-urlencoded` or `application/json` to be sent in the body and respond with\na HTTP 303 redirect to the post/after registration URL or the `return_to` value if it was set and if the registration succeeded;\na HTTP 303 redirect to the registration UI URL with the flow ID containing the validation errors otherwise.\n\nBrowser flows with an accept header of `application/json` will not redirect but instead respond with\nHTTP 200 and a application/json body with the signed in identity and a `Set-Cookie` header on success;\nHTTP 303 redirect to a fresh login flow if the original flow expired with the appropriate error messages set;\nHTTP 400 on form validation errors.\n\nIf this endpoint is called with `Accept: application/json` in the header, the response contains the flow without a redirect. In the\ncase of an error, the `error.id` of the JSON response body can be one of:\n\n`session_already_available`: The user is already signed in.\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n`security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!\n`browser_location_change_required`: Usually sent when an AJAX request indicates that the browser needs to open a specific URL.\nMost likely used in Social Sign In flows.\n\nMore information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).", - "operationId": "submitSelfServiceRegistrationFlow", - "parameters": [ - { - "description": "The Registration Flow ID\n\nThe value for this parameter comes from `flow` URL Query parameter sent to your\napplication (e.g. `/registration?flow=abcde`).", - "in": "query", - "name": "flow", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/submitSelfServiceRegistrationFlowBody" - } - }, - "application/x-www-form-urlencoded": { - "schema": { - "$ref": "#/components/schemas/submitSelfServiceRegistrationFlowBody" - } - } - }, - "required": true, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/successfulSelfServiceRegistrationWithoutBrowser" - } - } - }, - "description": "successfulSelfServiceRegistrationWithoutBrowser" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceRegistrationFlow" - } - } - }, - "description": "selfServiceRegistrationFlow" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "422": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceBrowserLocationChangeRequiredError" - } - } - }, - "description": "selfServiceBrowserLocationChangeRequiredError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Submit a Registration Flow", - "tags": ["v0alpha2"] - } - }, - "/self-service/registration/api": { - "get": { - "description": "This endpoint initiates a registration flow for API clients such as mobile devices, smart TVs, and so on.\n\nIf a valid provided session cookie or session token is provided, a 400 Bad Request error\nwill be returned unless the URL query parameter `?refresh=true` is set.\n\nTo fetch an existing registration flow call `/self-service/registration/flows?flow=\u003cflow_id\u003e`.\n\nYou MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server\nPages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make\nyou vulnerable to a variety of CSRF attacks.\n\nIn the case of an error, the `error.id` of the JSON response body can be one of:\n\n`session_already_available`: The user is already signed in.\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n\nThis endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).\n\nMore information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).", - "operationId": "initializeSelfServiceRegistrationFlowWithoutBrowser", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceRegistrationFlow" - } - } - }, - "description": "selfServiceRegistrationFlow" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Initialize Registration Flow for APIs, Services, Apps, ...", - "tags": ["v0alpha2"] - } - }, - "/self-service/registration/browser": { - "get": { - "description": "This endpoint initializes a browser-based user registration flow. This endpoint will set the appropriate\ncookies and anti-CSRF measures required for browser-based flows.\n\n:::info\n\nThis endpoint is EXPERIMENTAL and subject to potential breaking changes in the future.\n\n:::\n\nIf this endpoint is opened as a link in the browser, it will be redirected to\n`selfservice.flows.registration.ui_url` with the flow ID set as the query parameter `?flow=`. If a valid user session\nexists already, the browser will be redirected to `urls.default_redirect_url`.\n\nIf this endpoint is called via an AJAX request, the response contains the flow without a redirect. In the\ncase of an error, the `error.id` of the JSON response body can be one of:\n\n`session_already_available`: The user is already signed in.\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n`security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!\n\nIf this endpoint is called via an AJAX request, the response contains the registration flow without a redirect.\n\nThis endpoint is NOT INTENDED for clients that do not have a browser (Chrome, Firefox, ...) as cookies are needed.\n\nMore information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).", - "operationId": "initializeSelfServiceRegistrationFlowForBrowsers", - "parameters": [ - { - "description": "An optional Hydra login challenge. If present, Kratos will cooperate with\nOry Hydra to act as an OAuth2 identity provider.\n\nThe value for this parameter comes from `login_challenge` URL Query parameter sent to your\napplication (e.g. `/registration?login_challenge=abcde`).", - "in": "query", - "name": "login_challenge", - "schema": { - "type": "string" - } - }, - { - "description": "The URL to return the browser to after the flow was completed.", - "in": "query", - "name": "return_to", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceRegistrationFlow" - } - } - }, - "description": "selfServiceRegistrationFlow" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Initialize Registration Flow for Browsers", - "tags": ["v0alpha2"] - } - }, - "/self-service/registration/flows": { - "get": { - "description": "This endpoint returns a registration flow's context with, for example, error details and other information.\n\nBrowser flows expect the anti-CSRF cookie to be included in the request's HTTP Cookie Header.\nFor AJAX requests you must ensure that cookies are included in the request or requests will fail.\n\nIf you use the browser-flow for server-side apps, the services need to run on a common top-level-domain\nand you need to forward the incoming HTTP Cookie header to this endpoint:\n\n```js\npseudo-code example\nrouter.get('/registration', async function (req, res) {\nconst flow = await client.getSelfServiceRegistrationFlow(req.header('cookie'), req.query['flow'])\n\nres.render('registration', flow)\n})\n```\n\nThis request may fail due to several reasons. The `error.id` can be one of:\n\n`session_already_available`: The user is already signed in.\n`self_service_flow_expired`: The flow is expired and you should request a new one.\n\nMore information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).", - "operationId": "getSelfServiceRegistrationFlow", - "parameters": [ - { - "description": "The Registration Flow ID\n\nThe value for this parameter comes from `flow` URL Query parameter sent to your\napplication (e.g. `/registration?flow=abcde`).", - "in": "query", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceRegistrationFlow" - } - } - }, - "description": "selfServiceRegistrationFlow" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Get Registration Flow", - "tags": ["v0alpha2"] - } - }, - "/self-service/settings": { - "post": { - "description": "Use this endpoint to complete a settings flow by sending an identity's updated password. This endpoint\nbehaves differently for API and browser flows.\n\nAPI-initiated flows expect `application/json` to be sent in the body and respond with\nHTTP 200 and an application/json body with the session token on success;\nHTTP 303 redirect to a fresh settings flow if the original flow expired with the appropriate error messages set;\nHTTP 400 on form validation errors.\nHTTP 401 when the endpoint is called without a valid session token.\nHTTP 403 when `selfservice.flows.settings.privileged_session_max_age` was reached or the session's AAL is too low.\nImplies that the user needs to re-authenticate.\n\nBrowser flows without HTTP Header `Accept` or with `Accept: text/*` respond with\na HTTP 303 redirect to the post/after settings URL or the `return_to` value if it was set and if the flow succeeded;\na HTTP 303 redirect to the Settings UI URL with the flow ID containing the validation errors otherwise.\na HTTP 303 redirect to the login endpoint when `selfservice.flows.settings.privileged_session_max_age` was reached or the session's AAL is too low.\n\nBrowser flows with HTTP Header `Accept: application/json` respond with\nHTTP 200 and a application/json body with the signed in identity and a `Set-Cookie` header on success;\nHTTP 303 redirect to a fresh login flow if the original flow expired with the appropriate error messages set;\nHTTP 401 when the endpoint is called without a valid session cookie.\nHTTP 403 when the page is accessed without a session cookie or the session's AAL is too low.\nHTTP 400 on form validation errors.\n\nDepending on your configuration this endpoint might return a 403 error if the session has a lower Authenticator\nAssurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn\ncredentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user\nto sign in with the second factor (happens automatically for server-side browser flows) or change the configuration.\n\nIf this endpoint is called with a `Accept: application/json` HTTP header, the response contains the flow without a redirect. In the\ncase of an error, the `error.id` of the JSON response body can be one of:\n\n`session_refresh_required`: The identity requested to change something that needs a privileged session. Redirect\nthe identity to the login init endpoint with query parameters `?refresh=true\u0026return_to=\u003cthe-current-browser-url\u003e`,\nor initiate a refresh login flow otherwise.\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n`session_inactive`: No Ory Session was found - sign in a user first.\n`security_identity_mismatch`: The flow was interrupted with `session_refresh_required` but apparently some other\nidentity logged in instead.\n`security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!\n`browser_location_change_required`: Usually sent when an AJAX request indicates that the browser needs to open a specific URL.\nMost likely used in Social Sign In flows.\n\nMore information can be found at [Ory Kratos User Settings \u0026 Profile Management Documentation](../self-service/flows/user-settings).", - "operationId": "submitSelfServiceSettingsFlow", - "parameters": [ - { - "description": "The Settings Flow ID\n\nThe value for this parameter comes from `flow` URL Query parameter sent to your\napplication (e.g. `/settings?flow=abcde`).", - "in": "query", - "name": "flow", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "The Session Token of the Identity performing the settings flow.", - "in": "header", - "name": "X-Session-Token", - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/submitSelfServiceSettingsFlowBody" - } - }, - "application/x-www-form-urlencoded": { - "schema": { - "$ref": "#/components/schemas/submitSelfServiceSettingsFlowBody" - } - } - }, - "required": true, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceSettingsFlow" - } - } - }, - "description": "selfServiceSettingsFlow" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceSettingsFlow" - } - } - }, - "description": "selfServiceSettingsFlow" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "422": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceBrowserLocationChangeRequiredError" - } - } - }, - "description": "selfServiceBrowserLocationChangeRequiredError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "security": [ - { - "sessionToken": [] - } - ], - "summary": "Complete Settings Flow", - "tags": ["v0alpha2"] - } - }, - "/self-service/settings/api": { - "get": { - "description": "This endpoint initiates a settings flow for API clients such as mobile devices, smart TVs, and so on.\nYou must provide a valid Ory Kratos Session Token for this endpoint to respond with HTTP 200 OK.\n\nTo fetch an existing settings flow call `/self-service/settings/flows?flow=\u003cflow_id\u003e`.\n\nYou MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server\nPages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make\nyou vulnerable to a variety of CSRF attacks.\n\nDepending on your configuration this endpoint might return a 403 error if the session has a lower Authenticator\nAssurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn\ncredentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user\nto sign in with the second factor or change the configuration.\n\nIn the case of an error, the `error.id` of the JSON response body can be one of:\n\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n`session_inactive`: No Ory Session was found - sign in a user first.\n\nThis endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).\n\nMore information can be found at [Ory Kratos User Settings \u0026 Profile Management Documentation](../self-service/flows/user-settings).", - "operationId": "initializeSelfServiceSettingsFlowWithoutBrowser", - "parameters": [ - { - "description": "The Session Token of the Identity performing the settings flow.", - "in": "header", - "name": "X-Session-Token", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceSettingsFlow" - } - } - }, - "description": "selfServiceSettingsFlow" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Initialize Settings Flow for APIs, Services, Apps, ...", - "tags": ["v0alpha2"] - } - }, - "/self-service/settings/browser": { - "get": { - "description": "This endpoint initializes a browser-based user settings flow. Once initialized, the browser will be redirected to\n`selfservice.flows.settings.ui_url` with the flow ID set as the query parameter `?flow=`. If no valid\nOry Kratos Session Cookie is included in the request, a login flow will be initialized.\n\nIf this endpoint is opened as a link in the browser, it will be redirected to\n`selfservice.flows.settings.ui_url` with the flow ID set as the query parameter `?flow=`. If no valid user session\nwas set, the browser will be redirected to the login endpoint.\n\nIf this endpoint is called via an AJAX request, the response contains the settings flow without any redirects\nor a 401 forbidden error if no valid session was set.\n\nDepending on your configuration this endpoint might return a 403 error if the session has a lower Authenticator\nAssurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn\ncredentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user\nto sign in with the second factor (happens automatically for server-side browser flows) or change the configuration.\n\nIf this endpoint is called via an AJAX request, the response contains the flow without a redirect. In the\ncase of an error, the `error.id` of the JSON response body can be one of:\n\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n`session_inactive`: No Ory Session was found - sign in a user first.\n`security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!\n\nThis endpoint is NOT INTENDED for clients that do not have a browser (Chrome, Firefox, ...) as cookies are needed.\n\nMore information can be found at [Ory Kratos User Settings \u0026 Profile Management Documentation](../self-service/flows/user-settings).", - "operationId": "initializeSelfServiceSettingsFlowForBrowsers", - "parameters": [ - { - "description": "The URL to return the browser to after the flow was completed.", - "in": "query", - "name": "return_to", - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceSettingsFlow" - } - } - }, - "description": "selfServiceSettingsFlow" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Initialize Settings Flow for Browsers", - "tags": ["v0alpha2"] - } - }, - "/self-service/settings/flows": { - "get": { - "description": "When accessing this endpoint through Ory Kratos' Public API you must ensure that either the Ory Kratos Session Cookie\nor the Ory Kratos Session Token are set.\n\nDepending on your configuration this endpoint might return a 403 error if the session has a lower Authenticator\nAssurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn\ncredentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user\nto sign in with the second factor or change the configuration.\n\nYou can access this endpoint without credentials when using Ory Kratos' Admin API.\n\nIf this endpoint is called via an AJAX request, the response contains the flow without a redirect. In the\ncase of an error, the `error.id` of the JSON response body can be one of:\n\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n`session_inactive`: No Ory Session was found - sign in a user first.\n`security_identity_mismatch`: The flow was interrupted with `session_refresh_required` but apparently some other\nidentity logged in instead.\n\nMore information can be found at [Ory Kratos User Settings \u0026 Profile Management Documentation](../self-service/flows/user-settings).", - "operationId": "getSelfServiceSettingsFlow", - "parameters": [ - { - "description": "ID is the Settings Flow ID\n\nThe value for this parameter comes from `flow` URL Query parameter sent to your\napplication (e.g. `/settings?flow=abcde`).", - "in": "query", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "The Session Token\n\nWhen using the SDK in an app without a browser, please include the\nsession token here.", - "in": "header", - "name": "X-Session-Token", - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceSettingsFlow" - } - } - }, - "description": "selfServiceSettingsFlow" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Get Settings Flow", - "tags": ["v0alpha2"] - } - }, - "/self-service/verification": { - "post": { - "description": "Use this endpoint to complete a verification flow. This endpoint\nbehaves differently for API and browser flows and has several states:\n\n`choose_method` expects `flow` (in the URL query) and `email` (in the body) to be sent\nand works with API- and Browser-initiated flows.\nFor API clients and Browser clients with HTTP Header `Accept: application/json` it either returns a HTTP 200 OK when the form is valid and HTTP 400 OK when the form is invalid\nand a HTTP 303 See Other redirect with a fresh verification flow if the flow was otherwise invalid (e.g. expired).\nFor Browser clients without HTTP Header `Accept` or with `Accept: text/*` it returns a HTTP 303 See Other redirect to the Verification UI URL with the Verification Flow ID appended.\n`sent_email` is the success state after `choose_method` when using the `link` method and allows the user to request another verification email. It\nworks for both API and Browser-initiated flows and returns the same responses as the flow in `choose_method` state.\n`passed_challenge` expects a `token` to be sent in the URL query and given the nature of the flow (\"sending a verification link\")\ndoes not have any API capabilities. The server responds with a HTTP 303 See Other redirect either to the Settings UI URL\n(if the link was valid) and instructs the user to update their password, or a redirect to the Verification UI URL with\na new Verification Flow ID which contains an error message that the verification link was invalid.\n\nMore information can be found at [Ory Kratos Email and Phone Verification Documentation](https://www.ory.sh/docs/kratos/selfservice/flows/verify-email-account-activation).", - "operationId": "submitSelfServiceVerificationFlow", - "parameters": [ - { - "description": "The Verification Flow ID\n\nThe value for this parameter comes from `flow` URL Query parameter sent to your\napplication (e.g. `/verification?flow=abcde`).", - "in": "query", - "name": "flow", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "Verification Token\n\nThe verification token which completes the verification request. If the token\nis invalid (e.g. expired) an error will be shown to the end-user.\n\nThis parameter is usually set in a link and not used by any direct API call.", - "in": "query", - "name": "token", - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/submitSelfServiceVerificationFlowBody" - } - }, - "application/x-www-form-urlencoded": { - "schema": { - "$ref": "#/components/schemas/submitSelfServiceVerificationFlowBody" - } - } - }, - "required": true, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceVerificationFlow" - } - } - }, - "description": "selfServiceVerificationFlow" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceVerificationFlow" - } - } - }, - "description": "selfServiceVerificationFlow" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Complete Verification Flow", - "tags": ["v0alpha2"] - } - }, - "/self-service/verification/api": { - "get": { - "description": "This endpoint initiates a verification flow for API clients such as mobile devices, smart TVs, and so on.\n\nTo fetch an existing verification flow call `/self-service/verification/flows?flow=\u003cflow_id\u003e`.\n\nYou MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server\nPages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make\nyou vulnerable to a variety of CSRF attacks.\n\nThis endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).\n\nMore information can be found at [Ory Kratos Email and Phone Verification Documentation](https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation).", - "operationId": "initializeSelfServiceVerificationFlowWithoutBrowser", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceVerificationFlow" - } - } - }, - "description": "selfServiceVerificationFlow" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Initialize Verification Flow for APIs, Services, Apps, ...", - "tags": ["v0alpha2"] - } - }, - "/self-service/verification/browser": { - "get": { - "description": "This endpoint initializes a browser-based account verification flow. Once initialized, the browser will be redirected to\n`selfservice.flows.verification.ui_url` with the flow ID set as the query parameter `?flow=`.\n\nIf this endpoint is called via an AJAX request, the response contains the recovery flow without any redirects.\n\nThis endpoint is NOT INTENDED for API clients and only works with browsers (Chrome, Firefox, ...).\n\nMore information can be found at [Ory Kratos Email and Phone Verification Documentation](https://www.ory.sh/docs/kratos/selfservice/flows/verify-email-account-activation).", - "operationId": "initializeSelfServiceVerificationFlowForBrowsers", - "parameters": [ - { - "description": "The URL to return the browser to after the flow was completed.", - "in": "query", - "name": "return_to", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceVerificationFlow" - } - } - }, - "description": "selfServiceVerificationFlow" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Initialize Verification Flow for Browser Clients", - "tags": ["v0alpha2"] - } - }, - "/self-service/verification/flows": { - "get": { - "description": "This endpoint returns a verification flow's context with, for example, error details and other information.\n\nBrowser flows expect the anti-CSRF cookie to be included in the request's HTTP Cookie Header.\nFor AJAX requests you must ensure that cookies are included in the request or requests will fail.\n\nIf you use the browser-flow for server-side apps, the services need to run on a common top-level-domain\nand you need to forward the incoming HTTP Cookie header to this endpoint:\n\n```js\npseudo-code example\nrouter.get('/recovery', async function (req, res) {\nconst flow = await client.getSelfServiceVerificationFlow(req.header('cookie'), req.query['flow'])\n\nres.render('verification', flow)\n})\n\nMore information can be found at [Ory Kratos Email and Phone Verification Documentation](https://www.ory.sh/docs/kratos/selfservice/flows/verify-email-account-activation).", - "operationId": "getSelfServiceVerificationFlow", - "parameters": [ - { - "description": "The Flow ID\n\nThe value for this parameter comes from `request` URL Query parameter sent to your\napplication (e.g. `/verification?flow=abcde`).", - "in": "query", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK on the server side you must include the HTTP Cookie Header\noriginally sent to your HTTP handler here.", - "in": "header", - "name": "cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/selfServiceVerificationFlow" - } - } - }, - "description": "selfServiceVerificationFlow" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Get Verification Flow", - "tags": ["v0alpha2"] - } - }, - "/sessions": { - "delete": { - "description": "This endpoint is useful for:\n\nTo forcefully logout the current user from all other devices and sessions", - "operationId": "revokeSessions", - "parameters": [ - { - "description": "Set the Session Token when calling from non-browser clients. A session token has a format of `MP2YWEMeM8MxjkGKpH4dqOQ4Q4DlSPaj`.", - "in": "header", - "name": "X-Session-Token", - "schema": { - "type": "string" - } - }, - { - "description": "Set the Cookie Header. This is especially useful when calling this endpoint from a server-side application. In that\nscenario you must include the HTTP Cookie Header which originally was included in the request to your server.\nAn example of a session in the HTTP Cookie Header is: `ory_kratos_session=a19iOVAbdzdgl70Rq1QZmrKmcjDtdsviCTZx7m9a9yHIUS8Wa9T7hvqyGTsLHi6Qifn2WUfpAKx9DWp0SJGleIn9vh2YF4A16id93kXFTgIgmwIOvbVAScyrx7yVl6bPZnCx27ec4WQDtaTewC1CpgudeDV2jQQnSaCP6ny3xa8qLH-QUgYqdQuoA_LF1phxgRCUfIrCLQOkolX5nv3ze_f==`.\n\nIt is ok if more than one cookie are included here as all other cookies will be ignored.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/revokedSessions" - } - } - }, - "description": "revokedSessions" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Calling this endpoint invalidates all except the current session that belong to the logged-in user.\nSession data are not deleted.", - "tags": ["v0alpha2"] - }, - "get": { - "description": "This endpoint is useful for:\n\nDisplaying all other sessions that belong to the logged-in user", - "operationId": "listSessions", - "parameters": [ - { - "description": "Set the Session Token when calling from non-browser clients. A session token has a format of `MP2YWEMeM8MxjkGKpH4dqOQ4Q4DlSPaj`.", - "in": "header", - "name": "X-Session-Token", - "schema": { - "type": "string" - } - }, - { - "description": "Set the Cookie Header. This is especially useful when calling this endpoint from a server-side application. In that\nscenario you must include the HTTP Cookie Header which originally was included in the request to your server.\nAn example of a session in the HTTP Cookie Header is: `ory_kratos_session=a19iOVAbdzdgl70Rq1QZmrKmcjDtdsviCTZx7m9a9yHIUS8Wa9T7hvqyGTsLHi6Qifn2WUfpAKx9DWp0SJGleIn9vh2YF4A16id93kXFTgIgmwIOvbVAScyrx7yVl6bPZnCx27ec4WQDtaTewC1CpgudeDV2jQQnSaCP6ny3xa8qLH-QUgYqdQuoA_LF1phxgRCUfIrCLQOkolX5nv3ze_f==`.\n\nIt is ok if more than one cookie are included here as all other cookies will be ignored.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - }, - { - "description": "Items per Page\n\nThis is the number of items per page.", - "in": "query", - "name": "per_page", - "schema": { - "default": 250, - "format": "int64", - "maximum": 1000, - "minimum": 1, - "type": "integer" - } - }, - { - "description": "Pagination Page\n\nThis value is currently an integer, but it is not sequential. The value is not the page number, but a\nreference. The next page can be any number and some numbers might return an empty list.\n\nFor example, page 2 might not follow after page 1. And even if page 3 and 5 exist, but page 4 might not exist.", - "in": "query", - "name": "page", - "schema": { - "default": 1, - "format": "int64", - "minimum": 1, - "type": "integer" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/sessionList" - } - } - }, - "description": "sessionList" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "This endpoints returns all other active sessions that belong to the logged-in user.\nThe current session can be retrieved by calling the `/sessions/whoami` endpoint.", - "tags": ["v0alpha2"] - } - }, - "/sessions/whoami": { - "get": { - "description": "Uses the HTTP Headers in the GET request to determine (e.g. by using checking the cookies) who is authenticated.\nReturns a session object in the body or 401 if the credentials are invalid or no credentials were sent.\nAdditionally when the request it successful it adds the user ID to the 'X-Kratos-Authenticated-Identity-Id' header\nin the response.\n\nIf you call this endpoint from a server-side application, you must forward the HTTP Cookie Header to this endpoint:\n\n```js\npseudo-code example\nrouter.get('/protected-endpoint', async function (req, res) {\nconst session = await client.toSession(undefined, req.header('cookie'))\n\nconsole.log(session)\n})\n```\n\nWhen calling this endpoint from a non-browser application (e.g. mobile app) you must include the session token:\n\n```js\npseudo-code example\n...\nconst session = await client.toSession(\"the-session-token\")\n\nconsole.log(session)\n```\n\nDepending on your configuration this endpoint might return a 403 status code if the session has a lower Authenticator\nAssurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn\ncredentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user\nto sign in with the second factor or change the configuration.\n\nThis endpoint is useful for:\n\nAJAX calls. Remember to send credentials and set up CORS correctly!\nReverse proxies and API Gateways\nServer-side calls - use the `X-Session-Token` header!\n\n# This endpoint authenticates users by checking\n\nif the `Cookie` HTTP header was set containing an Ory Kratos Session Cookie;\nif the `Authorization: bearer \u003cory-session-token\u003e` HTTP header was set with a valid Ory Kratos Session Token;\nif the `X-Session-Token` HTTP header was set with a valid Ory Kratos Session Token.\n\nIf none of these headers are set or the cooke or token are invalid, the endpoint returns a HTTP 401 status code.\n\nAs explained above, this request may fail due to several reasons. The `error.id` can be one of:\n\n`session_inactive`: No active session was found in the request (e.g. no Ory Session Cookie / Ory Session Token).\n`session_aal2_required`: An active session was found but it does not fulfil the Authenticator Assurance Level, implying that the session must (e.g.) authenticate the second factor.", - "operationId": "toSession", - "parameters": [ - { - "description": "Set the Session Token when calling from non-browser clients. A session token has a format of `MP2YWEMeM8MxjkGKpH4dqOQ4Q4DlSPaj`.", - "example": "MP2YWEMeM8MxjkGKpH4dqOQ4Q4DlSPaj", - "in": "header", - "name": "X-Session-Token", - "schema": { - "type": "string" - } - }, - { - "description": "Set the Cookie Header. This is especially useful when calling this endpoint from a server-side application. In that\nscenario you must include the HTTP Cookie Header which originally was included in the request to your server.\nAn example of a session in the HTTP Cookie Header is: `ory_kratos_session=a19iOVAbdzdgl70Rq1QZmrKmcjDtdsviCTZx7m9a9yHIUS8Wa9T7hvqyGTsLHi6Qifn2WUfpAKx9DWp0SJGleIn9vh2YF4A16id93kXFTgIgmwIOvbVAScyrx7yVl6bPZnCx27ec4WQDtaTewC1CpgudeDV2jQQnSaCP6ny3xa8qLH-QUgYqdQuoA_LF1phxgRCUfIrCLQOkolX5nv3ze_f==`.\n\nIt is ok if more than one cookie are included here as all other cookies will be ignored.", - "example": "ory_kratos_session=a19iOVAbdzdgl70Rq1QZmrKmcjDtdsviCTZx7m9a9yHIUS8Wa9T7hvqyGTsLHi6Qifn2WUfpAKx9DWp0SJGleIn9vh2YF4A16id93kXFTgIgmwIOvbVAScyrx7yVl6bPZnCx27ec4WQDtaTewC1CpgudeDV2jQQnSaCP6ny3xa8qLH-QUgYqdQuoA_LF1phxgRCUfIrCLQOkolX5nv3ze_f==", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/session" - } - } - }, - "description": "session" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Check Who the Current HTTP Session Belongs To", - "tags": ["v0alpha2"] - } - }, - "/sessions/{id}": { - "delete": { - "description": "This endpoint is useful for:\n\nTo forcefully logout the current user from another device or session", - "operationId": "revokeSession", - "parameters": [ - { - "description": "ID is the session's ID.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonError" - } - } - }, - "description": "jsonError" - } - }, - "summary": "Calling this endpoint invalidates the specified session. The current session cannot be revoked.\nSession data are not deleted.", - "tags": ["v0alpha2"] - } - }, - "/version": { - "get": { - "description": "This endpoint returns the version of Ory Kratos.\n\nIf the service supports TLS Edge Termination, this endpoint does not require the\n`X-Forwarded-Proto` header to be set.\n\nBe aware that if you are running multiple nodes of this service, the version will never\nrefer to the cluster state, only to a single instance.", - "operationId": "getVersion", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "properties": { - "version": { - "description": "The version of Ory Kratos.", - "type": "string" - } - }, - "required": ["version"], - "type": "object" - } - } - }, - "description": "Returns the Ory Kratos version." - } - }, - "summary": "Return Running Software Version.", - "tags": ["metadata"] - } - } - }, - "x-forwarded-proto": "string", - "x-request-id": "string" -} diff --git a/kratos-hydra/contrib/sdk/typescript.yml b/kratos-hydra/contrib/sdk/typescript.yml deleted file mode 100644 index f3ebfc9f..00000000 --- a/kratos-hydra/contrib/sdk/typescript.yml +++ /dev/null @@ -1,7 +0,0 @@ -npmName: "@ory/client" -npmVersion: v0.0.1 -supportsES6: true -ensureUniqueParams: true -modelPropertyNaming: original -disallowAdditionalPropertiesIfNotPresent: false -withInterfaces: true diff --git a/kratos-hydra/contrib/hydra/docker-compose.yml b/kratos-hydra/docker-compose.yml similarity index 95% rename from kratos-hydra/contrib/hydra/docker-compose.yml rename to kratos-hydra/docker-compose.yml index c7d817da..f27e03d9 100644 --- a/kratos-hydra/contrib/hydra/docker-compose.yml +++ b/kratos-hydra/docker-compose.yml @@ -50,16 +50,13 @@ services: read_only: false kratos-selfservice-ui-node: - build: - context: ../.. - dockerfile: Dockerfile + image: oryd/kratos-selfservice-ui-node:v0.13.0-4 environment: - HYDRA_ADMIN_URL=http://hydra:4445 - KRATOS_PUBLIC_URL=http://kratos:4433 - KRATOS_ADMIN_URL=http://kratos:4434 - SECURITY_MODE=standalone - KRATOS_BROWSER_URL=http://127.0.0.1:4433 - # - KRATOS_BROWSER_URL=http://127.0.0.1:3000/.ory/kratos/public ports: - "3000:3000" @@ -69,7 +66,7 @@ services: - /tmp/ui-node/logs:/root/.npm/_logs kratos-migrate: - image: oryd/kratos:v0.13.0 + image: oryd/kratos:v1.0.0 environment: - DSN=sqlite:///var/lib/sqlite/db.sqlite?_fk=true&mode=rwc volumes: diff --git a/kratos-hydra/hydra/hydra.yml b/kratos-hydra/hydra/hydra.yml new file mode 100644 index 00000000..4bdf2bab --- /dev/null +++ b/kratos-hydra/hydra/hydra.yml @@ -0,0 +1,19 @@ +urls: + self: + issuer: http://127.0.0.1:4444 + public: http://127.0.0.1:4444 + consent: http://127.0.0.1:3000/consent + login: http://127.0.0.1:3000/login + logout: http://127.0.0.1:3000/logout + +secrets: + system: + - youReallyNeedToChangeThis + +oidc: + subject_identifiers: + supported_types: + - pairwise + - public + pairwise: + salt: youReallyNeedToChangeThis diff --git a/kratos-hydra/contrib/hydra/kratos/identity.schema.json b/kratos-hydra/kratos/identity.schema.json similarity index 100% rename from kratos-hydra/contrib/hydra/kratos/identity.schema.json rename to kratos-hydra/kratos/identity.schema.json diff --git a/kratos-hydra/contrib/hydra/kratos/kratos.yml b/kratos-hydra/kratos/kratos.yml similarity index 95% rename from kratos-hydra/contrib/hydra/kratos/kratos.yml rename to kratos-hydra/kratos/kratos.yml index 3667a3d5..a7231e5a 100644 --- a/kratos-hydra/contrib/hydra/kratos/kratos.yml +++ b/kratos-hydra/kratos/kratos.yml @@ -1,6 +1,5 @@ serve: public: - # base_url: http://127.0.0.1:3000/.ory/kratos/public/ base_url: http://127.0.0.1:4433/ admin: base_url: http://kratos:4434/ diff --git a/kratos-hydra/nodemon.json b/kratos-hydra/nodemon.json deleted file mode 100644 index 7432e790..00000000 --- a/kratos-hydra/nodemon.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "watch": ["src"], - "ext": "ts", - "exec": "ts-node ./src/index.ts" -} diff --git a/kratos-hydra/openapitools.json b/kratos-hydra/openapitools.json deleted file mode 100644 index 601ac1d6..00000000 --- a/kratos-hydra/openapitools.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json", - "spaces": 2, - "generator-cli": { - "version": "5.2.1" - } -} diff --git a/kratos-hydra/package-lock.json b/kratos-hydra/package-lock.json deleted file mode 100644 index 6358b132..00000000 --- a/kratos-hydra/package-lock.json +++ /dev/null @@ -1,5903 +0,0 @@ -{ - "name": "@ory/kratos-selfservice-ui-node", - "version": "0.12.0", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "@ory/kratos-selfservice-ui-node", - "version": "0.12.0", - "license": "Apache-2.0", - "dependencies": { - "@ory/client": "1.1.23", - "@ory/elements-markup": "0.0.1-beta.6", - "@ory/integrations": "1.1.0", - "axios": "1.2.6", - "body-parser": "1.20.1", - "cookie-parser": "1.4.6", - "csurf": "1.11.0", - "express": "4.18.2", - "express-handlebars": "6.0.7", - "express-jwt": "8.4.0", - "express-winston": "4.2.0", - "jwks-rsa": "3.0.1", - "winston": "3.8.2" - }, - "devDependencies": { - "@trivago/prettier-plugin-sort-imports": "4.0.0", - "@types/axios": "0.14.0", - "@types/cookie-parser": "1.4.3", - "@types/csurf": "1.11.2", - "@types/express": "4.17.16", - "@types/express-handlebars": "6.0.0", - "@types/handlebars-helpers": "0.5.3", - "@types/jwt-decode": "3.1.0", - "@types/next": "9.0.0", - "@types/node": "18.11.18", - "license-checker": "^25.0.1", - "nodemon": "2.0.20", - "npm-run-all": "4.1.5", - "ory-prettier-styles": "1.3.0", - "prettier": "2.8.3", - "prettier-plugin-packagejson": "2.4.2", - "ts-node": "10.9.1", - "typescript": "4.9.5" - }, - "engines": { - "node": ">=16.16.0", - "npm": ">=8.11.0" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", - "dev": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", - "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.21.7", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.7.tgz", - "integrity": "sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.17.8", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.17.8.tgz", - "integrity": "sha512-OdQDV/7cRBtJHLSOBqqbYNkOcydOgnX59TZx4puf41fzcVtN3e/4yqY8lMQsK+5X2lJtAdmA+6OHqsj1hBJ4IQ==", - "dev": true, - "dependencies": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.17.7", - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-module-transforms": "^7.17.7", - "@babel/helpers": "^7.17.8", - "@babel/parser": "^7.17.8", - "@babel/template": "^7.16.7", - "@babel/traverse": "^7.17.3", - "@babel/types": "^7.17.0", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.1.2", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/core/node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/@babel/core/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/generator": { - "version": "7.17.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.17.7.tgz", - "integrity": "sha512-oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.17.0", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz", - "integrity": "sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.21.5", - "@babel/helper-validator-option": "^7.21.0", - "browserslist": "^4.21.3", - "lru-cache": "^5.1.1", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz", - "integrity": "sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz", - "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/template": "^7.20.7", - "@babel/types": "^7.21.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz", - "integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.21.4" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz", - "integrity": "sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.21.5", - "@babel/helper-module-imports": "^7.21.4", - "@babel/helper-simple-access": "^7.21.5", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms/node_modules/@babel/generator": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz", - "integrity": "sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==", - "dev": true, - "dependencies": { - "@babel/types": "^7.21.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms/node_modules/@babel/traverse": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz", - "integrity": "sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.5", - "@babel/helper-environment-visitor": "^7.21.5", - "@babel/helper-function-name": "^7.21.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.21.5", - "@babel/types": "^7.21.5", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms/node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/@babel/helper-module-transforms/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz", - "integrity": "sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.21.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz", - "integrity": "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz", - "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.5.tgz", - "integrity": "sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==", - "dev": true, - "dependencies": { - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers/node_modules/@babel/generator": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz", - "integrity": "sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==", - "dev": true, - "dependencies": { - "@babel/types": "^7.21.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers/node_modules/@babel/traverse": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz", - "integrity": "sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.5", - "@babel/helper-environment-visitor": "^7.21.5", - "@babel/helper-function-name": "^7.21.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.21.5", - "@babel/types": "^7.21.5", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers/node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/@babel/helpers/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.5.tgz", - "integrity": "sha512-J+IxH2IsxV4HbnTrSWgMAQj0UEo61hDA4Ny8h8PCX0MLXiibqHbqIOVneqdocemSBc22VpBKxt4J6FQzy9HarQ==", - "dev": true, - "license": "MIT", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/template": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", - "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.17.3", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.3.tgz", - "integrity": "sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.17.3", - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.16.7", - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.17.3", - "@babel/types": "^7.17.0", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse/node_modules/@babel/generator": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz", - "integrity": "sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.21.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse/node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/@babel/traverse/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true, - "license": "MIT" - }, - "node_modules/@babel/types": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz", - "integrity": "sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-string-parser": "^7.21.5", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", - "license": "MIT", - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/resolve-uri": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", - "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "node_modules/@dabh/diagnostics": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", - "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==", - "license": "MIT", - "dependencies": { - "colorspace": "1.1.x", - "enabled": "2.0.x", - "kuler": "^2.0.0" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", - "dev": true, - "license": "MIT" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - } - }, - "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true, - "license": "MIT" - }, - "node_modules/@next/env": { - "version": "13.3.3", - "resolved": "https://registry.npmjs.org/@next/env/-/env-13.3.3.tgz", - "integrity": "sha512-c6HS6kzp8pGd+GX9EgECA/GGSO2ZO+4+RNkrWz+T+I15Ia6f013glAJJuQ/wNYAua63PlB1yjdAe7PuYqMw4Ag==", - "license": "MIT" - }, - "node_modules/@next/swc-darwin-arm64": { - "version": "13.3.3", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.3.3.tgz", - "integrity": "sha512-FcQwSiTMSk4VLwfiqSBvPapTeZarwMV4tX0BZBmKUBuK6/aqn3SLqEtcQFwR88ZrDn6dhmdjfe6plJ52vDU7Kg==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-darwin-x64": { - "version": "13.3.3", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.3.3.tgz", - "integrity": "sha512-tB76YU1IEsKhnyU3JaSj8/5IxuqopS0C5cdlnVPaYRDGzwUjBWQZjR2u4ce9whoqmxSEm0iqy0ftVyD9ZUHsMw==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm64-gnu": { - "version": "13.3.3", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.3.3.tgz", - "integrity": "sha512-RvCpdlQr4tk+YuzyTl0UVNxw9343HqqNcneHicvNRARF/yRBm16Dd57uLTnUGonjFgB3emKCeqMTgOorvouxjg==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm64-musl": { - "version": "13.3.3", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.3.3.tgz", - "integrity": "sha512-gdX0R1rnpml13huya3i9ASqMNp1ygXs62Q/9O3V/6n54Ik9PCTx43DMvjllBewdffgIPHdnHQ+elyaepKP15NQ==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-x64-gnu": { - "version": "13.3.3", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.3.3.tgz", - "integrity": "sha512-MduclMQRZqvUhmiX8F/pW4V2KI1CYyzeL501UdStygiQO/+xAsaEL6Gr7d5hhlk0Aisfyif0tbwmV987w1OISg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-x64-musl": { - "version": "13.3.3", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.3.3.tgz", - "integrity": "sha512-rbteW5iQ+MBDz6la7LN90uzD1wFVCoeS9R9abo8BbRmBvJdb7SY27ipLPJEJp/eAL6YaznpMRMu5CCUS0EOosg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-arm64-msvc": { - "version": "13.3.3", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.3.3.tgz", - "integrity": "sha512-jPlz6uxQIImu3BBDsLUB6gdM7PXfbiL6RlgiNscGTcWbuk1SQd2s0LFi/MOOAr+X0cO1SZqxJjk4cA2DZ7EG0A==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-ia32-msvc": { - "version": "13.3.3", - "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.3.3.tgz", - "integrity": "sha512-JoVfMb+83nWosbeFKH4ZE8z3peSkQ08QfPpj1wKh331pRInrMmYQBgbW6p1rpLqBh4odqXVBPs6m04hCEZX4dg==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-x64-msvc": { - "version": "13.3.3", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.3.3.tgz", - "integrity": "sha512-hPYQbIIvLrbBAQ1gOcsPpYssCyQQG8W4LG6upp++18tjkH7mPW2Kl9kFMityKMqX/t2hnBuOiGcm2VR8UYJyxg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@ory/client": { - "version": "1.1.23", - "resolved": "https://registry.npmjs.org/@ory/client/-/client-1.1.23.tgz", - "integrity": "sha512-bnPOMxUrA31vLT/vjWW3r8qSW/+D/Fsz+YTYzcBVTa5Y0fggmbRdlLeRAgP4+tCmaOxYnw//y4t9tRVRWOWDhA==", - "dependencies": { - "axios": "^0.21.4" - } - }, - "node_modules/@ory/client/node_modules/axios": { - "version": "0.21.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", - "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", - "license": "MIT", - "dependencies": { - "follow-redirects": "^1.14.0" - } - }, - "node_modules/@ory/elements-markup": { - "version": "0.0.1-beta.6", - "resolved": "https://registry.npmjs.org/@ory/elements-markup/-/elements-markup-0.0.1-beta.6.tgz", - "integrity": "sha512-Gj1GyegnidqS4uUqL7s0WhPRiXn+mb+ZEe0RFofaBG6npjsagy/EBp56zqd0Z64zjEV8hKHE6MvMs9mmYNTSbA==", - "license": "Apache License 2.0", - "engines": { - "node": ">=16.16.0", - "npm": ">=8.11.0" - } - }, - "node_modules/@ory/integrations": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@ory/integrations/-/integrations-1.1.0.tgz", - "integrity": "sha512-1PQhpj2AGF2fX15IyftdMACeaBWSMzsOJgX3q5mJY76CzjJxfWPxnrX3Y0YaHcbCQsHw3NPcRPK0am3NCezumw==", - "license": "Apache-2.0", - "dependencies": { - "@ory/client": "^1.1.0", - "@types/tldjs": "^2.3.1", - "cookie": "^0.4.1", - "istextorbinary": "^6.0.0", - "next": ">=12.0.10", - "ory-prettier-styles": "^1.3.0", - "prettier": "^2.3.2", - "request": "^2.88.2", - "set-cookie-parser": "^2.4.8", - "tldjs": "^2.3.1" - }, - "peerDependencies": { - "@ory/client": "^0.2.0-alpha.16", - "next": ">=12.0.10" - } - }, - "node_modules/@ory/integrations/node_modules/cookie": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", - "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@ory/integrations/node_modules/prettier": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", - "license": "MIT", - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/@pkgr/utils": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz", - "integrity": "sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==", - "dev": true, - "license": "MIT", - "dependencies": { - "cross-spawn": "^7.0.3", - "is-glob": "^4.0.3", - "open": "^8.4.0", - "picocolors": "^1.0.0", - "tiny-glob": "^0.2.9", - "tslib": "^2.4.0" - }, - "engines": { - "node": "^12.20.0 || ^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" - } - }, - "node_modules/@pkgr/utils/node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@pkgr/utils/node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@pkgr/utils/node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "license": "MIT", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@pkgr/utils/node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@pkgr/utils/node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@swc/helpers": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", - "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@trivago/prettier-plugin-sort-imports": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@trivago/prettier-plugin-sort-imports/-/prettier-plugin-sort-imports-4.0.0.tgz", - "integrity": "sha512-Tyuk5ZY4a0e2MNFLdluQO9F6d1awFQYXVVujEPFfvKPPXz8DADNHzz73NMhwCSXGSuGGZcA/rKOyZBrxVNMxaA==", - "dev": true, - "dependencies": { - "@babel/core": "7.17.8", - "@babel/generator": "7.17.7", - "@babel/parser": "7.18.9", - "@babel/traverse": "7.17.3", - "@babel/types": "7.17.0", - "javascript-natural-sort": "0.7.1", - "lodash": "4.17.21" - }, - "peerDependencies": { - "@vue/compiler-sfc": "3.x", - "prettier": "2.x" - } - }, - "node_modules/@trivago/prettier-plugin-sort-imports/node_modules/@babel/parser": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.9.tgz", - "integrity": "sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==", - "dev": true, - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@trivago/prettier-plugin-sort-imports/node_modules/@babel/types": { - "version": "7.17.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz", - "integrity": "sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true, - "license": "MIT" - }, - "node_modules/@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true, - "license": "MIT" - }, - "node_modules/@tsconfig/node16": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz", - "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/axios": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@types/axios/-/axios-0.14.0.tgz", - "integrity": "sha512-KqQnQbdYE54D7oa/UmYVMZKq7CO4l8DEENzOKc4aBRwxCXSlJXGz83flFx5L7AWrOQnmuN3kVsRdt+GZPPjiVQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "axios": "*" - } - }, - "node_modules/@types/body-parser": { - "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", - "license": "MIT", - "dependencies": { - "@types/connect": "*", - "@types/node": "*" - } - }, - "node_modules/@types/connect": { - "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/cookie-parser": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/@types/cookie-parser/-/cookie-parser-1.4.3.tgz", - "integrity": "sha512-CqSKwFwefj4PzZ5n/iwad/bow2hTCh0FlNAeWLtQM3JA/NX/iYagIpWG2cf1bQKQ2c9gU2log5VUCrn7LDOs0w==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/express": "*" - } - }, - "node_modules/@types/csurf": { - "version": "1.11.2", - "resolved": "https://registry.npmjs.org/@types/csurf/-/csurf-1.11.2.tgz", - "integrity": "sha512-9bc98EnwmC1S0aSJiA8rWwXtgXtXHHOQOsGHptImxFgqm6CeH+mIOunHRg6+/eg2tlmDMX3tY7XrWxo2M/nUNQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/express-serve-static-core": "*" - } - }, - "node_modules/@types/express": { - "version": "4.17.16", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.16.tgz", - "integrity": "sha512-LkKpqRZ7zqXJuvoELakaFYuETHjZkSol8EV6cNnyishutDBCCdv6+dsKPbKkCcIk57qRphOLY5sEgClw1bO3gA==", - "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.31", - "@types/qs": "*", - "@types/serve-static": "*" - } - }, - "node_modules/@types/express-handlebars": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@types/express-handlebars/-/express-handlebars-6.0.0.tgz", - "integrity": "sha512-L0G9j7xc9k6FavI9CCUueJf7YHGE5b+gXV4NGGcObTbLqvZ2TwebEsrFb1b8NEc2kDf22Mu+jCDPjvWzfCS0Gw==", - "deprecated": "This is a stub types definition. express-handlebars provides its own type definitions, so you do not need this installed.", - "dev": true, - "dependencies": { - "express-handlebars": "*" - } - }, - "node_modules/@types/express-serve-static-core": { - "version": "4.17.34", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.34.tgz", - "integrity": "sha512-fvr49XlCGoUj2Pp730AItckfjat4WNb0lb3kfrLWffd+RLeoGAMsq7UOy04PAPtoL01uKwcp6u8nhzpgpDYr3w==", - "license": "MIT", - "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*", - "@types/send": "*" - } - }, - "node_modules/@types/handlebars-helpers": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/@types/handlebars-helpers/-/handlebars-helpers-0.5.3.tgz", - "integrity": "sha512-h+a3eIWts6BgqzlmlmCH6K7yvCfbcEm5Gs+6CMYwbAi8SgC3I/+HEPEciDVT7qav+6BPE0M0nB2UhnwRYkO68w==", - "dev": true, - "license": "MIT", - "dependencies": { - "handlebars": ">=4.1.0" - } - }, - "node_modules/@types/jsonwebtoken": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz", - "integrity": "sha512-drE6uz7QBKq1fYqqoFKTDRdFCPHd5TCub75BM+D+cMx7NU9hUz7SESLfC2fSCXVFMO5Yj8sOWHuGqPgjc+fz0Q==", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/jwt-decode": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@types/jwt-decode/-/jwt-decode-3.1.0.tgz", - "integrity": "sha512-tthwik7TKkou3mVnBnvVuHnHElbjtdbM63pdBCbZTirCt3WAdM73Y79mOri7+ljsS99ZVwUFZHLMxJuJnv/z1w==", - "dev": true, - "license": "MIT", - "dependencies": { - "jwt-decode": "*" - } - }, - "node_modules/@types/mime": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", - "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==", - "license": "MIT" - }, - "node_modules/@types/next": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/@types/next/-/next-9.0.0.tgz", - "integrity": "sha512-gnBXM8rP1mnCgT1uE2z8SnpFTKRWReJlhbZLZkOLq/CH1ifvTNwjIVtXvsywTy1dwVklf+y/MB0Eh6FOa94yrg==", - "dev": true, - "license": "MIT", - "dependencies": { - "next": "*" - } - }, - "node_modules/@types/node": { - "version": "18.11.18", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.18.tgz", - "integrity": "sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==" - }, - "node_modules/@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", - "license": "MIT" - }, - "node_modules/@types/range-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", - "license": "MIT" - }, - "node_modules/@types/send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz", - "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==", - "license": "MIT", - "dependencies": { - "@types/mime": "^1", - "@types/node": "*" - } - }, - "node_modules/@types/send/node_modules/@types/mime": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", - "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", - "license": "MIT" - }, - "node_modules/@types/serve-static": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.1.tgz", - "integrity": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==", - "license": "MIT", - "dependencies": { - "@types/mime": "*", - "@types/node": "*" - } - }, - "node_modules/@types/tldjs": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@types/tldjs/-/tldjs-2.3.1.tgz", - "integrity": "sha512-BQR04zLE0ve2eNrqxXw/Qp/f6LxvNrj/4A8ZgdQi3SzbBqxFhleI7N4DS/mSjDnODrUaEGgoWg4grAZR1kVj8w==", - "license": "MIT" - }, - "node_modules/@types/triple-beam": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.2.tgz", - "integrity": "sha512-txGIh+0eDFzKGC25zORnswy+br1Ha7hj5cMVwKIU7+s0U2AxxJru/jZSMU6OC9MJWP6+pc/hc6ZjyZShpsyY2g==", - "license": "MIT" - }, - "node_modules/@vue/compiler-core": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.2.tgz", - "integrity": "sha512-CKZWo1dzsQYTNTft7whzjL0HsrEpMfiK7pjZ2WFE3bC1NA7caUjWioHSK+49y/LK7Bsm4poJZzAMnvZMQ7OTeg==", - "dev": true, - "peer": true, - "dependencies": { - "@babel/parser": "^7.21.3", - "@vue/shared": "3.3.2", - "estree-walker": "^2.0.2", - "source-map-js": "^1.0.2" - } - }, - "node_modules/@vue/compiler-dom": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.2.tgz", - "integrity": "sha512-6gS3auANuKXLw0XH6QxkWqyPYPunziS2xb6VRenM3JY7gVfZcJvkCBHkb5RuNY1FCbBO3lkIi0CdXUCW1c7SXw==", - "dev": true, - "peer": true, - "dependencies": { - "@vue/compiler-core": "3.3.2", - "@vue/shared": "3.3.2" - } - }, - "node_modules/@vue/compiler-sfc": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.2.tgz", - "integrity": "sha512-jG4jQy28H4BqzEKsQqqW65BZgmo3vzdLHTBjF+35RwtDdlFE+Fk1VWJYUnDMMqkFBo6Ye1ltSKVOMPgkzYj7SQ==", - "dev": true, - "peer": true, - "dependencies": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.2", - "@vue/compiler-dom": "3.3.2", - "@vue/compiler-ssr": "3.3.2", - "@vue/reactivity-transform": "3.3.2", - "@vue/shared": "3.3.2", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.0", - "postcss": "^8.1.10", - "source-map-js": "^1.0.2" - } - }, - "node_modules/@vue/compiler-ssr": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.2.tgz", - "integrity": "sha512-K8OfY5FQtZaSOJHHe8xhEfIfLrefL/Y9frv4k4NsyQL3+0lRKxr9QuJhfdBDjkl7Fhz8CzKh63mULvmOfx3l2w==", - "dev": true, - "peer": true, - "dependencies": { - "@vue/compiler-dom": "3.3.2", - "@vue/shared": "3.3.2" - } - }, - "node_modules/@vue/reactivity-transform": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.2.tgz", - "integrity": "sha512-iu2WaQvlJHdnONrsyv4ibIEnSsuKF+aHFngGj/y1lwpHQtalpVhKg9wsKMoiKXS9zPNjG9mNKzJS9vudvjzvyg==", - "dev": true, - "peer": true, - "dependencies": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.2", - "@vue/shared": "3.3.2", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.0" - } - }, - "node_modules/@vue/shared": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.2.tgz", - "integrity": "sha512-0rFu3h8JbclbnvvKrs7Fe5FNGV9/5X2rPD7KmOzhLSUAiQH5//Hq437Gv0fR5Mev3u/nbtvmLl8XgwCU20/ZfQ==", - "dev": true, - "peer": true - }, - "node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true, - "license": "ISC" - }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "license": "MIT", - "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/acorn": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", - "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "license": "MIT", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "license": "ISC", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true, - "license": "MIT" - }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-find-index": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", - "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "license": "MIT" - }, - "node_modules/asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", - "dev": true, - "license": "MIT" - }, - "node_modules/asn1": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", - "license": "MIT", - "dependencies": { - "safer-buffer": "~2.1.0" - } - }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", - "license": "MIT", - "engines": { - "node": ">=0.8" - } - }, - "node_modules/async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", - "license": "MIT" - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "license": "MIT" - }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", - "license": "Apache-2.0", - "engines": { - "node": "*" - } - }, - "node_modules/aws4": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", - "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", - "license": "MIT" - }, - "node_modules/axios": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.2.6.tgz", - "integrity": "sha512-rC/7F08XxZwjMV4iuWv+JpD3E0Ksqg9nac4IIg6RwNuF0JTeWoCo/mBNG54+tNhhI11G3/VDRbdDQTs9hGp4pQ==", - "dependencies": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "license": "MIT" - }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", - "license": "BSD-3-Clause", - "dependencies": { - "tweetnacl": "^0.14.3" - } - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/binaryextensions": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/binaryextensions/-/binaryextensions-4.18.0.tgz", - "integrity": "sha512-PQu3Kyv9dM4FnwB7XGj1+HucW+ShvJzJqjuw1JkKVs1mWdwOKVcRjOi+pV9X52A0tNvrPCsPkbFFQb+wE1EAXw==", - "license": "MIT", - "engines": { - "node": ">=0.8" - }, - "funding": { - "url": "https://bevry.me/fund" - } - }, - "node_modules/body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "license": "MIT", - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserslist": { - "version": "4.21.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", - "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001449", - "electron-to-chromium": "^1.4.284", - "node-releases": "^2.0.8", - "update-browserslist-db": "^1.0.10" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/buffer-equal-constant-time": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", - "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" - }, - "node_modules/busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "dependencies": { - "streamsearch": "^1.1.0" - }, - "engines": { - "node": ">=10.16.0" - } - }, - "node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001481", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001481.tgz", - "integrity": "sha512-KCqHwRnaa1InZBtqXzP98LPg0ajCVujMKjqKDhZEthIpAsJl/YEIa3YvXjGXPVqzZVguccuu7ga9KOE1J9rKPQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "CC-BY-4.0" - }, - "node_modules/caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", - "license": "Apache-2.0" - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "license": "MIT", - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/client-only": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", - "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", - "license": "MIT" - }, - "node_modules/color": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", - "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", - "license": "MIT", - "dependencies": { - "color-convert": "^1.9.3", - "color-string": "^1.6.0" - } - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "license": "MIT", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "license": "MIT" - }, - "node_modules/color-string": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", - "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", - "license": "MIT", - "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "node_modules/color-string/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/colorspace": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", - "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", - "license": "MIT", - "dependencies": { - "color": "^3.1.3", - "text-hex": "1.0.x" - } - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "license": "MIT", - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true, - "license": "MIT" - }, - "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "license": "MIT", - "dependencies": { - "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, - "node_modules/cookie": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", - "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie-parser": { - "version": "1.4.6", - "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.6.tgz", - "integrity": "sha512-z3IzaNjdwUC2olLIB5/ITd0/setiaFMLYiZJle7xg5Fe9KWAceil7xszYfHHBtDFYLSgJduS2Ty0P1uJdPDJeA==", - "license": "MIT", - "dependencies": { - "cookie": "0.4.1", - "cookie-signature": "1.0.6" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/cookie-parser/node_modules/cookie": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", - "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "license": "MIT" - }, - "node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", - "license": "MIT" - }, - "node_modules/create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" - } - }, - "node_modules/csrf": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/csrf/-/csrf-3.1.0.tgz", - "integrity": "sha512-uTqEnCvWRk042asU6JtapDTcJeeailFy4ydOQS28bj1hcLnYRiqi8SsD2jS412AY1I/4qdOwWZun774iqywf9w==", - "license": "MIT", - "dependencies": { - "rndm": "1.2.0", - "tsscmp": "1.0.6", - "uid-safe": "2.1.5" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/csurf": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/csurf/-/csurf-1.11.0.tgz", - "integrity": "sha512-UCtehyEExKTxgiu8UHdGvHj4tnpE/Qctue03Giq5gPgMQ9cg/ciod5blZQ5a4uCEenNQjxyGuzygLdKUmee/bQ==", - "license": "MIT", - "dependencies": { - "cookie": "0.4.0", - "cookie-signature": "1.0.6", - "csrf": "3.1.0", - "http-errors": "~1.7.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/csurf/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/csurf/node_modules/http-errors": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", - "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==", - "license": "MIT", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/csurf/node_modules/setprototypeof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", - "license": "ISC" - }, - "node_modules/csurf/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/csurf/node_modules/toidentifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", - "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", - "license": "MIT", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", - "license": "MIT", - "dependencies": { - "assert-plus": "^1.0.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "license": "MIT" - }, - "node_modules/debuglog": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz", - "integrity": "sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==", - "dev": true, - "license": "MIT", - "engines": { - "node": "*" - } - }, - "node_modules/define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/define-properties": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", - "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "license": "MIT", - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/detect-indent": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-7.0.1.tgz", - "integrity": "sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==", - "dev": true, - "engines": { - "node": ">=12.20" - } - }, - "node_modules/detect-newline": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-4.0.0.tgz", - "integrity": "sha512-1aXUEPdfGdzVPFpzGJJNgq9o81bGg1s09uxTWsqBlo9PI332uyJRQq13+LK/UN4JfxJbFdCXonUFQ9R/p7yCtw==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/dezalgo": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.4.tgz", - "integrity": "sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==", - "dev": true, - "license": "ISC", - "dependencies": { - "asap": "^2.0.0", - "wrappy": "1" - } - }, - "node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/dir-glob/node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", - "license": "MIT", - "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "node_modules/ecdsa-sig-formatter": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", - "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", - "dependencies": { - "safe-buffer": "^5.0.1" - } - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "license": "MIT" - }, - "node_modules/electron-to-chromium": { - "version": "1.4.394", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.394.tgz", - "integrity": "sha512-0IbC2cfr8w5LxTz+nmn2cJTGafsK9iauV2r5A5scfzyovqLrxuLoxOHE5OBobP3oVIggJT+0JfKnw9sm87c8Hw==", - "dev": true - }, - "node_modules/enabled": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", - "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==", - "license": "MIT" - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/es-abstract": { - "version": "1.21.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", - "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.2.0", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.10", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.7", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.9" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "license": "MIT" - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "license": "MIT", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "dev": true, - "peer": true - }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", - "license": "MIT", - "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/express-handlebars": { - "version": "6.0.7", - "resolved": "https://registry.npmjs.org/express-handlebars/-/express-handlebars-6.0.7.tgz", - "integrity": "sha512-iYeMFpc/hMD+E6FNAZA5fgWeXnXr4rslOSPkeEV6TwdmpJ5lEXuWX0u9vFYs31P2MURctQq2batR09oeNj0LIg==", - "license": "BSD-3-Clause", - "dependencies": { - "glob": "^8.1.0", - "graceful-fs": "^4.2.10", - "handlebars": "^4.7.7" - }, - "engines": { - "node": ">=v12.22.9" - } - }, - "node_modules/express-jwt": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/express-jwt/-/express-jwt-8.4.0.tgz", - "integrity": "sha512-AvIkHI6+wuwHQTgfnl4kEPWeMKo5yw4FnXJJK+jf/PRWAflmuJKTs06ENRNJ6sCQceIUVqAi/fy8Nav8alnv0w==", - "dependencies": { - "@types/jsonwebtoken": "^9", - "express-unless": "^2.1.3", - "jsonwebtoken": "^9.0.0" - }, - "engines": { - "node": ">= 8.0.0" - } - }, - "node_modules/express-unless": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/express-unless/-/express-unless-2.1.3.tgz", - "integrity": "sha512-wj4tLMyCVYuIIKHGt0FhCtIViBcwzWejX0EjNxveAa6dG+0XBCQhMbx+PnkLkFCxLC69qoFrxds4pIyL88inaQ==", - "license": "MIT" - }, - "node_modules/express-winston": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/express-winston/-/express-winston-4.2.0.tgz", - "integrity": "sha512-EMD74g63nVHi7pFleQw7KHCxiA1pjF5uCwbCfzGqmFxs9KvlDPIVS3cMGpULm6MshExMT9TjC3SqmRGB9kb7yw==", - "license": "MIT", - "dependencies": { - "chalk": "^2.4.2", - "lodash": "^4.17.21" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "winston": ">=3.x <4" - } - }, - "node_modules/express/node_modules/cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "license": "MIT" - }, - "node_modules/extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", - "engines": [ - "node >=0.6.0" - ], - "license": "MIT" - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "license": "MIT" - }, - "node_modules/fast-glob": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-glob/node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "license": "MIT" - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fecha": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz", - "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==", - "license": "MIT" - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "license": "MIT", - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/fn.name": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", - "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==", - "license": "MIT" - }, - "node_modules/follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "license": "MIT", - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", - "license": "Apache-2.0", - "engines": { - "node": "*" - } - }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "license": "MIT", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "license": "ISC" - }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "license": "MIT" - }, - "node_modules/function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", - "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", - "license": "MIT", - "dependencies": { - "assert-plus": "^1.0.0" - } - }, - "node_modules/git-hooks-list": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/git-hooks-list/-/git-hooks-list-3.1.0.tgz", - "integrity": "sha512-LF8VeHeR7v+wAbXqfgRlTSX/1BJR9Q1vEMR8JAz1cEg6GX07+zyj3sAdDvYjj/xnlIfVuGgj4qBei1K3hKH+PA==", - "dev": true, - "funding": { - "url": "https://github.com/fisker/git-hooks-list?sponsor=1" - } - }, - "node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/glob/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/glob/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/globalyzer": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", - "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/globby": { - "version": "13.1.4", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.4.tgz", - "integrity": "sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==", - "dev": true, - "dependencies": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globrex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", - "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", - "dev": true, - "license": "MIT" - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "license": "ISC" - }, - "node_modules/handlebars": { - "version": "4.7.7", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", - "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", - "license": "MIT", - "dependencies": { - "minimist": "^1.2.5", - "neo-async": "^2.6.0", - "source-map": "^0.6.1", - "wordwrap": "^1.0.0" - }, - "bin": { - "handlebars": "bin/handlebars" - }, - "engines": { - "node": ">=0.4.7" - }, - "optionalDependencies": { - "uglify-js": "^3.1.4" - } - }, - "node_modules/handlebars/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", - "license": "ISC", - "engines": { - "node": ">=4" - } - }, - "node_modules/har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "license": "MIT", - "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true, - "license": "ISC" - }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "license": "MIT", - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", - "license": "MIT", - "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - }, - "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" - } - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/ignore-by-default": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", - "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", - "dev": true, - "license": "ISC" - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "license": "ISC", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "license": "ISC" - }, - "node_modules/internal-slot": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", - "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true, - "license": "MIT" - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "license": "MIT", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-core-module": { - "version": "2.12.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", - "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true, - "license": "MIT", - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-plain-obj": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", - "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", - "dev": true, - "license": "MIT", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "license": "MIT" - }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true, - "license": "ISC" - }, - "node_modules/isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", - "license": "MIT" - }, - "node_modules/istextorbinary": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/istextorbinary/-/istextorbinary-6.0.0.tgz", - "integrity": "sha512-4j3UqQCa06GAf6QHlN3giz2EeFU7qc6Q5uB/aY7Gmb3xmLDLepDOtsZqkb4sCfJgFvTbLUinNw0kHgHs8XOHoQ==", - "license": "MIT", - "dependencies": { - "binaryextensions": "^4.18.0", - "textextensions": "^5.14.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://bevry.me/fund" - } - }, - "node_modules/javascript-natural-sort": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/javascript-natural-sort/-/javascript-natural-sort-0.7.1.tgz", - "integrity": "sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==", - "dev": true, - "license": "MIT" - }, - "node_modules/jose": { - "version": "4.14.4", - "resolved": "https://registry.npmjs.org/jose/-/jose-4.14.4.tgz", - "integrity": "sha512-j8GhLiKmUAh+dsFXlX1aJCbt5KMibuKb+d7j1JaOJG6s2UjX1PQlW+OKB/sD4a/5ZYF4RcmYmLSndOoU3Lt/3g==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/panva" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "license": "MIT" - }, - "node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", - "license": "MIT" - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true, - "license": "MIT", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", - "license": "(AFL-2.1 OR BSD-3-Clause)" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "license": "MIT" - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", - "license": "ISC" - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsonwebtoken": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz", - "integrity": "sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==", - "dependencies": { - "jws": "^3.2.2", - "lodash": "^4.17.21", - "ms": "^2.1.1", - "semver": "^7.3.8" - }, - "engines": { - "node": ">=12", - "npm": ">=6" - } - }, - "node_modules/jsonwebtoken/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/jsonwebtoken/node_modules/semver": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", - "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/jsonwebtoken/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/jsprim": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", - "license": "MIT", - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/jwa": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", - "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", - "dependencies": { - "buffer-equal-constant-time": "1.0.1", - "ecdsa-sig-formatter": "1.0.11", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/jwks-rsa": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/jwks-rsa/-/jwks-rsa-3.0.1.tgz", - "integrity": "sha512-UUOZ0CVReK1QVU3rbi9bC7N5/le8ziUj0A2ef1Q0M7OPD2KvjEYizptqIxGIo6fSLYDkqBrazILS18tYuRc8gw==", - "license": "MIT", - "dependencies": { - "@types/express": "^4.17.14", - "@types/jsonwebtoken": "^9.0.0", - "debug": "^4.3.4", - "jose": "^4.10.4", - "limiter": "^1.1.5", - "lru-memoizer": "^2.1.4" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/jwks-rsa/node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "license": "MIT", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/jwks-rsa/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "license": "MIT" - }, - "node_modules/jws": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", - "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", - "dependencies": { - "jwa": "^1.4.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/jwt-decode": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/jwt-decode/-/jwt-decode-3.1.2.tgz", - "integrity": "sha512-UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A==", - "dev": true, - "license": "MIT" - }, - "node_modules/kuler": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", - "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==", - "license": "MIT" - }, - "node_modules/license-checker": { - "version": "25.0.1", - "resolved": "https://registry.npmjs.org/license-checker/-/license-checker-25.0.1.tgz", - "integrity": "sha512-mET5AIwl7MR2IAKYYoVBBpV0OnkKQ1xGj2IMMeEFIs42QAkEVjRtFZGWmQ28WeU7MP779iAgOaOy93Mn44mn6g==", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "chalk": "^2.4.1", - "debug": "^3.1.0", - "mkdirp": "^0.5.1", - "nopt": "^4.0.1", - "read-installed": "~4.0.3", - "semver": "^5.5.0", - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0", - "spdx-satisfies": "^4.0.0", - "treeify": "^1.1.0" - }, - "bin": { - "license-checker": "bin/license-checker" - } - }, - "node_modules/license-checker/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/limiter": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/limiter/-/limiter-1.1.5.tgz", - "integrity": "sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==" - }, - "node_modules/load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, - "node_modules/lodash.clonedeep": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", - "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==", - "license": "MIT" - }, - "node_modules/logform": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/logform/-/logform-2.5.1.tgz", - "integrity": "sha512-9FyqAm9o9NKKfiAKfZoYo9bGXXuwMkxQiQttkT4YjjVtQVIQtK6LmVtlxmCaFswo6N4AfEkHqZTV0taDtPotNg==", - "license": "MIT", - "dependencies": { - "@colors/colors": "1.5.0", - "@types/triple-beam": "^1.3.2", - "fecha": "^4.2.0", - "ms": "^2.1.1", - "safe-stable-stringify": "^2.3.1", - "triple-beam": "^1.3.0" - } - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "peer": true, - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lru-cache": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.0.2.tgz", - "integrity": "sha512-uQw9OqphAGiZhkuPlpFGmdTU2tEuhxTourM/19qGJrxBPHAr/f8BT1a0i/lOclESnGatdJG/UCkP9kZB/Lh1iw==", - "license": "ISC", - "dependencies": { - "pseudomap": "^1.0.1", - "yallist": "^2.0.0" - } - }, - "node_modules/lru-memoizer": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/lru-memoizer/-/lru-memoizer-2.2.0.tgz", - "integrity": "sha512-QfOZ6jNkxCcM/BkIPnFsqDhtrazLRsghi9mBwFAzol5GCvj4EkFT899Za3+QwikCg5sRX8JstioBDwOxEyzaNw==", - "license": "MIT", - "dependencies": { - "lodash.clonedeep": "^4.5.0", - "lru-cache": "~4.0.0" - } - }, - "node_modules/magic-string": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", - "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", - "dev": true, - "peer": true, - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.13" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true, - "license": "ISC" - }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/memorystream": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", - "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", - "dev": true, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "license": "MIT" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "license": "MIT", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "license": "MIT", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dev": true, - "license": "MIT", - "dependencies": { - "minimist": "^1.2.6" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "license": "MIT" - }, - "node_modules/nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "license": "MIT" - }, - "node_modules/next": { - "version": "13.3.3", - "resolved": "https://registry.npmjs.org/next/-/next-13.3.3.tgz", - "integrity": "sha512-2OLN2cdsqPboaDWFn3Z7KDIxPcjZAsxEbtRh/+LfE8pJQHXduyaoxISQZQH4eB4gpr6FVnTDDKFEi6n2C9lPgw==", - "license": "MIT", - "dependencies": { - "@next/env": "13.3.3", - "@swc/helpers": "0.5.1", - "busboy": "1.6.0", - "caniuse-lite": "^1.0.30001406", - "postcss": "8.4.14", - "styled-jsx": "5.1.1" - }, - "bin": { - "next": "dist/bin/next" - }, - "engines": { - "node": ">=16.8.0" - }, - "optionalDependencies": { - "@next/swc-darwin-arm64": "13.3.3", - "@next/swc-darwin-x64": "13.3.3", - "@next/swc-linux-arm64-gnu": "13.3.3", - "@next/swc-linux-arm64-musl": "13.3.3", - "@next/swc-linux-x64-gnu": "13.3.3", - "@next/swc-linux-x64-musl": "13.3.3", - "@next/swc-win32-arm64-msvc": "13.3.3", - "@next/swc-win32-ia32-msvc": "13.3.3", - "@next/swc-win32-x64-msvc": "13.3.3" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.1.0", - "fibers": ">= 3.1.0", - "node-sass": "^6.0.0 || ^7.0.0", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "sass": "^1.3.0" - }, - "peerDependenciesMeta": { - "@opentelemetry/api": { - "optional": true - }, - "fibers": { - "optional": true - }, - "node-sass": { - "optional": true - }, - "sass": { - "optional": true - } - } - }, - "node_modules/nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/node-releases": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", - "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==", - "dev": true - }, - "node_modules/nodemon": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.20.tgz", - "integrity": "sha512-Km2mWHKKY5GzRg6i1j5OxOHQtuvVsgskLfigG25yTtbyfRGn/GNvIbRyOf1PSCKJ2aT/58TiuUsuOU5UToVViw==", - "dev": true, - "dependencies": { - "chokidar": "^3.5.2", - "debug": "^3.2.7", - "ignore-by-default": "^1.0.1", - "minimatch": "^3.1.2", - "pstree.remy": "^1.1.8", - "semver": "^5.7.1", - "simple-update-notifier": "^1.0.7", - "supports-color": "^5.5.0", - "touch": "^3.1.0", - "undefsafe": "^2.0.5" - }, - "bin": { - "nodemon": "bin/nodemon.js" - }, - "engines": { - "node": ">=8.10.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/nodemon" - } - }, - "node_modules/nodemon/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/nopt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz", - "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==", - "dev": true, - "license": "ISC", - "dependencies": { - "abbrev": "1", - "osenv": "^0.1.4" - }, - "bin": { - "nopt": "bin/nopt.js" - } - }, - "node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/npm-normalize-package-bin": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", - "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==", - "dev": true, - "license": "ISC" - }, - "node_modules/npm-run-all": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", - "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^3.2.1", - "chalk": "^2.4.1", - "cross-spawn": "^6.0.5", - "memorystream": "^0.3.1", - "minimatch": "^3.0.4", - "pidtree": "^0.3.0", - "read-pkg": "^3.0.0", - "shell-quote": "^1.6.1", - "string.prototype.padend": "^3.0.0" - }, - "bin": { - "npm-run-all": "bin/npm-run-all/index.js", - "run-p": "bin/run-p/index.js", - "run-s": "bin/run-s/index.js" - }, - "engines": { - "node": ">= 4" - } - }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "license": "Apache-2.0", - "engines": { - "node": "*" - } - }, - "node_modules/object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "license": "MIT", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "license": "ISC", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/one-time": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", - "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", - "license": "MIT", - "dependencies": { - "fn.name": "1.x.x" - } - }, - "node_modules/open": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", - "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ory-prettier-styles": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/ory-prettier-styles/-/ory-prettier-styles-1.3.0.tgz", - "integrity": "sha512-Vfn0G6CyLaadwcCamwe1SQCf37ZQfBDgMrhRI70dE/2fbE3Q43/xu7K5c32I5FGt/EliroWty5yBjmdkj0eWug==" - }, - "node_modules/os-homedir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/osenv": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", - "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", - "dev": true, - "license": "ISC", - "dependencies": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" - } - }, - "node_modules/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", - "dev": true, - "license": "MIT", - "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true, - "license": "MIT" - }, - "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", - "license": "MIT" - }, - "node_modules/path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", - "dev": true, - "license": "MIT", - "dependencies": { - "pify": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", - "license": "MIT" - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "license": "ISC" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pidtree": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", - "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", - "dev": true, - "license": "MIT", - "bin": { - "pidtree": "bin/pidtree.js" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss": { - "version": "8.4.14", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", - "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - } - ], - "license": "MIT", - "dependencies": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/prettier": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.3.tgz", - "integrity": "sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==", - "dev": true, - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/prettier-plugin-packagejson": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.4.2.tgz", - "integrity": "sha512-Y/sW29qq0FhEQRA+85K98VOlMW7/Wicrm0Tm2j/EZ+Eh7F6jVUpGVv7WIMku+WsaEab/PyxaA5ckmTd3E0seNg==", - "dev": true, - "dependencies": { - "sort-package-json": "2.2.0", - "synckit": "0.8.5" - }, - "peerDependencies": { - "prettier": ">= 1.16.0" - }, - "peerDependenciesMeta": { - "prettier": { - "optional": true - } - } - }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "license": "MIT", - "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", - "license": "MIT" - }, - "node_modules/pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", - "license": "ISC" - }, - "node_modules/psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", - "license": "MIT" - }, - "node_modules/pstree.remy": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", - "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", - "dev": true, - "license": "MIT" - }, - "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "license": "BSD-3-Clause", - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/random-bytes": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz", - "integrity": "sha512-iv7LhNVO047HzYR3InF6pUcUsPQiHTM1Qal51DcGSuZFBil1aBBWG5eHPNek7bvILMaYJ/8RU1e8w1AMdHmLQQ==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "peer": true, - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "peer": true, - "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - }, - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/read-installed": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/read-installed/-/read-installed-4.0.3.tgz", - "integrity": "sha512-O03wg/IYuV/VtnK2h/KXEt9VIbMUFbk3ERG0Iu4FhLZw0EP0T9znqrYDGn6ncbEsXUFaUjiVAWXHzxwt3lhRPQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "debuglog": "^1.0.1", - "read-package-json": "^2.0.0", - "readdir-scoped-modules": "^1.0.0", - "semver": "2 || 3 || 4 || 5", - "slide": "~1.1.3", - "util-extend": "^1.0.1" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.2" - } - }, - "node_modules/read-package-json": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-2.1.2.tgz", - "integrity": "sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA==", - "dev": true, - "license": "ISC", - "dependencies": { - "glob": "^7.1.1", - "json-parse-even-better-errors": "^2.3.0", - "normalize-package-data": "^2.0.0", - "npm-normalize-package-bin": "^1.0.0" - } - }, - "node_modules/read-package-json/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", - "dev": true, - "license": "MIT", - "dependencies": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readdir-scoped-modules": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz", - "integrity": "sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==", - "dev": true, - "license": "ISC", - "dependencies": { - "debuglog": "^1.0.1", - "dezalgo": "^1.0.0", - "graceful-fs": "^4.1.2", - "once": "^1.3.0" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "license": "MIT", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", - "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "license": "Apache-2.0", - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/request/node_modules/form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "license": "MIT", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 0.12" - } - }, - "node_modules/request/node_modules/qs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-core-module": "^2.11.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rndm": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/rndm/-/rndm-1.2.0.tgz", - "integrity": "sha512-fJhQQI5tLrQvYIYFpOnFinzv9dwmR7hRnUz1XqP3OJ1jIweTNOd6aTO4jwQSgcBSFUB+/KHJxuGneime+FdzOw==", - "license": "MIT" - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safe-stable-stringify": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", - "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "license": "MIT" - }, - "node_modules/scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "peer": true, - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "license": "MIT", - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "license": "MIT", - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/set-cookie-parser": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz", - "integrity": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==", - "license": "MIT" - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "license": "ISC" - }, - "node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dev": true, - "license": "MIT", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/shell-quote": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", - "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", - "license": "MIT", - "dependencies": { - "is-arrayish": "^0.3.1" - } - }, - "node_modules/simple-swizzle/node_modules/is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", - "license": "MIT" - }, - "node_modules/simple-update-notifier": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz", - "integrity": "sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg==", - "dev": true, - "license": "MIT", - "dependencies": { - "semver": "~7.0.0" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/simple-update-notifier/node_modules/semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/slide": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz", - "integrity": "sha512-NwrtjCg+lZoqhFU8fOwl4ay2ei8PaqCBOUV3/ektPY9trO1yQ1oXEfmHAhKArUVUr/hOHvy5f6AdP17dCM0zMw==", - "dev": true, - "license": "ISC", - "engines": { - "node": "*" - } - }, - "node_modules/sort-object-keys": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/sort-object-keys/-/sort-object-keys-1.1.3.tgz", - "integrity": "sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==", - "dev": true - }, - "node_modules/sort-package-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-2.2.0.tgz", - "integrity": "sha512-ux712xsrPqkW+0b51GdmC8QTvImM3wsdip9mNVSQTY9ZV3/1eTAK6jIcQ8Vz9kfN1WHL4wv/pLn89mrqeyQu6A==", - "dev": true, - "dependencies": { - "detect-indent": "^7.0.1", - "detect-newline": "^4.0.0", - "git-hooks-list": "^3.0.0", - "globby": "^13.1.2", - "is-plain-obj": "^4.1.0", - "sort-object-keys": "^1.1.3" - }, - "bin": { - "sort-package-json": "cli.js" - } - }, - "node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/spdx-compare": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/spdx-compare/-/spdx-compare-1.0.0.tgz", - "integrity": "sha512-C1mDZOX0hnu0ep9dfmuoi03+eOdDoz2yvK79RxbcrVEG1NO1Ph35yW102DHWKN4pk80nwCgeMmSY5L25VE4D9A==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-find-index": "^1.0.2", - "spdx-expression-parse": "^3.0.0", - "spdx-ranges": "^2.0.0" - } - }, - "node_modules/spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "dev": true, - "license": "CC-BY-3.0" - }, - "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-license-ids": { - "version": "3.0.13", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", - "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", - "dev": true, - "license": "CC0-1.0" - }, - "node_modules/spdx-ranges": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/spdx-ranges/-/spdx-ranges-2.1.1.tgz", - "integrity": "sha512-mcdpQFV7UDAgLpXEE/jOMqvK4LBoO0uTQg0uvXUewmEFhpiZx5yJSZITHB8w1ZahKdhfZqP5GPEOKLyEq5p8XA==", - "dev": true, - "license": "(MIT AND CC-BY-3.0)" - }, - "node_modules/spdx-satisfies": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/spdx-satisfies/-/spdx-satisfies-4.0.1.tgz", - "integrity": "sha512-WVzZ/cXAzoNmjCWiEluEA3BjHp5tiUmmhn9MK+X0tBbR9sOqtC6UQwmgCNrAIZvNlMuBUYAaHYfb2oqlF9SwKA==", - "dev": true, - "license": "MIT", - "dependencies": { - "spdx-compare": "^1.0.0", - "spdx-expression-parse": "^3.0.0", - "spdx-ranges": "^2.0.0" - } - }, - "node_modules/sshpk": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", - "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", - "license": "MIT", - "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "bin": { - "sshpk-conv": "bin/sshpk-conv", - "sshpk-sign": "bin/sshpk-sign", - "sshpk-verify": "bin/sshpk-verify" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", - "license": "MIT", - "engines": { - "node": "*" - } - }, - "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string.prototype.padend": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.4.tgz", - "integrity": "sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trim": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", - "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", - "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", - "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/styled-jsx": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", - "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", - "license": "MIT", - "dependencies": { - "client-only": "0.0.1" - }, - "engines": { - "node": ">= 12.0.0" - }, - "peerDependencies": { - "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "babel-plugin-macros": { - "optional": true - } - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/synckit": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", - "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@pkgr/utils": "^2.3.1", - "tslib": "^2.5.0" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" - } - }, - "node_modules/text-hex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", - "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==", - "license": "MIT" - }, - "node_modules/textextensions": { - "version": "5.16.0", - "resolved": "https://registry.npmjs.org/textextensions/-/textextensions-5.16.0.tgz", - "integrity": "sha512-7D/r3s6uPZyU//MCYrX6I14nzauDwJ5CxazouuRGNuvSCihW87ufN6VLoROLCrHg6FblLuJrT6N2BVaPVzqElw==", - "license": "MIT", - "engines": { - "node": ">=0.8" - }, - "funding": { - "url": "https://bevry.me/fund" - } - }, - "node_modules/tiny-glob": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", - "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", - "dev": true, - "license": "MIT", - "dependencies": { - "globalyzer": "0.1.0", - "globrex": "^0.1.2" - } - }, - "node_modules/tldjs": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tldjs/-/tldjs-2.3.1.tgz", - "integrity": "sha512-W/YVH/QczLUxVjnQhFC61Iq232NWu3TqDdO0S/MtXVz4xybejBov4ud+CIwN9aYqjOecEqIy0PscGkwpG9ZyTw==", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "punycode": "^1.4.1" - }, - "engines": { - "node": ">= 4" - } - }, - "node_modules/tldjs/node_modules/punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", - "license": "MIT" - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/to-regex-range/node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "license": "MIT", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/touch": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", - "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", - "dev": true, - "license": "ISC", - "dependencies": { - "nopt": "~1.0.10" - }, - "bin": { - "nodetouch": "bin/nodetouch.js" - } - }, - "node_modules/touch/node_modules/nopt": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", - "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", - "dev": true, - "license": "MIT", - "dependencies": { - "abbrev": "1" - }, - "bin": { - "nopt": "bin/nopt.js" - } - }, - "node_modules/tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "license": "BSD-3-Clause", - "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/treeify": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/treeify/-/treeify-1.1.0.tgz", - "integrity": "sha512-1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/triple-beam": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz", - "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==", - "license": "MIT" - }, - "node_modules/ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "bin": { - "ts-node": "dist/bin.js", - "ts-node-cwd": "dist/bin-cwd.js", - "ts-node-esm": "dist/bin-esm.js", - "ts-node-script": "dist/bin-script.js", - "ts-node-transpile-only": "dist/bin-transpile.js", - "ts-script": "dist/bin-script-deprecated.js" - }, - "peerDependencies": { - "@swc/core": ">=1.2.50", - "@swc/wasm": ">=1.2.50", - "@types/node": "*", - "typescript": ">=2.7" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "@swc/wasm": { - "optional": true - } - } - }, - "node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", - "license": "0BSD" - }, - "node_modules/tsscmp": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", - "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==", - "license": "MIT", - "engines": { - "node": ">=0.6.x" - } - }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", - "license": "Apache-2.0", - "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", - "license": "Unlicense" - }, - "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "license": "MIT", - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "dev": true, - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, - "node_modules/uglify-js": { - "version": "3.17.4", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", - "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", - "license": "BSD-2-Clause", - "optional": true, - "bin": { - "uglifyjs": "bin/uglifyjs" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/uid-safe": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz", - "integrity": "sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA==", - "license": "MIT", - "dependencies": { - "random-bytes": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/undefsafe": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", - "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", - "dev": true, - "license": "MIT" - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "license": "BSD-2-Clause", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "license": "MIT" - }, - "node_modules/util-extend": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz", - "integrity": "sha512-mLs5zAK+ctllYBj+iAQvlDCwoxU/WDOUaJkcFudeiAX6OajC6BKXJUa9a+tbtkC11dz2Ufb7h0lyvIOVn4LADA==", - "dev": true, - "license": "MIT" - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "license": "MIT", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "license": "MIT", - "bin": { - "uuid": "bin/uuid" - } - }, - "node_modules/v8-compile-cache-lib": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", - "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", - "dev": true, - "license": "MIT" - }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", - "engines": [ - "node >=0.6.0" - ], - "license": "MIT", - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "node_modules/verror/node_modules/extsprintf": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.1.tgz", - "integrity": "sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==", - "engines": [ - "node >=0.6.0" - ], - "license": "MIT" - }, - "node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", - "dev": true, - "license": "MIT", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/winston": { - "version": "3.8.2", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.8.2.tgz", - "integrity": "sha512-MsE1gRx1m5jdTTO9Ld/vND4krP2To+lgDoMEHGGa4HIlAUyXJtfc7CxQcGXVyz2IBpw5hbFkj2b/AtUdQwyRew==", - "license": "MIT", - "dependencies": { - "@colors/colors": "1.5.0", - "@dabh/diagnostics": "^2.0.2", - "async": "^3.2.3", - "is-stream": "^2.0.0", - "logform": "^2.4.0", - "one-time": "^1.0.0", - "readable-stream": "^3.4.0", - "safe-stable-stringify": "^2.3.1", - "stack-trace": "0.0.x", - "triple-beam": "^1.3.0", - "winston-transport": "^4.5.0" - }, - "engines": { - "node": ">= 12.0.0" - } - }, - "node_modules/winston-transport": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.5.0.tgz", - "integrity": "sha512-YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q==", - "license": "MIT", - "dependencies": { - "logform": "^2.3.2", - "readable-stream": "^3.6.0", - "triple-beam": "^1.3.0" - }, - "engines": { - "node": ">= 6.4.0" - } - }, - "node_modules/wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", - "license": "MIT" - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "license": "ISC" - }, - "node_modules/yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", - "license": "ISC" - }, - "node_modules/yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - } - } -} diff --git a/kratos-hydra/package.json b/kratos-hydra/package.json deleted file mode 100644 index 3ca1878f..00000000 --- a/kratos-hydra/package.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "name": "@ory/kratos-selfservice-ui-node", - "version": "0.12.0", - "description": "A reference implementation of a selfservice UI for ORY Kratos in node.js", - "homepage": "https://github.com/ory/kratos-selfservice-ui-node#readme", - "bugs": { - "url": "https://github.com/ory/kratos-selfservice-ui-node/issues" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ory/kratos-selfservice-ui-node.git" - }, - "license": "Apache-2.0", - "author": "Aeneas Rekkas", - "main": "src/index.ts", - "files": [ - "lib/*", - "views/*" - ], - "scripts": { - "build": "rm -rf lib/* && tsc", - "serve": "node lib/index.js", - "start": "nodemon", - "test": "exit 0", - "format:check": "prettier --check .", - "prepublishOnly": "npm run build" - }, - "dependencies": { - "@ory/client": "1.1.23", - "@ory/elements-markup": "0.0.1-beta.6", - "@ory/integrations": "1.1.0", - "axios": "1.2.6", - "body-parser": "1.20.1", - "cookie-parser": "1.4.6", - "csurf": "1.11.0", - "express": "4.18.2", - "express-handlebars": "6.0.7", - "express-jwt": "8.4.0", - "express-winston": "4.2.0", - "jwks-rsa": "3.0.1", - "winston": "3.8.2" - }, - "devDependencies": { - "@trivago/prettier-plugin-sort-imports": "4.0.0", - "@types/axios": "0.14.0", - "@types/cookie-parser": "1.4.3", - "@types/csurf": "1.11.2", - "@types/express": "4.17.16", - "@types/express-handlebars": "6.0.0", - "@types/handlebars-helpers": "0.5.3", - "@types/jwt-decode": "3.1.0", - "@types/next": "9.0.0", - "@types/node": "18.11.18", - "license-checker": "^25.0.1", - "nodemon": "2.0.20", - "npm-run-all": "4.1.5", - "ory-prettier-styles": "1.3.0", - "prettier": "2.8.3", - "prettier-plugin-packagejson": "2.4.2", - "ts-node": "10.9.1", - "typescript": "4.9.5" - }, - "engines": { - "node": ">=16.16.0", - "npm": ">=8.11.0" - } -} diff --git a/kratos-hydra/public/auth-layout.css b/kratos-hydra/public/auth-layout.css deleted file mode 100644 index ab988db9..00000000 --- a/kratos-hydra/public/auth-layout.css +++ /dev/null @@ -1,8 +0,0 @@ -.auth-container { - display: flex; - flex-direction: column; - align-items: center; - padding-top: 4rem; - /* we need this padding since the footer will hide content at the bottom of the container */ - padding-bottom: 5.5rem; -} diff --git a/kratos-hydra/public/content-layout.css b/kratos-hydra/public/content-layout.css deleted file mode 100644 index eece198e..00000000 --- a/kratos-hydra/public/content-layout.css +++ /dev/null @@ -1,117 +0,0 @@ -/* on content layouts we want the background to be surface instead of canvas */ -body { - background-color: var(--ory-theme-background-surface); -} - -/* only manage the content next to the nav */ -.container { - display: flex; - flex-direction: column; - /* on mobile we have a padding top of 2rem */ - padding: 2rem 2rem; - /* on mobile we dont want the content hidden under the nav */ - margin-top: 5.125rem; - height: auto; -} - -/* manage nav and content */ -.app-container { - display: flex; - flex-direction: row; - min-height: 100vh; - min-width: 100%; - /* we need this padding since the footer will hide content at the bottom of the container */ - padding-bottom: 5.5rem; -} - -.wrap-content { - display: flex; - flex-direction: row; - flex-wrap: wrap; -} - -body:before { - display: none; - visibility: hidden; -} - -.traits-box { - display: flex; - flex: 1 1 auto; - padding: 0.5rem; - max-width: calc(50% - 2rem); -} - -.traits-box-divider { - border-top: 1px solid var(--ory-theme-border-def); -} - -.session-code-box > pre { - white-space: pre-wrap; /* Since CSS 2.1 */ - white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ - white-space: -pre-wrap; /* Opera 4-6 */ - white-space: -o-pre-wrap; /* Opera 7 */ - word-wrap: break-word; /* Internet Explorer 5.5+ */ -} - -.session-code-box { - display: flex; - flex: 1 1 auto; - max-width: calc(50% - 2rem); - margin-bottom: auto; -} - -.content { - width: auto; -} - -/* wide-screen vieport */ -@media screen and (min-width: 90em) { - .content { - display: flex; - width: 100%; - flex: 1 1 auto; - gap: 2rem; - max-width: 90em; - } - body:before { - content: "large"; - } -} - -/* laptop viewport */ -@media screen and (min-width: 48em) { - /* only on desktop we don't want the content to be under the nav */ - .container { - /* remove mobile top margin */ - margin-top: 0; - margin-left: 18.75rem; - padding-top: 4rem; - } - /* only on desktop we have nav the full height of the viewport */ - .main-nav { - padding-top: 4rem; - min-height: 100vh; - } - body:before { - content: "medium"; - } -} - -/* when we are on mobile/tablet we want the content to be under the nav */ -@media screen and (min-width: 0) and (max-width: 48em) { - .app-container { - flex-direction: column; - } - .container { - margin-left: 0; - } - body:before { - content: "small"; - } - .session-code-box, - .traits-box { - max-width: 100%; - width: 100%; - } -} diff --git a/kratos-hydra/public/favico.png b/kratos-hydra/public/favico.png deleted file mode 100644 index 63c316a2e7eedfe4501481a9684aa2a7ba16ccaf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 78488 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 diff --git a/kratos-hydra/public/main.css b/kratos-hydra/public/main.css deleted file mode 100644 index f1579c82..00000000 --- a/kratos-hydra/public/main.css +++ /dev/null @@ -1,119 +0,0 @@ -body { - margin: auto; - min-height: 100vh; - min-width: 100%; - background: var(--ory-theme-background-canvas); - display: flex; - flex-direction: column; -} - -/* the browser adds margins to these elements by default */ -ul, -ol, -p, -h1, -h2, -h3 { - margin-top: 0; - margin-bottom: 0; -} - -/* main contains all of our page elements - excluding the footer */ -main { - /* fill the page */ - flex: 1; -} - -.divider { - width: 4rem; - margin-top: 2rem; - margin-bottom: 2rem; -} - -.spacing-32 { - display: flex; - flex-direction: column; - gap: 2rem; -} - -.spacing-32-horizontal { - display: flex; - flex-direction: row; - gap: 2rem; -} - -.spacing-16 { - display: flex; - flex-direction: column; - gap: 1rem; -} - -.spacing-16-horizontal { - display: flex; - flex-direction: row; - gap: 1rem; -} - -.spacing-8 { - display: flex; - flex-direction: column; - gap: 0.5rem; -} - -.divider-left { - margin: 0; -} - -.ory-branding { - display: flex; - flex-direction: row; - gap: 0.375rem; - align-items: center; - padding-bottom: 2rem; -} - -/* only manage the nav */ -.main-nav { - min-width: 18.75rem; - position: fixed; - height: auto; - z-index: 1; -} - -footer { - position: fixed; - bottom: 0; - width: 100%; - z-index: 2; -} - -/* pushes the menu links to either side of the footer bar */ -.footer-container { - padding: 1rem 1.5rem; - font-style: normal; - font-weight: 400; - font-size: 1rem; - line-height: 1.75rem; - display: flex; - justify-content: space-between; - text-decoration: none; - color: var(--ory-theme-foreground-muted); - background-color: var(--ory-theme-background-surface); -} - -.footer-divider { - height: 0; - border-top: 1px !important; -} - -@media screen and (max-width: 24.375em) { - .footer-container > div:last-child { - display: none; - } -} - -@media screen and (max-width: 40em) { - body { - background: var(--ory-theme-background-surface); - } -} diff --git a/kratos-hydra/public/ory-logo.svg b/kratos-hydra/public/ory-logo.svg deleted file mode 100644 index 18219d0e..00000000 --- a/kratos-hydra/public/ory-logo.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/kratos-hydra/public/ory-small.svg b/kratos-hydra/public/ory-small.svg deleted file mode 100644 index 4fe51ca4..00000000 --- a/kratos-hydra/public/ory-small.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/kratos-hydra/src/index.ts b/kratos-hydra/src/index.ts deleted file mode 100644 index db70c286..00000000 --- a/kratos-hydra/src/index.ts +++ /dev/null @@ -1,80 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { handlebarsHelpers } from "./pkg" -import { middleware as middlewareLogger } from "./pkg/logger" -import { - register404Route, - register500Route, - registerErrorRoute, - registerHealthRoute, - registerLoginRoute, - registerConsentRoute, - registerConsentPostRoute, - registerRecoveryRoute, - registerRegistrationRoute, - registerSettingsRoute, - registerStaticRoutes, - registerVerificationRoute, - registerWelcomeRoute, -} from "./routes" -import { registerSessionsRoute } from "./routes/sessions" -import cookieParser from "cookie-parser" -import express, { Request, Response } from "express" -import { engine } from "express-handlebars" -import * as fs from "fs" -import * as https from "https" - -const app = express() - -app.use(middlewareLogger) -app.use(cookieParser()) -app.set("view engine", "hbs") - -app.engine( - "hbs", - engine({ - extname: "hbs", - layoutsDir: `${__dirname}/../views/layouts/`, - partialsDir: `${__dirname}/../views/partials/`, - defaultLayout: "auth", - helpers: handlebarsHelpers, - }), -) - -registerStaticRoutes(app) -registerHealthRoute(app) -registerLoginRoute(app) -registerConsentRoute(app) -registerConsentPostRoute(app) -registerRecoveryRoute(app) -registerRegistrationRoute(app) -registerSettingsRoute(app) -registerVerificationRoute(app) -registerSessionsRoute(app) -registerWelcomeRoute(app) -registerErrorRoute(app) - -app.get("/", (req: Request, res: Response) => { - res.redirect(303, "welcome") -}) - -register404Route(app) -register500Route(app) - -const port = Number(process.env.PORT) || 3000 - -let listener = (proto: "http" | "https") => () => { - console.log(`Listening on ${proto}://0.0.0.0:${port}`) -} - -if (process.env.TLS_CERT_PATH?.length && process.env.TLS_KEY_PATH?.length) { - const options = { - cert: fs.readFileSync(process.env.TLS_CERT_PATH), - key: fs.readFileSync(process.env.TLS_KEY_PATH), - } - - https.createServer(options, app).listen(port, listener("https")) -} else { - app.listen(port, listener("http")) -} diff --git a/kratos-hydra/src/pkg/index.ts b/kratos-hydra/src/pkg/index.ts deleted file mode 100644 index 33cabff7..00000000 --- a/kratos-hydra/src/pkg/index.ts +++ /dev/null @@ -1,109 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { RouteOptionsCreator } from "./route" -import sdk, { apiBaseUrl } from "./sdk" -import { toUiNodePartial } from "./ui" -import { UiNode } from "@ory/client" -import { ButtonLink, Divider, MenuLink, Typography } from "@ory/elements-markup" -import { filterNodesByGroups, getNodeLabel } from "@ory/integrations/ui" -import { AxiosError } from "axios" -import { NextFunction, Response } from "express" - -export * from "./logger" -export * from "./middleware" -export * from "./route" - -export const removeTrailingSlash = (s: string) => s.replace(/\/$/, "") -export const getUrlForFlow = ( - base: string, - flow: string, - query?: URLSearchParams, -) => - `${removeTrailingSlash(base)}/self-service/${flow}/browser${ - query ? `?${query.toString()}` : "" - }` - -export const defaultConfig: RouteOptionsCreator = () => { - return { - apiBaseUrl: apiBaseUrl, - kratosBrowserUrl: apiBaseUrl, - ...sdk, - } -} - -export const isQuerySet = (x: any): x is string => - typeof x === "string" && x.length > 0 - -// Redirects to the specified URL if the error is an AxiosError with a 404, 410, -// or 403 error code. -export const redirectOnSoftError = - (res: Response, next: NextFunction, redirectTo: string) => - (err: AxiosError) => { - if (!err.response) { - next(err) - return - } - - if ( - err.response.status === 404 || - err.response.status === 410 || - err.response.status === 403 - ) { - res.redirect(`${redirectTo}`) - return - } - - next(err) - } - -export const handlebarsHelpers = { - jsonPretty: (context: any) => JSON.stringify(context, null, 2), - onlyNodes: ( - nodes: Array, - groups: string, - attributes: string, - withoutDefaultGroup?: boolean, - withoutDefaultAttributes?: boolean, - ) => - filterNodesByGroups({ - groups: groups, - attributes: attributes, - nodes: nodes, - withoutDefaultAttributes, - withoutDefaultGroup, - }), - toUiNodePartial, - getNodeLabel: getNodeLabel, - divider: (fullWidth: boolean, className?: string) => - Divider({ className, fullWidth }), - buttonLink: (text: string) => - ButtonLink({ href: "https://www.ory.sh/", children: text }), - typography: (text: string, size: any, color: any, type?: any) => - Typography({ - children: text, - type: type || "regular", - size, - color, - }), - menuLink: ( - text: string, - url: string, - iconLeft?: string, - iconRight?: string, - ) => { - return MenuLink({ - href: url, - iconLeft: iconLeft, - iconRight: iconRight, - children: text, - }) - }, - oryBranding: () => - Typography({ - children: `Protected by `, - type: "regular", - size: "tiny", - color: "foregroundSubtle", - }), -} diff --git a/kratos-hydra/src/pkg/logger.ts b/kratos-hydra/src/pkg/logger.ts deleted file mode 100644 index 2b45e20e..00000000 --- a/kratos-hydra/src/pkg/logger.ts +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import expressWinston from "express-winston" -import winston from "winston" - -const config = { - format: winston.format.json(), - transports: [new winston.transports.Console()], -} -export const logger = winston.createLogger(config) -export const middleware = expressWinston.logger({ winstonInstance: logger }) diff --git a/kratos-hydra/src/pkg/middleware.ts b/kratos-hydra/src/pkg/middleware.ts deleted file mode 100644 index 59109851..00000000 --- a/kratos-hydra/src/pkg/middleware.ts +++ /dev/null @@ -1,108 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { getUrlForFlow } from "./index" -import { RouteOptionsCreator } from "./route" -import { Session } from "@ory/client" -import { AxiosError } from "axios" -import { NextFunction, Request, Response } from "express" - -/** - * Checks the error returned by toSession() and initiates a 2FA flow if necessary - * or returns false. - * - * @internal - * @param res - * @param kratosBrowserUrl - */ -const maybeInitiate2FA = - (res: Response, kratosBrowserUrl: string) => (err: AxiosError) => { - // 403 on toSession means that we need to request 2FA - if (err.response && err.response.status === 403) { - res.redirect( - getUrlForFlow( - kratosBrowserUrl, - "login", - new URLSearchParams({ aal: "aal2" }), - ), - ) - return true - } - return false - } - -/** - * Adds the session to the request object. - * - * @param req - */ -const addSessionToRequest = - (req: Request) => - ({ data: session }: { data: Session }) => { - // `whoami` returns the session or an error. We're changing the type here - // because express-session is not detected by TypeScript automatically. - req.session = session - } - -/** - * This middleware requires that the HTTP request has a session. - * If the session is not present, it will redirect to the login flow. - * - * If a session is set but 403 is returned, a 2FA flow will be initiated. - * - * @param createHelpers - */ -export const requireAuth = - (createHelpers: RouteOptionsCreator) => - (req: Request, res: Response, next: NextFunction) => { - const { frontend, kratosBrowserUrl } = createHelpers(req, res) - frontend - .toSession({ cookie: req.header("cookie") }) - .then(addSessionToRequest(req)) - .then(() => next()) - .catch((err: AxiosError) => { - if (!maybeInitiate2FA(res, kratosBrowserUrl)(err)) { - res.redirect(getUrlForFlow(kratosBrowserUrl, "login")) - return - } - }) - } - -/** - * Sets the session in the request. If no session is found, - * the request still succeeds. - * - * If a session is set but 403 is returned, a 2FA flow will be initiated. - * - * @param createHelpers - */ -export const setSession = - (createHelpers: RouteOptionsCreator) => - (req: Request, res: Response, next: NextFunction) => { - const { frontend, kratosBrowserUrl } = createHelpers(req, res) - frontend - .toSession({ cookie: req.header("cookie") }) - .then(addSessionToRequest(req)) - .catch(maybeInitiate2FA(res, kratosBrowserUrl)) - .then(() => next()) - } - -/** - * This middleware requires that the HTTP request has no session. - * If the session is present, it will redirect to the home page. - * - * @param createHelpers - */ -export const requireNoAuth = - (createHelpers: RouteOptionsCreator) => - (req: Request, res: Response, next: NextFunction) => { - const { frontend } = createHelpers(req, res) - frontend - .toSession({ cookie: req.header("cookie") }) - .then(() => { - res.redirect("welcome") - }) - .catch(() => { - next() - }) - } diff --git a/kratos-hydra/src/pkg/route.ts b/kratos-hydra/src/pkg/route.ts deleted file mode 100644 index 7afe5c15..00000000 --- a/kratos-hydra/src/pkg/route.ts +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { FrontendApi, IdentityApi, OAuth2Api, PermissionApi } from "@ory/client" -import { Theme } from "@ory/elements-markup" -import { Application, NextFunction, Request, Response } from "express" - -export interface RouteOptions { - frontend: FrontendApi - oauth2: OAuth2Api - permission: PermissionApi - identity: IdentityApi - kratosBrowserUrl: string - logoUrl?: string - theme?: Theme -} - -export type RouteOptionsCreator = (req: Request, res: Response) => RouteOptions - -export type RouteCreator = ( - opts: RouteOptionsCreator, -) => (req: Request, res: Response, next: NextFunction) => void - -export type RouteRegistrator = ( - app: Application, - createHelpers?: RouteOptionsCreator, - route?: string, -) => void diff --git a/kratos-hydra/src/pkg/sdk/index.ts b/kratos-hydra/src/pkg/sdk/index.ts deleted file mode 100644 index 4771a4c2..00000000 --- a/kratos-hydra/src/pkg/sdk/index.ts +++ /dev/null @@ -1,61 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { - Configuration, - FrontendApi, - IdentityApi, - OAuth2Api, - PermissionApi, -} from "@ory/client" - -const baseUrlInternal = - process.env.ORY_SDK_URL || "https://playground.projects.oryapis.com" - -const apiBaseFrontendUrlInternal = - process.env.KRATOS_PUBLIC_URL || baseUrlInternal - -const apiBaseOauth2UrlInternal = process.env.HYDRA_ADMIN_URL || baseUrlInternal - -const apiBaseIdentityUrlInternal = - process.env.KRATOS_ADMIN_URL || baseUrlInternal - -const apiBasePermissionUrlInternal = - process.env.KETO_READ_URL || baseUrlInternal - -export const apiBaseUrl = - process.env.KRATOS_BROWSER_URL || apiBaseFrontendUrlInternal - -const hydraBaseOptions: any = {} - -if (process.env.MOCK_TLS_TERMINATION) { - hydraBaseOptions.headers = { "X-Forwarded-Proto": "https" } -} - -// Sets up the SDK -const sdk = { - basePath: apiBaseFrontendUrlInternal, - frontend: new FrontendApi( - new Configuration({ - basePath: apiBaseFrontendUrlInternal, - }), - ), - oauth2: new OAuth2Api( - new Configuration({ - basePath: apiBaseOauth2UrlInternal, - baseOptions: hydraBaseOptions, - }), - ), - identity: new IdentityApi( - new Configuration({ - basePath: apiBaseIdentityUrlInternal, - }), - ), - permission: new PermissionApi( - new Configuration({ - basePath: apiBasePermissionUrlInternal, - }), - ), -} - -export default sdk diff --git a/kratos-hydra/src/pkg/ui.ts b/kratos-hydra/src/pkg/ui.ts deleted file mode 100644 index b8eeb285..00000000 --- a/kratos-hydra/src/pkg/ui.ts +++ /dev/null @@ -1,152 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { UiNodeInputAttributes, UiNode, Session } from "@ory/client" -import { Nav } from "@ory/elements-markup" -import { - isUiNodeAnchorAttributes, - isUiNodeImageAttributes, - isUiNodeInputAttributes, - isUiNodeScriptAttributes, - isUiNodeTextAttributes, -} from "@ory/integrations/ui" - -// This helper function translates the html input type to the corresponding partial name. -export const toUiNodePartial = (node: UiNode) => { - if (isUiNodeAnchorAttributes(node.attributes)) { - return "ui_node_anchor" - } else if (isUiNodeImageAttributes(node.attributes)) { - return "ui_node_image" - } else if (isUiNodeInputAttributes(node.attributes)) { - switch (node.attributes && node.attributes.type) { - case "hidden": - return "ui_node_input_hidden" - case "submit": - const attrs = node.attributes as UiNodeInputAttributes - const isSocial = - (attrs.name === "provider" || attrs.name === "link") && - node.group === "oidc" - - return isSocial ? "ui_node_input_social_button" : "ui_node_input_button" - case "button": - return "ui_node_input_button" - case "checkbox": - return "ui_node_input_checkbox" - default: - return "ui_node_input_default" - } - } else if (isUiNodeScriptAttributes(node.attributes)) { - return "ui_node_script" - } else if (isUiNodeTextAttributes(node.attributes)) { - return "ui_node_text" - } - return "ui_node_input_default" -} - -type NavigationMenuProps = { - navTitle: string - session?: Session - logoutUrl?: string - selectedLink?: "welcome" | "sessions" -} -/** - * Renders the navigation bar with state - * @param session - * @param logoutUrl - * @returns - */ -export const navigationMenu = ({ - navTitle, - session, - logoutUrl, - selectedLink, -}: NavigationMenuProps) => { - const links = [ - { - name: "Overview", - href: "welcome", - iconLeft: "house", - selected: false, - }, - { - name: "Session Information", - href: "sessions", - iconLeft: "users-viewfinder", - selected: false, - }, - ].map((link) => { - if (selectedLink && link.href.includes(selectedLink)) { - link.selected = true - } - return link - }) - - return Nav({ - className: "main-nav", - navTitle: navTitle, - navSections: [ - { - links: links, - }, - { - title: "Default User Interfaces", - titleIcon: "circle-question", - links: [ - { - name: "Sign In", - href: "login", - iconLeft: "arrow-right-to-bracket", - iconRight: "up-right-from-square", - disabled: Boolean(session), - testId: "login", - target: "_blank", - }, - { - name: "Sign Up", - href: "registration", - iconLeft: "arrow-right-to-bracket", - iconRight: "up-right-from-square", - disabled: Boolean(session), - testId: "registration", - target: "_blank", - }, - { - name: "Account Recovery", - href: "recovery", - iconLeft: "user-xmark", - iconRight: "up-right-from-square", - disabled: Boolean(session), - testId: "recovery", - target: "_blank", - }, - { - name: "Account Verification", - href: "verification", - iconLeft: "user-check", - iconRight: "up-right-from-square", - disabled: false, - testId: "verification", - target: "_blank", - }, - { - name: "Account Settings", - href: "settings", - iconLeft: "gear", - iconRight: "up-right-from-square", - disabled: !Boolean(session), - testId: "settings", - target: "_blank", - }, - { - name: "Logout", - href: logoutUrl || "", - iconLeft: "arrow-right-to-bracket", - iconRight: "up-right-from-square", - disabled: !Boolean(session), - testId: "logout", - }, - ], - }, - ], - }) -} diff --git a/kratos-hydra/src/routes/404.ts b/kratos-hydra/src/routes/404.ts deleted file mode 100644 index 0d1833a8..00000000 --- a/kratos-hydra/src/routes/404.ts +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { RouteRegistrator } from "../pkg" -import { UserErrorCard } from "@ory/elements-markup" - -export const register404Route: RouteRegistrator = (app, createHelpers) => { - app.get("*", (req, res) => { - res.status(404).render("error", { - card: UserErrorCard({ - title: "404 - Page not found", - cardImage: createHelpers?.(req, res).logoUrl, - backUrl: "sessions", - error: { - id: "404", - error: { - reason: "The requested page could not be found (404).", - code: 404, - }, - }, - }), - }) - }) -} diff --git a/kratos-hydra/src/routes/500.ts b/kratos-hydra/src/routes/500.ts deleted file mode 100644 index 5d157fa8..00000000 --- a/kratos-hydra/src/routes/500.ts +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { RouteRegistrator } from "../pkg" -import { UserErrorCard } from "@ory/elements-markup" -import { NextFunction, Request, Response } from "express" - -export const register500Route: RouteRegistrator = (app, createHelpers) => { - app.use((err: Error, req: Request, res: Response, next: NextFunction) => { - console.error(err.stack) - res.status(500).render("error", { - card: UserErrorCard({ - title: "Internal Server Error", - cardImage: createHelpers?.(req, res).logoUrl, - backUrl: req.header("Referer") || "welcome", - error: { - id: "404", - error: { - ...err, - code: 500, - }, - }, - }), - }) - }) -} diff --git a/kratos-hydra/src/routes/consent.ts b/kratos-hydra/src/routes/consent.ts deleted file mode 100644 index 88dd85bf..00000000 --- a/kratos-hydra/src/routes/consent.ts +++ /dev/null @@ -1,286 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { defaultConfig, RouteCreator, RouteRegistrator } from "../pkg" -import { register404Route } from "./404" -import { oidcConformityMaybeFakeSession } from "./stub/oidc-cert" -import { - AcceptOAuth2ConsentRequestSession, - IdentityApi, - OAuth2ConsentRequest, - PermissionApi, -} from "@ory/client" -import { UserConsentCard } from "@ory/elements-markup" -import bodyParser from "body-parser" -import csrf from "csurf" - -async function createOAuth2ConsentRequestSession( - grantScopes: string[], - consentRequest: OAuth2ConsentRequest, - identityApi: IdentityApi, - permissionApi: PermissionApi, -): Promise { - // The session allows us to set session data for id and access tokens - - const id_token: { [key: string]: any } = {} - - if (consentRequest.subject && grantScopes.length > 0) { - const identity = ( - await identityApi.getIdentity({ id: consentRequest.subject }) - ).data - - if (grantScopes.indexOf("email") > -1) { - // Client may check email of user - id_token.email = identity.traits["email"] || "" - } - if (grantScopes.indexOf("phone") > -1) { - // Client may check phone number of user - id_token.phone = identity.traits["phone"] || "" - } - - // permissionApi.checkPermission({ - // namespace: undefined, - // object: undefined, - // relation: undefined, - // subjectId: undefined, - // subjectSetNamespace: undefined, - // subjectSetObject: undefined, - // subjectSetRelation: undefined, - // maxDepth: undefined, - // }) - } - - let session: AcceptOAuth2ConsentRequestSession = { - // This data will be available when introspecting the token. Try to avoid sensitive information here, - // unless you limit who can introspect tokens. - access_token: { - // foo: 'bar' - }, - - // This data will be available in the ID token. - id_token, - } - return session -} - -// A simple express handler that shows the Hydra consent screen. -export const createConsentRoute: RouteCreator = - (createHelpers) => (req, res, next) => { - res.locals.projectName = "An application requests access to your data!" - - const { oauth2, identity, permission } = createHelpers(req, res) - const { consent_challenge } = req.query - - // The challenge is used to fetch information about the consent request from ORY hydraAdmin. - const challenge = String(consent_challenge) - if (!challenge) { - next( - new Error("Expected a consent challenge to be set but received none."), - ) - return - } - - let trustedClients: string[] = [] - if (process.env.TRUSTED_CLIENT_IDS) { - trustedClients = String(process.env.TRUSTED_CLIENT_IDS).split(",") - } - - // This section processes consent requests and either shows the consent UI or - // accepts the consent request right away if the user has given consent to this - // app before - oauth2 - .getOAuth2ConsentRequest({ consentChallenge: challenge }) - // This will be called if the HTTP request was successful - .then(async ({ data: body }) => { - // If a user has granted this application the requested scope, hydra will tell us to not show the UI. - if ( - body.skip || - (body.client?.client_id && - trustedClients.indexOf(body.client?.client_id) > -1) - ) { - // You can apply logic here, for example grant another scope, or do whatever... - // ... - - let grantScope: string[] = body.requested_scope || [] - if (!Array.isArray(grantScope)) { - grantScope = [grantScope] - } - const session = await createOAuth2ConsentRequestSession( - grantScope, - body, - identity, - permission, - ) - - // Now it's time to grant the consent request. You could also deny the request if something went terribly wrong - return oauth2 - .acceptOAuth2ConsentRequest({ - consentChallenge: challenge, - acceptOAuth2ConsentRequest: { - // We can grant all scopes that have been requested - hydra already checked for us that no additional scopes - // are requested accidentally. - grant_scope: grantScope, - - // ORY Hydra checks if requested audiences are allowed by the client, so we can simply echo this. - grant_access_token_audience: - body.requested_access_token_audience, - - // The session allows us to set session data for id and access tokens - session, - }, - }) - .then(({ data: body }) => { - // All we need to do now is to redirect the user back to hydra! - res.redirect(String(body.redirect_to)) - }) - } - - // If consent can't be skipped we MUST show the consent UI. - res.render("consent", { - card: UserConsentCard({ - consent: body, - csrfToken: req.csrfToken(), - cardImage: body.client?.logo_uri || "/ory-logo.svg", - client_name: body.client?.client_name || "unknown client", - requested_scope: body.requested_scope, - client: body.client, - action: (process.env.BASE_URL || "") + "/consent", - }), - }) - }) - // This will handle any error that happens when making HTTP calls to hydra - .catch(next) - // The consent request has now either been accepted automatically or rendered. - } - -export const createConsentPostRoute: RouteCreator = - (createHelpers) => (req, res, next) => { - // The challenge is a hidden input field, so we have to retrieve it from the request body - const challenge = req.body.consent_challenge - const { oauth2, identity, permission } = createHelpers(req, res) - - // Let's see if the user decided to accept or reject the consent request.. - if (req.body.submit === "Deny access") { - // Looks like the consent request was denied by the user - return ( - oauth2 - .rejectOAuth2ConsentRequest({ - consentChallenge: challenge, - rejectOAuth2Request: { - error: "access_denied", - error_description: "The resource owner denied the request", - }, - }) - .then(({ data: body }) => { - // All we need to do now is to redirect the browser back to hydra! - res.redirect(String(body.redirect_to)) - }) - // This will handle any error that happens when making HTTP calls to hydra - .catch(next) - ) - } - - let grantScope = req.body.grant_scope - if (!Array.isArray(grantScope)) { - grantScope = [grantScope] - } - - // Here is also the place to add data to the ID or access token. For example, - // if the scope 'profile' is added, add the family and given name to the ID Token claims: - // if (grantScope.indexOf('profile')) { - // session.id_token.family_name = 'Doe' - // session.id_token.given_name = 'John' - // } - - // Let's fetch the consent request again to be able to set `grantAccessTokenAudience` properly. - oauth2 - .getOAuth2ConsentRequest({ consentChallenge: challenge }) - // This will be called if the HTTP request was successful - .then(async ({ data: body }) => { - const session = await createOAuth2ConsentRequestSession( - grantScope, - body, - identity, - permission, - ) - return oauth2 - .acceptOAuth2ConsentRequest({ - consentChallenge: challenge, - acceptOAuth2ConsentRequest: { - // We can grant all scopes that have been requested - hydra already checked for us that no additional scopes - // are requested accidentally. - grant_scope: grantScope, - - // If the environment variable CONFORMITY_FAKE_CLAIMS is set we are assuming that - // the app is built for the automated OpenID Connect Conformity Test Suite. You - // can peak inside the code for some ideas, but be aware that all data is fake - // and this only exists to fake a login system which works in accordance to OpenID Connect. - // - // If that variable is not set, the session will be used as-is. - session: oidcConformityMaybeFakeSession( - grantScope, - body, - session, - ), - - // ORY Hydra checks if requested audiences are allowed by the client, so we can simply echo this. - grant_access_token_audience: body.requested_access_token_audience, - - // This tells hydra to remember this consent request and allow the same client to request the same - // scopes from the same user, without showing the UI, in the future. - remember: Boolean(req.body.remember), - - // When this "remember" sesion expires, in seconds. Set this to 0 so it will never expire. - remember_for: process.env.REMEMBER_CONSENT_FOR_SECONDS - ? Number(process.env.REMEMBER_CONSENT_SESSION_FOR_SECONDS) - : 3600, - }, - }) - .then(({ data: body }) => { - // All we need to do now is to redirect the user back! - res.redirect(String(body.redirect_to)) - }) - }) - .catch(next) - } - -// Sets up csrf protection -const csrfProtection = csrf({ - cookie: { - sameSite: "lax", - }, -}) - -var parseForm = bodyParser.urlencoded({ extended: false }) - -export const registerConsentRoute: RouteRegistrator = function ( - app, - createHelpers = defaultConfig, -) { - if (process.env.HYDRA_ADMIN_URL) { - console.log("found HYDRA_ADMIN_URL") - return app.get( - "/consent", - csrfProtection, - createConsentRoute(createHelpers), - ) - } else { - return register404Route - } -} - -export const registerConsentPostRoute: RouteRegistrator = function ( - app, - createHelpers = defaultConfig, -) { - if (process.env.HYDRA_ADMIN_URL) { - return app.post( - "/consent", - parseForm, - csrfProtection, - createConsentPostRoute(createHelpers), - ) - } else { - return register404Route - } -} diff --git a/kratos-hydra/src/routes/error.ts b/kratos-hydra/src/routes/error.ts deleted file mode 100644 index 7e22bb28..00000000 --- a/kratos-hydra/src/routes/error.ts +++ /dev/null @@ -1,61 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { - defaultConfig, - isQuerySet, - RouteCreator, - RouteRegistrator, -} from "../pkg" -import { UserErrorCard } from "@ory/elements-markup" -import { AxiosError } from "axios" - -// A simple express handler that shows the error screen. -export const createErrorRoute: RouteCreator = - (createHelpers) => (req, res, next) => { - res.locals.projectName = "An error occurred" - const { id } = req.query - - // Get the SDK - const { frontend, logoUrl } = createHelpers(req, res) - - if (!isQuerySet(id)) { - // No error was send, redirecting back to home. - res.redirect("welcome") - return - } - - frontend - .getFlowError({ id }) - .then(({ data }) => { - res.status(200).render("error", { - card: UserErrorCard({ - error: data, - cardImage: logoUrl, - title: "An error occurred", - backUrl: req.header("Referer") || "welcome", - }), - }) - }) - .catch((err: AxiosError) => { - if (!err.response) { - next(err) - return - } - - if (err.response.status === 404) { - // The error could not be found, redirect back to home. - res.redirect("welcome") - return - } - - next(err) - }) - } - -export const registerErrorRoute: RouteRegistrator = ( - app, - createHelpers = defaultConfig, -) => { - app.get("/error", createErrorRoute(createHelpers)) -} diff --git a/kratos-hydra/src/routes/health.ts b/kratos-hydra/src/routes/health.ts deleted file mode 100644 index 2ca3401b..00000000 --- a/kratos-hydra/src/routes/health.ts +++ /dev/null @@ -1,10 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { RouteRegistrator } from "../pkg" -import { Request, Response } from "express" - -export const registerHealthRoute: RouteRegistrator = (app) => { - app.get("/health/alive", (_: Request, res: Response) => res.send("ok")) - app.get("/health/ready", (_: Request, res: Response) => res.send("ok")) -} diff --git a/kratos-hydra/src/routes/index.ts b/kratos-hydra/src/routes/index.ts deleted file mode 100644 index c6a1d8ee..00000000 --- a/kratos-hydra/src/routes/index.ts +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -export * from "./404" -export * from "./500" -export * from "./error" -export * from "./health" -export * from "./login" -export * from "./consent" -export * from "./recovery" -export * from "./registration" -export * from "./sessions" -export * from "./settings" -export * from "./static" -export * from "./verification" -export * from "./welcome" diff --git a/kratos-hydra/src/routes/login.ts b/kratos-hydra/src/routes/login.ts deleted file mode 100644 index dffb80ea..00000000 --- a/kratos-hydra/src/routes/login.ts +++ /dev/null @@ -1,130 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { - defaultConfig, - getUrlForFlow, - isQuerySet, - logger, - redirectOnSoftError, - RouteCreator, - RouteRegistrator, -} from "../pkg" -import { UiNodeInputAttributes } from "@ory/client" -import { SelfServiceFlow, UserAuthCard } from "@ory/elements-markup" -import { - filterNodesByGroups, - isUiNodeInputAttributes, -} from "@ory/integrations/ui" - -export const createLoginRoute: RouteCreator = - (createHelpers) => async (req, res, next) => { - res.locals.projectName = "Sign in" - - const { - flow, - aal = "", - refresh = "", - return_to = "", - login_challenge, - } = req.query - const { frontend, kratosBrowserUrl, logoUrl } = createHelpers(req, res) - - const initFlowQuery = new URLSearchParams({ - aal: aal.toString(), - refresh: refresh.toString(), - return_to: return_to.toString(), - }) - - if (isQuerySet(login_challenge)) { - logger.debug("login_challenge found in URL query: ", { query: req.query }) - initFlowQuery.append("login_challenge", login_challenge) - } - - const initFlowUrl = getUrlForFlow(kratosBrowserUrl, "login", initFlowQuery) - - // The flow is used to identify the settings and registration flow and - // return data like the csrf_token and so on. - if (!isQuerySet(flow)) { - logger.debug("No flow ID found in URL query initializing login flow", { - query: req.query, - }) - res.redirect(303, initFlowUrl) - return - } - - // It is probably a bit strange to have a logout URL here, however this screen - // is also used for 2FA flows. If something goes wrong there, we probably want - // to give the user the option to sign out! - const logoutUrl = - ( - await frontend - .createBrowserLogoutFlow({ cookie: req.header("cookie") }) - .catch(() => ({ data: { logout_url: "" } })) - ).data.logout_url || "" - - return frontend - .getLoginFlow({ id: flow, cookie: req.header("cookie") }) - .then(({ data: flow }) => { - // Render the data using a view (e.g. Jade Template): - - const initRegistrationQuery = new URLSearchParams({ - return_to: return_to.toString(), - }) - if (flow.oauth2_login_request?.challenge) { - initRegistrationQuery.set( - "login_challenge", - flow.oauth2_login_request.challenge, - ) - } - - const initRegistrationUrl = getUrlForFlow( - kratosBrowserUrl, - "registration", - initRegistrationQuery, - ) - - res.render("login", { - nodes: flow.ui.nodes, - webAuthnHandler: filterNodesByGroups({ - nodes: flow.ui.nodes, - groups: ["webauthn"], - attributes: ["button"], - withoutDefaultAttributes: true, - withoutDefaultGroup: true, - }) - .filter(({ attributes }) => isUiNodeInputAttributes(attributes)) - .map(({ attributes }) => { - return (attributes as UiNodeInputAttributes).onclick - }) - .filter((c) => c !== undefined), - card: UserAuthCard({ - title: !(flow.refresh || flow.requested_aal === "aal2") - ? "Sign In" - : "Two-Factor Authentication", - ...(flow.oauth2_login_request && { - subtitle: `To authenticate ${ - flow.oauth2_login_request.client.client_name || - flow.oauth2_login_request.client.client_id - }`, - }), - flow: flow as SelfServiceFlow, - flowType: "login", - cardImage: logoUrl, - additionalProps: { - forgotPasswordURL: "recovery", - signupURL: initRegistrationUrl, - logoutURL: logoutUrl, - }, - }), - }) - }) - .catch(redirectOnSoftError(res, next, initFlowUrl)) - } - -export const registerLoginRoute: RouteRegistrator = ( - app, - createHelpers = defaultConfig, -) => { - app.get("/login", createLoginRoute(createHelpers)) -} diff --git a/kratos-hydra/src/routes/recovery.ts b/kratos-hydra/src/routes/recovery.ts deleted file mode 100644 index 83a3d18d..00000000 --- a/kratos-hydra/src/routes/recovery.ts +++ /dev/null @@ -1,71 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { - defaultConfig, - getUrlForFlow, - isQuerySet, - logger, - redirectOnSoftError, - requireNoAuth, - RouteCreator, - RouteRegistrator, -} from "../pkg" -import { SelfServiceFlow, UserAuthCard } from "@ory/elements-markup" - -export const createRecoveryRoute: RouteCreator = - (createHelpers) => (req, res, next) => { - res.locals.projectName = "Recover account" - - const { flow, return_to = "" } = req.query - const { frontend, kratosBrowserUrl, logoUrl } = createHelpers(req, res) - const initFlowUrl = getUrlForFlow( - kratosBrowserUrl, - "recovery", - new URLSearchParams({ return_to: return_to.toString() }), - ) - - const initLoginUrl = getUrlForFlow( - kratosBrowserUrl, - "login", - new URLSearchParams({ return_to: return_to.toString() }), - ) - - // The flow is used to identify the settings and registration flow and - // return data like the csrf_token and so on. - if (!isQuerySet(flow)) { - logger.debug("No flow ID found in URL query initializing login flow", { - query: req.query, - }) - res.redirect(303, initFlowUrl) - return - } - - return frontend - .getRecoveryFlow({ id: flow, cookie: req.header("cookie") }) - .then(({ data: flow }) => { - res.render("recovery", { - card: UserAuthCard({ - title: "Recover your account", - flow: flow as SelfServiceFlow, - flowType: "recovery", - cardImage: logoUrl, - additionalProps: { - loginURL: initLoginUrl, - }, - }), - }) - }) - .catch(redirectOnSoftError(res, next, initFlowUrl)) - } - -export const registerRecoveryRoute: RouteRegistrator = ( - app, - createHelpers = defaultConfig, -) => { - app.get( - "/recovery", - requireNoAuth(createHelpers), - createRecoveryRoute(createHelpers), - ) -} diff --git a/kratos-hydra/src/routes/registration.ts b/kratos-hydra/src/routes/registration.ts deleted file mode 100644 index 7ccf85c5..00000000 --- a/kratos-hydra/src/routes/registration.ts +++ /dev/null @@ -1,118 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { - defaultConfig, - getUrlForFlow, - isQuerySet, - logger, - redirectOnSoftError, - requireNoAuth, - RouteCreator, - RouteRegistrator, -} from "../pkg" -import { UiNodeInputAttributes } from "@ory/client" -import { UserAuthCard } from "@ory/elements-markup" -import { - filterNodesByGroups, - isUiNodeInputAttributes, -} from "@ory/integrations/ui" - -// A simple express handler that shows the registration screen. -export const createRegistrationRoute: RouteCreator = - (createHelpers) => (req, res, next) => { - res.locals.projectName = "Create account" - - const { flow, return_to = "", login_challenge } = req.query - const { frontend, kratosBrowserUrl, logoUrl } = createHelpers(req, res) - - const initFlowQuery = new URLSearchParams({ - return_to: return_to.toString(), - }) - - if (isQuerySet(login_challenge)) { - logger.debug("login_challenge found in URL query: ", { query: req.query }) - initFlowQuery.append("login_challenge", login_challenge) - } else { - logger.debug("no login_challenge found in URL query: ", { - query: req.query, - }) - } - - const initFlowUrl = getUrlForFlow( - kratosBrowserUrl, - "registration", - initFlowQuery, - ) - - // The flow is used to identify the settings and registration flow and - // return data like the csrf_token and so on. - if (!isQuerySet(flow)) { - logger.debug("No flow ID found in URL query initializing login flow", { - query: req.query, - }) - res.redirect(303, initFlowUrl) - return - } - - frontend - .getRegistrationFlow({ id: flow, cookie: req.header("Cookie") }) - .then(({ data: flow }) => { - // Render the data using a view (e.g. Jade Template): - const initLoginQuery = new URLSearchParams({ - return_to: return_to.toString(), - }) - if (flow.oauth2_login_request?.challenge) { - initLoginQuery.set( - "login_challenge", - flow.oauth2_login_request.challenge, - ) - } - res.render("registration", { - nodes: flow.ui.nodes, - webAuthnHandler: filterNodesByGroups({ - nodes: flow.ui.nodes, - groups: ["webauthn"], - attributes: ["button"], - withoutDefaultAttributes: true, - withoutDefaultGroup: true, - }) - .filter(({ attributes }) => isUiNodeInputAttributes(attributes)) - .map(({ attributes }) => { - return (attributes as UiNodeInputAttributes).onclick - }) - .filter((onClickAction) => !!onClickAction), - card: UserAuthCard({ - title: "Register an account", - flow: flow, - ...(flow.oauth2_login_request && { - subtitle: `To authenticate ${ - flow.oauth2_login_request.client.client_name || - flow.oauth2_login_request.client.client_id - }`, - }), - flowType: "registration", - cardImage: logoUrl, - additionalProps: { - loginURL: getUrlForFlow( - kratosBrowserUrl, - "login", - initLoginQuery, - ), - }, - }), - }) - }) - .catch(redirectOnSoftError(res, next, initFlowUrl)) - } - -export const registerRegistrationRoute: RouteRegistrator = ( - app, - createHelpers = defaultConfig, -) => { - app.get( - "/registration", - requireNoAuth(createHelpers), - createRegistrationRoute(createHelpers), - ) -} diff --git a/kratos-hydra/src/routes/sessions.ts b/kratos-hydra/src/routes/sessions.ts deleted file mode 100644 index 8ef5b9e2..00000000 --- a/kratos-hydra/src/routes/sessions.ts +++ /dev/null @@ -1,102 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { - defaultConfig, - requireAuth, - RouteCreator, - RouteRegistrator, -} from "../pkg" -import { navigationMenu } from "../pkg/ui" -import { CodeBox, Typography } from "@ory/elements-markup" - -export const createSessionsRoute: RouteCreator = - (createHelpers) => async (req, res) => { - res.locals.projectName = "Session Information" - const { frontend } = createHelpers(req, res) - const session = req.session - - // Create a logout URL - const logoutUrl = - ( - await frontend - .createBrowserLogoutFlow({ cookie: req.header("cookie") }) - .catch(() => ({ data: { logout_url: "" } })) - ).data.logout_url || "" - - const identityCredentialTrait = - session?.identity.traits.email || session?.identity.traits.username || "" - - const sessionText = - identityCredentialTrait !== "" - ? ` and you are currently logged in as ${identityCredentialTrait} ` - : "" - - res.render("session", { - layout: "welcome", - sessionInfoText: Typography({ - children: `Your browser holds an active Ory Session for ${req.header( - "host", - )}${sessionText}- changing properties inside Acount Settings will be reflected in the decoded Ory Session.`, - size: "small", - color: "foregroundMuted", - }), - traits: { - id: session?.identity.id, - // sometimes the identity schema could contain recursive objects - // for this use case we will just stringify the object instead of recursively flatten the object - ...Object.entries(session?.identity.traits).reduce( - (traits, [key, value]) => { - traits[key] = - typeof value === "object" ? JSON.stringify(value) : value - return traits - }, - {}, - ), - "signup date": session?.identity.created_at || "", - "authentication level": - session?.authenticator_assurance_level === "aal2" - ? "two-factor used (aal2)" - : "single-factor used (aal1)", - ...(session?.expires_at && { - "session expires at": new Date(session?.expires_at).toUTCString(), - }), - ...(session?.authenticated_at && { - "session authenticated at": new Date( - session?.authenticated_at, - ).toUTCString(), - }), - }, - // map the session's authentication level to a human readable string - // this produces a list of objects - authMethods: session?.authentication_methods?.reduce( - (methods, method, i) => { - methods.push({ - [`authentication method used`]: `${method.method} (${ - method.completed_at && new Date(method.completed_at).toUTCString() - })`, - }) - return methods - }, - [], - ), - sessionCodeBox: CodeBox({ - className: "session-code-box", - children: JSON.stringify(session, null, 2), - }), - nav: navigationMenu({ - navTitle: res.locals.projectName, - session, - logoutUrl, - selectedLink: "sessions", - }), - }) - } - -export const registerSessionsRoute: RouteRegistrator = ( - app, - createHelpers = defaultConfig, - route = "/sessions", -) => { - app.get(route, requireAuth(createHelpers), createSessionsRoute(createHelpers)) -} diff --git a/kratos-hydra/src/routes/settings.ts b/kratos-hydra/src/routes/settings.ts deleted file mode 100644 index 2d8ee7b9..00000000 --- a/kratos-hydra/src/routes/settings.ts +++ /dev/null @@ -1,201 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { - defaultConfig, - getUrlForFlow, - isQuerySet, - logger, - redirectOnSoftError, - requireAuth, - RouteCreator, - RouteRegistrator, -} from "../pkg" -import { UiNodeInputAttributes } from "@ory/client" -import { - Divider, - hasLookupSecret, - hasOidc, - hasPassword, - hasTotp, - hasWebauthn, - Nav, - NavSectionLinks, - NodeMessages, - Typography, - UserSettingsCard, - UserSettingsFlowType, -} from "@ory/elements-markup" -import { - filterNodesByGroups, - isUiNodeInputAttributes, -} from "@ory/integrations/ui" - -export const createSettingsRoute: RouteCreator = - (createHelpers) => async (req, res, next) => { - res.locals.projectName = "Account settings" - - const { flow, return_to = "" } = req.query - const helpers = createHelpers(req, res) - const { frontend, kratosBrowserUrl } = helpers - const initFlowUrl = getUrlForFlow( - kratosBrowserUrl, - "settings", - new URLSearchParams({ return_to: return_to.toString() }), - ) - - // The flow is used to identify the settings and registration flow and - // return data like the csrf_token and so on. - if (!isQuerySet(flow)) { - logger.debug("No flow ID found in URL query initializing login flow", { - query: req.query, - }) - res.redirect(303, initFlowUrl) - return - } - - const session = req.session - - // Create a logout URL - const logoutUrl = - ( - await frontend - .createBrowserLogoutFlow({ cookie: req.header("cookie") }) - .catch(() => ({ data: { logout_url: "" } })) - ).data.logout_url || "" - - const identityCredentialTrait = - session?.identity.traits.email || session?.identity.traits.username || "" - - const sessionText = - identityCredentialTrait !== "" - ? `You are currently logged in as ${identityCredentialTrait} ` - : "" - - return frontend - .getSettingsFlow({ id: flow, cookie: req.header("cookie") }) - .then(({ data: flow }) => { - const conditionalLinks: NavSectionLinks[] = [ - { - name: "Profile", - href: "#profile", - iconLeft: "user", - testId: "profile", - }, - hasPassword(flow.ui.nodes) && { - name: "Password", - href: "#password", - iconLeft: "lock", - testId: "password", - }, - hasOidc(flow.ui.nodes) && { - name: "Social Sign In", - href: "#oidc", - iconLeft: "comments", - testId: "social-sign-in", - }, - hasLookupSecret(flow.ui.nodes) && { - name: "2FA Backup Codes", - href: "#lookupSecret", - iconLeft: "shield", - testId: "backup-codes", - }, - hasWebauthn(flow.ui.nodes) && { - name: "Hardware Tokens", - href: "#webauthn", - iconLeft: "key", - testId: "webauthn", - }, - hasTotp(flow.ui.nodes) && { - name: "Authenticator App", - href: "#totp", - iconLeft: "mobile", - testId: "totp", - }, - ].filter(Boolean) as NavSectionLinks[] - - // Render the data using a view (e.g. Jade Template): - res.render("settings", { - layout: "settings", - nav: Nav({ - className: "main-nav", - navTitle: res.locals.projectName, - navSections: [ - { - links: conditionalLinks, - }, - { - links: [ - { - name: "Logout", - href: logoutUrl, - iconLeft: "arrow-right-to-bracket", - testId: "logout", - }, - ], - }, - ], - }), - nodes: flow.ui.nodes, - errorMessages: NodeMessages({ - uiMessages: flow.ui.messages, - textPosition: "start", - }), - sessionDescription: [ - sessionText !== "" && - Typography({ - children: sessionText, - color: "foregroundMuted", - size: "small", - }), - Typography({ - children: - "Here you can manage settings related to your account. Keep in mind that certain actions require a you to re-authenticate.", - color: "foregroundMuted", - size: "small", - }), - ] - .filter(Boolean) - .join(""), - webAuthnHandler: filterNodesByGroups({ - nodes: flow.ui.nodes, - groups: "webauthn", - attributes: "button", - withoutDefaultAttributes: true, - withoutDefaultGroup: true, - }) - .filter(({ attributes }) => isUiNodeInputAttributes(attributes)) - .map(({ attributes }) => { - return (attributes as UiNodeInputAttributes).onclick - }) - .filter((c) => c !== undefined), - settingsCard: (flowType: string) => { - const card = UserSettingsCard({ - flow, - flowType: flowType as UserSettingsFlowType, - }) - if (card) { - return ( - `
` + - card + - Divider({ className: "divider-left", fullWidth: false }) + - `
` - ) - } - return "" - }, - }) - }) - .catch(redirectOnSoftError(res, next, initFlowUrl)) - } - -export const registerSettingsRoute: RouteRegistrator = ( - app, - createHelpers = defaultConfig, -) => { - app.get( - "/settings", - requireAuth(createHelpers), - createSettingsRoute(createHelpers), - ) -} diff --git a/kratos-hydra/src/routes/static.ts b/kratos-hydra/src/routes/static.ts deleted file mode 100644 index 0f7b3724..00000000 --- a/kratos-hydra/src/routes/static.ts +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { defaultConfig, RouteRegistrator } from "../pkg" -import sdk from "../pkg/sdk" -import { - defaultLightTheme, - RegisterOryElementsExpress, -} from "@ory/elements-markup" -import express from "express" - -export const registerStaticRoutes: RouteRegistrator = ( - app, - createHelpers = defaultConfig, -) => { - RegisterOryElementsExpress(app, defaultLightTheme, createHelpers) - app.use("/", express.static("public")) - app.use("/.well-known/ory/webauthn.js", (req, res) => { - res.contentType("text/javascript") - sdk.frontend.getWebAuthnJavaScript().then(({ data }) => { - res.send(data) - }) - }) - app.use("/", express.static("node_modules/@ory/elements-markup/dist/")) -} diff --git a/kratos-hydra/src/routes/stub/oidc-cert.ts b/kratos-hydra/src/routes/stub/oidc-cert.ts deleted file mode 100644 index 8b3c871f..00000000 --- a/kratos-hydra/src/routes/stub/oidc-cert.ts +++ /dev/null @@ -1,88 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -/* This file contains logic which is used when running this application as part of the - OpenID Connect Conformance test suite. You can use it for inspiration, but please - do not use it in production as is. */ -import { - OAuth2ConsentRequest, - OAuth2LoginRequest, - AcceptOAuth2ConsentRequestSession, -} from "@ory/client" - -export const oidcConformityMaybeFakeAcr = ( - request: OAuth2LoginRequest, - fallback: string, -) => { - if (process.env.CONFORMITY_FAKE_CLAIMS !== "1") { - return fallback - } - - return request.oidc_context?.acr_values && - request.oidc_context.acr_values.length > 0 - ? request.oidc_context.acr_values[ - request.oidc_context.acr_values.length - 1 - ] - : fallback -} - -export const oidcConformityMaybeFakeSession = ( - grantScope: string[], - request: OAuth2ConsentRequest, - session: AcceptOAuth2ConsentRequestSession, -): AcceptOAuth2ConsentRequestSession => { - if (process.env.CONFORMITY_FAKE_CLAIMS !== "1") { - return session - } - - const idToken: { [key: string]: any } = {} - - // If the email scope was granted, fake the email claims. - if (grantScope.indexOf("email") > -1) { - // But only do so if the email was requested! - idToken.email = "foo@bar.com" - idToken.email_verified = true - } - - // If the phone scope was granted, fake the phone claims. - if (grantScope.indexOf("phone") > -1) { - idToken.phone_number = "1337133713371337" - idToken.phone_number_verified = true - } - - // If the profile scope was granted, fake the profile claims. - if (grantScope.indexOf("profile") > -1) { - idToken.name = "Foo Bar" - idToken.given_name = "Foo" - idToken.family_name = "Bar" - idToken.website = "https://www.ory.sh" - idToken.zoneinfo = "Europe/Belrin" - idToken.birthdate = "1.1.2014" - idToken.gender = "robot" - idToken.profile = "https://www.ory.sh" - idToken.preferred_username = "robot" - idToken.middle_name = "Baz" - idToken.locale = "en-US" - idToken.picture = - "https://raw.githubusercontent.com/ory/web/master/static/images/favico.png" - idToken.updated_at = 1604416603 - idToken.nickname = "foobot" - } - - // If the address scope was granted, fake the address claims. - if (grantScope.indexOf("address") > -1) { - idToken.address = { - country: "Localhost", - region: "Intranet", - street_address: "Local Street 1337", - } - } - - return { - access_token: session.access_token, - id_token: { - ...idToken, - ...session.id_token, - }, - } -} diff --git a/kratos-hydra/src/routes/verification.ts b/kratos-hydra/src/routes/verification.ts deleted file mode 100644 index a1630a56..00000000 --- a/kratos-hydra/src/routes/verification.ts +++ /dev/null @@ -1,73 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { - defaultConfig, - getUrlForFlow, - isQuerySet, - logger, - redirectOnSoftError, - RouteCreator, - RouteRegistrator, -} from "../pkg" -import { SelfServiceFlow, UserAuthCard } from "@ory/elements-markup" - -export const createVerificationRoute: RouteCreator = - (createHelpers) => (req, res, next) => { - res.locals.projectName = "Verify account" - - const { flow, return_to = "" } = req.query - const { frontend, kratosBrowserUrl, logoUrl } = createHelpers(req, res) - - const initFlowUrl = getUrlForFlow( - kratosBrowserUrl, - "verification", - new URLSearchParams({ return_to: return_to.toString() }), - ) - - const initRegistrationUrl = getUrlForFlow( - kratosBrowserUrl, - "registration", - new URLSearchParams({ - return_to: return_to.toString(), - }), - ) - - // The flow is used to identify the settings and registration flow and - // return data like the csrf_token and so on. - if (!isQuerySet(flow)) { - logger.debug("No flow ID found in URL query initializing login flow", { - query: req.query, - }) - res.redirect(303, initFlowUrl) - return - } - - return ( - frontend - .getVerificationFlow({ id: flow, cookie: req.header("cookie") }) - .then(({ data: flow }) => { - // Render the data using a view (e.g. Jade Template): - res.render("verification", { - card: UserAuthCard({ - title: "Verify your account", - flow: flow as SelfServiceFlow, - flowType: "verification", - cardImage: logoUrl, - additionalProps: { - signupURL: initRegistrationUrl, - }, - }), - }) - }) - // Handle errors using ExpressJS' next functionality: - .catch(redirectOnSoftError(res, next, initFlowUrl)) - ) - } - -export const registerVerificationRoute: RouteRegistrator = ( - app, - createHelpers = defaultConfig, -) => { - app.get("/verification", createVerificationRoute(createHelpers)) -} diff --git a/kratos-hydra/src/routes/welcome.ts b/kratos-hydra/src/routes/welcome.ts deleted file mode 100644 index 678a8e50..00000000 --- a/kratos-hydra/src/routes/welcome.ts +++ /dev/null @@ -1,92 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { - defaultConfig, - RouteCreator, - RouteRegistrator, - setSession, -} from "../pkg" -import { navigationMenu } from "../pkg/ui" -import { CardGradient, Typography } from "@ory/elements-markup" - -export const createWelcomeRoute: RouteCreator = - (createHelpers) => async (req, res) => { - res.locals.projectName = "Welcome to Ory" - - const { frontend } = createHelpers(req, res) - const session = req.session - - // Create a logout URL - const logoutUrl = - ( - await frontend - .createBrowserLogoutFlow({ cookie: req.header("cookie") }) - .catch(() => ({ data: { logout_url: "" } })) - ).data.logout_url || "" - - res.render("welcome", { - layout: "welcome", - nav: navigationMenu({ - navTitle: res.locals.projectName, - session, - logoutUrl, - selectedLink: "welcome", - }), - projectInfoText: Typography({ - children: `Your Ory Account Experience is running at ${req.header( - "host", - )}.`, - type: "regular", - size: "small", - color: "foregroundMuted", - }), - concepts: [ - CardGradient({ - heading: "Getting Started", - content: - "Jump start your project and complete the quickstart tutorial to get a broader overview of Ory Network.", - action: - "https://www.ory.sh/docs/getting-started/integrate-auth/expressjs", - target: "_blank", - }), - CardGradient({ - heading: "User flows", - content: - "Implement flows that users perform themselves as opposed to administrative intervention.", - action: "https://www.ory.sh/docs/kratos/self-service", - target: "_blank", - }), - CardGradient({ - heading: "Identities 101", - content: - "Every identity can have its own model - get to know the ins and outs of Identity Schemas.", - action: - "https://www.ory.sh/docs/kratos/manage-identities/identity-schema", - target: "_blank", - }), - CardGradient({ - heading: "Sessions", - content: - "Ory Network manages sessions for you - get to know how sessions work.", - action: "https://www.ory.sh/docs/kratos/session-management/overview", - target: "_blank", - }), - CardGradient({ - heading: "Custom UI", - content: - "Implementing these pages in your language and framework of choice is straightforward using our SDKs.", - action: "https://www.ory.sh/docs/guides/bring-your-user-interface", - target: "_blank", - }), - ].join("\n"), - }) - } - -export const registerWelcomeRoute: RouteRegistrator = ( - app, - createHelpers = defaultConfig, - route = "/welcome", -) => { - app.get(route, setSession(createHelpers), createWelcomeRoute(createHelpers)) -} diff --git a/kratos-hydra/tsconfig.json b/kratos-hydra/tsconfig.json deleted file mode 100644 index a6a1b4fd..00000000 --- a/kratos-hydra/tsconfig.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "compilerOptions": { - "declaration": true, - "resolveJsonModule": true, - "target": "es5", - "module": "commonjs", - "lib": ["es2019", "dom"], - "outDir": "./lib", - "rootDir": "./src", - "strict": true, - "typeRoots": ["./types"], - "esModuleInterop": true, - "skipLibCheck": true - }, - "exclude": ["contrib"] -} diff --git a/kratos-hydra/types/express/index.d.ts b/kratos-hydra/types/express/index.d.ts deleted file mode 100644 index faf544e0..00000000 --- a/kratos-hydra/types/express/index.d.ts +++ /dev/null @@ -1,10 +0,0 @@ -// Copyright © 2023 Ory Corp -// SPDX-License-Identifier: Apache-2.0 - -import { Session } from "@ory/client" - -declare module "express" { - export interface Request { - session?: Session - } -} diff --git a/kratos-hydra/views/consent.hbs b/kratos-hydra/views/consent.hbs deleted file mode 100644 index 17fb8dba..00000000 --- a/kratos-hydra/views/consent.hbs +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/kratos-hydra/views/error.hbs b/kratos-hydra/views/error.hbs deleted file mode 100644 index cd7df85f..00000000 --- a/kratos-hydra/views/error.hbs +++ /dev/null @@ -1 +0,0 @@ -{{{card}}} \ No newline at end of file diff --git a/kratos-hydra/views/layouts/auth.hbs b/kratos-hydra/views/layouts/auth.hbs deleted file mode 100644 index 939c2ed3..00000000 --- a/kratos-hydra/views/layouts/auth.hbs +++ /dev/null @@ -1,15 +0,0 @@ - - - {{> standard_headers}} - - - -
-
- {{{body}}} - {{> ory_branding}} -
- -
- - \ No newline at end of file diff --git a/kratos-hydra/views/layouts/settings.hbs b/kratos-hydra/views/layouts/settings.hbs deleted file mode 100644 index f9514820..00000000 --- a/kratos-hydra/views/layouts/settings.hbs +++ /dev/null @@ -1,19 +0,0 @@ - - - {{> standard_headers}} - - - -
-
- {{{nav}}} -
-
- {{{body}}} -
- {{> ory_branding}} -
-
-
- - \ No newline at end of file diff --git a/kratos-hydra/views/layouts/welcome.hbs b/kratos-hydra/views/layouts/welcome.hbs deleted file mode 100644 index f9514820..00000000 --- a/kratos-hydra/views/layouts/welcome.hbs +++ /dev/null @@ -1,19 +0,0 @@ - - - {{> standard_headers}} - - - -
-
- {{{nav}}} -
-
- {{{body}}} -
- {{> ory_branding}} -
-
-
- - \ No newline at end of file diff --git a/kratos-hydra/views/login.hbs b/kratos-hydra/views/login.hbs deleted file mode 100644 index e0ad1ba2..00000000 --- a/kratos-hydra/views/login.hbs +++ /dev/null @@ -1,13 +0,0 @@ -
- {{{card}}} - - {{> ui_nodes nodes=nodes groups="webauthn" attributes="text/javascript" withoutDefaultGroup=true}} - - -
- diff --git a/kratos-hydra/views/partials/fork_me.hbs b/kratos-hydra/views/partials/fork_me.hbs deleted file mode 100644 index f1f15f7d..00000000 --- a/kratos-hydra/views/partials/fork_me.hbs +++ /dev/null @@ -1,10 +0,0 @@ -{{{divider true "footer-divider"}}} - \ No newline at end of file diff --git a/kratos-hydra/views/partials/messages.hbs b/kratos-hydra/views/partials/messages.hbs deleted file mode 100644 index b28d6091..00000000 --- a/kratos-hydra/views/partials/messages.hbs +++ /dev/null @@ -1,5 +0,0 @@ -
- {{~#each messages~}} -
{{text}}
- {{~/each~}} -
diff --git a/kratos-hydra/views/partials/ory_branding.hbs b/kratos-hydra/views/partials/ory_branding.hbs deleted file mode 100644 index 6c73e354..00000000 --- a/kratos-hydra/views/partials/ory_branding.hbs +++ /dev/null @@ -1,3 +0,0 @@ -
- {{{oryBranding}}} -
\ No newline at end of file diff --git a/kratos-hydra/views/partials/standard_headers.hbs b/kratos-hydra/views/partials/standard_headers.hbs deleted file mode 100644 index c06cc680..00000000 --- a/kratos-hydra/views/partials/standard_headers.hbs +++ /dev/null @@ -1,18 +0,0 @@ - - - -{{projectName}} -{{! CSS Reset}} - -{{! Fonts }} - - -{{! Font Awesome }} - - - -{{! Themes }} - - -{{! Managed UI styling }} - \ No newline at end of file diff --git a/kratos-hydra/views/partials/ui.hbs b/kratos-hydra/views/partials/ui.hbs deleted file mode 100644 index 4852c7be..00000000 --- a/kratos-hydra/views/partials/ui.hbs +++ /dev/null @@ -1,4 +0,0 @@ -
- {{> messages messages=ui.messages }} - {{> ui_nodes nodes=ui.nodes groups=groups attributes=attributes }} -
diff --git a/kratos-hydra/views/partials/ui_docs_button.hbs b/kratos-hydra/views/partials/ui_docs_button.hbs deleted file mode 100644 index 0a535a03..00000000 --- a/kratos-hydra/views/partials/ui_docs_button.hbs +++ /dev/null @@ -1,9 +0,0 @@ -
diff --git a/kratos-hydra/views/partials/ui_node_anchor.hbs b/kratos-hydra/views/partials/ui_node_anchor.hbs deleted file mode 100644 index 053a8baf..00000000 --- a/kratos-hydra/views/partials/ui_node_anchor.hbs +++ /dev/null @@ -1,13 +0,0 @@ -
- - {{attributes.title.text}} - - {{#if messages}} - - {{> messages }} - - {{/if}} -
diff --git a/kratos-hydra/views/partials/ui_node_image.hbs b/kratos-hydra/views/partials/ui_node_image.hbs deleted file mode 100644 index 11b8a5b6..00000000 --- a/kratos-hydra/views/partials/ui_node_image.hbs +++ /dev/null @@ -1,6 +0,0 @@ -{{getNodeLabel . }} diff --git a/kratos-hydra/views/partials/ui_node_input_button.hbs b/kratos-hydra/views/partials/ui_node_input_button.hbs deleted file mode 100644 index eda1605b..00000000 --- a/kratos-hydra/views/partials/ui_node_input_button.hbs +++ /dev/null @@ -1,18 +0,0 @@ -
- - {{#if messages}} - - {{> messages }} - - {{/if}} -
- diff --git a/kratos-hydra/views/partials/ui_node_input_checkbox.hbs b/kratos-hydra/views/partials/ui_node_input_checkbox.hbs deleted file mode 100644 index fcd212a6..00000000 --- a/kratos-hydra/views/partials/ui_node_input_checkbox.hbs +++ /dev/null @@ -1,26 +0,0 @@ -
-
- - - -
- {{#if messages}} -
- {{> messages }} -
- {{/if}} -
diff --git a/kratos-hydra/views/partials/ui_node_input_default.hbs b/kratos-hydra/views/partials/ui_node_input_default.hbs deleted file mode 100644 index 56fbb4c2..00000000 --- a/kratos-hydra/views/partials/ui_node_input_default.hbs +++ /dev/null @@ -1,22 +0,0 @@ -
- - {{#if messages}} -
- {{> messages }} -
- {{/if}} -
diff --git a/kratos-hydra/views/partials/ui_node_input_hidden.hbs b/kratos-hydra/views/partials/ui_node_input_hidden.hbs deleted file mode 100644 index cc0d95bb..00000000 --- a/kratos-hydra/views/partials/ui_node_input_hidden.hbs +++ /dev/null @@ -1,4 +0,0 @@ - diff --git a/kratos-hydra/views/partials/ui_node_input_password.hbs b/kratos-hydra/views/partials/ui_node_input_password.hbs deleted file mode 100644 index 7970cb92..00000000 --- a/kratos-hydra/views/partials/ui_node_input_password.hbs +++ /dev/null @@ -1,9 +0,0 @@ -
- - {{> messages }} -
diff --git a/kratos-hydra/views/partials/ui_node_input_social_button.hbs b/kratos-hydra/views/partials/ui_node_input_social_button.hbs deleted file mode 100644 index a9c2ed56..00000000 --- a/kratos-hydra/views/partials/ui_node_input_social_button.hbs +++ /dev/null @@ -1,18 +0,0 @@ -
- - {{#if messages}} - - {{> messages }} - - {{/if}} -
diff --git a/kratos-hydra/views/partials/ui_node_script.hbs b/kratos-hydra/views/partials/ui_node_script.hbs deleted file mode 100644 index 42f86ece..00000000 --- a/kratos-hydra/views/partials/ui_node_script.hbs +++ /dev/null @@ -1,9 +0,0 @@ - diff --git a/kratos-hydra/views/partials/ui_node_text.hbs b/kratos-hydra/views/partials/ui_node_text.hbs deleted file mode 100644 index f1fb06ac..00000000 --- a/kratos-hydra/views/partials/ui_node_text.hbs +++ /dev/null @@ -1,25 +0,0 @@ -
-

- {{getNodeLabel .}} -

- {{#if (eq attributes.text.id 1050015)}} - -
-
- {{#each attributes.text.context.secrets}} - -
- {{#if (eq id 1050014)}}Used{{else}}{{text}}{{/if}}
- {{/each}} -
- -
- {{else}} -
{{attributes.text.text}}
- {{/if}} -
diff --git a/kratos-hydra/views/partials/ui_nodes.hbs b/kratos-hydra/views/partials/ui_nodes.hbs deleted file mode 100644 index 6761c6f0..00000000 --- a/kratos-hydra/views/partials/ui_nodes.hbs +++ /dev/null @@ -1,3 +0,0 @@ -{{#each (onlyNodes nodes groups attributes)}} - {{> (toUiNodePartial .)}} -{{/each}} diff --git a/kratos-hydra/views/partials/ui_screen_button.hbs b/kratos-hydra/views/partials/ui_screen_button.hbs deleted file mode 100644 index 7c4978f0..00000000 --- a/kratos-hydra/views/partials/ui_screen_button.hbs +++ /dev/null @@ -1,21 +0,0 @@ -
-
- -
-
diff --git a/kratos-hydra/views/recovery.hbs b/kratos-hydra/views/recovery.hbs deleted file mode 100644 index 7147635e..00000000 --- a/kratos-hydra/views/recovery.hbs +++ /dev/null @@ -1,3 +0,0 @@ -
- {{{card}}} -
\ No newline at end of file diff --git a/kratos-hydra/views/registration.hbs b/kratos-hydra/views/registration.hbs deleted file mode 100644 index beca6249..00000000 --- a/kratos-hydra/views/registration.hbs +++ /dev/null @@ -1,14 +0,0 @@ -
- - {{{card}}} - - {{> ui_nodes nodes=nodes groups="webauthn" attributes="text/javascript" withoutDefaultGroup=true}} - - -
- diff --git a/kratos-hydra/views/session.hbs b/kratos-hydra/views/session.hbs deleted file mode 100644 index 0b535d8d..00000000 --- a/kratos-hydra/views/session.hbs +++ /dev/null @@ -1,58 +0,0 @@ -
- -
- {{{typography "Session Information" "headline37" "foregroundDefault"}}} - {{{sessionInfoText}}} -
- -
- {{{sessionCodeBox}}} -
- {{#each traits}} -
- {{{typography @key "monoCaption" "foregroundDefault" "bold"}}} - {{{typography this "monoCaption" "foregroundDefault"}}} - {{{divider true "traits-box-divider"}}} -
- {{/each}} - {{#each authMethods}} - {{#each this }} -
- {{{typography @key "monoCaption" "foregroundDefault" "bold"}}} - {{{typography this "monoCaption" "foregroundDefault"}}} - {{{divider true "traits-box-divider"}}} -
- {{/each}} - {{/each}} -
-
- - {{{divider false "divider-left"}}} - - -
\ No newline at end of file diff --git a/kratos-hydra/views/settings.hbs b/kratos-hydra/views/settings.hbs deleted file mode 100644 index e6a79ac3..00000000 --- a/kratos-hydra/views/settings.hbs +++ /dev/null @@ -1,28 +0,0 @@ -
- -
- {{{typography "Account Settings" "headline37" "foregroundDefault"}}} -
- {{{sessionDescription}}} -
- {{{errorMessages}}} - {{{divider false "divider-left"}}} -
- - {{{settingsCard "profile"}}} - {{{settingsCard "password"}}} - {{{settingsCard "oidc"}}} - {{{settingsCard "lookupSecret"}}} - {{{settingsCard "webauthn"}}} - {{{settingsCard "totp"}}} - - {{> ui_nodes nodes=nodes groups="webauthn" attributes="text/javascript" withoutDefaultGroup=true}} - - - -
\ No newline at end of file diff --git a/kratos-hydra/views/verification.hbs b/kratos-hydra/views/verification.hbs deleted file mode 100644 index 7649d5c4..00000000 --- a/kratos-hydra/views/verification.hbs +++ /dev/null @@ -1,3 +0,0 @@ -
- {{{card}}} -
\ No newline at end of file diff --git a/kratos-hydra/views/welcome.hbs b/kratos-hydra/views/welcome.hbs deleted file mode 100644 index d4da26e0..00000000 --- a/kratos-hydra/views/welcome.hbs +++ /dev/null @@ -1,29 +0,0 @@ -
-
- {{{typography - "Welcome to the Ory Account Experience!" - "headline37" - "foregroundDefault" - }}} - {{{typography - "Let your customers sign up, log in and manage their account using Ory’s standard experience. Here you can preview, test and learn to integrate it into your application." - "small" - "foregroundMuted" - }}} - {{{projectInfoText}}} - {{{divider false "divider-left"}}} -
- -
- {{{typography "Core concepts" "headline26" "foregroundDefault"}}} - {{{typography - "Here are some useful documentation pieces that help you get started right away." - "small" - "foregroundMuted" - }}} -
-
- {{{concepts}}} -
- {{{divider false "divider-left"}}} -
\ No newline at end of file