From bff8a75c1f49f83a7623c671d5cf981c10dcb68a Mon Sep 17 00:00:00 2001 From: sgantaya Date: Mon, 19 May 2025 22:54:37 +0530 Subject: [PATCH 1/5] Copied 1.7.0 packages related changes to Open source repo. --- Dockerfile | 2 +- README.md | 1 + app-config.production.yaml | 15 +- app-config.template-local.yaml | 22 +- app-config.yaml | 13 +- docs/app-config-extensions.md | 28 + docs/third-party-software-licenses.txt | 15523 +++++++++------- package.json | 2 +- packages/app/config.d.ts | 32 + packages/app/package.json | 9 +- packages/app/src/App.test.tsx | 7 +- packages/app/src/App.tsx | 100 +- packages/app/src/components/Root/Root.tsx | 5 +- .../DefaultImportPage.test.tsx | 56 + .../components/ImportPage/ImportPage.test.tsx | 74 + .../home/components/HomeCard/HomeCard.tsx | 10 +- .../scaffolder/CustomScaffolderComponent.tsx | 74 + .../app/src/components/scaffolder/plugin.ts | 17 + packages/backend/package.json | 7 +- packages/backend/src/index.ts | 30 +- plugins/import-flow/package.json | 2 +- .../TemplateListPage/TemplateListPage.tsx | 4 +- plugins/import-flow/src/plugin.test.ts | 11 + plugins/import-flow/src/plugin.ts | 12 +- .../package.json | 3 +- .../src/actions/tibco-import/create-yaml.ts | 23 +- .../actions/tibco-import/custom-filters.ts | 18 + .../tibco-import/extract-parameters.ts | 46 +- .../src/actions/tibco-import/index.ts | 1 + .../src/index.ts | 3 +- .../src/module.ts | 37 + .../.eslintrc.js | 5 + .../README.md | 5 + .../package.json | 40 + .../src/actions/tibco-git/git-clone.ts | 107 + .../src/actions/tibco-git/git-push.ts | 131 + .../src/actions/tibco-git/index.ts | 6 + .../src/index.ts | 12 + .../src/module.ts | 33 + .../package.json | 2 +- plugins/tibco-platform-plugin/package.json | 4 +- .../ApplicationDeploymentsCard.test.tsx | 123 + yarn.lock | 4408 +++-- 43 files changed, 12659 insertions(+), 8404 deletions(-) create mode 100644 packages/app/src/components/catalog-import/components/DefaultImportPage/DefaultImportPage.test.tsx create mode 100644 packages/app/src/components/catalog-import/components/ImportPage/ImportPage.test.tsx create mode 100644 packages/app/src/components/scaffolder/CustomScaffolderComponent.tsx create mode 100644 packages/app/src/components/scaffolder/plugin.ts create mode 100644 plugins/import-flow/src/plugin.test.ts create mode 100644 plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/custom-filters.ts create mode 100644 plugins/scaffolder-backend-module-import-flow/src/module.ts create mode 100644 plugins/scaffolder-backend-module-tibco-git-repositories/.eslintrc.js create mode 100644 plugins/scaffolder-backend-module-tibco-git-repositories/README.md create mode 100644 plugins/scaffolder-backend-module-tibco-git-repositories/package.json create mode 100644 plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-clone.ts create mode 100644 plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-push.ts create mode 100644 plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/index.ts create mode 100644 plugins/scaffolder-backend-module-tibco-git-repositories/src/index.ts create mode 100644 plugins/scaffolder-backend-module-tibco-git-repositories/src/module.ts create mode 100644 plugins/tibco-platform-plugin/src/components/ApplicationDeploymentsCard/ApplicationDeploymentsCard.test.tsx diff --git a/Dockerfile b/Dockerfile index 0fbb1f7..38656fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -97,7 +97,7 @@ ENV NODE_ENV=production RUN --mount=type=cache,target=/var/cache/apk,sharing=locked,uid=65532,gid=65532 \ --mount=type=cache,target=/var/lib/apk,sharing=locked,uid=65532,gid=65532 \ apk update && \ - apk add \ + apk add git \ # add node for backstage nodejs-$NODE_VERSION \ # add python for backstage techdocs diff --git a/README.md b/README.md index 0530961..8182021 100644 --- a/README.md +++ b/README.md @@ -120,6 +120,7 @@ docker build -t . | TIBCO Developer Hub Version | Minimum TIBCO Platform Version | |-----------------------------|--------------------------------| +| 1.7.0 | 1.7.0 | | 1.6.0 | 1.6.0 | | 1.5.1 | 1.4.0 | | 1.5.0 | 1.4.0 | diff --git a/app-config.production.yaml b/app-config.production.yaml index e37769b..2964a7b 100644 --- a/app-config.production.yaml +++ b/app-config.production.yaml @@ -1,4 +1,4 @@ -define: &docUrl 'https://docs.tibco.com/go/platform-cp/1.6.0/doc/html#cshid=developer_hub_overview' +define: &docUrl ${DOC_URL} app: title: TIBCO® Developer Hub # Should be the same as backend.baseUrl when using the `app-backend` plugin. @@ -7,16 +7,22 @@ app: url: https://support.tibco.com/s/ items: - title: 'TIBCO Support Page' - icon: 'email' + icon: email links: - url: 'https://support.tibco.com/s/' title: 'TIBCO Support' - title: 'TIBCO Documentation Page' - icon: 'docs' + icon: docs links: - url: *docUrl title: 'TIBCO® Developer Hub Documentation' + - title: 'TIBCO® Developer Hub Open Source Repository' + icon: github + links: + - url: 'https://github.com/TIBCOSoftware/tibco-developer-hub' + title: 'TIBCO® Developer Hub Open Source Repository' docUrl: *docUrl + organization: name: TIBCO Software's @@ -88,6 +94,7 @@ auth: # see https://backstage.io/docs/auth/ to learn about auth providers environment: production providers: + guest: null # Needs to be enabled if you want to try out Github auth # See https://backstage.io/docs/auth/github/provider to learn about GitHub Authentication Provider # While creating OAuth App on GitHub, The Homepage URL should point to TIBCO® Developer Hub frontend including '/tibco/hub' in the URL ,while the Authorization callback URL will point to the TIBCO® Developer Hub backend which also includes '/tibco/hub' in the URL @@ -109,4 +116,4 @@ scaffolder: defaultAuthor: name: TIBCO® Developer Hub # Defaults to `Scaffolder` email: test@test.com # Defaults to `scaffolder@backstage.io` - defaultCommitMessage: 'Initial commit' # Defaults to 'Initial commit' + defaultCommitMessage: 'Initial commit' # Defaults to 'Initial commit' \ No newline at end of file diff --git a/app-config.template-local.yaml b/app-config.template-local.yaml index fa6c782..c827a4d 100644 --- a/app-config.template-local.yaml +++ b/app-config.template-local.yaml @@ -1,8 +1,28 @@ # copy this file and rename it to app-config.local.yaml # then make any updates as needed # all *.local.yaml files are ignored by git so it's safe to define secrets in that file +define: &docUrl https://docs.tibco.com/go/platform-cp/1.7.0/doc/html#cshid=developer_hub_overview app: baseUrl: http://localhost:3000 + docUrl: *docUrl + support: + url: https://support.tibco.com/s/ + items: + - title: 'TIBCO Support Page' + icon: email + links: + - url: 'https://support.tibco.com/s/' + title: 'TIBCO Support' + - title: 'TIBCO Documentation Page' + icon: docs + links: + - url: *docUrl + title: 'TIBCO® Developer Hub Documentation' + - title: 'TIBCO® Developer Hub Open Source Repository' + icon: github + links: + - url: 'https://github.com/TIBCOSoftware/tibco-developer-hub' + title: 'TIBCO® Developer Hub Open Source Repository' backend: baseUrl: http://localhost:7007 @@ -69,4 +89,4 @@ auth: # Available providers: [github, guest] # # on local developer setups only github and guest auth providers are available # # Oauthproxy will only be available in Dataplane deployments. - enableAuthProviders: [guest] + enableAuthProviders: [guest] \ No newline at end of file diff --git a/app-config.yaml b/app-config.yaml index ff768c5..c33afc3 100644 --- a/app-config.yaml +++ b/app-config.yaml @@ -1,20 +1,25 @@ -define: &docUrl 'https://docs.tibco.com/go/platform-cp/1.6.0/doc/html#cshid=developer_hub_overview' +define: &docUrl ${DOC_URL} app: title: TIBCO® Developer Hub - baseUrl: http://localhost:3000/tibco/hub + baseUrl: http://localhost:7007/tibco/hub support: url: https://support.tibco.com/s/ items: - title: 'TIBCO Support Page' - icon: 'email' + icon: email links: - url: 'https://support.tibco.com/s/' title: 'TIBCO Support' - title: 'TIBCO Documentation Page' - icon: 'docs' + icon: docs links: - url: *docUrl title: 'TIBCO® Developer Hub Documentation' + - title: 'TIBCO® Developer Hub Open Source Repository' + icon: github + links: + - url: 'https://github.com/TIBCOSoftware/tibco-developer-hub' + title: 'TIBCO® Developer Hub Open Source Repository' docUrl: *docUrl organization: diff --git a/docs/app-config-extensions.md b/docs/app-config-extensions.md index a60851d..f13e40e 100644 --- a/docs/app-config-extensions.md +++ b/docs/app-config-extensions.md @@ -59,6 +59,34 @@ walkThrough: link: 'http://www.some-external-link.com/walk-through2' ``` +## Template Groups + +Configuration for the template groups in template page when click on the Develop button + +Example config: + +```yaml +templateGroups: + - name: templateGroup1 + tagFilters: ['bwce', 'recommended'] + - name: templateGroup2 + tagFilters: ['flogo'] +``` + +## Import Flow Groups + +Configuration for the import flow groups in import flow page when click on the Import Flow button + +Example config: + +```yaml +importFlowGroups: + - name: importFlowGroup1 + tagFilters: ['bwce', 'recommended'] + - name: importFlowGroup2 + tagFilters: ['flogo'] +``` + ## Cp Link Control plane link for the TIBCO® Developer Hub. diff --git a/docs/third-party-software-licenses.txt b/docs/third-party-software-licenses.txt index 64357de..dc5a932 100644 --- a/docs/third-party-software-licenses.txt +++ b/docs/third-party-software-licenses.txt @@ -1,22 +1,21 @@ Licences in: TIBCO® Developer Hub - ╔═══════╤════════════════════════════════════════════════════════════════════════════════╤══════════════════════════════════════╤══════════════════════════════════════╗ ║ NR │ name │ version │ license ║ ║ 1 │ 1to2 │ 1.0.0 │ MIT ║ -║ 2 │ @adobe/css-tools │ 4.4.1 │ MIT ║ +║ 2 │ @adobe/css-tools │ 4.4.2 │ MIT ║ ║ 3 │ @ampproject/remapping │ 2.3.0 │ Apache-2.0 ║ -║ 4 │ @apidevtools/json-schema-ref-parser │ 9.0.6 │ MIT ║ -║ 5 │ @apidevtools/json-schema-ref-parser │ 11.7.3 │ MIT ║ +║ 4 │ @apidevtools/json-schema-ref-parser │ 11.7.2 │ MIT ║ +║ 5 │ @apidevtools/json-schema-ref-parser │ 11.9.3 │ MIT ║ ║ 6 │ @apidevtools/openapi-schemas │ 2.1.0 │ MIT ║ ║ 7 │ @apidevtools/swagger-methods │ 3.0.2 │ MIT ║ -║ 8 │ @apidevtools/swagger-parser │ 10.1.0 │ MIT ║ -║ 9 │ @ardatan/sync-fetch │ 0.0.1 │ MIT ║ +║ 8 │ @apidevtools/swagger-parser │ 10.1.1 │ MIT ║ +║ 9 │ @asamuzakjp/css-color │ 3.1.5 │ MIT ║ ║ 10 │ @asyncapi/avro-schema-parser │ 3.0.24 │ Apache-2.0 ║ ║ 11 │ @asyncapi/openapi-schema-parser │ 3.0.24 │ Apache-2.0 ║ ║ 12 │ @asyncapi/parser │ 3.4.0 │ Apache-2.0 ║ -║ 13 │ @asyncapi/protobuf-schema-parser │ 3.3.0 │ Apache-2.0 ║ -║ 14 │ @asyncapi/react-component │ 2.5.0 │ Apache-2.0 ║ -║ 15 │ @asyncapi/specs │ 6.8.0 │ Apache-2.0 ║ +║ 13 │ @asyncapi/protobuf-schema-parser │ 3.5.1 │ Apache-2.0 ║ +║ 14 │ @asyncapi/react-component │ 2.6.3 │ Apache-2.0 ║ +║ 15 │ @asyncapi/specs │ 6.8.1 │ Apache-2.0 ║ ║ 16 │ @aws-crypto/crc32 │ 5.2.0 │ Apache-2.0 ║ ║ 17 │ @aws-crypto/crc32 │ 3.0.0 │ Apache-2.0 ║ ║ 18 │ @aws-crypto/crc32c │ 5.2.0 │ Apache-2.0 ║ @@ -27,94 +26,94 @@ Licences in: TIBCO® Developer Hub ║ 23 │ @aws-crypto/util │ 5.2.0 │ Apache-2.0 ║ ║ 24 │ @aws-crypto/util │ 3.0.0 │ Apache-2.0 ║ ║ 25 │ @aws-sdk/abort-controller │ 3.370.0 │ Apache-2.0 ║ -║ 26 │ @aws-sdk/client-codecommit │ 3.699.0 │ Apache-2.0 ║ -║ 27 │ @aws-sdk/client-cognito-identity │ 3.699.0 │ Apache-2.0 ║ -║ 28 │ @aws-sdk/client-s3 │ 3.705.0 │ Apache-2.0 ║ -║ 29 │ @aws-sdk/client-sso │ 3.696.0 │ Apache-2.0 ║ -║ 30 │ @aws-sdk/client-sso-oidc │ 3.699.0 │ Apache-2.0 ║ -║ 31 │ @aws-sdk/client-sts │ 3.699.0 │ Apache-2.0 ║ -║ 32 │ @aws-sdk/core │ 3.696.0 │ Apache-2.0 ║ -║ 33 │ @aws-sdk/credential-provider-cognito-identity │ 3.699.0 │ Apache-2.0 ║ -║ 34 │ @aws-sdk/credential-provider-env │ 3.696.0 │ Apache-2.0 ║ -║ 35 │ @aws-sdk/credential-provider-http │ 3.696.0 │ Apache-2.0 ║ -║ 36 │ @aws-sdk/credential-provider-ini │ 3.699.0 │ Apache-2.0 ║ -║ 37 │ @aws-sdk/credential-provider-node │ 3.699.0 │ Apache-2.0 ║ -║ 38 │ @aws-sdk/credential-provider-process │ 3.696.0 │ Apache-2.0 ║ -║ 39 │ @aws-sdk/credential-provider-sso │ 3.699.0 │ Apache-2.0 ║ -║ 40 │ @aws-sdk/credential-provider-web-identity │ 3.696.0 │ Apache-2.0 ║ -║ 41 │ @aws-sdk/credential-providers │ 3.699.0 │ Apache-2.0 ║ -║ 42 │ @aws-sdk/eventstream-codec │ 3.370.0 │ Apache-2.0 ║ -║ 43 │ @aws-sdk/is-array-buffer │ 3.310.0 │ Apache-2.0 ║ -║ 44 │ @aws-sdk/lib-storage │ 3.705.0 │ Apache-2.0 ║ -║ 45 │ @aws-sdk/middleware-bucket-endpoint │ 3.696.0 │ Apache-2.0 ║ -║ 46 │ @aws-sdk/middleware-expect-continue │ 3.696.0 │ Apache-2.0 ║ -║ 47 │ @aws-sdk/middleware-flexible-checksums │ 3.701.0 │ Apache-2.0 ║ -║ 48 │ @aws-sdk/middleware-host-header │ 3.696.0 │ Apache-2.0 ║ -║ 49 │ @aws-sdk/middleware-location-constraint │ 3.696.0 │ Apache-2.0 ║ -║ 50 │ @aws-sdk/middleware-logger │ 3.696.0 │ Apache-2.0 ║ -║ 51 │ @aws-sdk/middleware-recursion-detection │ 3.696.0 │ Apache-2.0 ║ -║ 52 │ @aws-sdk/middleware-sdk-s3 │ 3.696.0 │ Apache-2.0 ║ -║ 53 │ @aws-sdk/middleware-ssec │ 3.696.0 │ Apache-2.0 ║ -║ 54 │ @aws-sdk/middleware-user-agent │ 3.696.0 │ Apache-2.0 ║ -║ 55 │ @aws-sdk/region-config-resolver │ 3.696.0 │ Apache-2.0 ║ +║ 26 │ @aws-sdk/client-codecommit │ 3.799.0 │ Apache-2.0 ║ +║ 27 │ @aws-sdk/client-cognito-identity │ 3.799.0 │ Apache-2.0 ║ +║ 28 │ @aws-sdk/client-s3 │ 3.799.0 │ Apache-2.0 ║ +║ 29 │ @aws-sdk/client-sso │ 3.799.0 │ Apache-2.0 ║ +║ 30 │ @aws-sdk/client-sts │ 3.799.0 │ Apache-2.0 ║ +║ 31 │ @aws-sdk/core │ 3.799.0 │ Apache-2.0 ║ +║ 32 │ @aws-sdk/credential-provider-cognito-identity │ 3.799.0 │ Apache-2.0 ║ +║ 33 │ @aws-sdk/credential-provider-env │ 3.799.0 │ Apache-2.0 ║ +║ 34 │ @aws-sdk/credential-provider-http │ 3.799.0 │ Apache-2.0 ║ +║ 35 │ @aws-sdk/credential-provider-ini │ 3.799.0 │ Apache-2.0 ║ +║ 36 │ @aws-sdk/credential-provider-node │ 3.799.0 │ Apache-2.0 ║ +║ 37 │ @aws-sdk/credential-provider-process │ 3.799.0 │ Apache-2.0 ║ +║ 38 │ @aws-sdk/credential-provider-sso │ 3.799.0 │ Apache-2.0 ║ +║ 39 │ @aws-sdk/credential-provider-web-identity │ 3.799.0 │ Apache-2.0 ║ +║ 40 │ @aws-sdk/credential-providers │ 3.799.0 │ Apache-2.0 ║ +║ 41 │ @aws-sdk/eventstream-codec │ 3.370.0 │ Apache-2.0 ║ +║ 42 │ @aws-sdk/is-array-buffer │ 3.310.0 │ Apache-2.0 ║ +║ 43 │ @aws-sdk/lib-storage │ 3.799.0 │ Apache-2.0 ║ +║ 44 │ @aws-sdk/middleware-bucket-endpoint │ 3.775.0 │ Apache-2.0 ║ +║ 45 │ @aws-sdk/middleware-expect-continue │ 3.775.0 │ Apache-2.0 ║ +║ 46 │ @aws-sdk/middleware-flexible-checksums │ 3.799.0 │ Apache-2.0 ║ +║ 47 │ @aws-sdk/middleware-host-header │ 3.775.0 │ Apache-2.0 ║ +║ 48 │ @aws-sdk/middleware-location-constraint │ 3.775.0 │ Apache-2.0 ║ +║ 49 │ @aws-sdk/middleware-logger │ 3.775.0 │ Apache-2.0 ║ +║ 50 │ @aws-sdk/middleware-recursion-detection │ 3.775.0 │ Apache-2.0 ║ +║ 51 │ @aws-sdk/middleware-sdk-s3 │ 3.799.0 │ Apache-2.0 ║ +║ 52 │ @aws-sdk/middleware-ssec │ 3.775.0 │ Apache-2.0 ║ +║ 53 │ @aws-sdk/middleware-user-agent │ 3.799.0 │ Apache-2.0 ║ +║ 54 │ @aws-sdk/nested-clients │ 3.799.0 │ Apache-2.0 ║ +║ 55 │ @aws-sdk/region-config-resolver │ 3.775.0 │ Apache-2.0 ║ ║ 56 │ @aws-sdk/signature-v4 │ 3.370.0 │ Apache-2.0 ║ -║ 57 │ @aws-sdk/signature-v4-multi-region │ 3.696.0 │ Apache-2.0 ║ -║ 58 │ @aws-sdk/token-providers │ 3.699.0 │ Apache-2.0 ║ +║ 57 │ @aws-sdk/signature-v4-multi-region │ 3.799.0 │ Apache-2.0 ║ +║ 58 │ @aws-sdk/token-providers │ 3.799.0 │ Apache-2.0 ║ ║ 59 │ @aws-sdk/types │ 3.370.0 │ Apache-2.0 ║ -║ 60 │ @aws-sdk/types │ 3.696.0 │ Apache-2.0 ║ -║ 61 │ @aws-sdk/util-arn-parser │ 3.693.0 │ Apache-2.0 ║ +║ 60 │ @aws-sdk/types │ 3.775.0 │ Apache-2.0 ║ +║ 61 │ @aws-sdk/util-arn-parser │ 3.723.0 │ Apache-2.0 ║ ║ 62 │ @aws-sdk/util-buffer-from │ 3.310.0 │ Apache-2.0 ║ -║ 63 │ @aws-sdk/util-endpoints │ 3.696.0 │ Apache-2.0 ║ +║ 63 │ @aws-sdk/util-endpoints │ 3.787.0 │ Apache-2.0 ║ ║ 64 │ @aws-sdk/util-hex-encoding │ 3.310.0 │ Apache-2.0 ║ -║ 65 │ @aws-sdk/util-locate-window │ 3.693.0 │ Apache-2.0 ║ +║ 65 │ @aws-sdk/util-locate-window │ 3.723.0 │ Apache-2.0 ║ ║ 66 │ @aws-sdk/util-middleware │ 3.370.0 │ Apache-2.0 ║ ║ 67 │ @aws-sdk/util-uri-escape │ 3.310.0 │ Apache-2.0 ║ -║ 68 │ @aws-sdk/util-user-agent-browser │ 3.696.0 │ Apache-2.0 ║ -║ 69 │ @aws-sdk/util-user-agent-node │ 3.696.0 │ Apache-2.0 ║ +║ 68 │ @aws-sdk/util-user-agent-browser │ 3.775.0 │ Apache-2.0 ║ +║ 69 │ @aws-sdk/util-user-agent-node │ 3.799.0 │ Apache-2.0 ║ ║ 70 │ @aws-sdk/util-utf8 │ 3.310.0 │ Apache-2.0 ║ ║ 71 │ @aws-sdk/util-utf8-browser │ 3.259.0 │ Apache-2.0 ║ -║ 72 │ @aws-sdk/xml-builder │ 3.696.0 │ Apache-2.0 ║ +║ 72 │ @aws-sdk/xml-builder │ 3.775.0 │ Apache-2.0 ║ ║ 73 │ @azure/abort-controller │ 2.1.2 │ MIT ║ ║ 74 │ @azure/core-auth │ 1.9.0 │ MIT ║ -║ 75 │ @azure/core-client │ 1.9.2 │ MIT ║ -║ 76 │ @azure/core-http-compat │ 2.1.2 │ MIT ║ +║ 75 │ @azure/core-client │ 1.9.3 │ MIT ║ +║ 76 │ @azure/core-http-compat │ 2.2.0 │ MIT ║ ║ 77 │ @azure/core-lro │ 2.7.2 │ MIT ║ ║ 78 │ @azure/core-paging │ 1.6.2 │ MIT ║ -║ 79 │ @azure/core-rest-pipeline │ 1.18.1 │ MIT ║ +║ 79 │ @azure/core-rest-pipeline │ 1.19.1 │ MIT ║ ║ 80 │ @azure/core-tracing │ 1.2.0 │ MIT ║ ║ 81 │ @azure/core-util │ 1.11.0 │ MIT ║ -║ 82 │ @azure/core-xml │ 1.4.4 │ MIT ║ -║ 83 │ @azure/identity │ 4.5.0 │ MIT ║ +║ 82 │ @azure/core-xml │ 1.4.5 │ MIT ║ +║ 83 │ @azure/identity │ 4.9.1 │ MIT ║ ║ 84 │ @azure/logger │ 1.1.4 │ MIT ║ -║ 85 │ @azure/msal-browser │ 3.27.0 │ MIT ║ -║ 86 │ @azure/msal-common │ 14.16.0 │ MIT ║ -║ 87 │ @azure/msal-node │ 2.16.2 │ MIT ║ -║ 88 │ @azure/storage-blob │ 12.26.0 │ MIT ║ +║ 85 │ @azure/msal-browser │ 4.11.1 │ MIT ║ +║ 86 │ @azure/msal-common │ 15.5.2 │ MIT ║ +║ 87 │ @azure/msal-node │ 3.5.2 │ MIT ║ +║ 88 │ @azure/storage-blob │ 12.27.0 │ MIT ║ ║ 89 │ @babel/code-frame │ 7.26.2 │ MIT ║ ║ 90 │ @babel/code-frame │ 7.0.0 │ MIT ║ -║ 91 │ @babel/compat-data │ 7.26.3 │ MIT ║ -║ 92 │ @babel/core │ 7.26.0 │ MIT ║ -║ 93 │ @babel/generator │ 7.26.3 │ MIT ║ +║ 91 │ @babel/compat-data │ 7.26.8 │ MIT ║ +║ 92 │ @babel/core │ 7.26.10 │ MIT ║ +║ 93 │ @babel/generator │ 7.27.0 │ MIT ║ ║ 94 │ @babel/helper-annotate-as-pure │ 7.25.9 │ MIT ║ -║ 95 │ @babel/helper-compilation-targets │ 7.25.9 │ MIT ║ -║ 96 │ @babel/helper-create-class-features-plugin │ 7.25.9 │ MIT ║ -║ 97 │ @babel/helper-create-regexp-features-plugin │ 7.26.3 │ MIT ║ -║ 98 │ @babel/helper-define-polyfill-provider │ 0.6.3 │ MIT ║ +║ 95 │ @babel/helper-compilation-targets │ 7.27.0 │ MIT ║ +║ 96 │ @babel/helper-create-class-features-plugin │ 7.27.0 │ MIT ║ +║ 97 │ @babel/helper-create-regexp-features-plugin │ 7.27.0 │ MIT ║ +║ 98 │ @babel/helper-define-polyfill-provider │ 0.6.4 │ MIT ║ ║ 99 │ @babel/helper-member-expression-to-functions │ 7.25.9 │ MIT ║ ║ 100 │ @babel/helper-module-imports │ 7.25.9 │ MIT ║ ║ 101 │ @babel/helper-module-transforms │ 7.26.0 │ MIT ║ ║ 102 │ @babel/helper-optimise-call-expression │ 7.25.9 │ MIT ║ -║ 103 │ @babel/helper-plugin-utils │ 7.25.9 │ MIT ║ +║ 103 │ @babel/helper-plugin-utils │ 7.26.5 │ MIT ║ ║ 104 │ @babel/helper-remap-async-to-generator │ 7.25.9 │ MIT ║ -║ 105 │ @babel/helper-replace-supers │ 7.25.9 │ MIT ║ +║ 105 │ @babel/helper-replace-supers │ 7.26.5 │ MIT ║ ║ 106 │ @babel/helper-skip-transparent-expression-wrappers │ 7.25.9 │ MIT ║ ║ 107 │ @babel/helper-string-parser │ 7.25.9 │ MIT ║ ║ 108 │ @babel/helper-validator-identifier │ 7.25.9 │ MIT ║ ║ 109 │ @babel/helper-validator-option │ 7.25.9 │ MIT ║ ║ 110 │ @babel/helper-wrap-function │ 7.25.9 │ MIT ║ -║ 111 │ @babel/helpers │ 7.26.0 │ MIT ║ +║ 111 │ @babel/helpers │ 7.27.0 │ MIT ║ ║ 112 │ @babel/highlight │ 7.25.9 │ MIT ║ -║ 113 │ @babel/parser │ 7.26.3 │ MIT ║ +║ 113 │ @babel/parser │ 7.27.0 │ MIT ║ ║ 114 │ @babel/plugin-bugfix-firefox-class-in-computed-class-key │ 7.25.9 │ MIT ║ ║ 115 │ @babel/plugin-bugfix-safari-class-field-initializer-scope │ 7.25.9 │ MIT ║ ║ 116 │ @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression │ 7.25.9 │ MIT ║ @@ -141,10 +140,10 @@ Licences in: TIBCO® Developer Hub ║ 137 │ @babel/plugin-syntax-typescript │ 7.25.9 │ MIT ║ ║ 138 │ @babel/plugin-syntax-unicode-sets-regex │ 7.18.6 │ MIT ║ ║ 139 │ @babel/plugin-transform-arrow-functions │ 7.25.9 │ MIT ║ -║ 140 │ @babel/plugin-transform-async-generator-functions │ 7.25.9 │ MIT ║ +║ 140 │ @babel/plugin-transform-async-generator-functions │ 7.26.8 │ MIT ║ ║ 141 │ @babel/plugin-transform-async-to-generator │ 7.25.9 │ MIT ║ -║ 142 │ @babel/plugin-transform-block-scoped-functions │ 7.25.9 │ MIT ║ -║ 143 │ @babel/plugin-transform-block-scoping │ 7.25.9 │ MIT ║ +║ 142 │ @babel/plugin-transform-block-scoped-functions │ 7.26.5 │ MIT ║ +║ 143 │ @babel/plugin-transform-block-scoping │ 7.27.0 │ MIT ║ ║ 144 │ @babel/plugin-transform-class-properties │ 7.25.9 │ MIT ║ ║ 145 │ @babel/plugin-transform-class-static-block │ 7.26.0 │ MIT ║ ║ 146 │ @babel/plugin-transform-classes │ 7.25.9 │ MIT ║ @@ -156,7 +155,7 @@ Licences in: TIBCO® Developer Hub ║ 152 │ @babel/plugin-transform-dynamic-import │ 7.25.9 │ MIT ║ ║ 153 │ @babel/plugin-transform-exponentiation-operator │ 7.26.3 │ MIT ║ ║ 154 │ @babel/plugin-transform-export-namespace-from │ 7.25.9 │ MIT ║ -║ 155 │ @babel/plugin-transform-for-of │ 7.25.9 │ MIT ║ +║ 155 │ @babel/plugin-transform-for-of │ 7.26.9 │ MIT ║ ║ 156 │ @babel/plugin-transform-function-name │ 7.25.9 │ MIT ║ ║ 157 │ @babel/plugin-transform-json-strings │ 7.25.9 │ MIT ║ ║ 158 │ @babel/plugin-transform-literals │ 7.25.9 │ MIT ║ @@ -168,7 +167,7 @@ Licences in: TIBCO® Developer Hub ║ 164 │ @babel/plugin-transform-modules-umd │ 7.25.9 │ MIT ║ ║ 165 │ @babel/plugin-transform-named-capturing-groups-regex │ 7.25.9 │ MIT ║ ║ 166 │ @babel/plugin-transform-new-target │ 7.25.9 │ MIT ║ -║ 167 │ @babel/plugin-transform-nullish-coalescing-operator │ 7.25.9 │ MIT ║ +║ 167 │ @babel/plugin-transform-nullish-coalescing-operator │ 7.26.6 │ MIT ║ ║ 168 │ @babel/plugin-transform-numeric-separator │ 7.25.9 │ MIT ║ ║ 169 │ @babel/plugin-transform-object-rest-spread │ 7.25.9 │ MIT ║ ║ 170 │ @babel/plugin-transform-object-super │ 7.25.9 │ MIT ║ @@ -183,2839 +182,2862 @@ Licences in: TIBCO® Developer Hub ║ 179 │ @babel/plugin-transform-react-jsx │ 7.25.9 │ MIT ║ ║ 180 │ @babel/plugin-transform-react-jsx-development │ 7.25.9 │ MIT ║ ║ 181 │ @babel/plugin-transform-react-pure-annotations │ 7.25.9 │ MIT ║ -║ 182 │ @babel/plugin-transform-regenerator │ 7.25.9 │ MIT ║ +║ 182 │ @babel/plugin-transform-regenerator │ 7.27.0 │ MIT ║ ║ 183 │ @babel/plugin-transform-regexp-modifiers │ 7.26.0 │ MIT ║ ║ 184 │ @babel/plugin-transform-reserved-words │ 7.25.9 │ MIT ║ ║ 185 │ @babel/plugin-transform-shorthand-properties │ 7.25.9 │ MIT ║ ║ 186 │ @babel/plugin-transform-spread │ 7.25.9 │ MIT ║ ║ 187 │ @babel/plugin-transform-sticky-regex │ 7.25.9 │ MIT ║ -║ 188 │ @babel/plugin-transform-template-literals │ 7.25.9 │ MIT ║ -║ 189 │ @babel/plugin-transform-typeof-symbol │ 7.25.9 │ MIT ║ -║ 190 │ @babel/plugin-transform-typescript │ 7.26.3 │ MIT ║ +║ 188 │ @babel/plugin-transform-template-literals │ 7.26.8 │ MIT ║ +║ 189 │ @babel/plugin-transform-typeof-symbol │ 7.27.0 │ MIT ║ +║ 190 │ @babel/plugin-transform-typescript │ 7.27.0 │ MIT ║ ║ 191 │ @babel/plugin-transform-unicode-escapes │ 7.25.9 │ MIT ║ ║ 192 │ @babel/plugin-transform-unicode-property-regex │ 7.25.9 │ MIT ║ ║ 193 │ @babel/plugin-transform-unicode-regex │ 7.25.9 │ MIT ║ ║ 194 │ @babel/plugin-transform-unicode-sets-regex │ 7.25.9 │ MIT ║ -║ 195 │ @babel/preset-env │ 7.26.0 │ MIT ║ +║ 195 │ @babel/preset-env │ 7.26.9 │ MIT ║ ║ 196 │ @babel/preset-modules │ 0.1.6-no-external-plugins │ MIT ║ ║ 197 │ @babel/preset-react │ 7.26.3 │ MIT ║ -║ 198 │ @babel/preset-typescript │ 7.26.0 │ MIT ║ -║ 199 │ @babel/runtime │ 7.26.10 │ MIT ║ -║ 200 │ @babel/runtime-corejs3 │ 7.26.0 │ MIT ║ -║ 201 │ @babel/template │ 7.25.9 │ MIT ║ -║ 202 │ @babel/traverse │ 7.26.4 │ MIT ║ -║ 203 │ @babel/types │ 7.26.3 │ MIT ║ -║ 204 │ @backstage-community/plugin-github-actions │ 0.6.26 │ Apache-2.0 ║ -║ 205 │ @backstage-community/plugin-github-actions__alpha │ 0.6.26 │ ║ -║ 206 │ @backstage/app-defaults │ 1.5.14 │ Apache-2.0 ║ -║ 207 │ @backstage/backend-app-api │ 1.0.2 │ Apache-2.0 ║ +║ 198 │ @babel/preset-typescript │ 7.27.0 │ MIT ║ +║ 199 │ @babel/runtime │ 7.27.0 │ MIT ║ +║ 200 │ @babel/runtime-corejs3 │ 7.27.0 │ MIT ║ +║ 201 │ @babel/template │ 7.27.0 │ MIT ║ +║ 202 │ @babel/traverse │ 7.27.0 │ MIT ║ +║ 203 │ @babel/types │ 7.27.0 │ MIT ║ +║ 204 │ @backstage-community/plugin-github-actions │ 0.6.27 │ Apache-2.0 ║ +║ 205 │ @backstage-community/plugin-github-actions__alpha │ 0.6.27 │ ║ +║ 206 │ @backstage/app-defaults │ 1.6.1 │ Apache-2.0 ║ +║ 207 │ @backstage/backend-app-api │ 1.2.2 │ Apache-2.0 ║ ║ 208 │ @backstage/backend-common │ 0.25.0 │ Apache-2.0 ║ ║ 209 │ @backstage/backend-common │ 0.24.1 │ Apache-2.0 ║ ║ 210 │ @backstage/backend-common__alpha │ 0.25.0 │ ║ ║ 211 │ @backstage/backend-common__alpha │ 0.24.1 │ ║ ║ 212 │ @backstage/backend-common__testutils │ 0.25.0 │ ║ ║ 213 │ @backstage/backend-common__testutils │ 0.24.1 │ ║ -║ 214 │ @backstage/backend-defaults │ 0.5.3 │ Apache-2.0 ║ -║ 215 │ @backstage/backend-dev-utils │ 0.1.5 │ Apache-2.0 ║ -║ 216 │ @backstage/backend-openapi-utils │ 0.3.0 │ Apache-2.0 ║ -║ 217 │ @backstage/backend-plugin-api │ 1.0.2 │ Apache-2.0 ║ -║ 218 │ @backstage/backend-plugin-api │ 0.8.1 │ Apache-2.0 ║ -║ 219 │ @backstage/backend-plugin-api__alpha │ 0.8.1 │ ║ -║ 220 │ @backstage/backend-plugin-api__testutils │ 0.8.1 │ ║ -║ 221 │ @backstage/backend-tasks │ 0.6.1 │ Apache-2.0 ║ -║ 222 │ @backstage/catalog-client │ 1.8.0 │ Apache-2.0 ║ -║ 223 │ @backstage/catalog-client │ 1.9.1 │ Apache-2.0 ║ -║ 224 │ @backstage/catalog-model │ 1.7.1 │ Apache-2.0 ║ +║ 214 │ @backstage/backend-defaults │ 0.8.2 │ Apache-2.0 ║ +║ 215 │ @backstage/backend-defaults │ 0.9.0 │ Apache-2.0 ║ +║ 216 │ @backstage/backend-dev-utils │ 0.1.5 │ Apache-2.0 ║ +║ 217 │ @backstage/backend-openapi-utils │ 0.5.2 │ Apache-2.0 ║ +║ 218 │ @backstage/backend-plugin-api │ 1.3.0 │ Apache-2.0 ║ +║ 219 │ @backstage/backend-plugin-api │ 0.8.1 │ Apache-2.0 ║ +║ 220 │ @backstage/backend-plugin-api__alpha │ 0.8.1 │ ║ +║ 221 │ @backstage/backend-plugin-api__testutils │ 0.8.1 │ ║ +║ 222 │ @backstage/backend-tasks │ 0.6.1 │ Apache-2.0 ║ +║ 223 │ @backstage/backend-test-utils │ 1.4.0 │ Apache-2.0 ║ +║ 224 │ @backstage/catalog-client │ 1.9.1 │ Apache-2.0 ║ ║ 225 │ @backstage/catalog-model │ 1.7.3 │ Apache-2.0 ║ -║ 226 │ @backstage/cli │ 0.29.2 │ Apache-2.0 ║ +║ 226 │ @backstage/cli │ 0.30.0 │ Apache-2.0 ║ ║ 227 │ @backstage/cli-common │ 0.1.15 │ Apache-2.0 ║ -║ 228 │ @backstage/cli-node │ 0.2.10 │ Apache-2.0 ║ -║ 229 │ @backstage/config │ 1.3.0 │ Apache-2.0 ║ -║ 230 │ @backstage/config │ 1.3.2 │ Apache-2.0 ║ -║ 231 │ @backstage/config-loader │ 1.9.2 │ Apache-2.0 ║ -║ 232 │ @backstage/core-app-api │ 1.15.2 │ Apache-2.0 ║ -║ 233 │ @backstage/core-app-api │ 1.15.5 │ Apache-2.0 ║ -║ 234 │ @backstage/core-compat-api │ 0.3.3 │ Apache-2.0 ║ -║ 235 │ @backstage/core-compat-api │ 0.3.6 │ Apache-2.0 ║ -║ 236 │ @backstage/core-components │ 0.16.1 │ Apache-2.0 ║ -║ 237 │ @backstage/core-components │ 0.16.4 │ Apache-2.0 ║ -║ 238 │ @backstage/core-components │ 0.15.1 │ Apache-2.0 ║ -║ 239 │ @backstage/core-components__alpha │ 0.15.1 │ ║ -║ 240 │ @backstage/core-components__testutils │ 0.15.1 │ ║ -║ 241 │ @backstage/core-plugin-api │ 1.10.1 │ Apache-2.0 ║ -║ 242 │ @backstage/core-plugin-api │ 1.10.4 │ Apache-2.0 ║ -║ 243 │ @backstage/dev-utils │ 1.1.4 │ Apache-2.0 ║ -║ 244 │ @backstage/e2e-test-utils │ 0.1.1 │ Apache-2.0 ║ -║ 245 │ @backstage/errors │ 1.2.5 │ Apache-2.0 ║ -║ 246 │ @backstage/errors │ 1.2.7 │ Apache-2.0 ║ -║ 247 │ @backstage/eslint-plugin │ 0.1.10 │ Apache-2.0 ║ -║ 248 │ @backstage/frontend-app-api │ 0.10.2 │ Apache-2.0 ║ -║ 249 │ @backstage/frontend-app-api │ 0.10.5 │ Apache-2.0 ║ -║ 250 │ @backstage/frontend-defaults │ 0.1.3 │ Apache-2.0 ║ -║ 251 │ @backstage/frontend-defaults │ 0.1.6 │ Apache-2.0 ║ -║ 252 │ @backstage/frontend-plugin-api │ 0.9.2 │ Apache-2.0 ║ -║ 253 │ @backstage/frontend-plugin-api │ 0.9.5 │ Apache-2.0 ║ -║ 254 │ @backstage/frontend-test-utils │ 0.2.3 │ Apache-2.0 ║ -║ 255 │ @backstage/frontend-test-utils │ 0.2.6 │ Apache-2.0 ║ -║ 256 │ @backstage/integration │ 1.15.2 │ Apache-2.0 ║ -║ 257 │ @backstage/integration │ 1.16.1 │ Apache-2.0 ║ -║ 258 │ @backstage/integration-aws-node │ 0.1.13 │ Apache-2.0 ║ -║ 259 │ @backstage/integration-react │ 1.2.1 │ Apache-2.0 ║ -║ 260 │ @backstage/integration-react │ 1.2.4 │ Apache-2.0 ║ -║ 261 │ @backstage/plugin-api-docs │ 0.12.1 │ Apache-2.0 ║ -║ 262 │ @backstage/plugin-app │ 0.1.3 │ Apache-2.0 ║ -║ 263 │ @backstage/plugin-app │ 0.1.6 │ Apache-2.0 ║ -║ 264 │ @backstage/plugin-app-backend │ 0.4.2 │ Apache-2.0 ║ -║ 265 │ @backstage/plugin-app-node │ 0.1.27 │ Apache-2.0 ║ -║ 266 │ @backstage/plugin-auth-backend │ 0.24.0 │ Apache-2.0 ║ -║ 267 │ @backstage/plugin-auth-backend-module-atlassian-provider │ 0.3.2 │ Apache-2.0 ║ -║ 268 │ @backstage/plugin-auth-backend-module-auth0-provider │ 0.1.2 │ Apache-2.0 ║ -║ 269 │ @backstage/plugin-auth-backend-module-aws-alb-provider │ 0.3.0 │ Apache-2.0 ║ -║ 270 │ @backstage/plugin-auth-backend-module-azure-easyauth-provider │ 0.2.2 │ Apache-2.0 ║ -║ 271 │ @backstage/plugin-auth-backend-module-bitbucket-provider │ 0.2.2 │ Apache-2.0 ║ -║ 272 │ @backstage/plugin-auth-backend-module-bitbucket-server-provider │ 0.1.2 │ Apache-2.0 ║ -║ 273 │ @backstage/plugin-auth-backend-module-cloudflare-access-provider │ 0.3.2 │ Apache-2.0 ║ -║ 274 │ @backstage/plugin-auth-backend-module-gcp-iap-provider │ 0.3.2 │ Apache-2.0 ║ -║ 275 │ @backstage/plugin-auth-backend-module-github-provider │ 0.2.2 │ Apache-2.0 ║ -║ 276 │ @backstage/plugin-auth-backend-module-gitlab-provider │ 0.2.2 │ Apache-2.0 ║ -║ 277 │ @backstage/plugin-auth-backend-module-google-provider │ 0.2.2 │ Apache-2.0 ║ -║ 278 │ @backstage/plugin-auth-backend-module-guest-provider │ 0.2.2 │ Apache-2.0 ║ -║ 279 │ @backstage/plugin-auth-backend-module-microsoft-provider │ 0.2.2 │ Apache-2.0 ║ -║ 280 │ @backstage/plugin-auth-backend-module-oauth2-provider │ 0.3.2 │ Apache-2.0 ║ -║ 281 │ @backstage/plugin-auth-backend-module-oauth2-proxy-provider │ 0.2.2 │ Apache-2.0 ║ -║ 282 │ @backstage/plugin-auth-backend-module-oidc-provider │ 0.3.2 │ Apache-2.0 ║ -║ 283 │ @backstage/plugin-auth-backend-module-okta-provider │ 0.1.2 │ Apache-2.0 ║ -║ 284 │ @backstage/plugin-auth-backend-module-onelogin-provider │ 0.2.2 │ Apache-2.0 ║ -║ 285 │ @backstage/plugin-auth-node │ 0.5.4 │ Apache-2.0 ║ -║ 286 │ @backstage/plugin-auth-react │ 0.1.9 │ Apache-2.0 ║ -║ 287 │ @backstage/plugin-bitbucket-cloud-common │ 0.2.25 │ Apache-2.0 ║ -║ 288 │ @backstage/plugin-catalog │ 1.25.1 │ Apache-2.0 ║ -║ 289 │ @backstage/plugin-catalog-backend │ 1.28.0 │ Apache-2.0 ║ -║ 290 │ @backstage/plugin-catalog-backend-module-github │ 0.7.7 │ Apache-2.0 ║ -║ 291 │ @backstage/plugin-catalog-backend-module-github-org │ 0.3.4 │ Apache-2.0 ║ -║ 292 │ @backstage/plugin-catalog-backend-module-logs │ 0.1.4 │ Apache-2.0 ║ -║ 293 │ @backstage/plugin-catalog-backend-module-scaffolder-entity-model │ 0.2.2 │ Apache-2.0 ║ -║ 294 │ @backstage/plugin-catalog-common │ 1.1.1 │ Apache-2.0 ║ -║ 295 │ @backstage/plugin-catalog-common │ 1.1.3 │ Apache-2.0 ║ -║ 296 │ @backstage/plugin-catalog-graph │ 0.4.13 │ Apache-2.0 ║ -║ 297 │ @backstage/plugin-catalog-import │ 0.12.10 │ Apache-2.0 ║ -║ 298 │ @backstage/plugin-catalog-node │ 1.14.0 │ Apache-2.0 ║ -║ 299 │ @backstage/plugin-catalog-react │ 1.15.2 │ Apache-2.0 ║ -║ 300 │ @backstage/plugin-catalog-react │ 1.14.2 │ Apache-2.0 ║ -║ 301 │ @backstage/plugin-events-node │ 0.4.5 │ Apache-2.0 ║ -║ 302 │ @backstage/plugin-home │ 0.8.2 │ Apache-2.0 ║ -║ 303 │ @backstage/plugin-home-react │ 0.1.20 │ Apache-2.0 ║ -║ 304 │ @backstage/plugin-kubernetes │ 0.12.1 │ Apache-2.0 ║ -║ 305 │ @backstage/plugin-kubernetes-backend │ 0.19.0 │ Apache-2.0 ║ -║ 306 │ @backstage/plugin-kubernetes-common │ 0.9.0 │ Apache-2.0 ║ -║ 307 │ @backstage/plugin-kubernetes-node │ 0.2.0 │ Apache-2.0 ║ -║ 308 │ @backstage/plugin-kubernetes-react │ 0.5.1 │ Apache-2.0 ║ -║ 309 │ @backstage/plugin-org │ 0.6.33 │ Apache-2.0 ║ -║ 310 │ @backstage/plugin-permission-backend │ 0.5.51 │ Apache-2.0 ║ -║ 311 │ @backstage/plugin-permission-backend-module-allow-all-policy │ 0.2.2 │ Apache-2.0 ║ -║ 312 │ @backstage/plugin-permission-common │ 0.8.4 │ Apache-2.0 ║ -║ 313 │ @backstage/plugin-permission-common │ 0.8.2 │ Apache-2.0 ║ -║ 314 │ @backstage/plugin-permission-node │ 0.8.5 │ Apache-2.0 ║ -║ 315 │ @backstage/plugin-permission-react │ 0.4.31 │ Apache-2.0 ║ -║ 316 │ @backstage/plugin-permission-react │ 0.4.28 │ Apache-2.0 ║ -║ 317 │ @backstage/plugin-proxy-backend │ 0.5.8 │ Apache-2.0 ║ -║ 318 │ @backstage/plugin-scaffolder │ 1.27.1 │ Apache-2.0 ║ -║ 319 │ @backstage/plugin-scaffolder-backend │ 1.27.2 │ Apache-2.0 ║ -║ 320 │ @backstage/plugin-scaffolder-backend-module-azure │ 0.2.3 │ Apache-2.0 ║ -║ 321 │ @backstage/plugin-scaffolder-backend-module-bitbucket │ 0.3.4 │ Apache-2.0 ║ -║ 322 │ @backstage/plugin-scaffolder-backend-module-bitbucket-cloud │ 0.2.3 │ Apache-2.0 ║ -║ 323 │ @backstage/plugin-scaffolder-backend-module-bitbucket-server │ 0.2.3 │ Apache-2.0 ║ -║ 324 │ @backstage/plugin-scaffolder-backend-module-gerrit │ 0.2.3 │ Apache-2.0 ║ -║ 325 │ @backstage/plugin-scaffolder-backend-module-gitea │ 0.2.3 │ Apache-2.0 ║ -║ 326 │ @backstage/plugin-scaffolder-backend-module-github │ 0.5.3 │ Apache-2.0 ║ -║ 327 │ @backstage/plugin-scaffolder-backend-module-gitlab │ 0.6.2 │ Apache-2.0 ║ -║ 328 │ @backstage/plugin-scaffolder-common │ 1.5.7 │ Apache-2.0 ║ -║ 329 │ @backstage/plugin-scaffolder-node │ 0.6.1 │ Apache-2.0 ║ -║ 330 │ @backstage/plugin-scaffolder-react │ 1.14.1 │ Apache-2.0 ║ -║ 331 │ @backstage/plugin-search │ 1.4.20 │ Apache-2.0 ║ -║ 332 │ @backstage/plugin-search-backend │ 1.7.0 │ Apache-2.0 ║ -║ 333 │ @backstage/plugin-search-backend-module-catalog │ 0.2.5 │ Apache-2.0 ║ -║ 334 │ @backstage/plugin-search-backend-module-pg │ 0.5.38 │ Apache-2.0 ║ -║ 335 │ @backstage/plugin-search-backend-module-techdocs │ 0.3.3 │ Apache-2.0 ║ -║ 336 │ @backstage/plugin-search-backend-node │ 1.3.5 │ Apache-2.0 ║ -║ 337 │ @backstage/plugin-search-common │ 1.2.17 │ Apache-2.0 ║ -║ 338 │ @backstage/plugin-search-common │ 1.2.15 │ Apache-2.0 ║ -║ 339 │ @backstage/plugin-search-react │ 1.8.3 │ Apache-2.0 ║ -║ 340 │ @backstage/plugin-signals-react │ 0.0.7 │ Apache-2.0 ║ -║ 341 │ @backstage/plugin-techdocs │ 1.11.2 │ Apache-2.0 ║ -║ 342 │ @backstage/plugin-techdocs-backend │ 1.11.3 │ Apache-2.0 ║ -║ 343 │ @backstage/plugin-techdocs-common │ 0.1.0 │ Apache-2.0 ║ -║ 344 │ @backstage/plugin-techdocs-module-addons-contrib │ 1.1.18 │ Apache-2.0 ║ -║ 345 │ @backstage/plugin-techdocs-node │ 1.12.14 │ Apache-2.0 ║ -║ 346 │ @backstage/plugin-techdocs-react │ 1.2.11 │ Apache-2.0 ║ -║ 347 │ @backstage/plugin-user-settings │ 0.8.16 │ Apache-2.0 ║ -║ 348 │ @backstage/plugin-user-settings-common │ 0.0.1 │ Apache-2.0 ║ -║ 349 │ @backstage/release-manifests │ 0.0.11 │ Apache-2.0 ║ -║ 350 │ @backstage/test-utils │ 1.7.5 │ Apache-2.0 ║ -║ 351 │ @backstage/test-utils │ 1.7.2 │ Apache-2.0 ║ -║ 352 │ @backstage/theme │ 0.6.4 │ Apache-2.0 ║ -║ 353 │ @backstage/theme │ 0.6.2 │ Apache-2.0 ║ -║ 354 │ @backstage/types │ 1.2.1 │ Apache-2.0 ║ -║ 355 │ @backstage/types │ 1.2.0 │ Apache-2.0 ║ -║ 356 │ @backstage/version-bridge │ 1.0.11 │ Apache-2.0 ║ -║ 357 │ @backstage/version-bridge │ 1.0.10 │ Apache-2.0 ║ -║ 358 │ @balena/dockerignore │ 1.0.2 │ Apache-2.0 ║ -║ 359 │ @bcoe/v8-coverage │ 0.2.3 │ MIT ║ -║ 360 │ @braintree/sanitize-url │ 7.0.4 │ MIT ║ -║ 361 │ @changesets/types │ 4.1.0 │ MIT ║ -║ 362 │ @codemirror/autocomplete │ 6.18.3 │ MIT ║ -║ 363 │ @codemirror/commands │ 6.7.1 │ MIT ║ -║ 364 │ @codemirror/language │ 6.10.6 │ MIT ║ -║ 365 │ @codemirror/legacy-modes │ 6.4.2 │ MIT ║ -║ 366 │ @codemirror/lint │ 6.8.4 │ MIT ║ -║ 367 │ @codemirror/search │ 6.5.8 │ MIT ║ -║ 368 │ @codemirror/state │ 6.5.0 │ MIT ║ -║ 369 │ @codemirror/theme-one-dark │ 6.1.2 │ MIT ║ -║ 370 │ @codemirror/view │ 6.35.3 │ MIT ║ -║ 371 │ @colors/colors │ 1.6.0 │ MIT ║ -║ 372 │ @cspotcode/source-map-support │ 0.8.1 │ MIT ║ -║ 373 │ @dabh/diagnostics │ 2.0.3 │ MIT ║ -║ 374 │ @dagrejs/dagre │ 1.1.4 │ MIT ║ -║ 375 │ @dagrejs/graphlib │ 2.2.4 │ MIT ║ -║ 376 │ @date-io/core │ 1.3.13 │ MIT ║ -║ 377 │ @date-io/date-fns │ 1.3.13 │ MIT ║ -║ 378 │ @davidzemon/passport-okta-oauth │ 0.0.5 │ MIT ║ -║ 379 │ @emotion/babel-plugin │ 11.13.5 │ MIT ║ -║ 380 │ @emotion/cache │ 11.14.0 │ MIT ║ -║ 381 │ @emotion/hash │ 0.9.2 │ MIT ║ -║ 382 │ @emotion/hash │ 0.8.0 │ MIT ║ -║ 383 │ @emotion/is-prop-valid │ 1.3.1 │ MIT ║ -║ 384 │ @emotion/is-prop-valid │ 0.8.8 │ MIT ║ -║ 385 │ @emotion/memoize │ 0.9.0 │ MIT ║ -║ 386 │ @emotion/memoize │ 0.7.4 │ MIT ║ -║ 387 │ @emotion/react │ 11.14.0 │ MIT ║ -║ 388 │ @emotion/serialize │ 1.3.3 │ MIT ║ -║ 389 │ @emotion/sheet │ 1.4.0 │ MIT ║ -║ 390 │ @emotion/styled │ 11.14.0 │ MIT ║ -║ 391 │ @emotion/unitless │ 0.10.0 │ MIT ║ -║ 392 │ @emotion/use-insertion-effect-with-fallbacks │ 1.2.0 │ MIT ║ -║ 393 │ @emotion/utils │ 1.4.2 │ MIT ║ -║ 394 │ @emotion/weak-memoize │ 0.4.0 │ MIT ║ -║ 395 │ @esbuild/darwin-x64 │ 0.24.0 │ MIT ║ -║ 396 │ @esbuild/darwin-x64 │ 0.21.5 │ MIT ║ -║ 397 │ @eslint-community/eslint-utils │ 4.4.1 │ MIT ║ -║ 398 │ @eslint-community/regexpp │ 4.12.1 │ MIT ║ -║ 399 │ @eslint/eslintrc │ 2.1.4 │ MIT ║ -║ 400 │ @eslint/js │ 8.57.1 │ MIT ║ -║ 401 │ @floating-ui/core │ 1.6.8 │ MIT ║ -║ 402 │ @floating-ui/dom │ 1.6.12 │ MIT ║ -║ 403 │ @floating-ui/react-dom │ 2.1.2 │ MIT ║ -║ 404 │ @floating-ui/utils │ 0.2.8 │ MIT ║ -║ 405 │ @fontsource/source-sans-pro │ 4.5.11 │ MIT ║ -║ 406 │ @gitbeaker/core │ 35.8.1 │ MIT ║ -║ 407 │ @gitbeaker/core │ 39.34.3 │ MIT ║ -║ 408 │ @gitbeaker/node │ 35.8.1 │ MIT ║ -║ 409 │ @gitbeaker/requester-utils │ 35.8.1 │ MIT ║ -║ 410 │ @gitbeaker/requester-utils │ 39.34.3 │ MIT ║ -║ 411 │ @gitbeaker/rest │ 39.34.3 │ MIT ║ -║ 412 │ @google-cloud/container │ 5.19.0 │ Apache-2.0 ║ -║ 413 │ @google-cloud/firestore │ 7.11.0 │ Apache-2.0 ║ -║ 414 │ @google-cloud/paginator │ 5.0.2 │ Apache-2.0 ║ -║ 415 │ @google-cloud/projectify │ 4.0.0 │ Apache-2.0 ║ -║ 416 │ @google-cloud/promisify │ 4.0.0 │ Apache-2.0 ║ -║ 417 │ @google-cloud/storage │ 7.14.0 │ Apache-2.0 ║ -║ 418 │ @graphiql/react │ 0.23.1 │ MIT ║ -║ 419 │ @graphiql/react │ 0.20.4 │ MIT ║ -║ 420 │ @graphiql/toolkit │ 0.9.2 │ MIT ║ -║ 421 │ @graphql-tools/batch-execute │ 9.0.10 │ MIT ║ -║ 422 │ @graphql-tools/delegate │ 10.2.7 │ MIT ║ -║ 423 │ @graphql-tools/executor │ 1.3.6 │ MIT ║ -║ 424 │ @graphql-tools/executor-graphql-ws │ 1.3.5 │ MIT ║ -║ 425 │ @graphql-tools/executor-http │ 1.1.14 │ MIT ║ -║ 426 │ @graphql-tools/executor-legacy-ws │ 1.1.5 │ MIT ║ -║ 427 │ @graphql-tools/graphql-file-loader │ 8.0.6 │ MIT ║ -║ 428 │ @graphql-tools/import │ 7.0.6 │ MIT ║ -║ 429 │ @graphql-tools/json-file-loader │ 8.0.6 │ MIT ║ -║ 430 │ @graphql-tools/load │ 8.0.7 │ MIT ║ -║ 431 │ @graphql-tools/merge │ 9.0.12 │ MIT ║ -║ 432 │ @graphql-tools/merge │ 8.3.1 │ MIT ║ -║ 433 │ @graphql-tools/schema │ 10.0.11 │ MIT ║ -║ 434 │ @graphql-tools/schema │ 8.5.1 │ MIT ║ -║ 435 │ @graphql-tools/url-loader │ 8.0.18 │ MIT ║ -║ 436 │ @graphql-tools/utils │ 10.6.2 │ MIT ║ -║ 437 │ @graphql-tools/utils │ 8.9.0 │ MIT ║ -║ 438 │ @graphql-tools/utils │ 8.13.1 │ MIT ║ -║ 439 │ @graphql-tools/wrap │ 10.0.25 │ MIT ║ -║ 440 │ @graphql-typed-document-node/core │ 3.2.0 │ MIT ║ -║ 441 │ @grpc/grpc-js │ 1.12.4 │ Apache-2.0 ║ -║ 442 │ @grpc/proto-loader │ 0.7.13 │ Apache-2.0 ║ -║ 443 │ @headlessui/react │ 1.7.19 │ MIT ║ -║ 444 │ @httptoolkit/httpolyglot │ 2.2.2 │ MIT ║ -║ 445 │ @httptoolkit/subscriptions-transport-ws │ 0.11.2 │ MIT ║ -║ 446 │ @httptoolkit/websocket-stream │ 6.0.1 │ BSD-2-Clause ║ -║ 447 │ @humanwhocodes/config-array │ 0.13.0 │ Apache-2.0 ║ -║ 448 │ @humanwhocodes/module-importer │ 1.0.1 │ Apache-2.0 ║ -║ 449 │ @humanwhocodes/object-schema │ 2.0.3 │ BSD-3-Clause ║ -║ 450 │ @internal/bar │ NOT-SET │ ║ -║ 451 │ @internal/foo │ NOT-SET │ ║ -║ 452 │ @internal/inline │ NOT-SET │ ║ -║ 453 │ @internal/inline-dep-direct │ NOT-SET │ ║ -║ 454 │ @internal/inline-dep-missing │ NOT-SET │ ║ -║ 455 │ @internal/inline-dep-valid │ NOT-SET │ ║ -║ 456 │ @ioredis/commands │ 1.2.0 │ MIT ║ -║ 457 │ @isaacs/cliui │ 8.0.2 │ ISC ║ -║ 458 │ @isaacs/fs-minipass │ 4.0.1 │ ISC ║ -║ 459 │ @istanbuljs/load-nyc-config │ 1.1.0 │ ISC ║ -║ 460 │ @istanbuljs/schema │ 0.1.3 │ MIT ║ -║ 461 │ @jest-mock/express │ 2.1.0 │ MIT ║ -║ 462 │ @jest/console │ 29.7.0 │ MIT ║ -║ 463 │ @jest/core │ 29.7.0 │ MIT ║ -║ 464 │ @jest/create-cache-key-function │ 29.7.0 │ MIT ║ -║ 465 │ @jest/environment │ 29.7.0 │ MIT ║ -║ 466 │ @jest/expect │ 29.7.0 │ MIT ║ -║ 467 │ @jest/expect-utils │ 29.7.0 │ MIT ║ -║ 468 │ @jest/fake-timers │ 29.7.0 │ MIT ║ -║ 469 │ @jest/globals │ 29.7.0 │ MIT ║ -║ 470 │ @jest/reporters │ 29.7.0 │ MIT ║ -║ 471 │ @jest/schemas │ 29.6.3 │ MIT ║ -║ 472 │ @jest/source-map │ 29.6.3 │ MIT ║ -║ 473 │ @jest/test-result │ 29.7.0 │ MIT ║ -║ 474 │ @jest/test-sequencer │ 29.7.0 │ MIT ║ -║ 475 │ @jest/transform │ 29.7.0 │ MIT ║ -║ 476 │ @jest/types │ 29.6.3 │ MIT ║ -║ 477 │ @jridgewell/gen-mapping │ 0.3.5 │ MIT ║ -║ 478 │ @jridgewell/resolve-uri │ 3.1.2 │ MIT ║ -║ 479 │ @jridgewell/set-array │ 1.2.1 │ MIT ║ -║ 480 │ @jridgewell/source-map │ 0.3.6 │ MIT ║ -║ 481 │ @jridgewell/sourcemap-codec │ 1.5.0 │ MIT ║ -║ 482 │ @jridgewell/trace-mapping │ 0.3.9 │ MIT ║ -║ 483 │ @jridgewell/trace-mapping │ 0.3.25 │ MIT ║ -║ 484 │ @js-sdsl/ordered-map │ 4.4.2 │ MIT ║ -║ 485 │ @jsdevtools/ono │ 7.1.3 │ MIT ║ -║ 486 │ @jsep-plugin/assignment │ 1.3.0 │ MIT ║ -║ 487 │ @jsep-plugin/regex │ 1.0.4 │ MIT ║ -║ 488 │ @jsep-plugin/ternary │ 1.1.4 │ MIT ║ -║ 489 │ @jsonjoy.com/base64 │ 1.1.2 │ Apache-2.0 ║ -║ 490 │ @jsonjoy.com/json-pack │ 1.1.1 │ Apache-2.0 ║ -║ 491 │ @jsonjoy.com/util │ 1.5.0 │ Apache-2.0 ║ -║ 492 │ @juggle/resize-observer │ 3.4.0 │ Apache-2.0 ║ -║ 493 │ @kamilkisiela/fast-url-parser │ 1.1.4 │ MIT ║ +║ 228 │ @backstage/cli-node │ 0.2.13 │ Apache-2.0 ║ +║ 229 │ @backstage/config │ 1.3.2 │ Apache-2.0 ║ +║ 230 │ @backstage/config-loader │ 1.10.0 │ Apache-2.0 ║ +║ 231 │ @backstage/core-app-api │ 1.16.1 │ Apache-2.0 ║ +║ 232 │ @backstage/core-compat-api │ 0.4.1 │ Apache-2.0 ║ +║ 233 │ @backstage/core-compat-api │ 0.3.6 │ Apache-2.0 ║ +║ 234 │ @backstage/core-components │ 0.17.1 │ Apache-2.0 ║ +║ 235 │ @backstage/core-components │ 0.15.1 │ Apache-2.0 ║ +║ 236 │ @backstage/core-components │ 0.16.4 │ Apache-2.0 ║ +║ 237 │ @backstage/core-components__alpha │ 0.15.1 │ ║ +║ 238 │ @backstage/core-components__testutils │ 0.15.1 │ ║ +║ 239 │ @backstage/core-plugin-api │ 1.10.6 │ Apache-2.0 ║ +║ 240 │ @backstage/dev-utils │ 1.1.9 │ Apache-2.0 ║ +║ 241 │ @backstage/e2e-test-utils │ 0.1.1 │ Apache-2.0 ║ +║ 242 │ @backstage/errors │ 1.2.7 │ Apache-2.0 ║ +║ 243 │ @backstage/eslint-plugin │ 0.1.10 │ Apache-2.0 ║ +║ 244 │ @backstage/frontend-app-api │ 0.11.1 │ Apache-2.0 ║ +║ 245 │ @backstage/frontend-defaults │ 0.2.1 │ Apache-2.0 ║ +║ 246 │ @backstage/frontend-plugin-api │ 0.10.1 │ Apache-2.0 ║ +║ 247 │ @backstage/frontend-plugin-api │ 0.9.5 │ Apache-2.0 ║ +║ 248 │ @backstage/frontend-test-utils │ 0.3.1 │ Apache-2.0 ║ +║ 249 │ @backstage/integration │ 1.16.3 │ Apache-2.0 ║ +║ 250 │ @backstage/integration-aws-node │ 0.1.15 │ Apache-2.0 ║ +║ 251 │ @backstage/integration-react │ 1.2.6 │ Apache-2.0 ║ +║ 252 │ @backstage/plugin-api-docs │ 0.12.6 │ Apache-2.0 ║ +║ 253 │ @backstage/plugin-app │ 0.1.8 │ Apache-2.0 ║ +║ 254 │ @backstage/plugin-app-backend │ 0.4.5 │ Apache-2.0 ║ +║ 255 │ @backstage/plugin-app-node │ 0.1.32 │ Apache-2.0 ║ +║ 256 │ @backstage/plugin-auth-backend │ 0.24.5 │ Apache-2.0 ║ +║ 257 │ @backstage/plugin-auth-backend-module-atlassian-provider │ 0.4.2 │ Apache-2.0 ║ +║ 258 │ @backstage/plugin-auth-backend-module-auth0-provider │ 0.2.2 │ Apache-2.0 ║ +║ 259 │ @backstage/plugin-auth-backend-module-aws-alb-provider │ 0.4.2 │ Apache-2.0 ║ +║ 260 │ @backstage/plugin-auth-backend-module-azure-easyauth-provider │ 0.2.7 │ Apache-2.0 ║ +║ 261 │ @backstage/plugin-auth-backend-module-bitbucket-provider │ 0.3.2 │ Apache-2.0 ║ +║ 262 │ @backstage/plugin-auth-backend-module-bitbucket-server-provider │ 0.2.2 │ Apache-2.0 ║ +║ 263 │ @backstage/plugin-auth-backend-module-cloudflare-access-provider │ 0.4.2 │ Apache-2.0 ║ +║ 264 │ @backstage/plugin-auth-backend-module-gcp-iap-provider │ 0.4.2 │ Apache-2.0 ║ +║ 265 │ @backstage/plugin-auth-backend-module-github-provider │ 0.3.2 │ Apache-2.0 ║ +║ 266 │ @backstage/plugin-auth-backend-module-gitlab-provider │ 0.3.2 │ Apache-2.0 ║ +║ 267 │ @backstage/plugin-auth-backend-module-google-provider │ 0.3.2 │ Apache-2.0 ║ +║ 268 │ @backstage/plugin-auth-backend-module-guest-provider │ 0.2.7 │ Apache-2.0 ║ +║ 269 │ @backstage/plugin-auth-backend-module-microsoft-provider │ 0.3.2 │ Apache-2.0 ║ +║ 270 │ @backstage/plugin-auth-backend-module-oauth2-provider │ 0.4.2 │ Apache-2.0 ║ +║ 271 │ @backstage/plugin-auth-backend-module-oauth2-proxy-provider │ 0.2.7 │ Apache-2.0 ║ +║ 272 │ @backstage/plugin-auth-backend-module-oidc-provider │ 0.4.2 │ Apache-2.0 ║ +║ 273 │ @backstage/plugin-auth-backend-module-okta-provider │ 0.2.2 │ Apache-2.0 ║ +║ 274 │ @backstage/plugin-auth-backend-module-onelogin-provider │ 0.3.2 │ Apache-2.0 ║ +║ 275 │ @backstage/plugin-auth-node │ 0.5.6 │ Apache-2.0 ║ +║ 276 │ @backstage/plugin-auth-node │ 0.6.2 │ Apache-2.0 ║ +║ 277 │ @backstage/plugin-auth-react │ 0.1.14 │ Apache-2.0 ║ +║ 278 │ @backstage/plugin-bitbucket-cloud-common │ 0.2.29 │ Apache-2.0 ║ +║ 279 │ @backstage/plugin-catalog │ 1.29.0 │ Apache-2.0 ║ +║ 280 │ @backstage/plugin-catalog-backend │ 1.32.1 │ Apache-2.0 ║ +║ 281 │ @backstage/plugin-catalog-backend-module-github │ 0.7.11 │ Apache-2.0 ║ +║ 282 │ @backstage/plugin-catalog-backend-module-github │ 0.8.0 │ Apache-2.0 ║ +║ 283 │ @backstage/plugin-catalog-backend-module-github-org │ 0.3.9 │ Apache-2.0 ║ +║ 284 │ @backstage/plugin-catalog-backend-module-logs │ 0.1.9 │ Apache-2.0 ║ +║ 285 │ @backstage/plugin-catalog-backend-module-scaffolder-entity-model │ 0.2.7 │ Apache-2.0 ║ +║ 286 │ @backstage/plugin-catalog-common │ 1.1.3 │ Apache-2.0 ║ +║ 287 │ @backstage/plugin-catalog-graph │ 0.4.18 │ Apache-2.0 ║ +║ 288 │ @backstage/plugin-catalog-import │ 0.12.13 │ Apache-2.0 ║ +║ 289 │ @backstage/plugin-catalog-node │ 1.16.3 │ Apache-2.0 ║ +║ 290 │ @backstage/plugin-catalog-react │ 1.17.0 │ Apache-2.0 ║ +║ 291 │ @backstage/plugin-events-node │ 0.4.10 │ Apache-2.0 ║ +║ 292 │ @backstage/plugin-home │ 0.8.7 │ Apache-2.0 ║ +║ 293 │ @backstage/plugin-home-react │ 0.1.25 │ Apache-2.0 ║ +║ 294 │ @backstage/plugin-kubernetes │ 0.12.6 │ Apache-2.0 ║ +║ 295 │ @backstage/plugin-kubernetes-backend │ 0.19.5 │ Apache-2.0 ║ +║ 296 │ @backstage/plugin-kubernetes-common │ 0.9.4 │ Apache-2.0 ║ +║ 297 │ @backstage/plugin-kubernetes-node │ 0.2.5 │ Apache-2.0 ║ +║ 298 │ @backstage/plugin-kubernetes-react │ 0.5.6 │ Apache-2.0 ║ +║ 299 │ @backstage/plugin-org │ 0.6.38 │ Apache-2.0 ║ +║ 300 │ @backstage/plugin-permission-backend │ 0.6.0 │ Apache-2.0 ║ +║ 301 │ @backstage/plugin-permission-backend-module-allow-all-policy │ 0.2.7 │ Apache-2.0 ║ +║ 302 │ @backstage/plugin-permission-common │ 0.8.4 │ Apache-2.0 ║ +║ 303 │ @backstage/plugin-permission-node │ 0.9.1 │ Apache-2.0 ║ +║ 304 │ @backstage/plugin-permission-node │ 0.8.8 │ Apache-2.0 ║ +║ 305 │ @backstage/plugin-permission-react │ 0.4.33 │ Apache-2.0 ║ +║ 306 │ @backstage/plugin-proxy-backend │ 0.5.11 │ Apache-2.0 ║ +║ 307 │ @backstage/plugin-proxy-node │ 0.1.3 │ Apache-2.0 ║ +║ 308 │ @backstage/plugin-scaffolder │ 1.30.1 │ Apache-2.0 ║ +║ 309 │ @backstage/plugin-scaffolder-backend │ 1.32.1 │ Apache-2.0 ║ +║ 310 │ @backstage/plugin-scaffolder-backend-module-azure │ 0.2.8 │ Apache-2.0 ║ +║ 311 │ @backstage/plugin-scaffolder-backend-module-bitbucket │ 0.3.9 │ Apache-2.0 ║ +║ 312 │ @backstage/plugin-scaffolder-backend-module-bitbucket-cloud │ 0.2.8 │ Apache-2.0 ║ +║ 313 │ @backstage/plugin-scaffolder-backend-module-bitbucket-server │ 0.2.8 │ Apache-2.0 ║ +║ 314 │ @backstage/plugin-scaffolder-backend-module-gerrit │ 0.2.8 │ Apache-2.0 ║ +║ 315 │ @backstage/plugin-scaffolder-backend-module-gitea │ 0.2.8 │ Apache-2.0 ║ +║ 316 │ @backstage/plugin-scaffolder-backend-module-github │ 0.7.0 │ Apache-2.0 ║ +║ 317 │ @backstage/plugin-scaffolder-backend-module-github │ 0.6.1 │ Apache-2.0 ║ +║ 318 │ @backstage/plugin-scaffolder-backend-module-gitlab │ 0.9.0 │ Apache-2.0 ║ +║ 319 │ @backstage/plugin-scaffolder-backend-module-gitlab │ 0.8.1 │ Apache-2.0 ║ +║ 320 │ @backstage/plugin-scaffolder-common │ 1.5.10 │ Apache-2.0 ║ +║ 321 │ @backstage/plugin-scaffolder-node │ 0.8.1 │ Apache-2.0 ║ +║ 322 │ @backstage/plugin-scaffolder-node │ 0.7.0 │ Apache-2.0 ║ +║ 323 │ @backstage/plugin-scaffolder-node-test-utils │ 0.1.19 │ Apache-2.0 ║ +║ 324 │ @backstage/plugin-scaffolder-react │ 1.15.1 │ Apache-2.0 ║ +║ 325 │ @backstage/plugin-search │ 1.4.25 │ Apache-2.0 ║ +║ 326 │ @backstage/plugin-search-backend │ 1.8.2 │ Apache-2.0 ║ +║ 327 │ @backstage/plugin-search-backend-module-catalog │ 0.3.3 │ Apache-2.0 ║ +║ 328 │ @backstage/plugin-search-backend-module-pg │ 0.5.43 │ Apache-2.0 ║ +║ 329 │ @backstage/plugin-search-backend-module-techdocs │ 0.3.6 │ Apache-2.0 ║ +║ 330 │ @backstage/plugin-search-backend-node │ 1.3.10 │ Apache-2.0 ║ +║ 331 │ @backstage/plugin-search-common │ 1.2.17 │ Apache-2.0 ║ +║ 332 │ @backstage/plugin-search-react │ 1.8.8 │ Apache-2.0 ║ +║ 333 │ @backstage/plugin-signals-react │ 0.0.12 │ Apache-2.0 ║ +║ 334 │ @backstage/plugin-techdocs │ 1.12.5 │ Apache-2.0 ║ +║ 335 │ @backstage/plugin-techdocs-backend │ 1.11.6 │ Apache-2.0 ║ +║ 336 │ @backstage/plugin-techdocs-common │ 0.1.0 │ Apache-2.0 ║ +║ 337 │ @backstage/plugin-techdocs-module-addons-contrib │ 1.1.23 │ Apache-2.0 ║ +║ 338 │ @backstage/plugin-techdocs-node │ 1.13.2 │ Apache-2.0 ║ +║ 339 │ @backstage/plugin-techdocs-react │ 1.2.16 │ Apache-2.0 ║ +║ 340 │ @backstage/plugin-user-settings │ 0.8.21 │ Apache-2.0 ║ +║ 341 │ @backstage/plugin-user-settings-common │ 0.0.1 │ Apache-2.0 ║ +║ 342 │ @backstage/release-manifests │ 0.0.12 │ Apache-2.0 ║ +║ 343 │ @backstage/test-utils │ 1.7.7 │ Apache-2.0 ║ +║ 344 │ @backstage/theme │ 0.6.5 │ Apache-2.0 ║ +║ 345 │ @backstage/types │ 1.2.1 │ Apache-2.0 ║ +║ 346 │ @backstage/version-bridge │ 1.0.11 │ Apache-2.0 ║ +║ 347 │ @balena/dockerignore │ 1.0.2 │ Apache-2.0 ║ +║ 348 │ @bcoe/v8-coverage │ 0.2.3 │ MIT ║ +║ 349 │ @changesets/types │ 4.1.0 │ MIT ║ +║ 350 │ @codemirror/autocomplete │ 6.18.6 │ MIT ║ +║ 351 │ @codemirror/commands │ 6.8.1 │ MIT ║ +║ 352 │ @codemirror/language │ 6.11.0 │ MIT ║ +║ 353 │ @codemirror/legacy-modes │ 6.5.1 │ MIT ║ +║ 354 │ @codemirror/lint │ 6.8.5 │ MIT ║ +║ 355 │ @codemirror/search │ 6.5.10 │ MIT ║ +║ 356 │ @codemirror/state │ 6.5.2 │ MIT ║ +║ 357 │ @codemirror/theme-one-dark │ 6.1.2 │ MIT ║ +║ 358 │ @codemirror/view │ 6.36.6 │ MIT ║ +║ 359 │ @colors/colors │ 1.6.0 │ MIT ║ +║ 360 │ @cspotcode/source-map-support │ 0.8.1 │ MIT ║ +║ 361 │ @csstools/color-helpers │ 5.0.2 │ MIT-0 ║ +║ 362 │ @csstools/css-calc │ 2.1.3 │ MIT ║ +║ 363 │ @csstools/css-color-parser │ 3.0.9 │ MIT ║ +║ 364 │ @csstools/css-parser-algorithms │ 3.0.4 │ MIT ║ +║ 365 │ @csstools/css-tokenizer │ 3.0.3 │ MIT ║ +║ 366 │ @dabh/diagnostics │ 2.0.3 │ MIT ║ +║ 367 │ @dagrejs/dagre │ 1.1.4 │ MIT ║ +║ 368 │ @dagrejs/graphlib │ 2.2.4 │ MIT ║ +║ 369 │ @date-io/core │ 1.3.13 │ MIT ║ +║ 370 │ @date-io/date-fns │ 1.3.13 │ MIT ║ +║ 371 │ @davidzemon/passport-okta-oauth │ 0.0.5 │ MIT ║ +║ 372 │ @emotion/babel-plugin │ 11.13.5 │ MIT ║ +║ 373 │ @emotion/cache │ 11.14.0 │ MIT ║ +║ 374 │ @emotion/hash │ 0.9.2 │ MIT ║ +║ 375 │ @emotion/hash │ 0.8.0 │ MIT ║ +║ 376 │ @emotion/is-prop-valid │ 1.3.1 │ MIT ║ +║ 377 │ @emotion/is-prop-valid │ 0.8.8 │ MIT ║ +║ 378 │ @emotion/memoize │ 0.9.0 │ MIT ║ +║ 379 │ @emotion/memoize │ 0.7.4 │ MIT ║ +║ 380 │ @emotion/react │ 11.14.0 │ MIT ║ +║ 381 │ @emotion/serialize │ 1.3.3 │ MIT ║ +║ 382 │ @emotion/sheet │ 1.4.0 │ MIT ║ +║ 383 │ @emotion/styled │ 11.14.0 │ MIT ║ +║ 384 │ @emotion/unitless │ 0.10.0 │ MIT ║ +║ 385 │ @emotion/use-insertion-effect-with-fallbacks │ 1.2.0 │ MIT ║ +║ 386 │ @emotion/utils │ 1.4.2 │ MIT ║ +║ 387 │ @emotion/weak-memoize │ 0.4.0 │ MIT ║ +║ 388 │ @envelop/core │ 5.2.3 │ MIT ║ +║ 389 │ @envelop/instrumentation │ 1.0.0 │ MIT ║ +║ 390 │ @envelop/types │ 5.2.1 │ MIT ║ +║ 391 │ @esbuild/darwin-x64 │ 0.24.2 │ MIT ║ +║ 392 │ @esbuild/darwin-x64 │ 0.25.3 │ MIT ║ +║ 393 │ @eslint-community/eslint-utils │ 4.6.1 │ MIT ║ +║ 394 │ @eslint-community/regexpp │ 4.12.1 │ MIT ║ +║ 395 │ @eslint/eslintrc │ 2.1.4 │ MIT ║ +║ 396 │ @eslint/js │ 8.57.1 │ MIT ║ +║ 397 │ @fastify/busboy │ 3.1.1 │ MIT ║ +║ 398 │ @fastify/busboy │ 2.1.1 │ MIT ║ +║ 399 │ @floating-ui/core │ 1.6.9 │ MIT ║ +║ 400 │ @floating-ui/dom │ 1.6.13 │ MIT ║ +║ 401 │ @floating-ui/react-dom │ 2.1.2 │ MIT ║ +║ 402 │ @floating-ui/utils │ 0.2.9 │ MIT ║ +║ 403 │ @fontsource/source-sans-pro │ 4.5.11 │ MIT ║ +║ 404 │ @gitbeaker/core │ 41.3.0 │ MIT ║ +║ 405 │ @gitbeaker/requester-utils │ 41.3.0 │ MIT ║ +║ 406 │ @gitbeaker/rest │ 41.3.0 │ MIT ║ +║ 407 │ @google-cloud/container │ 5.19.0 │ Apache-2.0 ║ +║ 408 │ @google-cloud/firestore │ 7.11.0 │ Apache-2.0 ║ +║ 409 │ @google-cloud/paginator │ 5.0.2 │ Apache-2.0 ║ +║ 410 │ @google-cloud/projectify │ 4.0.0 │ Apache-2.0 ║ +║ 411 │ @google-cloud/promisify │ 4.0.0 │ Apache-2.0 ║ +║ 412 │ @google-cloud/storage │ 7.16.0 │ Apache-2.0 ║ +║ 413 │ @graphiql/react │ 0.23.1 │ MIT ║ +║ 414 │ @graphiql/react │ 0.20.4 │ MIT ║ +║ 415 │ @graphiql/toolkit │ 0.9.2 │ MIT ║ +║ 416 │ @graphql-hive/signal │ 1.0.0 │ MIT ║ +║ 417 │ @graphql-tools/batch-execute │ 9.0.15 │ MIT ║ +║ 418 │ @graphql-tools/delegate │ 10.2.17 │ MIT ║ +║ 419 │ @graphql-tools/executor │ 1.4.7 │ MIT ║ +║ 420 │ @graphql-tools/executor-common │ 0.0.4 │ MIT ║ +║ 421 │ @graphql-tools/executor-graphql-ws │ 2.0.5 │ MIT ║ +║ 422 │ @graphql-tools/executor-http │ 1.3.3 │ MIT ║ +║ 423 │ @graphql-tools/executor-legacy-ws │ 1.1.17 │ MIT ║ +║ 424 │ @graphql-tools/graphql-file-loader │ 8.0.19 │ MIT ║ +║ 425 │ @graphql-tools/import │ 7.0.18 │ MIT ║ +║ 426 │ @graphql-tools/json-file-loader │ 8.0.18 │ MIT ║ +║ 427 │ @graphql-tools/load │ 8.1.0 │ MIT ║ +║ 428 │ @graphql-tools/merge │ 9.0.24 │ MIT ║ +║ 429 │ @graphql-tools/merge │ 8.3.1 │ MIT ║ +║ 430 │ @graphql-tools/schema │ 10.0.23 │ MIT ║ +║ 431 │ @graphql-tools/schema │ 8.5.1 │ MIT ║ +║ 432 │ @graphql-tools/url-loader │ 8.0.31 │ MIT ║ +║ 433 │ @graphql-tools/utils │ 10.8.6 │ MIT ║ +║ 434 │ @graphql-tools/utils │ 8.9.0 │ MIT ║ +║ 435 │ @graphql-tools/utils │ 8.13.1 │ MIT ║ +║ 436 │ @graphql-tools/wrap │ 10.0.35 │ MIT ║ +║ 437 │ @graphql-typed-document-node/core │ 3.2.0 │ MIT ║ +║ 438 │ @grpc/grpc-js │ 1.13.3 │ Apache-2.0 ║ +║ 439 │ @grpc/proto-loader │ 0.7.15 │ Apache-2.0 ║ +║ 440 │ @headlessui/react │ 1.7.19 │ MIT ║ +║ 441 │ @httptoolkit/httpolyglot │ 2.2.2 │ MIT ║ +║ 442 │ @httptoolkit/subscriptions-transport-ws │ 0.11.2 │ MIT ║ +║ 443 │ @httptoolkit/websocket-stream │ 6.0.1 │ BSD-2-Clause ║ +║ 444 │ @humanwhocodes/config-array │ 0.13.0 │ Apache-2.0 ║ +║ 445 │ @humanwhocodes/module-importer │ 1.0.1 │ Apache-2.0 ║ +║ 446 │ @humanwhocodes/object-schema │ 2.0.3 │ BSD-3-Clause ║ +║ 447 │ @internal/bar │ NOT-SET │ ║ +║ 448 │ @internal/foo │ NOT-SET │ ║ +║ 449 │ @internal/inline │ NOT-SET │ ║ +║ 450 │ @internal/inline-dep-direct │ NOT-SET │ ║ +║ 451 │ @internal/inline-dep-missing │ NOT-SET │ ║ +║ 452 │ @internal/inline-dep-valid │ NOT-SET │ ║ +║ 453 │ @ioredis/commands │ 1.2.0 │ MIT ║ +║ 454 │ @isaacs/cliui │ 8.0.2 │ ISC ║ +║ 455 │ @isaacs/fs-minipass │ 4.0.1 │ ISC ║ +║ 456 │ @isomorphic-git/pgp-plugin │ 0.0.7 │ LGPL-3.0+ ║ +║ 457 │ @isomorphic-pgp/parser │ 0.0.3 │ MIT ║ +║ 458 │ @isomorphic-pgp/sign-and-verify │ 0.0.10 │ MIT ║ +║ 459 │ @isomorphic-pgp/util │ 0.0.6 │ MIT ║ +║ 460 │ @istanbuljs/load-nyc-config │ 1.1.0 │ ISC ║ +║ 461 │ @istanbuljs/schema │ 0.1.3 │ MIT ║ +║ 462 │ @jest-mock/express │ 2.1.0 │ MIT ║ +║ 463 │ @jest/console │ 29.7.0 │ MIT ║ +║ 464 │ @jest/core │ 29.7.0 │ MIT ║ +║ 465 │ @jest/create-cache-key-function │ 29.7.0 │ MIT ║ +║ 466 │ @jest/environment │ 29.7.0 │ MIT ║ +║ 467 │ @jest/expect │ 29.7.0 │ MIT ║ +║ 468 │ @jest/expect-utils │ 29.7.0 │ MIT ║ +║ 469 │ @jest/fake-timers │ 29.7.0 │ MIT ║ +║ 470 │ @jest/globals │ 29.7.0 │ MIT ║ +║ 471 │ @jest/reporters │ 29.7.0 │ MIT ║ +║ 472 │ @jest/schemas │ 29.6.3 │ MIT ║ +║ 473 │ @jest/source-map │ 29.6.3 │ MIT ║ +║ 474 │ @jest/test-result │ 29.7.0 │ MIT ║ +║ 475 │ @jest/test-sequencer │ 29.7.0 │ MIT ║ +║ 476 │ @jest/transform │ 29.7.0 │ MIT ║ +║ 477 │ @jest/types │ 29.6.3 │ MIT ║ +║ 478 │ @jridgewell/gen-mapping │ 0.3.8 │ MIT ║ +║ 479 │ @jridgewell/resolve-uri │ 3.1.2 │ MIT ║ +║ 480 │ @jridgewell/set-array │ 1.2.1 │ MIT ║ +║ 481 │ @jridgewell/source-map │ 0.3.6 │ MIT ║ +║ 482 │ @jridgewell/sourcemap-codec │ 1.5.0 │ MIT ║ +║ 483 │ @jridgewell/trace-mapping │ 0.3.9 │ MIT ║ +║ 484 │ @jridgewell/trace-mapping │ 0.3.25 │ MIT ║ +║ 485 │ @js-sdsl/ordered-map │ 4.4.2 │ MIT ║ +║ 486 │ @jsdevtools/ono │ 7.1.3 │ MIT ║ +║ 487 │ @jsep-plugin/assignment │ 1.3.0 │ MIT ║ +║ 488 │ @jsep-plugin/regex │ 1.0.4 │ MIT ║ +║ 489 │ @jsep-plugin/ternary │ 1.1.4 │ MIT ║ +║ 490 │ @jsonjoy.com/base64 │ 1.1.2 │ Apache-2.0 ║ +║ 491 │ @jsonjoy.com/json-pack │ 1.2.0 │ Apache-2.0 ║ +║ 492 │ @jsonjoy.com/util │ 1.5.0 │ Apache-2.0 ║ +║ 493 │ @juggle/resize-observer │ 3.4.0 │ Apache-2.0 ║ ║ 494 │ @keyv/memcache │ 1.4.1 │ MIT ║ -║ 495 │ @keyv/redis │ 2.8.5 │ MIT ║ -║ 496 │ @kubernetes-models/apimachinery │ 2.0.2 │ MIT ║ -║ 497 │ @kubernetes-models/base │ 5.0.1 │ MIT ║ -║ 498 │ @kubernetes-models/validate │ 4.0.0 │ MIT ║ -║ 499 │ @kubernetes/client-node │ 1.0.0-rc7 │ Apache-2.0 ║ -║ 500 │ @leichtgewicht/ip-codec │ 2.0.5 │ MIT ║ -║ 501 │ @lezer/common │ 1.2.3 │ MIT ║ -║ 502 │ @lezer/highlight │ 1.2.1 │ MIT ║ -║ 503 │ @lezer/lr │ 1.4.2 │ MIT ║ -║ 504 │ @manypkg/find-root │ 1.1.0 │ MIT ║ -║ 505 │ @manypkg/get-packages │ 1.1.3 │ MIT ║ -║ 506 │ @marijn/find-cluster-break │ 1.0.2 │ MIT ║ -║ 507 │ @material-table/core │ 3.2.5 │ MIT ║ -║ 508 │ @material-ui/core │ 4.12.4 │ MIT ║ -║ 509 │ @material-ui/icons │ 4.11.3 │ MIT ║ -║ 510 │ @material-ui/lab │ 4.0.0-alpha.61 │ MIT ║ -║ 511 │ @material-ui/pickers │ 3.3.11 │ MIT ║ -║ 512 │ @material-ui/styles │ 4.11.5 │ MIT ║ -║ 513 │ @material-ui/system │ 4.12.2 │ MIT ║ -║ 514 │ @material-ui/types │ 5.1.0 │ MIT ║ -║ 515 │ @material-ui/types │ 6.0.2 │ MIT ║ -║ 516 │ @material-ui/utils │ 4.11.3 │ MIT ║ -║ 517 │ @microsoft/fetch-event-source │ 2.0.1 │ MIT ║ -║ 518 │ @module-federation/bridge-react-webpack-plugin │ 0.7.7 │ MIT ║ -║ 519 │ @module-federation/data-prefetch │ 0.7.7 │ MIT ║ -║ 520 │ @module-federation/dts-plugin │ 0.7.7 │ MIT ║ -║ 521 │ @module-federation/enhanced │ 0.7.7 │ MIT ║ -║ 522 │ @module-federation/error-codes │ 0.7.7 │ MIT ║ -║ 523 │ @module-federation/managers │ 0.7.7 │ MIT ║ -║ 524 │ @module-federation/manifest │ 0.7.7 │ MIT ║ -║ 525 │ @module-federation/rspack │ 0.7.7 │ MIT ║ -║ 526 │ @module-federation/runtime │ 0.7.7 │ MIT ║ -║ 527 │ @module-federation/runtime-tools │ 0.7.7 │ MIT ║ -║ 528 │ @module-federation/sdk │ 0.7.7 │ MIT ║ -║ 529 │ @module-federation/third-party-dts-extractor │ 0.7.7 │ MIT ║ -║ 530 │ @module-federation/webpack-bundler-runtime │ 0.7.7 │ MIT ║ -║ 531 │ @motionone/animation │ 10.18.0 │ MIT ║ -║ 532 │ @motionone/dom │ 10.12.0 │ MIT ║ -║ 533 │ @motionone/easing │ 10.18.0 │ MIT ║ -║ 534 │ @motionone/generators │ 10.18.0 │ MIT ║ -║ 535 │ @motionone/types │ 10.17.1 │ MIT ║ -║ 536 │ @motionone/utils │ 10.18.0 │ MIT ║ -║ 537 │ @mswjs/cookies │ 0.2.2 │ MIT ║ -║ 538 │ @mswjs/interceptors │ 0.17.10 │ MIT ║ -║ 539 │ @mui/core-downloads-tracker │ 5.16.9 │ MIT ║ -║ 540 │ @mui/material │ 5.16.9 │ MIT ║ -║ 541 │ @mui/private-theming │ 5.16.8 │ MIT ║ -║ 542 │ @mui/styled-engine │ 5.16.8 │ MIT ║ -║ 543 │ @mui/system │ 5.16.8 │ MIT ║ -║ 544 │ @mui/types │ 7.2.19 │ MIT ║ -║ 545 │ @mui/utils │ 5.16.8 │ MIT ║ -║ 546 │ @my-scope/package-a │ 0.0.0 │ MIT ║ -║ 547 │ @my-scope/package-b │ 0.0.0 │ MIT ║ -║ 548 │ @n1ru4l/push-pull-async-iterable-iterator │ 3.2.0 │ MIT ║ -║ 549 │ @node-saml/node-saml │ 5.0.0 │ MIT ║ -║ 550 │ @node-saml/passport-saml │ 5.0.0 │ MIT ║ -║ 551 │ @nodelib/fs.scandir │ 2.1.5 │ MIT ║ -║ 552 │ @nodelib/fs.stat │ 2.0.5 │ MIT ║ -║ 553 │ @nodelib/fs.walk │ 1.2.8 │ MIT ║ -║ 554 │ @npmcli/agent │ 3.0.0 │ ISC ║ -║ 555 │ @npmcli/agent │ 2.2.2 │ ISC ║ -║ 556 │ @npmcli/fs │ 4.0.0 │ ISC ║ -║ 557 │ @npmcli/fs │ 3.1.1 │ ISC ║ -║ 558 │ @octokit/app │ 14.1.0 │ MIT ║ -║ 559 │ @octokit/auth-app │ 6.1.3 │ MIT ║ -║ 560 │ @octokit/auth-app │ 4.0.13 │ MIT ║ -║ 561 │ @octokit/auth-oauth-app │ 7.1.0 │ MIT ║ -║ 562 │ @octokit/auth-oauth-app │ 5.0.6 │ MIT ║ -║ 563 │ @octokit/auth-oauth-device │ 6.1.0 │ MIT ║ -║ 564 │ @octokit/auth-oauth-device │ 4.0.5 │ MIT ║ -║ 565 │ @octokit/auth-oauth-user │ 4.1.0 │ MIT ║ -║ 566 │ @octokit/auth-oauth-user │ 2.1.2 │ MIT ║ -║ 567 │ @octokit/auth-token │ 3.0.4 │ MIT ║ -║ 568 │ @octokit/auth-token │ 4.0.0 │ MIT ║ -║ 569 │ @octokit/auth-unauthenticated │ 3.0.5 │ MIT ║ -║ 570 │ @octokit/auth-unauthenticated │ 5.0.1 │ MIT ║ -║ 571 │ @octokit/core │ 4.2.4 │ MIT ║ -║ 572 │ @octokit/core │ 5.2.0 │ MIT ║ -║ 573 │ @octokit/endpoint │ 9.0.6 │ MIT ║ -║ 574 │ @octokit/graphql │ 7.1.1 │ MIT ║ -║ 575 │ @octokit/graphql │ 5.0.6 │ MIT ║ -║ 576 │ @octokit/graphql-schema │ 13.10.0 │ MIT ║ -║ 577 │ @octokit/oauth-app │ 4.2.4 │ MIT ║ -║ 578 │ @octokit/oauth-app │ 6.1.0 │ MIT ║ -║ 579 │ @octokit/oauth-authorization-url │ 6.0.2 │ MIT ║ -║ 580 │ @octokit/oauth-authorization-url │ 5.0.0 │ MIT ║ -║ 581 │ @octokit/oauth-methods │ 4.1.0 │ MIT ║ -║ 582 │ @octokit/oauth-methods │ 2.0.6 │ MIT ║ -║ 583 │ @octokit/openapi-types │ 22.2.0 │ MIT ║ -║ 584 │ @octokit/openapi-types │ 23.0.1 │ MIT ║ -║ 585 │ @octokit/openapi-types │ 20.0.0 │ MIT ║ -║ 586 │ @octokit/openapi-types │ 18.1.1 │ MIT ║ -║ 587 │ @octokit/openapi-types │ 14.0.0 │ MIT ║ -║ 588 │ @octokit/plugin-paginate-graphql │ 4.0.1 │ MIT ║ -║ 589 │ @octokit/plugin-paginate-rest │ 9.2.2 │ MIT ║ -║ 590 │ @octokit/plugin-request-log │ 1.0.4 │ MIT ║ -║ 591 │ @octokit/plugin-rest-endpoint-methods │ 13.2.2 │ MIT ║ -║ 592 │ @octokit/plugin-rest-endpoint-methods │ 7.2.3 │ MIT ║ -║ 593 │ @octokit/plugin-retry │ 6.1.0 │ MIT ║ -║ 594 │ @octokit/plugin-throttling │ 8.2.0 │ MIT ║ -║ 595 │ @octokit/request │ 8.4.1 │ MIT ║ -║ 596 │ @octokit/request-error │ 5.1.1 │ MIT ║ -║ 597 │ @octokit/rest │ 19.0.13 │ MIT ║ -║ 598 │ @octokit/types │ 9.3.2 │ MIT ║ -║ 599 │ @octokit/types │ 13.6.2 │ MIT ║ -║ 600 │ @octokit/types │ 13.8.0 │ MIT ║ -║ 601 │ @octokit/types │ 12.6.0 │ MIT ║ -║ 602 │ @octokit/types │ 10.0.0 │ MIT ║ -║ 603 │ @octokit/types │ 8.2.1 │ MIT ║ -║ 604 │ @octokit/webhooks │ 12.3.1 │ MIT ║ -║ 605 │ @octokit/webhooks │ 10.9.2 │ MIT ║ -║ 606 │ @octokit/webhooks-methods │ 4.1.0 │ MIT ║ -║ 607 │ @octokit/webhooks-methods │ 3.0.3 │ MIT ║ -║ 608 │ @octokit/webhooks-types │ 7.6.1 │ MIT ║ -║ 609 │ @octokit/webhooks-types │ 6.11.0 │ MIT ║ -║ 610 │ @open-draft/until │ 1.0.3 │ MIT ║ -║ 611 │ @openapi-contrib/openapi-schema-to-json-schema │ 3.2.0 │ MIT ║ -║ 612 │ @opentelemetry/api │ 1.9.0 │ Apache-2.0 ║ -║ 613 │ @pkgjs/parseargs │ 0.11.0 │ MIT ║ -║ 614 │ @playwright/test │ 1.49.1 │ Apache-2.0 ║ -║ 615 │ @pmmmwh/react-refresh-webpack-plugin │ 0.5.15 │ MIT ║ -║ 616 │ @popperjs/core │ 2.11.8 │ MIT ║ -║ 617 │ @protobufjs/aspromise │ 1.1.2 │ BSD-3-Clause ║ -║ 618 │ @protobufjs/base64 │ 1.1.2 │ BSD-3-Clause ║ -║ 619 │ @protobufjs/codegen │ 2.0.4 │ BSD-3-Clause ║ -║ 620 │ @protobufjs/eventemitter │ 1.1.0 │ BSD-3-Clause ║ -║ 621 │ @protobufjs/fetch │ 1.1.0 │ BSD-3-Clause ║ -║ 622 │ @protobufjs/float │ 1.0.2 │ BSD-3-Clause ║ -║ 623 │ @protobufjs/inquire │ 1.1.0 │ BSD-3-Clause ║ -║ 624 │ @protobufjs/path │ 1.1.2 │ BSD-3-Clause ║ -║ 625 │ @protobufjs/pool │ 1.1.0 │ BSD-3-Clause ║ -║ 626 │ @protobufjs/utf8 │ 1.1.0 │ BSD-3-Clause ║ -║ 627 │ @radix-ui/primitive │ 1.1.0 │ MIT ║ -║ 628 │ @radix-ui/react-arrow │ 1.1.0 │ MIT ║ -║ 629 │ @radix-ui/react-collection │ 1.1.0 │ MIT ║ -║ 630 │ @radix-ui/react-compose-refs │ 1.1.0 │ MIT ║ -║ 631 │ @radix-ui/react-context │ 1.1.0 │ MIT ║ -║ 632 │ @radix-ui/react-context │ 1.1.1 │ MIT ║ -║ 633 │ @radix-ui/react-dialog │ 1.1.2 │ MIT ║ -║ 634 │ @radix-ui/react-direction │ 1.1.0 │ MIT ║ -║ 635 │ @radix-ui/react-dismissable-layer │ 1.1.1 │ MIT ║ -║ 636 │ @radix-ui/react-dropdown-menu │ 2.1.2 │ MIT ║ -║ 637 │ @radix-ui/react-focus-guards │ 1.1.1 │ MIT ║ -║ 638 │ @radix-ui/react-focus-scope │ 1.1.0 │ MIT ║ -║ 639 │ @radix-ui/react-id │ 1.1.0 │ MIT ║ -║ 640 │ @radix-ui/react-menu │ 2.1.2 │ MIT ║ -║ 641 │ @radix-ui/react-popper │ 1.2.0 │ MIT ║ -║ 642 │ @radix-ui/react-portal │ 1.1.2 │ MIT ║ -║ 643 │ @radix-ui/react-presence │ 1.1.1 │ MIT ║ -║ 644 │ @radix-ui/react-primitive │ 2.0.0 │ MIT ║ -║ 645 │ @radix-ui/react-roving-focus │ 1.1.0 │ MIT ║ -║ 646 │ @radix-ui/react-slot │ 1.1.0 │ MIT ║ -║ 647 │ @radix-ui/react-tooltip │ 1.1.4 │ MIT ║ -║ 648 │ @radix-ui/react-use-callback-ref │ 1.1.0 │ MIT ║ -║ 649 │ @radix-ui/react-use-controllable-state │ 1.1.0 │ MIT ║ -║ 650 │ @radix-ui/react-use-escape-keydown │ 1.1.0 │ MIT ║ -║ 651 │ @radix-ui/react-use-layout-effect │ 1.1.0 │ MIT ║ -║ 652 │ @radix-ui/react-use-rect │ 1.1.0 │ MIT ║ -║ 653 │ @radix-ui/react-use-size │ 1.1.0 │ MIT ║ -║ 654 │ @radix-ui/react-visually-hidden │ 1.1.0 │ MIT ║ -║ 655 │ @radix-ui/rect │ 1.1.0 │ MIT ║ -║ 656 │ @react-hookz/deep-equal │ 1.0.4 │ MIT ║ -║ 657 │ @react-hookz/web │ 24.0.4 │ MIT ║ -║ 658 │ @remix-run/router │ 1.21.0 │ MIT ║ -║ 659 │ @repeaterjs/repeater │ 3.0.6 │ MIT ║ -║ 660 │ @repeaterjs/repeater-cjs │ NOT-SET │ ║ -║ 661 │ @rjsf/core │ 5.21.2 │ Apache-2.0 ║ -║ 662 │ @rjsf/material-ui │ 5.21.2 │ Apache-2.0 ║ -║ 663 │ @rjsf/utils │ 5.21.2 │ Apache-2.0 ║ -║ 664 │ @rjsf/validator-ajv8 │ 5.21.2 │ Apache-2.0 ║ -║ 665 │ @rollup/plugin-commonjs │ 26.0.3 │ MIT ║ -║ 666 │ @rollup/plugin-json │ 6.1.0 │ MIT ║ -║ 667 │ @rollup/plugin-node-resolve │ 15.3.0 │ MIT ║ -║ 668 │ @rollup/plugin-yaml │ 4.1.2 │ MIT ║ -║ 669 │ @rollup/pluginutils │ 5.1.3 │ MIT ║ -║ 670 │ @rollup/pluginutils │ 4.2.1 │ MIT ║ -║ 671 │ @rollup/rollup-darwin-x64 │ 4.28.1 │ MIT ║ -║ 672 │ @rtsao/scc │ 1.1.0 │ MIT ║ -║ 673 │ @sagold/json-pointer │ 5.1.2 │ MIT ║ -║ 674 │ @sagold/json-query │ 6.2.0 │ MIT ║ -║ 675 │ @scarf/scarf │ 1.4.0 │ Apache-2.0 ║ -║ 676 │ @sinclair/typebox │ 0.27.8 │ MIT ║ -║ 677 │ @sindresorhus/is │ 4.6.0 │ MIT ║ -║ 678 │ @sinonjs/commons │ 3.0.1 │ BSD-3-Clause ║ -║ 679 │ @sinonjs/fake-timers │ 10.3.0 │ BSD-3-Clause ║ -║ 680 │ @smithy/abort-controller │ 3.1.9 │ Apache-2.0 ║ -║ 681 │ @smithy/chunked-blob-reader │ 4.0.0 │ Apache-2.0 ║ -║ 682 │ @smithy/chunked-blob-reader-native │ 3.0.1 │ Apache-2.0 ║ -║ 683 │ @smithy/config-resolver │ 3.0.13 │ Apache-2.0 ║ -║ 684 │ @smithy/core │ 2.5.5 │ Apache-2.0 ║ -║ 685 │ @smithy/credential-provider-imds │ 3.2.8 │ Apache-2.0 ║ -║ 686 │ @smithy/eventstream-codec │ 3.1.10 │ Apache-2.0 ║ -║ 687 │ @smithy/eventstream-serde-browser │ 3.0.14 │ Apache-2.0 ║ -║ 688 │ @smithy/eventstream-serde-config-resolver │ 3.0.11 │ Apache-2.0 ║ -║ 689 │ @smithy/eventstream-serde-node │ 3.0.13 │ Apache-2.0 ║ -║ 690 │ @smithy/eventstream-serde-universal │ 3.0.13 │ Apache-2.0 ║ -║ 691 │ @smithy/fetch-http-handler │ 4.1.2 │ Apache-2.0 ║ -║ 692 │ @smithy/hash-blob-browser │ 3.1.10 │ Apache-2.0 ║ -║ 693 │ @smithy/hash-node │ 3.0.11 │ Apache-2.0 ║ -║ 694 │ @smithy/hash-stream-node │ 3.1.10 │ Apache-2.0 ║ -║ 695 │ @smithy/invalid-dependency │ 3.0.11 │ Apache-2.0 ║ -║ 696 │ @smithy/is-array-buffer │ 2.2.0 │ Apache-2.0 ║ -║ 697 │ @smithy/is-array-buffer │ 3.0.0 │ Apache-2.0 ║ -║ 698 │ @smithy/md5-js │ 3.0.11 │ Apache-2.0 ║ -║ 699 │ @smithy/middleware-content-length │ 3.0.13 │ Apache-2.0 ║ -║ 700 │ @smithy/middleware-endpoint │ 3.2.5 │ Apache-2.0 ║ -║ 701 │ @smithy/middleware-retry │ 3.0.30 │ Apache-2.0 ║ -║ 702 │ @smithy/middleware-serde │ 3.0.11 │ Apache-2.0 ║ -║ 703 │ @smithy/middleware-stack │ 3.0.11 │ Apache-2.0 ║ -║ 704 │ @smithy/node-config-provider │ 3.1.12 │ Apache-2.0 ║ -║ 705 │ @smithy/node-http-handler │ 3.3.2 │ Apache-2.0 ║ -║ 706 │ @smithy/property-provider │ 3.1.11 │ Apache-2.0 ║ -║ 707 │ @smithy/protocol-http │ 4.1.8 │ Apache-2.0 ║ -║ 708 │ @smithy/querystring-builder │ 3.0.11 │ Apache-2.0 ║ -║ 709 │ @smithy/querystring-parser │ 3.0.11 │ Apache-2.0 ║ -║ 710 │ @smithy/service-error-classification │ 3.0.11 │ Apache-2.0 ║ -║ 711 │ @smithy/shared-ini-file-loader │ 3.1.12 │ Apache-2.0 ║ -║ 712 │ @smithy/signature-v4 │ 4.2.4 │ Apache-2.0 ║ -║ 713 │ @smithy/smithy-client │ 3.5.0 │ Apache-2.0 ║ -║ 714 │ @smithy/types │ 1.2.0 │ Apache-2.0 ║ -║ 715 │ @smithy/types │ 3.7.2 │ Apache-2.0 ║ -║ 716 │ @smithy/url-parser │ 3.0.11 │ Apache-2.0 ║ -║ 717 │ @smithy/util-base64 │ 3.0.0 │ Apache-2.0 ║ -║ 718 │ @smithy/util-body-length-browser │ 3.0.0 │ Apache-2.0 ║ -║ 719 │ @smithy/util-body-length-node │ 3.0.0 │ Apache-2.0 ║ -║ 720 │ @smithy/util-buffer-from │ 2.2.0 │ Apache-2.0 ║ -║ 721 │ @smithy/util-buffer-from │ 3.0.0 │ Apache-2.0 ║ -║ 722 │ @smithy/util-config-provider │ 3.0.0 │ Apache-2.0 ║ -║ 723 │ @smithy/util-defaults-mode-browser │ 3.0.30 │ Apache-2.0 ║ -║ 724 │ @smithy/util-defaults-mode-node │ 3.0.30 │ Apache-2.0 ║ -║ 725 │ @smithy/util-endpoints │ 2.1.7 │ Apache-2.0 ║ -║ 726 │ @smithy/util-hex-encoding │ 3.0.0 │ Apache-2.0 ║ -║ 727 │ @smithy/util-middleware │ 3.0.11 │ Apache-2.0 ║ -║ 728 │ @smithy/util-retry │ 3.0.11 │ Apache-2.0 ║ -║ 729 │ @smithy/util-stream │ 3.3.2 │ Apache-2.0 ║ -║ 730 │ @smithy/util-uri-escape │ 3.0.0 │ Apache-2.0 ║ -║ 731 │ @smithy/util-utf8 │ 2.3.0 │ Apache-2.0 ║ -║ 732 │ @smithy/util-utf8 │ 3.0.0 │ Apache-2.0 ║ -║ 733 │ @smithy/util-waiter │ 3.2.0 │ Apache-2.0 ║ -║ 734 │ @spotify/eslint-config-base │ 15.0.0 │ Apache-2.0 ║ -║ 735 │ @spotify/eslint-config-react │ 15.0.0 │ Apache-2.0 ║ -║ 736 │ @spotify/eslint-config-typescript │ 15.0.0 │ Apache-2.0 ║ -║ 737 │ @spotify/prettier-config │ 12.0.0 │ Apache-2.0 ║ -║ 738 │ @stoplight/better-ajv-errors │ 1.0.3 │ Apache-2.0 ║ -║ 739 │ @stoplight/json │ 3.21.0 │ Apache-2.0 ║ -║ 740 │ @stoplight/json │ 3.21.7 │ Apache-2.0 ║ -║ 741 │ @stoplight/json-ref-readers │ 1.2.2 │ Apache-2.0 ║ -║ 742 │ @stoplight/json-ref-resolver │ 3.1.6 │ Apache-2.0 ║ -║ 743 │ @stoplight/ordered-object-literal │ 1.0.5 │ Apache-2.0 ║ -║ 744 │ @stoplight/path │ 1.3.2 │ Apache-2.0 ║ -║ 745 │ @stoplight/spectral-core │ 1.19.4 │ Apache-2.0 ║ -║ 746 │ @stoplight/spectral-formats │ 1.8.2 │ Apache-2.0 ║ -║ 747 │ @stoplight/spectral-functions │ 1.9.3 │ Apache-2.0 ║ -║ 748 │ @stoplight/spectral-parsers │ 1.0.5 │ Apache-2.0 ║ -║ 749 │ @stoplight/spectral-ref-resolver │ 1.0.5 │ Apache-2.0 ║ -║ 750 │ @stoplight/spectral-runtime │ 1.1.3 │ Apache-2.0 ║ -║ 751 │ @stoplight/types │ 13.6.0 │ Apache-2.0 ║ -║ 752 │ @stoplight/types │ 14.1.1 │ Apache-2.0 ║ -║ 753 │ @stoplight/types │ 13.20.0 │ Apache-2.0 ║ -║ 754 │ @stoplight/yaml │ 4.3.0 │ Apache-2.0 ║ -║ 755 │ @stoplight/yaml-ast-parser │ 0.0.50 │ Apache-2.0 ║ -║ 756 │ @sucrase/webpack-loader │ 2.0.0 │ MIT ║ -║ 757 │ @svgr/babel-plugin-add-jsx-attribute │ 6.5.1 │ MIT ║ -║ 758 │ @svgr/babel-plugin-remove-jsx-attribute │ 8.0.0 │ MIT ║ -║ 759 │ @svgr/babel-plugin-remove-jsx-empty-expression │ 8.0.0 │ MIT ║ -║ 760 │ @svgr/babel-plugin-replace-jsx-attribute-value │ 6.5.1 │ MIT ║ -║ 761 │ @svgr/babel-plugin-svg-dynamic-title │ 6.5.1 │ MIT ║ -║ 762 │ @svgr/babel-plugin-svg-em-dimensions │ 6.5.1 │ MIT ║ -║ 763 │ @svgr/babel-plugin-transform-react-native-svg │ 6.5.1 │ MIT ║ -║ 764 │ @svgr/babel-plugin-transform-svg-component │ 6.5.1 │ MIT ║ -║ 765 │ @svgr/babel-preset │ 6.5.1 │ MIT ║ -║ 766 │ @svgr/core │ 6.5.1 │ MIT ║ -║ 767 │ @svgr/hast-util-to-babel-ast │ 6.5.1 │ MIT ║ -║ 768 │ @svgr/plugin-jsx │ 6.5.1 │ MIT ║ -║ 769 │ @svgr/plugin-svgo │ 6.5.1 │ MIT ║ -║ 770 │ @svgr/rollup │ 6.5.1 │ MIT ║ -║ 771 │ @svgr/webpack │ 6.5.1 │ MIT ║ -║ 772 │ @swagger-api/apidom-ast │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 773 │ @swagger-api/apidom-core │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 774 │ @swagger-api/apidom-error │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 775 │ @swagger-api/apidom-json-pointer │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 776 │ @swagger-api/apidom-ns-api-design-systems │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 777 │ @swagger-api/apidom-ns-asyncapi-2 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 778 │ @swagger-api/apidom-ns-json-schema-draft-4 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 779 │ @swagger-api/apidom-ns-json-schema-draft-6 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 780 │ @swagger-api/apidom-ns-json-schema-draft-7 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 781 │ @swagger-api/apidom-ns-openapi-2 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 782 │ @swagger-api/apidom-ns-openapi-3-0 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 783 │ @swagger-api/apidom-ns-openapi-3-1 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 784 │ @swagger-api/apidom-ns-workflows-1 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 785 │ @swagger-api/apidom-parser-adapter-api-design-systems-json │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 786 │ @swagger-api/apidom-parser-adapter-api-design-systems-yaml │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 787 │ @swagger-api/apidom-parser-adapter-asyncapi-json-2 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 788 │ @swagger-api/apidom-parser-adapter-asyncapi-yaml-2 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 789 │ @swagger-api/apidom-parser-adapter-json │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 790 │ @swagger-api/apidom-parser-adapter-openapi-json-2 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 791 │ @swagger-api/apidom-parser-adapter-openapi-json-3-0 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 792 │ @swagger-api/apidom-parser-adapter-openapi-json-3-1 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 793 │ @swagger-api/apidom-parser-adapter-openapi-yaml-2 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 794 │ @swagger-api/apidom-parser-adapter-openapi-yaml-3-0 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 795 │ @swagger-api/apidom-parser-adapter-openapi-yaml-3-1 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 796 │ @swagger-api/apidom-parser-adapter-workflows-json-1 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 797 │ @swagger-api/apidom-parser-adapter-workflows-yaml-1 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 798 │ @swagger-api/apidom-parser-adapter-yaml-1-2 │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 799 │ @swagger-api/apidom-reference │ 1.0.0-beta.3 │ Apache-2.0 ║ -║ 800 │ @swc/core │ 1.10.1 │ Apache-2.0 ║ -║ 801 │ @swc/core-darwin-x64 │ 1.10.1 │ Apache-2.0 AND MIT ║ -║ 802 │ @swc/counter │ 0.1.3 │ Apache-2.0 ║ -║ 803 │ @swc/helpers │ 0.5.15 │ Apache-2.0 ║ -║ 804 │ @swc/jest │ 0.2.37 │ MIT ║ -║ 805 │ @swc/types │ 0.1.17 │ Apache-2.0 ║ -║ 806 │ @szmarczak/http-timer │ 4.0.6 │ MIT ║ -║ 807 │ @tanstack/react-virtual │ 3.11.1 │ MIT ║ -║ 808 │ @tanstack/virtual-core │ 3.10.9 │ MIT ║ -║ 809 │ @testing-library/dom │ 9.3.4 │ MIT ║ -║ 810 │ @testing-library/jest-dom │ 6.6.3 │ MIT ║ -║ 811 │ @testing-library/react │ 16.1.0 │ MIT ║ -║ 812 │ @testing-library/react │ 14.3.1 │ MIT ║ -║ 813 │ @testing-library/user-event │ 14.5.2 │ MIT ║ -║ 814 │ @tokenizer/token │ 0.3.0 │ MIT ║ -║ 815 │ @tootallnate/once │ 2.0.0 │ MIT ║ -║ 816 │ @tootallnate/quickjs-emscripten │ 0.23.0 │ MIT ║ -║ 817 │ @tree-sitter-grammars/tree-sitter-yaml │ 0.6.1 │ MIT ║ -║ 818 │ @trendyol-js/openstack-swift-sdk │ 0.0.7 │ MIT ║ -║ 819 │ @trysound/sax │ 0.2.0 │ ISC ║ -║ 820 │ @ts-morph/common │ 0.25.0 │ MIT ║ -║ 821 │ @tsconfig/node10 │ 1.0.11 │ MIT ║ -║ 822 │ @tsconfig/node12 │ 1.0.11 │ MIT ║ -║ 823 │ @tsconfig/node14 │ 1.0.3 │ MIT ║ -║ 824 │ @tsconfig/node16 │ 1.0.4 │ MIT ║ -║ 825 │ @types/aria-query │ 5.0.4 │ MIT ║ -║ 826 │ @types/aws-lambda │ 8.10.146 │ MIT ║ -║ 827 │ @types/babel__core │ 7.20.5 │ MIT ║ -║ 828 │ @types/babel__generator │ 7.6.8 │ MIT ║ -║ 829 │ @types/babel__template │ 7.4.4 │ MIT ║ -║ 830 │ @types/babel__traverse │ 7.20.6 │ MIT ║ -║ 831 │ @types/body-parser │ 1.19.5 │ MIT ║ -║ 832 │ @types/bonjour │ 3.5.13 │ MIT ║ -║ 833 │ @types/btoa-lite │ 1.0.2 │ MIT ║ -║ 834 │ @types/cacheable-request │ 6.0.3 │ MIT ║ -║ 835 │ @types/caseless │ 0.12.5 │ MIT ║ -║ 836 │ @types/codemirror │ 5.60.15 │ MIT ║ -║ 837 │ @types/connect │ 3.4.38 │ MIT ║ -║ 838 │ @types/connect-history-api-fallback │ 1.5.4 │ MIT ║ -║ 839 │ @types/cookie │ 0.4.1 │ MIT ║ -║ 840 │ @types/cookiejar │ 2.1.5 │ MIT ║ -║ 841 │ @types/cors │ 2.8.17 │ MIT ║ -║ 842 │ @types/debug │ 4.1.12 │ MIT ║ -║ 843 │ @types/docker-modem │ 3.0.6 │ MIT ║ -║ 844 │ @types/dockerode │ 3.3.32 │ MIT ║ -║ 845 │ @types/es-aggregate-error │ 1.0.6 │ MIT ║ -║ 846 │ @types/eslint │ 8.56.12 │ MIT ║ -║ 847 │ @types/eslint │ 9.6.1 │ MIT ║ -║ 848 │ @types/eslint-scope │ 3.7.7 │ MIT ║ -║ 849 │ @types/estree │ 1.0.6 │ MIT ║ -║ 850 │ @types/express │ 5.0.0 │ MIT ║ -║ 851 │ @types/express │ 4.17.21 │ MIT ║ -║ 852 │ @types/express-serve-static-core │ 4.19.6 │ MIT ║ -║ 853 │ @types/express-serve-static-core │ 5.0.2 │ MIT ║ -║ 854 │ @types/graceful-fs │ 4.1.9 │ MIT ║ -║ 855 │ @types/hast │ 2.3.10 │ MIT ║ -║ 856 │ @types/hoist-non-react-statics │ 3.3.6 │ MIT ║ -║ 857 │ @types/html-minifier-terser │ 6.1.0 │ MIT ║ -║ 858 │ @types/http-cache-semantics │ 4.0.4 │ MIT ║ -║ 859 │ @types/http-errors │ 2.0.4 │ MIT ║ -║ 860 │ @types/http-proxy │ 1.17.15 │ MIT ║ -║ 861 │ @types/http-proxy-middleware │ 1.0.0 │ MIT ║ -║ 862 │ @types/istanbul-lib-coverage │ 2.0.6 │ MIT ║ -║ 863 │ @types/istanbul-lib-report │ 3.0.3 │ MIT ║ -║ 864 │ @types/istanbul-reports │ 3.0.4 │ MIT ║ -║ 865 │ @types/jest │ 29.5.14 │ MIT ║ -║ 866 │ @types/js-cookie │ 2.2.7 │ MIT ║ -║ 867 │ @types/js-levenshtein │ 1.1.3 │ MIT ║ -║ 868 │ @types/js-yaml │ 4.0.9 │ MIT ║ -║ 869 │ @types/jsdom │ 20.0.1 │ MIT ║ -║ 870 │ @types/json-schema │ 7.0.15 │ MIT ║ -║ 871 │ @types/json5 │ 0.0.29 │ MIT ║ -║ 872 │ @types/jsonpath │ 0.2.4 │ MIT ║ -║ 873 │ @types/jsonwebtoken │ 9.0.7 │ MIT ║ -║ 874 │ @types/keyv │ 3.1.4 │ MIT ║ -║ 875 │ @types/long │ 4.0.2 │ MIT ║ -║ 876 │ @types/lunr │ 2.3.7 │ MIT ║ -║ 877 │ @types/luxon │ 3.4.2 │ MIT ║ -║ 878 │ @types/mdast │ 3.0.15 │ MIT ║ -║ 879 │ @types/methods │ 1.1.4 │ MIT ║ -║ 880 │ @types/mime │ 1.3.5 │ MIT ║ -║ 881 │ @types/ms │ 0.7.34 │ MIT ║ -║ 882 │ @types/multer │ 1.4.12 │ MIT ║ -║ 883 │ @types/node │ 22.10.1 │ MIT ║ -║ 884 │ @types/node │ 12.20.55 │ MIT ║ -║ 885 │ @types/node │ 20.17.9 │ MIT ║ -║ 886 │ @types/node │ 18.19.67 │ MIT ║ -║ 887 │ @types/node-fetch │ 2.6.12 │ MIT ║ -║ 888 │ @types/node-forge │ 1.3.11 │ MIT ║ -║ 889 │ @types/oauth │ 0.9.6 │ MIT ║ -║ 890 │ @types/parse-json │ 4.0.2 │ MIT ║ -║ 891 │ @types/passport │ 1.0.17 │ MIT ║ -║ 892 │ @types/passport-oauth2 │ 1.4.17 │ MIT ║ -║ 893 │ @types/passport-strategy │ 0.2.38 │ MIT ║ -║ 894 │ @types/prop-types │ 15.7.14 │ MIT ║ -║ 895 │ @types/protocol-buffers-schema │ 3.4.3 │ MIT ║ -║ 896 │ @types/qs │ 6.9.17 │ MIT ║ -║ 897 │ @types/ramda │ 0.30.2 │ MIT ║ -║ 898 │ @types/range-parser │ 1.2.7 │ MIT ║ -║ 899 │ @types/react │ 18.3.14 │ MIT ║ -║ 900 │ @types/react-dom │ 18.3.3 │ MIT ║ -║ 901 │ @types/react-redux │ 7.1.34 │ MIT ║ -║ 902 │ @types/react-sparklines │ 1.7.5 │ MIT ║ -║ 903 │ @types/react-transition-group │ 4.4.11 │ MIT ║ -║ 904 │ @types/request │ 2.48.12 │ MIT ║ -║ 905 │ @types/resolve │ 1.20.2 │ MIT ║ -║ 906 │ @types/responselike │ 1.0.3 │ MIT ║ -║ 907 │ @types/retry │ 0.12.2 │ MIT ║ -║ 908 │ @types/semver │ 7.5.8 │ MIT ║ -║ 909 │ @types/send │ 0.17.4 │ MIT ║ -║ 910 │ @types/serve-index │ 1.9.4 │ MIT ║ -║ 911 │ @types/serve-static │ 1.15.7 │ MIT ║ -║ 912 │ @types/set-cookie-parser │ 2.4.10 │ MIT ║ -║ 913 │ @types/sockjs │ 0.3.36 │ MIT ║ -║ 914 │ @types/ssh2 │ 1.15.1 │ MIT ║ -║ 915 │ @types/stack-utils │ 2.0.3 │ MIT ║ -║ 916 │ @types/stream-buffers │ 3.0.7 │ MIT ║ -║ 917 │ @types/styled-jsx │ 2.2.9 │ MIT ║ -║ 918 │ @types/superagent │ 8.1.9 │ MIT ║ -║ 919 │ @types/supertest │ 2.0.16 │ MIT ║ -║ 920 │ @types/tar │ 6.1.13 │ MIT ║ -║ 921 │ @types/tern │ 0.23.9 │ MIT ║ -║ 922 │ @types/tough-cookie │ 4.0.5 │ MIT ║ -║ 923 │ @types/triple-beam │ 1.3.5 │ MIT ║ -║ 924 │ @types/trusted-types │ 2.0.7 │ MIT ║ -║ 925 │ @types/unist │ 2.0.11 │ MIT ║ -║ 926 │ @types/urijs │ 1.19.25 │ MIT ║ -║ 927 │ @types/use-sync-external-store │ 0.0.3 │ MIT ║ -║ 928 │ @types/uuid │ 9.0.8 │ MIT ║ -║ 929 │ @types/webpack-env │ 1.18.5 │ MIT ║ -║ 930 │ @types/ws │ 8.5.13 │ MIT ║ -║ 931 │ @types/xml-encryption │ 1.2.4 │ MIT ║ -║ 932 │ @types/xml2js │ 0.4.14 │ MIT ║ -║ 933 │ @types/yargs │ 17.0.33 │ MIT ║ -║ 934 │ @types/yargs-parser │ 21.0.3 │ MIT ║ -║ 935 │ @typescript-eslint/eslint-plugin │ 6.21.0 │ MIT ║ -║ 936 │ @typescript-eslint/parser │ 6.21.0 │ BSD-2-Clause ║ -║ 937 │ @typescript-eslint/scope-manager │ 6.21.0 │ MIT ║ -║ 938 │ @typescript-eslint/scope-manager │ 8.18.0 │ MIT ║ -║ 939 │ @typescript-eslint/type-utils │ 6.21.0 │ MIT ║ -║ 940 │ @typescript-eslint/types │ 6.21.0 │ MIT ║ -║ 941 │ @typescript-eslint/types │ 8.18.0 │ MIT ║ -║ 942 │ @typescript-eslint/typescript-estree │ 6.21.0 │ BSD-2-Clause ║ -║ 943 │ @typescript-eslint/typescript-estree │ 8.18.0 │ MIT ║ -║ 944 │ @typescript-eslint/utils │ 6.21.0 │ MIT ║ -║ 945 │ @typescript-eslint/utils │ 8.18.0 │ MIT ║ -║ 946 │ @typescript-eslint/visitor-keys │ 6.21.0 │ MIT ║ -║ 947 │ @typescript-eslint/visitor-keys │ 8.18.0 │ MIT ║ -║ 948 │ @uiw/codemirror-extensions-basic-setup │ 4.23.6 │ MIT ║ -║ 949 │ @uiw/react-codemirror │ 4.23.6 │ MIT ║ -║ 950 │ @ungap/structured-clone │ 1.2.1 │ ISC ║ -║ 951 │ @webassemblyjs/ast │ 1.14.1 │ MIT ║ -║ 952 │ @webassemblyjs/floating-point-hex-parser │ 1.13.2 │ MIT ║ -║ 953 │ @webassemblyjs/helper-api-error │ 1.13.2 │ MIT ║ -║ 954 │ @webassemblyjs/helper-buffer │ 1.14.1 │ MIT ║ -║ 955 │ @webassemblyjs/helper-numbers │ 1.13.2 │ MIT ║ -║ 956 │ @webassemblyjs/helper-wasm-bytecode │ 1.13.2 │ MIT ║ -║ 957 │ @webassemblyjs/helper-wasm-section │ 1.14.1 │ MIT ║ -║ 958 │ @webassemblyjs/ieee754 │ 1.13.2 │ MIT ║ -║ 959 │ @webassemblyjs/leb128 │ 1.13.2 │ Apache-2.0 ║ -║ 960 │ @webassemblyjs/utf8 │ 1.13.2 │ MIT ║ -║ 961 │ @webassemblyjs/wasm-edit │ 1.14.1 │ MIT ║ -║ 962 │ @webassemblyjs/wasm-gen │ 1.14.1 │ MIT ║ -║ 963 │ @webassemblyjs/wasm-opt │ 1.14.1 │ MIT ║ -║ 964 │ @webassemblyjs/wasm-parser │ 1.14.1 │ MIT ║ -║ 965 │ @webassemblyjs/wast-printer │ 1.14.1 │ MIT ║ -║ 966 │ @whatwg-node/disposablestack │ 0.0.5 │ MIT ║ -║ 967 │ @whatwg-node/fetch │ 0.10.1 │ MIT ║ -║ 968 │ @whatwg-node/node-fetch │ 0.7.4 │ MIT ║ -║ 969 │ @wolfy1339/lru-cache │ 11.0.2-patch.1 │ ISC ║ -║ 970 │ @xmldom/is-dom-node │ 1.0.1 │ MIT ║ -║ 971 │ @xmldom/xmldom │ 0.8.10 │ MIT ║ -║ 972 │ @xobotyi/scrollbar-width │ 1.9.5 │ MIT ║ -║ 973 │ @xtuc/ieee754 │ 1.2.0 │ BSD-3-Clause ║ -║ 974 │ @xtuc/long │ 4.2.2 │ Apache-2.0 ║ -║ 975 │ @yarnpkg/lockfile │ 1.1.0 │ BSD-2-Clause ║ -║ 976 │ @yarnpkg/parsers │ 3.0.2 │ BSD-2-Clause ║ -║ 977 │ @zxing/text-encoding │ 0.9.0 │ (Unlicense OR Apache-2.0) ║ -║ 978 │ a-sync-waterfall │ 1.0.1 │ MIT ║ -║ 979 │ abab │ 2.0.6 │ BSD-3-Clause ║ -║ 980 │ abbrev │ 2.0.0 │ ISC ║ -║ 981 │ abort-controller │ 3.0.0 │ MIT ║ -║ 982 │ accepts │ 1.3.8 │ MIT ║ -║ 983 │ acorn │ 8.14.0 │ MIT ║ -║ 984 │ acorn-globals │ 7.0.1 │ MIT ║ -║ 985 │ acorn-jsx │ 5.3.2 │ MIT ║ -║ 986 │ acorn-walk │ 8.3.4 │ MIT ║ -║ 987 │ address │ 1.2.2 │ MIT ║ -║ 988 │ adm-zip │ 0.5.16 │ MIT ║ -║ 989 │ agent-base │ 7.1.3 │ MIT ║ -║ 990 │ agent-base │ 6.0.2 │ MIT ║ -║ 991 │ agentkeepalive │ 4.5.0 │ MIT ║ -║ 992 │ aggregate-error │ 3.1.0 │ MIT ║ -║ 993 │ ajv │ 6.12.6 │ MIT ║ -║ 994 │ ajv │ 8.17.1 │ MIT ║ -║ 995 │ ajv-draft-04 │ 1.0.0 │ MIT ║ -║ 996 │ ajv-errors │ 3.0.0 │ MIT ║ -║ 997 │ ajv-formats │ 2.1.1 │ MIT ║ -║ 998 │ ajv-formats-draft2019 │ 1.6.1 │ MIT ║ -║ 999 │ ajv-i18n │ 4.2.0 │ MIT ║ -║ 1000 │ ajv-keywords │ 5.1.0 │ MIT ║ -║ 1001 │ ajv-keywords │ 3.5.2 │ MIT ║ -║ 1002 │ ansi-colors │ 4.1.3 │ MIT ║ -║ 1003 │ ansi-escapes │ 4.3.2 │ MIT ║ -║ 1004 │ ansi-html │ 0.0.9 │ Apache-2.0 ║ -║ 1005 │ ansi-html-community │ 0.0.8 │ Apache-2.0 ║ -║ 1006 │ ansi-regex │ 5.0.1 │ MIT ║ -║ 1007 │ ansi-regex │ 6.1.0 │ MIT ║ -║ 1008 │ ansi-regex │ 4.1.1 │ MIT ║ -║ 1009 │ ansi-styles │ 3.2.1 │ MIT ║ -║ 1010 │ ansi-styles │ 6.2.1 │ MIT ║ -║ 1011 │ ansi-styles │ 5.2.0 │ MIT ║ -║ 1012 │ ansi-styles │ 4.3.0 │ MIT ║ -║ 1013 │ any-promise │ 1.3.0 │ MIT ║ -║ 1014 │ anymatch │ 3.1.3 │ ISC ║ -║ 1015 │ apg-lite │ 1.0.4 │ BSD-2-Clause ║ -║ 1016 │ append-field │ 1.0.0 │ MIT ║ -║ 1017 │ archiver │ 6.0.2 │ MIT ║ -║ 1018 │ archiver │ 7.0.1 │ MIT ║ -║ 1019 │ archiver-utils │ 4.0.1 │ MIT ║ -║ 1020 │ archiver-utils │ 5.0.2 │ MIT ║ -║ 1021 │ arg │ 4.1.3 │ MIT ║ -║ 1022 │ argparse │ 1.0.10 │ MIT ║ -║ 1023 │ argparse │ 2.0.1 │ Python-2.0 ║ -║ 1024 │ args │ 5.0.3 │ MIT ║ -║ 1025 │ aria-hidden │ 1.2.4 │ MIT ║ -║ 1026 │ aria-query │ 5.1.3 │ Apache-2.0 ║ -║ 1027 │ aria-query │ 5.3.2 │ Apache-2.0 ║ -║ 1028 │ array-buffer-byte-length │ 1.0.1 │ MIT ║ -║ 1029 │ array-flatten │ 1.1.1 │ MIT ║ -║ 1030 │ array-includes │ 3.1.8 │ MIT ║ -║ 1031 │ array-union │ 2.1.0 │ MIT ║ -║ 1032 │ array.prototype.findlast │ 1.2.5 │ MIT ║ -║ 1033 │ array.prototype.findlastindex │ 1.2.5 │ MIT ║ -║ 1034 │ array.prototype.flat │ 1.3.2 │ MIT ║ -║ 1035 │ array.prototype.flatmap │ 1.3.2 │ MIT ║ -║ 1036 │ array.prototype.tosorted │ 1.1.4 │ MIT ║ -║ 1037 │ arraybuffer.prototype.slice │ 1.0.3 │ MIT ║ -║ 1038 │ arrify │ 2.0.1 │ MIT ║ -║ 1039 │ asap │ 2.0.6 │ MIT ║ -║ 1040 │ asn1 │ 0.2.6 │ MIT ║ -║ 1041 │ asn1.js │ 4.10.1 │ MIT ║ -║ 1042 │ assert │ 1.5.1 │ MIT ║ -║ 1043 │ ast-types │ 0.13.4 │ MIT ║ -║ 1044 │ ast-types-flow │ 0.0.8 │ MIT ║ -║ 1045 │ astring │ 1.9.0 │ MIT ║ -║ 1046 │ async │ 3.2.6 │ MIT ║ -║ 1047 │ async │ 2.6.4 │ MIT ║ -║ 1048 │ async-lock │ 1.4.1 │ MIT ║ -║ 1049 │ async-mutex │ 0.5.0 │ MIT ║ -║ 1050 │ async-retry │ 1.3.3 │ MIT ║ -║ 1051 │ asynckit │ 0.4.0 │ MIT ║ -║ 1052 │ at-least-node │ 1.0.0 │ ISC ║ -║ 1053 │ atlassian-openapi │ 1.0.19 │ MIT ║ -║ 1054 │ atomic-sleep │ 1.0.0 │ MIT ║ -║ 1055 │ autolinker │ 3.16.2 │ MIT ║ -║ 1056 │ available-typed-arrays │ 1.0.7 │ MIT ║ -║ 1057 │ avsc │ 5.7.7 │ MIT ║ -║ 1058 │ aws-ssl-profiles │ 1.1.2 │ MIT ║ -║ 1059 │ axe-core │ 4.10.2 │ MPL-2.0 ║ -║ 1060 │ axios │ 1.8.2 │ MIT ║ -║ 1061 │ axios-cached-dns-resolve │ 0.5.2 │ MIT ║ -║ 1062 │ axobject-query │ 4.1.0 │ Apache-2.0 ║ -║ 1063 │ azure-devops-node-api │ 14.1.0 │ MIT ║ -║ 1064 │ b4a │ 1.6.7 │ Apache-2.0 ║ -║ 1065 │ babel-jest │ 29.7.0 │ MIT ║ -║ 1066 │ babel-plugin-istanbul │ 6.1.1 │ BSD-3-Clause ║ -║ 1067 │ babel-plugin-jest-hoist │ 29.6.3 │ MIT ║ -║ 1068 │ babel-plugin-macros │ 3.1.0 │ MIT ║ -║ 1069 │ babel-plugin-polyfill-corejs2 │ 0.4.12 │ MIT ║ -║ 1070 │ babel-plugin-polyfill-corejs3 │ 0.10.6 │ MIT ║ -║ 1071 │ babel-plugin-polyfill-regenerator │ 0.6.3 │ MIT ║ -║ 1072 │ babel-polyfill │ 6.26.0 │ MIT ║ -║ 1073 │ babel-preset-current-node-syntax │ 1.1.0 │ MIT ║ -║ 1074 │ babel-preset-jest │ 29.6.3 │ MIT ║ -║ 1075 │ babel-runtime │ 6.26.0 │ MIT ║ -║ 1076 │ backo2 │ 1.0.2 │ MIT ║ -║ 1077 │ bail │ 2.0.2 │ MIT ║ -║ 1078 │ balanced-match │ 1.0.2 │ MIT ║ -║ 1079 │ bare-events │ 2.5.0 │ Apache-2.0 ║ -║ 1080 │ base64-arraybuffer │ 0.1.5 │ MIT ║ -║ 1081 │ base64-js │ 1.5.1 │ MIT ║ -║ 1082 │ base64-stream │ 1.0.0 │ MIT ║ -║ 1083 │ base64url │ 3.0.1 │ MIT ║ -║ 1084 │ basic-auth │ 2.0.1 │ MIT ║ -║ 1085 │ basic-ftp │ 5.0.5 │ MIT ║ -║ 1086 │ batch │ 0.6.1 │ MIT ║ -║ 1087 │ baz │ NOT-SET │ ║ -║ 1088 │ bcrypt-pbkdf │ 1.0.2 │ BSD-3-Clause ║ -║ 1089 │ beep-boop │ 1.2.3 │ ║ -║ 1090 │ before-after-hook │ 2.2.3 │ Apache-2.0 ║ -║ 1091 │ better-sqlite3 │ 11.7.0 │ MIT ║ -║ 1092 │ better-sqlite3 │ 9.6.0 │ MIT ║ -║ 1093 │ bfj │ 8.0.0 │ MIT ║ -║ 1094 │ big.js │ 5.2.2 │ MIT ║ -║ 1095 │ bignumber.js │ 9.1.2 │ MIT ║ -║ 1096 │ bin │ 1.0.0 │ BSD-2-Clause ║ -║ 1097 │ binary-extensions │ 2.3.0 │ MIT ║ -║ 1098 │ bindings │ 1.5.0 │ MIT ║ -║ 1099 │ bintrees │ 1.0.2 │ MIT ║ -║ 1100 │ bl │ 4.1.0 │ MIT ║ -║ 1101 │ bluebird │ 3.7.2 │ MIT ║ -║ 1102 │ bn.js │ 4.12.1 │ MIT ║ -║ 1103 │ bn.js │ 5.2.1 │ MIT ║ -║ 1104 │ body-parser │ 1.20.3 │ MIT ║ -║ 1105 │ bonjour-service │ 1.3.0 │ MIT ║ -║ 1106 │ boolbase │ 1.0.0 │ ISC ║ -║ 1107 │ boolean │ 3.2.0 │ MIT ║ -║ 1108 │ bottleneck │ 2.19.5 │ MIT ║ -║ 1109 │ bowser │ 2.11.0 │ MIT ║ -║ 1110 │ brace-expansion │ 1.1.11 │ MIT ║ -║ 1111 │ brace-expansion │ 2.0.1 │ MIT ║ -║ 1112 │ braces │ 3.0.3 │ MIT ║ -║ 1113 │ brorand │ 1.1.0 │ MIT ║ -║ 1114 │ brotli-wasm │ 3.0.1 │ Apache-2.0 ║ -║ 1115 │ browser_field │ NOT-SET │ ║ -║ 1116 │ browserify-aes │ 1.2.0 │ MIT ║ -║ 1117 │ browserify-cipher │ 1.0.1 │ MIT ║ -║ 1118 │ browserify-des │ 1.0.2 │ MIT ║ -║ 1119 │ browserify-rsa │ 4.1.1 │ MIT ║ -║ 1120 │ browserify-sign │ 4.2.3 │ ISC ║ -║ 1121 │ browserify-zlib │ 0.2.0 │ MIT ║ -║ 1122 │ browserslist │ 4.24.2 │ MIT ║ -║ 1123 │ bser │ 2.1.1 │ Apache-2.0 ║ -║ 1124 │ btoa │ 1.2.1 │ (MIT OR Apache-2.0) ║ -║ 1125 │ btoa-lite │ 1.0.0 │ MIT ║ -║ 1126 │ buffer │ 5.6.0 │ MIT ║ -║ 1127 │ buffer │ 5.7.1 │ MIT ║ -║ 1128 │ buffer │ 6.0.3 │ MIT ║ -║ 1129 │ buffer │ 4.9.2 │ MIT ║ -║ 1130 │ buffer-crc32 │ 1.0.0 │ MIT ║ -║ 1131 │ buffer-crc32 │ 0.2.13 │ MIT ║ -║ 1132 │ buffer-equal-constant-time │ 1.0.1 │ BSD-3-Clause ║ -║ 1133 │ buffer-from │ 1.1.2 │ MIT ║ -║ 1134 │ buffer-xor │ 1.0.3 │ MIT ║ -║ 1135 │ buildcheck │ 0.0.6 │ MIT ║ -║ 1136 │ builtin-status-codes │ 3.0.0 │ MIT ║ -║ 1137 │ bundle-name │ 4.1.0 │ MIT ║ -║ 1138 │ busboy │ 1.6.0 │ MIT ║ -║ 1139 │ bytes │ 3.1.2 │ MIT ║ -║ 1140 │ cacache │ 19.0.1 │ ISC ║ -║ 1141 │ cacache │ 18.0.4 │ ISC ║ -║ 1142 │ cache-content-type │ 1.0.1 │ MIT ║ -║ 1143 │ cacheable-lookup │ 6.1.0 │ MIT ║ -║ 1144 │ cacheable-lookup │ 5.0.4 │ MIT ║ -║ 1145 │ cacheable-request │ 7.0.4 │ MIT ║ -║ 1146 │ call-bind │ 1.0.8 │ MIT ║ -║ 1147 │ call-bind-apply-helpers │ 1.0.1 │ MIT ║ -║ 1148 │ call-bind-apply-helpers │ 1.0.2 │ MIT ║ -║ 1149 │ call-bound │ 1.0.4 │ MIT ║ -║ 1150 │ call-me-maybe │ 1.0.2 │ MIT ║ -║ 1151 │ callsites │ 3.1.0 │ MIT ║ -║ 1152 │ camel-case │ 4.1.2 │ MIT ║ -║ 1153 │ camelcase │ 5.3.1 │ MIT ║ -║ 1154 │ camelcase │ 5.0.0 │ MIT ║ -║ 1155 │ camelcase │ 6.3.0 │ MIT ║ -║ 1156 │ caniuse-api │ 3.0.0 │ MIT ║ -║ 1157 │ caniuse-lite │ 1.0.30001687 │ CC-BY-4.0 ║ -║ 1158 │ ccount │ 2.0.1 │ MIT ║ -║ 1159 │ chalk │ 2.4.2 │ MIT ║ -║ 1160 │ chalk │ 3.0.0 │ MIT ║ -║ 1161 │ chalk │ 4.1.2 │ MIT ║ -║ 1162 │ char-regex │ 1.0.2 │ MIT ║ -║ 1163 │ character-entities │ 2.0.2 │ MIT ║ -║ 1164 │ character-entities │ 1.2.4 │ MIT ║ -║ 1165 │ character-entities-legacy │ 1.1.4 │ MIT ║ -║ 1166 │ character-reference-invalid │ 1.1.4 │ MIT ║ -║ 1167 │ chardet │ 0.7.0 │ MIT ║ -║ 1168 │ check-types │ 11.2.3 │ MIT ║ -║ 1169 │ chokidar │ 3.6.0 │ MIT ║ -║ 1170 │ chownr │ 3.0.0 │ BlueOak-1.0.0 ║ -║ 1171 │ chownr │ 1.1.4 │ ISC ║ -║ 1172 │ chownr │ 2.0.0 │ ISC ║ -║ 1173 │ chrome-trace-event │ 1.0.4 │ MIT ║ -║ 1174 │ ci-info │ 3.9.0 │ MIT ║ -║ 1175 │ cidr-regex │ 3.1.1 │ BSD-2-Clause ║ -║ 1176 │ cipher-base │ 1.0.6 │ MIT ║ -║ 1177 │ cjs-module-lexer │ 1.4.1 │ MIT ║ -║ 1178 │ cjs-use │ NOT-SET │ ║ -║ 1179 │ classnames │ 2.5.1 │ MIT ║ -║ 1180 │ clean-css │ 5.3.3 │ MIT ║ -║ 1181 │ clean-git-ref │ 2.0.1 │ Apache-2.0 ║ -║ 1182 │ clean-stack │ 2.2.0 │ MIT ║ -║ 1183 │ cli-cursor │ 3.1.0 │ MIT ║ -║ 1184 │ cli-spinners │ 2.9.2 │ MIT ║ -║ 1185 │ cli-width │ 3.0.0 │ ISC ║ -║ 1186 │ client-only │ 0.0.1 │ MIT ║ -║ 1187 │ cliui │ 7.0.4 │ ISC ║ -║ 1188 │ cliui │ 8.0.1 │ ISC ║ -║ 1189 │ clone │ 1.0.4 │ MIT ║ -║ 1190 │ clone │ 2.1.2 │ MIT ║ -║ 1191 │ clone-response │ 1.0.3 │ MIT ║ -║ 1192 │ clsx │ 2.1.1 │ MIT ║ -║ 1193 │ clsx │ 1.2.1 │ MIT ║ -║ 1194 │ cluster-key-slot │ 1.1.2 │ Apache-2.0 ║ -║ 1195 │ co │ 4.6.0 │ MIT ║ -║ 1196 │ code-block-writer │ 13.0.3 │ MIT ║ -║ 1197 │ codemirror │ 6.0.1 │ MIT ║ -║ 1198 │ codemirror │ 5.65.18 │ MIT ║ -║ 1199 │ codemirror-graphql │ 2.1.1 │ MIT ║ -║ 1200 │ codeowners-utils │ 1.0.2 │ MIT ║ -║ 1201 │ collect-v8-coverage │ 1.0.2 │ MIT ║ -║ 1202 │ color │ 3.2.1 │ MIT ║ -║ 1203 │ color-convert │ 2.0.1 │ MIT ║ -║ 1204 │ color-convert │ 1.9.3 │ MIT ║ -║ 1205 │ color-name │ 1.1.3 │ MIT ║ -║ 1206 │ color-name │ 1.1.4 │ MIT ║ -║ 1207 │ color-string │ 1.9.1 │ MIT ║ -║ 1208 │ colord │ 2.9.3 │ MIT ║ -║ 1209 │ colorette │ 2.0.19 │ MIT ║ -║ 1210 │ colorette │ 2.0.20 │ MIT ║ -║ 1211 │ colorspace │ 1.1.4 │ MIT ║ -║ 1212 │ combined-stream │ 1.0.8 │ MIT ║ -║ 1213 │ comma-separated-tokens │ 2.0.3 │ MIT ║ -║ 1214 │ comma-separated-tokens │ 1.0.8 │ MIT ║ -║ 1215 │ commander │ 10.0.1 │ MIT ║ -║ 1216 │ commander │ 12.1.0 │ MIT ║ -║ 1217 │ commander │ 2.20.3 │ MIT ║ -║ 1218 │ commander │ 8.3.0 │ MIT ║ -║ 1219 │ commander │ 5.1.0 │ MIT ║ -║ 1220 │ commander │ 4.1.1 │ MIT ║ -║ 1221 │ commander │ 7.2.0 │ MIT ║ -║ 1222 │ common-tags │ 1.8.2 │ MIT ║ -║ 1223 │ commondir │ 1.0.1 │ MIT ║ -║ 1224 │ component-emitter │ 1.3.1 │ MIT ║ -║ 1225 │ compress-commons │ 5.0.3 │ MIT ║ -║ 1226 │ compress-commons │ 6.0.2 │ MIT ║ -║ 1227 │ compressible │ 2.0.18 │ MIT ║ -║ 1228 │ compression │ 1.7.5 │ MIT ║ -║ 1229 │ compute-gcd │ 1.2.1 │ MIT ║ -║ 1230 │ compute-lcm │ 1.1.2 │ MIT ║ -║ 1231 │ concat-map │ 0.0.1 │ MIT ║ -║ 1232 │ concat-stream │ 2.0.0 │ MIT ║ -║ 1233 │ concat-stream │ 1.6.2 │ MIT ║ -║ 1234 │ concat-with-sourcemaps │ 1.1.0 │ ISC ║ -║ 1235 │ connect │ 3.7.0 │ MIT ║ -║ 1236 │ connect-history-api-fallback │ 2.0.0 │ MIT ║ -║ 1237 │ connect-session-knex │ 4.0.2 │ ISC ║ -║ 1238 │ console-browserify │ 1.2.0 │ MIT ║ -║ 1239 │ constants-browserify │ 1.0.0 │ MIT ║ -║ 1240 │ content-disposition │ 0.5.4 │ MIT ║ -║ 1241 │ content-type │ 1.0.5 │ MIT ║ -║ 1242 │ convert-source-map │ 1.9.0 │ MIT ║ -║ 1243 │ convert-source-map │ 2.0.0 │ MIT ║ -║ 1244 │ cookie │ 0.7.2 │ MIT ║ -║ 1245 │ cookie │ 0.7.1 │ MIT ║ -║ 1246 │ cookie │ 0.4.2 │ MIT ║ -║ 1247 │ cookie-parser │ 1.4.7 │ MIT ║ -║ 1248 │ cookie-signature │ 1.0.6 │ MIT ║ -║ 1249 │ cookie-signature │ 1.0.7 │ MIT ║ -║ 1250 │ cookiejar │ 2.1.4 │ MIT ║ -║ 1251 │ cookies │ 0.9.1 │ MIT ║ -║ 1252 │ copy-to-clipboard │ 3.3.3 │ MIT ║ -║ 1253 │ core-js │ 3.39.0 │ MIT ║ -║ 1254 │ core-js │ 2.6.12 │ MIT ║ -║ 1255 │ core-js-compat │ 3.39.0 │ MIT ║ -║ 1256 │ core-js-pure │ 3.39.0 │ MIT ║ -║ 1257 │ core-util-is │ 1.0.3 │ MIT ║ -║ 1258 │ cors │ 2.8.5 │ MIT ║ -║ 1259 │ cors-gate │ 1.1.3 │ MIT ║ -║ 1260 │ cosmiconfig │ 7.1.0 │ MIT ║ -║ 1261 │ cosmiconfig │ 8.3.6 │ MIT ║ -║ 1262 │ cosmiconfig │ 6.0.0 │ MIT ║ -║ 1263 │ cpu-features │ 0.0.10 │ MIT ║ -║ 1264 │ crc-32 │ 1.2.2 │ Apache-2.0 ║ -║ 1265 │ crc32-stream │ 5.0.1 │ MIT ║ -║ 1266 │ crc32-stream │ 6.0.0 │ MIT ║ -║ 1267 │ create-ecdh │ 4.0.4 │ MIT ║ -║ 1268 │ create-hash │ 1.2.0 │ MIT ║ -║ 1269 │ create-hmac │ 1.1.7 │ MIT ║ -║ 1270 │ create-jest │ 29.7.0 │ MIT ║ -║ 1271 │ create-require │ 1.1.1 │ MIT ║ -║ 1272 │ crelt │ 1.0.6 │ MIT ║ -║ 1273 │ cron │ 3.3.0 │ MIT ║ -║ 1274 │ cron-parser │ 4.9.0 │ MIT ║ -║ 1275 │ cronstrue │ 2.52.0 │ MIT ║ -║ 1276 │ cross-env │ 7.0.3 │ MIT ║ -║ 1277 │ cross-fetch │ 4.0.0 │ MIT ║ -║ 1278 │ cross-fetch │ 3.1.8 │ MIT ║ -║ 1279 │ cross-fetch-polyfill │ 0.0.0 │ MIT ║ -║ 1280 │ cross-inspect │ 1.0.1 │ MIT ║ -║ 1281 │ cross-spawn │ 7.0.6 │ MIT ║ -║ 1282 │ crypto-browserify │ 3.12.1 │ MIT ║ -║ 1283 │ css-box-model │ 1.2.1 │ MIT ║ -║ 1284 │ css-declaration-sorter │ 6.4.1 │ ISC ║ -║ 1285 │ css-in-js-utils │ 3.1.0 │ MIT ║ -║ 1286 │ css-loader │ 7.1.2 │ MIT ║ -║ 1287 │ css-select │ 4.3.0 │ BSD-2-Clause ║ -║ 1288 │ css-tree │ 1.1.3 │ MIT ║ -║ 1289 │ css-vendor │ 2.0.8 │ MIT ║ -║ 1290 │ css-what │ 6.1.0 │ BSD-2-Clause ║ -║ 1291 │ css.escape │ 1.5.1 │ MIT ║ -║ 1292 │ cssesc │ 3.0.0 │ MIT ║ -║ 1293 │ cssnano │ 5.1.15 │ MIT ║ -║ 1294 │ cssnano-preset-default │ 5.2.14 │ MIT ║ -║ 1295 │ cssnano-utils │ 3.1.0 │ MIT ║ -║ 1296 │ csso │ 4.2.0 │ MIT ║ -║ 1297 │ cssom │ 0.5.0 │ MIT ║ -║ 1298 │ cssom │ 0.3.8 │ MIT ║ -║ 1299 │ cssstyle │ 2.3.0 │ MIT ║ -║ 1300 │ cssstyle │ 4.1.0 │ MIT ║ -║ 1301 │ csstype │ 2.6.21 │ MIT ║ -║ 1302 │ csstype │ 3.1.3 │ MIT ║ -║ 1303 │ ctrlc-windows │ 2.1.0 │ MIT ║ -║ 1304 │ d3-color │ 3.1.0 │ ISC ║ -║ 1305 │ d3-dispatch │ 3.0.1 │ ISC ║ -║ 1306 │ d3-drag │ 3.0.0 │ ISC ║ -║ 1307 │ d3-ease │ 3.0.1 │ BSD-3-Clause ║ -║ 1308 │ d3-interpolate │ 3.0.1 │ ISC ║ -║ 1309 │ d3-path │ 3.1.0 │ ISC ║ -║ 1310 │ d3-selection │ 3.0.0 │ ISC ║ -║ 1311 │ d3-shape │ 3.2.0 │ ISC ║ -║ 1312 │ d3-timer │ 3.0.1 │ ISC ║ -║ 1313 │ d3-transition │ 3.0.1 │ ISC ║ -║ 1314 │ d3-zoom │ 3.0.0 │ ISC ║ -║ 1315 │ dagre │ 0.8.5 │ MIT ║ -║ 1316 │ damerau-levenshtein │ 1.0.8 │ BSD-2-Clause ║ -║ 1317 │ data-uri-to-buffer │ 6.0.2 │ MIT ║ -║ 1318 │ data-urls │ 3.0.2 │ MIT ║ -║ 1319 │ data-urls │ 5.0.0 │ MIT ║ -║ 1320 │ data-view-buffer │ 1.0.1 │ MIT ║ -║ 1321 │ data-view-byte-length │ 1.0.1 │ MIT ║ -║ 1322 │ data-view-byte-offset │ 1.0.0 │ MIT ║ -║ 1323 │ dataloader │ 2.2.3 │ MIT ║ -║ 1324 │ date-fns │ 2.30.0 │ MIT ║ -║ 1325 │ date-format │ 4.0.14 │ MIT ║ -║ 1326 │ dateformat │ 3.0.3 │ MIT ║ -║ 1327 │ debounce │ 1.2.1 │ MIT ║ -║ 1328 │ debounce-promise │ 3.1.2 │ MIT ║ -║ 1329 │ debug │ 4.3.4 │ MIT ║ -║ 1330 │ debug │ 2.6.9 │ MIT ║ -║ 1331 │ debug │ 4.4.0 │ MIT ║ -║ 1332 │ debug │ 3.2.7 │ MIT ║ -║ 1333 │ decimal.js │ 10.4.3 │ MIT ║ -║ 1334 │ decode-named-character-reference │ 1.0.2 │ MIT ║ -║ 1335 │ decode-uri-component │ 0.2.2 │ MIT ║ -║ 1336 │ decompress-response │ 6.0.0 │ MIT ║ -║ 1337 │ dedent │ 1.5.3 │ MIT ║ -║ 1338 │ deep-equal │ 2.2.3 │ MIT ║ -║ 1339 │ deep-equal │ 1.0.1 │ MIT ║ -║ 1340 │ deep-extend │ 0.6.0 │ MIT ║ -║ 1341 │ deep-is │ 0.1.4 │ MIT ║ -║ 1342 │ deepmerge │ 4.3.1 │ MIT ║ -║ 1343 │ default-browser │ 5.2.1 │ MIT ║ -║ 1344 │ default-browser-id │ 5.0.0 │ MIT ║ -║ 1345 │ defaults │ 1.0.4 │ MIT ║ -║ 1346 │ defer-to-connect │ 2.0.1 │ MIT ║ -║ 1347 │ define-data-property │ 1.1.4 │ MIT ║ -║ 1348 │ define-lazy-prop │ 2.0.0 │ MIT ║ -║ 1349 │ define-lazy-prop │ 3.0.0 │ MIT ║ -║ 1350 │ define-properties │ 1.2.1 │ MIT ║ -║ 1351 │ degenerator │ 5.0.1 │ MIT ║ -║ 1352 │ delay │ 5.0.0 │ MIT ║ -║ 1353 │ delayed-stream │ 1.0.0 │ MIT ║ -║ 1354 │ delegates │ 1.0.0 │ MIT ║ -║ 1355 │ demo │ 1.0.1 │ MIT ║ -║ 1356 │ denque │ 2.1.0 │ Apache-2.0 ║ -║ 1357 │ depd │ 2.0.0 │ MIT ║ -║ 1358 │ depd │ 1.1.2 │ MIT ║ -║ 1359 │ dependency-graph │ 0.11.0 │ MIT ║ -║ 1360 │ deprecation │ 2.3.1 │ ISC ║ -║ 1361 │ dequal │ 2.0.3 │ MIT ║ -║ 1362 │ des.js │ 1.1.0 │ MIT ║ -║ 1363 │ destroy │ 1.2.0 │ MIT ║ -║ 1364 │ destroyable-server │ 1.0.2 │ Apache-2.0 ║ -║ 1365 │ detect-libc │ 2.0.3 │ Apache-2.0 ║ -║ 1366 │ detect-newline │ 3.1.0 │ MIT ║ -║ 1367 │ detect-node │ 2.1.0 │ MIT ║ -║ 1368 │ detect-node-es │ 1.1.0 │ MIT ║ -║ 1369 │ detect-port-alt │ 1.1.6 │ MIT ║ -║ 1370 │ dezalgo │ 1.0.4 │ ISC ║ -║ 1371 │ diff │ 4.0.2 │ BSD-3-Clause ║ -║ 1372 │ diff │ 5.2.0 │ BSD-3-Clause ║ -║ 1373 │ diff-sequences │ 29.6.3 │ MIT ║ -║ 1374 │ diff3 │ 0.0.3 │ MIT ║ -║ 1375 │ diffie-hellman │ 5.0.3 │ MIT ║ -║ 1376 │ dir-glob │ 3.0.1 │ MIT ║ -║ 1377 │ discontinuous-range │ 1.0.0 │ MIT ║ -║ 1378 │ dist │ 1.0.0 │ BSD-2-Clause ║ -║ 1379 │ dns-packet │ 5.6.1 │ MIT ║ -║ 1380 │ docker-modem │ 5.0.3 │ Apache-2.0 ║ -║ 1381 │ docker-modem │ 3.0.8 │ Apache-2.0 ║ -║ 1382 │ dockerode │ 4.0.2 │ Apache-2.0 ║ -║ 1383 │ dockerode │ 3.3.5 │ Apache-2.0 ║ -║ 1384 │ doctrine │ 2.1.0 │ Apache-2.0 ║ -║ 1385 │ doctrine │ 3.0.0 │ Apache-2.0 ║ -║ 1386 │ dom-accessibility-api │ 0.6.3 │ MIT ║ -║ 1387 │ dom-accessibility-api │ 0.5.16 │ MIT ║ -║ 1388 │ dom-converter │ 0.2.0 │ MIT ║ -║ 1389 │ dom-helpers │ 5.2.1 │ MIT ║ -║ 1390 │ dom-helpers/activeElement │ NOT-SET │ ║ -║ 1391 │ dom-helpers/addClass │ NOT-SET │ ║ -║ 1392 │ dom-helpers/addEventListener │ NOT-SET │ ║ -║ 1393 │ dom-helpers/animate │ NOT-SET │ ║ -║ 1394 │ dom-helpers/animationFrame │ NOT-SET │ ║ -║ 1395 │ dom-helpers/attribute │ NOT-SET │ ║ -║ 1396 │ dom-helpers/camelize │ NOT-SET │ ║ -║ 1397 │ dom-helpers/camelizeStyle │ NOT-SET │ ║ -║ 1398 │ dom-helpers/canUseDOM │ NOT-SET │ ║ -║ 1399 │ dom-helpers/childElements │ NOT-SET │ ║ -║ 1400 │ dom-helpers/childNodes │ NOT-SET │ ║ -║ 1401 │ dom-helpers/clear │ NOT-SET │ ║ -║ 1402 │ dom-helpers/closest │ NOT-SET │ ║ -║ 1403 │ dom-helpers/collectElements │ NOT-SET │ ║ -║ 1404 │ dom-helpers/collectSiblings │ NOT-SET │ ║ -║ 1405 │ dom-helpers/contains │ NOT-SET │ ║ -║ 1406 │ dom-helpers/css │ NOT-SET │ ║ -║ 1407 │ dom-helpers/filterEventHandler │ NOT-SET │ ║ -║ 1408 │ dom-helpers/getComputedStyle │ NOT-SET │ ║ -║ 1409 │ dom-helpers/getScrollAccessor │ NOT-SET │ ║ -║ 1410 │ dom-helpers/hasClass │ NOT-SET │ ║ -║ 1411 │ dom-helpers/height │ NOT-SET │ ║ -║ 1412 │ dom-helpers/hyphenate │ NOT-SET │ ║ -║ 1413 │ dom-helpers/hyphenateStyle │ NOT-SET │ ║ -║ 1414 │ dom-helpers/insertAfter │ NOT-SET │ ║ -║ 1415 │ dom-helpers/isDocument │ NOT-SET │ ║ -║ 1416 │ dom-helpers/isInput │ NOT-SET │ ║ -║ 1417 │ dom-helpers/isTransform │ NOT-SET │ ║ -║ 1418 │ dom-helpers/isVisible │ NOT-SET │ ║ -║ 1419 │ dom-helpers/isWindow │ NOT-SET │ ║ -║ 1420 │ dom-helpers/listen │ NOT-SET │ ║ -║ 1421 │ dom-helpers/matches │ NOT-SET │ ║ -║ 1422 │ dom-helpers/nextUntil │ NOT-SET │ ║ -║ 1423 │ dom-helpers/offset │ NOT-SET │ ║ -║ 1424 │ dom-helpers/offsetParent │ NOT-SET │ ║ -║ 1425 │ dom-helpers/ownerDocument │ NOT-SET │ ║ -║ 1426 │ dom-helpers/ownerWindow │ NOT-SET │ ║ -║ 1427 │ dom-helpers/parents │ NOT-SET │ ║ -║ 1428 │ dom-helpers/position │ NOT-SET │ ║ -║ 1429 │ dom-helpers/prepend │ NOT-SET │ ║ -║ 1430 │ dom-helpers/querySelectorAll │ NOT-SET │ ║ -║ 1431 │ dom-helpers/remove │ NOT-SET │ ║ -║ 1432 │ dom-helpers/removeClass │ NOT-SET │ ║ -║ 1433 │ dom-helpers/removeEventListener │ NOT-SET │ ║ -║ 1434 │ dom-helpers/scrollLeft │ NOT-SET │ ║ -║ 1435 │ dom-helpers/scrollParent │ NOT-SET │ ║ -║ 1436 │ dom-helpers/scrollTo │ NOT-SET │ ║ -║ 1437 │ dom-helpers/scrollTop │ NOT-SET │ ║ -║ 1438 │ dom-helpers/scrollbarSize │ NOT-SET │ ║ -║ 1439 │ dom-helpers/siblings │ NOT-SET │ ║ -║ 1440 │ dom-helpers/text │ NOT-SET │ ║ -║ 1441 │ dom-helpers/toggleClass │ NOT-SET │ ║ -║ 1442 │ dom-helpers/transitionEnd │ NOT-SET │ ║ -║ 1443 │ dom-helpers/triggerEvent │ NOT-SET │ ║ -║ 1444 │ dom-helpers/width │ NOT-SET │ ║ -║ 1445 │ dom-serializer │ 1.4.1 │ MIT ║ -║ 1446 │ domain-browser │ 1.2.0 │ MIT ║ -║ 1447 │ domelementtype │ 2.3.0 │ BSD-2-Clause ║ -║ 1448 │ domexception │ 4.0.0 │ MIT ║ -║ 1449 │ domhandler │ 4.3.1 │ BSD-2-Clause ║ -║ 1450 │ dompurify │ 3.2.3 │ (MPL-2.0 OR Apache-2.0) ║ -║ 1451 │ dompurify │ 3.1.6 │ (MPL-2.0 OR Apache-2.0) ║ -║ 1452 │ domutils │ 2.8.0 │ BSD-2-Clause ║ -║ 1453 │ dot-case │ 3.0.4 │ MIT ║ -║ 1454 │ drange │ 1.1.1 │ MIT ║ -║ 1455 │ dset │ 3.1.4 │ MIT ║ -║ 1456 │ dunder-proto │ 1.0.0 │ MIT ║ -║ 1457 │ dunder-proto │ 1.0.1 │ MIT ║ -║ 1458 │ duplexer │ 0.1.2 │ MIT ║ -║ 1459 │ duplexify │ 3.7.1 │ MIT ║ -║ 1460 │ duplexify │ 4.1.3 │ MIT ║ -║ 1461 │ eastasianwidth │ 0.2.0 │ MIT ║ -║ 1462 │ ebnf │ 1.9.1 │ MIT ║ -║ 1463 │ ecdsa-sig-formatter │ 1.0.11 │ Apache-2.0 ║ -║ 1464 │ ee-first │ 1.1.1 │ MIT ║ -║ 1465 │ electron-to-chromium │ 1.5.72 │ ISC ║ -║ 1466 │ elliptic │ 6.6.1 │ MIT ║ -║ 1467 │ emittery │ 0.13.1 │ MIT ║ -║ 1468 │ emoji-regex │ 9.2.2 │ MIT ║ -║ 1469 │ emoji-regex │ 8.0.0 │ MIT ║ -║ 1470 │ emojis-list │ 3.0.0 │ MIT ║ -║ 1471 │ enabled │ 2.0.0 │ MIT ║ -║ 1472 │ encodeurl │ 1.0.2 │ MIT ║ -║ 1473 │ encodeurl │ 2.0.0 │ MIT ║ -║ 1474 │ encoding │ 0.1.13 │ MIT ║ -║ 1475 │ end-of-stream │ 1.4.4 │ MIT ║ -║ 1476 │ enhanced-resolve │ 5.17.1 │ MIT ║ -║ 1477 │ entities │ 2.2.0 │ BSD-2-Clause ║ -║ 1478 │ entities │ 4.5.0 │ BSD-2-Clause ║ -║ 1479 │ entities │ 2.1.0 │ BSD-2-Clause ║ -║ 1480 │ env-paths │ 2.2.1 │ MIT ║ -║ 1481 │ err-code │ 2.0.3 │ MIT ║ -║ 1482 │ error-ex │ 1.3.2 │ MIT ║ -║ 1483 │ error-stack-parser │ 2.1.4 │ MIT ║ -║ 1484 │ es-abstract │ 1.23.5 │ MIT ║ -║ 1485 │ es-aggregate-error │ 1.0.13 │ MIT ║ -║ 1486 │ es-define-property │ 1.0.1 │ MIT ║ -║ 1487 │ es-errors │ 1.3.0 │ MIT ║ -║ 1488 │ es-get-iterator │ 1.1.3 │ MIT ║ -║ 1489 │ es-iterator-helpers │ 1.2.0 │ MIT ║ -║ 1490 │ es-module-lexer │ 1.5.4 │ MIT ║ -║ 1491 │ es-object-atoms │ 1.1.1 │ MIT ║ -║ 1492 │ es-object-atoms │ 1.0.0 │ MIT ║ -║ 1493 │ es-set-tostringtag │ 2.0.3 │ MIT ║ -║ 1494 │ es-shim-unscopables │ 1.0.2 │ MIT ║ -║ 1495 │ es-to-primitive │ 1.3.0 │ MIT ║ -║ 1496 │ es6-error │ 4.1.1 │ MIT ║ -║ 1497 │ es6-promise │ 4.2.8 │ MIT ║ -║ 1498 │ esbuild │ 0.24.0 │ MIT ║ -║ 1499 │ esbuild │ 0.21.5 │ MIT ║ -║ 1500 │ esbuild-loader │ 4.2.2 │ MIT ║ -║ 1501 │ escalade │ 3.2.0 │ MIT ║ -║ 1502 │ escape-html │ 1.0.3 │ MIT ║ -║ 1503 │ escape-string-regexp │ 1.0.5 │ MIT ║ -║ 1504 │ escape-string-regexp │ 4.0.0 │ MIT ║ -║ 1505 │ escape-string-regexp │ 5.0.0 │ MIT ║ -║ 1506 │ escape-string-regexp │ 2.0.0 │ MIT ║ -║ 1507 │ escodegen │ 2.1.0 │ BSD-2-Clause ║ -║ 1508 │ escodegen │ 1.14.3 │ BSD-2-Clause ║ -║ 1509 │ eslint │ 8.57.1 │ MIT ║ -║ 1510 │ eslint-config-prettier │ 9.1.0 │ MIT ║ -║ 1511 │ eslint-formatter-friendly │ 7.0.0 │ MIT ║ -║ 1512 │ eslint-import-resolver-node │ 0.3.9 │ MIT ║ -║ 1513 │ eslint-module-utils │ 2.12.0 │ MIT ║ -║ 1514 │ eslint-plugin-deprecation │ 2.0.0 │ LGPL-3.0-or-later ║ -║ 1515 │ eslint-plugin-import │ 2.31.0 │ MIT ║ -║ 1516 │ eslint-plugin-jest │ 28.9.0 │ MIT ║ -║ 1517 │ eslint-plugin-jsx-a11y │ 6.10.2 │ MIT ║ -║ 1518 │ eslint-plugin-react │ 7.37.2 │ MIT ║ -║ 1519 │ eslint-plugin-react-hooks │ 4.6.2 │ MIT ║ -║ 1520 │ eslint-plugin-unused-imports │ 3.2.0 │ MIT ║ -║ 1521 │ eslint-rule-composer │ 0.3.0 │ MIT ║ -║ 1522 │ eslint-scope │ 7.2.2 │ BSD-2-Clause ║ -║ 1523 │ eslint-scope │ 5.1.1 │ BSD-2-Clause ║ -║ 1524 │ eslint-visitor-keys │ 4.2.0 │ Apache-2.0 ║ -║ 1525 │ eslint-visitor-keys │ 3.4.3 │ Apache-2.0 ║ -║ 1526 │ eslint-webpack-plugin │ 4.2.0 │ MIT ║ -║ 1527 │ esm │ 3.2.25 │ MIT ║ -║ 1528 │ esm-use │ NOT-SET │ ║ -║ 1529 │ espree │ 9.6.1 │ BSD-2-Clause ║ -║ 1530 │ esprima │ 4.0.1 │ BSD-2-Clause ║ -║ 1531 │ esprima │ 1.2.2 │ BSD ║ -║ 1532 │ esquery │ 1.6.0 │ BSD-3-Clause ║ -║ 1533 │ esrecurse │ 4.3.0 │ BSD-2-Clause ║ -║ 1534 │ estraverse │ 5.3.0 │ BSD-2-Clause ║ -║ 1535 │ estraverse │ 4.3.0 │ BSD-2-Clause ║ -║ 1536 │ estree-walker │ 2.0.2 │ MIT ║ -║ 1537 │ estree-walker │ 0.6.1 │ MIT ║ -║ 1538 │ esutils │ 2.0.3 │ BSD-2-Clause ║ -║ 1539 │ etag │ 1.8.1 │ MIT ║ -║ 1540 │ event-target-shim │ 5.0.1 │ MIT ║ -║ 1541 │ eventemitter3 │ 4.0.7 │ MIT ║ -║ 1542 │ eventemitter3 │ 3.1.2 │ MIT ║ -║ 1543 │ events │ 3.3.0 │ MIT ║ -║ 1544 │ evp_bytestokey │ 1.0.3 │ MIT ║ -║ 1545 │ example │ NOT-SET │ ║ -║ 1546 │ execa │ 5.1.1 │ MIT ║ -║ 1547 │ exit │ 0.1.2 │ MIT ║ -║ 1548 │ expand-template │ 2.0.3 │ (MIT OR WTFPL) ║ -║ 1549 │ expand-tilde │ 2.0.2 │ MIT ║ -║ 1550 │ expect │ 29.7.0 │ MIT ║ -║ 1551 │ expiry-map │ 2.0.0 │ MIT ║ -║ 1552 │ exponential-backoff │ 3.1.1 │ Apache-2.0 ║ -║ 1553 │ express │ 4.21.2 │ MIT ║ -║ 1554 │ express-http-proxy │ 2.1.1 │ MIT ║ -║ 1555 │ express-openapi-validator │ 5.3.9 │ MIT ║ -║ 1556 │ express-promise-router │ 4.1.1 │ MIT ║ -║ 1557 │ express-session │ 1.18.1 │ MIT ║ -║ 1558 │ extend │ 3.0.2 │ MIT ║ -║ 1559 │ external-editor │ 3.1.0 │ MIT ║ -║ 1560 │ extract-files │ 11.0.0 │ MIT ║ -║ 1561 │ false_main │ NOT-SET │ ║ -║ 1562 │ fast-copy │ 3.0.2 │ MIT ║ -║ 1563 │ fast-decode-uri-component │ 1.0.1 │ MIT ║ -║ 1564 │ fast-deep-equal │ 3.1.3 │ MIT ║ -║ 1565 │ fast-fifo │ 1.3.2 │ MIT ║ -║ 1566 │ fast-glob │ 3.3.2 │ MIT ║ -║ 1567 │ fast-json-parse │ 1.0.3 │ MIT ║ -║ 1568 │ fast-json-patch │ 3.1.1 │ MIT ║ -║ 1569 │ fast-json-stable-stringify │ 2.1.0 │ MIT ║ -║ 1570 │ fast-levenshtein │ 2.0.6 │ MIT ║ -║ 1571 │ fast-memoize │ 2.5.2 │ MIT ║ -║ 1572 │ fast-querystring │ 1.1.2 │ MIT ║ -║ 1573 │ fast-redact │ 2.1.0 │ MIT ║ -║ 1574 │ fast-safe-stringify │ 2.1.1 │ MIT ║ -║ 1575 │ fast-shallow-equal │ 1.0.0 │ ║ -║ 1576 │ fast-uri │ 3.0.3 │ BSD-3-Clause ║ -║ 1577 │ fast-xml-parser │ 4.4.1 │ MIT ║ -║ 1578 │ fast-xml-parser │ 4.5.0 │ MIT ║ -║ 1579 │ fastest-stable-stringify │ 2.0.2 │ MIT ║ -║ 1580 │ fastq │ 1.17.1 │ ISC ║ -║ 1581 │ fault │ 1.0.4 │ MIT ║ -║ 1582 │ faye-websocket │ 0.11.4 │ Apache-2.0 ║ -║ 1583 │ fb-watchman │ 2.0.2 │ Apache-2.0 ║ -║ 1584 │ fdir │ 6.4.2 │ MIT ║ -║ 1585 │ fecha │ 4.2.3 │ MIT ║ -║ 1586 │ figures │ 3.2.0 │ MIT ║ -║ 1587 │ file-entry-cache │ 6.0.1 │ MIT ║ -║ 1588 │ file-stream-rotator │ 0.6.1 │ MIT ║ -║ 1589 │ file-type │ 16.5.4 │ MIT ║ -║ 1590 │ file-uri-to-path │ 1.0.0 │ MIT ║ -║ 1591 │ filesize │ 8.0.7 │ BSD-3-Clause ║ -║ 1592 │ fill-range │ 7.1.1 │ MIT ║ -║ 1593 │ filter-obj │ 1.1.0 │ MIT ║ -║ 1594 │ finalhandler │ 1.1.2 │ MIT ║ -║ 1595 │ finalhandler │ 1.3.1 │ MIT ║ -║ 1596 │ find-file-up │ 2.0.1 │ MIT ║ -║ 1597 │ find-pkg │ 2.0.0 │ MIT ║ -║ 1598 │ find-root │ 1.1.0 │ MIT ║ -║ 1599 │ find-up │ 5.0.0 │ MIT ║ -║ 1600 │ find-up │ 4.1.0 │ MIT ║ -║ 1601 │ find-up │ 3.0.0 │ MIT ║ -║ 1602 │ flat-cache │ 3.2.0 │ MIT ║ -║ 1603 │ flatstr │ 1.0.12 │ MIT ║ -║ 1604 │ flatted │ 3.3.1 │ ISC ║ -║ 1605 │ flatted │ 3.3.2 │ ISC ║ -║ 1606 │ fn.name │ 1.1.0 │ MIT ║ -║ 1607 │ follow-redirects │ 1.15.9 │ MIT ║ -║ 1608 │ for-each │ 0.3.3 │ MIT ║ -║ 1609 │ foreach │ 2.0.6 │ MIT ║ -║ 1610 │ foreground-child │ 3.3.0 │ ISC ║ -║ 1611 │ fork-ts-checker-webpack-plugin │ 9.0.2 │ MIT ║ -║ 1612 │ fork-ts-checker-webpack-plugin │ 6.5.3 │ MIT ║ -║ 1613 │ form-data │ 2.5.2 │ MIT ║ -║ 1614 │ form-data │ 4.0.1 │ MIT ║ -║ 1615 │ format │ 0.2.2 │ MIT ║ -║ 1616 │ formidable │ 2.1.2 │ MIT ║ -║ 1617 │ forwarded │ 0.2.0 │ MIT ║ -║ 1618 │ framer-motion │ 6.5.1 │ MIT ║ -║ 1619 │ framesync │ 6.0.1 │ MIT ║ -║ 1620 │ fresh │ 0.5.2 │ MIT ║ -║ 1621 │ fromentries │ 1.3.2 │ MIT ║ -║ 1622 │ fs-constants │ 1.0.0 │ MIT ║ -║ 1623 │ fs-extra │ 8.1.0 │ MIT ║ -║ 1624 │ fs-extra │ 9.1.0 │ MIT ║ -║ 1625 │ fs-extra │ 10.1.0 │ MIT ║ -║ 1626 │ fs-extra │ 11.2.0 │ MIT ║ -║ 1627 │ fs-minipass │ 3.0.3 │ ISC ║ -║ 1628 │ fs-minipass │ 2.1.0 │ ISC ║ -║ 1629 │ fs-monkey │ 1.0.6 │ Unlicense ║ -║ 1630 │ fs.realpath │ 1.0.0 │ ISC ║ -║ 1631 │ fsevents │ 2.3.3 │ MIT ║ -║ 1632 │ fsevents │ 2.3.2 │ MIT ║ -║ 1633 │ function-bind │ 1.1.2 │ MIT ║ -║ 1634 │ function.prototype.name │ 1.1.6 │ MIT ║ -║ 1635 │ functional-red-black-tree │ 1.0.1 │ MIT ║ -║ 1636 │ functions-have-names │ 1.2.3 │ MIT ║ -║ 1637 │ gaxios │ 6.7.1 │ Apache-2.0 ║ -║ 1638 │ gcp-metadata │ 6.1.0 │ Apache-2.0 ║ -║ 1639 │ generate-function │ 2.3.1 │ MIT ║ -║ 1640 │ generic-names │ 4.0.0 │ MIT ║ -║ 1641 │ gensync │ 1.0.0-beta.2 │ MIT ║ -║ 1642 │ get-caller-file │ 2.0.5 │ ISC ║ -║ 1643 │ get-intrinsic │ 1.3.0 │ MIT ║ -║ 1644 │ get-intrinsic │ 1.2.5 │ MIT ║ -║ 1645 │ get-nonce │ 1.0.1 │ MIT ║ -║ 1646 │ get-package-type │ 0.1.0 │ MIT ║ -║ 1647 │ get-port │ 5.1.1 │ MIT ║ -║ 1648 │ get-proto │ 1.0.1 │ MIT ║ -║ 1649 │ get-stream │ 5.2.0 │ MIT ║ -║ 1650 │ get-stream │ 6.0.1 │ MIT ║ -║ 1651 │ get-symbol-description │ 1.0.2 │ MIT ║ -║ 1652 │ get-tsconfig │ 4.8.1 │ MIT ║ -║ 1653 │ get-uri │ 6.0.4 │ MIT ║ -║ 1654 │ getopts │ 2.3.0 │ MIT ║ -║ 1655 │ git-up │ 7.0.0 │ MIT ║ -║ 1656 │ git-url-parse │ 14.1.0 │ MIT ║ -║ 1657 │ git-url-parse │ 15.0.0 │ MIT ║ -║ 1658 │ github-from-package │ 0.0.0 │ MIT ║ -║ 1659 │ glob │ 8.1.0 │ ISC ║ -║ 1660 │ glob │ 7.2.3 │ ISC ║ -║ 1661 │ glob │ 10.4.5 │ ISC ║ -║ 1662 │ glob-parent │ 6.0.2 │ ISC ║ -║ 1663 │ glob-parent │ 5.1.2 │ ISC ║ -║ 1664 │ glob-to-regexp │ 0.4.1 │ BSD-2-Clause ║ -║ 1665 │ global-agent │ 3.0.0 │ BSD-3-Clause ║ -║ 1666 │ global-modules │ 1.0.0 │ MIT ║ -║ 1667 │ global-modules │ 2.0.0 │ MIT ║ -║ 1668 │ global-prefix │ 1.0.2 │ MIT ║ -║ 1669 │ global-prefix │ 3.0.0 │ MIT ║ -║ 1670 │ globals │ 13.24.0 │ MIT ║ -║ 1671 │ globals │ 11.12.0 │ MIT ║ -║ 1672 │ globalthis │ 1.0.4 │ MIT ║ -║ 1673 │ globby │ 11.1.0 │ MIT ║ -║ 1674 │ google-auth-library │ 9.15.0 │ Apache-2.0 ║ -║ 1675 │ google-gax │ 4.4.1 │ Apache-2.0 ║ -║ 1676 │ gopd │ 1.2.0 │ MIT ║ -║ 1677 │ got │ 11.8.6 │ MIT ║ -║ 1678 │ graceful-fs │ 4.2.11 │ ISC ║ -║ 1679 │ graphemer │ 1.4.0 │ MIT ║ -║ 1680 │ graphiql │ 3.1.1 │ MIT ║ -║ 1681 │ graphlib │ 2.1.8 │ MIT ║ -║ 1682 │ graphql │ 16.9.0 │ MIT ║ -║ 1683 │ graphql │ 15.9.0 │ MIT ║ -║ 1684 │ graphql-config │ 5.1.3 │ MIT ║ -║ 1685 │ graphql-http │ 1.22.3 │ MIT ║ -║ 1686 │ graphql-language-service │ 5.3.0 │ MIT ║ -║ 1687 │ graphql-subscriptions │ 1.2.1 │ MIT ║ -║ 1688 │ graphql-tag │ 2.12.6 │ MIT ║ -║ 1689 │ graphql-ws │ 5.16.0 │ MIT ║ -║ 1690 │ gtoken │ 7.1.0 │ MIT ║ -║ 1691 │ gzip-size │ 6.0.0 │ MIT ║ -║ 1692 │ handle-thing │ 2.0.1 │ MIT ║ -║ 1693 │ handlebars │ 4.7.8 │ MIT ║ -║ 1694 │ harmony-reflect │ 1.6.2 │ (Apache-2.0 OR MPL-1.1) ║ -║ 1695 │ has-bigints │ 1.0.2 │ MIT ║ -║ 1696 │ has-flag │ 3.0.0 │ MIT ║ -║ 1697 │ has-flag │ 4.0.0 │ MIT ║ -║ 1698 │ has-property-descriptors │ 1.0.2 │ MIT ║ -║ 1699 │ has-proto │ 1.2.0 │ MIT ║ -║ 1700 │ has-symbols │ 1.1.0 │ MIT ║ -║ 1701 │ has-tostringtag │ 1.0.2 │ MIT ║ -║ 1702 │ hash-base │ 3.0.5 │ MIT ║ -║ 1703 │ hash-base │ 3.1.0 │ MIT ║ -║ 1704 │ hash.js │ 1.1.7 │ MIT ║ -║ 1705 │ hasown │ 2.0.2 │ MIT ║ -║ 1706 │ hast-util-parse-selector │ 2.2.5 │ MIT ║ -║ 1707 │ hast-util-whitespace │ 2.0.1 │ MIT ║ -║ 1708 │ hastscript │ 6.0.0 │ MIT ║ -║ 1709 │ he │ 1.2.0 │ MIT ║ -║ 1710 │ headers-polyfill │ 3.2.5 │ MIT ║ -║ 1711 │ helmet │ 6.2.0 │ MIT ║ -║ 1712 │ hexoid │ 1.0.0 │ MIT ║ -║ 1713 │ hey-listen │ 1.0.8 │ MIT ║ -║ 1714 │ highlight.js │ 10.7.3 │ BSD-3-Clause ║ -║ 1715 │ highlightjs-vue │ 1.0.0 │ CC0-1.0 ║ -║ 1716 │ history │ 5.3.0 │ MIT ║ -║ 1717 │ hmac-drbg │ 1.0.1 │ MIT ║ -║ 1718 │ hoist-non-react-statics │ 3.3.2 │ BSD-3-Clause ║ -║ 1719 │ homedir-polyfill │ 1.0.3 │ MIT ║ -║ 1720 │ hoopy │ 0.1.4 │ MIT ║ -║ 1721 │ hpack.js │ 2.1.6 │ MIT ║ -║ 1722 │ hpagent │ 1.2.0 │ MIT ║ -║ 1723 │ html-encoding-sniffer │ 3.0.0 │ MIT ║ -║ 1724 │ html-encoding-sniffer │ 4.0.0 │ MIT ║ -║ 1725 │ html-entities │ 2.5.2 │ MIT ║ -║ 1726 │ html-escaper │ 2.0.2 │ MIT ║ -║ 1727 │ html-minifier-terser │ 6.1.0 │ MIT ║ -║ 1728 │ html-webpack-plugin │ 5.6.3 │ MIT ║ -║ 1729 │ htmlparser2 │ 6.1.0 │ MIT ║ -║ 1730 │ http-assert │ 1.5.0 │ MIT ║ -║ 1731 │ http-cache-semantics │ 4.1.1 │ BSD-2-Clause ║ -║ 1732 │ http-deceiver │ 1.2.7 │ MIT ║ -║ 1733 │ http-encoding │ 2.0.1 │ Apache-2.0 ║ -║ 1734 │ http-errors │ 1.8.1 │ MIT ║ -║ 1735 │ http-errors │ 2.0.0 │ MIT ║ -║ 1736 │ http-errors │ 1.6.3 │ MIT ║ -║ 1737 │ http-parser-js │ 0.5.8 │ MIT ║ -║ 1738 │ http-proxy │ 1.18.1 │ MIT ║ -║ 1739 │ http-proxy-agent │ 7.0.2 │ MIT ║ -║ 1740 │ http-proxy-agent │ 5.0.0 │ MIT ║ -║ 1741 │ http-proxy-middleware │ 3.0.3 │ MIT ║ -║ 1742 │ http-proxy-middleware │ 2.0.7 │ MIT ║ -║ 1743 │ http2-wrapper │ 1.0.3 │ MIT ║ -║ 1744 │ http2-wrapper │ 2.2.1 │ MIT ║ -║ 1745 │ https-browserify │ 1.0.0 │ MIT ║ -║ 1746 │ https-proxy-agent │ 7.0.6 │ MIT ║ -║ 1747 │ https-proxy-agent │ 5.0.1 │ MIT ║ -║ 1748 │ human-signals │ 2.1.0 │ Apache-2.0 ║ -║ 1749 │ humanize-duration │ 3.32.1 │ Unlicense ║ -║ 1750 │ humanize-ms │ 1.2.1 │ MIT ║ -║ 1751 │ hyperdyperid │ 1.2.0 │ MIT ║ -║ 1752 │ hyphenate-style-name │ 1.1.0 │ BSD-3-Clause ║ -║ 1753 │ i18next │ 22.5.1 │ MIT ║ -║ 1754 │ iconv-lite │ 0.4.24 │ MIT ║ -║ 1755 │ iconv-lite │ 0.6.3 │ MIT ║ -║ 1756 │ icss-replace-symbols │ 1.1.0 │ ISC ║ -║ 1757 │ icss-utils │ 5.1.0 │ ISC ║ -║ 1758 │ idb-keyval │ 5.1.5 │ Apache-2.0 ║ -║ 1759 │ identity-obj-proxy │ 3.0.0 │ MIT ║ -║ 1760 │ ieee754 │ 1.2.1 │ BSD-3-Clause ║ -║ 1761 │ ignore │ 5.3.2 │ MIT ║ -║ 1762 │ ignore-walk │ 5.0.1 │ ISC ║ -║ 1763 │ immediate │ 3.0.6 │ MIT ║ -║ 1764 │ immer │ 9.0.21 │ MIT ║ -║ 1765 │ immutable │ 3.8.2 │ MIT ║ -║ 1766 │ import-cwd │ 3.0.0 │ MIT ║ -║ 1767 │ import-fresh │ 3.3.0 │ MIT ║ -║ 1768 │ import-from │ 3.0.0 │ MIT ║ -║ 1769 │ import-local │ 3.2.0 │ MIT ║ -║ 1770 │ imurmurhash │ 0.1.4 │ MIT ║ -║ 1771 │ indent-string │ 4.0.0 │ MIT ║ -║ 1772 │ inflight │ 1.0.6 │ ISC ║ -║ 1773 │ inherits │ 2.0.3 │ ISC ║ -║ 1774 │ inherits │ 2.0.4 │ ISC ║ -║ 1775 │ ini │ 1.3.8 │ ISC ║ -║ 1776 │ inline-style-parser │ 0.1.1 │ MIT ║ -║ 1777 │ inline-style-prefixer │ 7.0.1 │ MIT ║ -║ 1778 │ inquirer │ 8.2.6 │ MIT ║ -║ 1779 │ internal-slot │ 1.0.7 │ MIT ║ -║ 1780 │ interpret │ 2.2.0 │ MIT ║ -║ 1781 │ invalid_main │ NOT-SET │ ║ -║ 1782 │ invariant │ 2.2.4 │ MIT ║ -║ 1783 │ ioredis │ 5.4.1 │ MIT ║ -║ 1784 │ ip-address │ 9.0.5 │ MIT ║ -║ 1785 │ ip-regex │ 4.3.0 │ MIT ║ -║ 1786 │ ipaddr.js │ 1.9.1 │ MIT ║ -║ 1787 │ ipaddr.js │ 2.2.0 │ MIT ║ -║ 1788 │ is-alphabetical │ 1.0.4 │ MIT ║ -║ 1789 │ is-alphanumerical │ 1.0.4 │ MIT ║ -║ 1790 │ is-arguments │ 1.1.1 │ MIT ║ -║ 1791 │ is-array-buffer │ 3.0.4 │ MIT ║ -║ 1792 │ is-arrayish │ 0.2.1 │ MIT ║ -║ 1793 │ is-arrayish │ 0.3.2 │ MIT ║ -║ 1794 │ is-async-function │ 2.0.0 │ MIT ║ -║ 1795 │ is-bigint │ 1.1.0 │ MIT ║ -║ 1796 │ is-binary-path │ 2.1.0 │ MIT ║ -║ 1797 │ is-boolean-object │ 1.2.0 │ MIT ║ -║ 1798 │ is-buffer │ 2.0.5 │ MIT ║ -║ 1799 │ is-callable │ 1.2.7 │ MIT ║ -║ 1800 │ is-cidr │ 4.0.2 │ BSD-2-Clause ║ -║ 1801 │ is-core-module │ 2.15.1 │ MIT ║ -║ 1802 │ is-data-view │ 1.0.1 │ MIT ║ -║ 1803 │ is-date-object │ 1.0.5 │ MIT ║ -║ 1804 │ is-decimal │ 1.0.4 │ MIT ║ -║ 1805 │ is-docker │ 2.2.1 │ MIT ║ -║ 1806 │ is-docker │ 3.0.0 │ MIT ║ -║ 1807 │ is-extglob │ 2.1.1 │ MIT ║ -║ 1808 │ is-finalizationregistry │ 1.1.0 │ MIT ║ -║ 1809 │ is-fullwidth-code-point │ 3.0.0 │ MIT ║ -║ 1810 │ is-generator-fn │ 2.1.0 │ MIT ║ -║ 1811 │ is-generator-function │ 1.0.10 │ MIT ║ -║ 1812 │ is-glob │ 4.0.3 │ MIT ║ -║ 1813 │ is-hexadecimal │ 1.0.4 │ MIT ║ -║ 1814 │ is-in-browser │ 1.1.3 │ MIT ║ -║ 1815 │ is-inside-container │ 1.0.0 │ MIT ║ -║ 1816 │ is-interactive │ 1.0.0 │ MIT ║ -║ 1817 │ is-lambda │ 1.0.1 │ MIT ║ -║ 1818 │ is-map │ 2.0.3 │ MIT ║ -║ 1819 │ is-module │ 1.0.0 │ MIT ║ -║ 1820 │ is-negative-zero │ 2.0.3 │ MIT ║ -║ 1821 │ is-network-error │ 1.1.0 │ MIT ║ -║ 1822 │ is-node-process │ 1.2.0 │ MIT ║ -║ 1823 │ is-number │ 7.0.0 │ MIT ║ -║ 1824 │ is-number-object │ 1.1.0 │ MIT ║ -║ 1825 │ is-path-inside │ 3.0.3 │ MIT ║ -║ 1826 │ is-plain-obj │ 3.0.0 │ MIT ║ -║ 1827 │ is-plain-obj │ 4.1.0 │ MIT ║ -║ 1828 │ is-plain-object │ 5.0.0 │ MIT ║ -║ 1829 │ is-plain-object │ 2.0.4 │ MIT ║ -║ 1830 │ is-potential-custom-element-name │ 1.0.1 │ MIT ║ -║ 1831 │ is-primitive │ 3.0.1 │ MIT ║ -║ 1832 │ is-promise │ 4.0.0 │ MIT ║ -║ 1833 │ is-property │ 1.0.2 │ MIT ║ -║ 1834 │ is-reference │ 1.2.1 │ MIT ║ -║ 1835 │ is-regex │ 1.2.0 │ MIT ║ -║ 1836 │ is-root │ 2.1.0 │ MIT ║ -║ 1837 │ is-set │ 2.0.3 │ MIT ║ -║ 1838 │ is-shared-array-buffer │ 1.0.3 │ MIT ║ -║ 1839 │ is-ssh │ 1.4.0 │ MIT ║ -║ 1840 │ is-stream │ 2.0.1 │ MIT ║ -║ 1841 │ is-string │ 1.1.0 │ MIT ║ -║ 1842 │ is-symbol │ 1.1.0 │ MIT ║ -║ 1843 │ is-typed-array │ 1.1.13 │ MIT ║ -║ 1844 │ is-unicode-supported │ 0.1.0 │ MIT ║ -║ 1845 │ is-weakmap │ 2.0.2 │ MIT ║ -║ 1846 │ is-weakref │ 1.0.2 │ MIT ║ -║ 1847 │ is-weakset │ 2.0.3 │ MIT ║ -║ 1848 │ is-windows │ 1.0.2 │ MIT ║ -║ 1849 │ is-wsl │ 2.2.0 │ MIT ║ -║ 1850 │ is-wsl │ 3.1.0 │ MIT ║ -║ 1851 │ isarray │ 1.0.0 │ MIT ║ -║ 1852 │ isarray │ 2.0.5 │ MIT ║ -║ 1853 │ isbinaryfile │ 5.0.4 │ MIT ║ -║ 1854 │ isexe │ 3.1.1 │ ISC ║ -║ 1855 │ isexe │ 2.0.0 │ ISC ║ -║ 1856 │ isobject │ 3.0.1 │ MIT ║ -║ 1857 │ isolated-vm │ 5.0.2 │ ISC ║ -║ 1858 │ isomorphic-dompurify │ 2.19.0 │ MIT ║ -║ 1859 │ isomorphic-form-data │ 2.0.0 │ MIT ║ -║ 1860 │ isomorphic-git │ 1.27.2 │ MIT ║ -║ 1861 │ isomorphic-rslog │ 0.0.6 │ MIT ║ -║ 1862 │ isomorphic-ws │ 4.0.1 │ MIT ║ -║ 1863 │ isomorphic-ws │ 5.0.0 │ MIT ║ -║ 1864 │ istanbul-lib-coverage │ 3.2.2 │ BSD-3-Clause ║ -║ 1865 │ istanbul-lib-instrument │ 6.0.3 │ BSD-3-Clause ║ -║ 1866 │ istanbul-lib-instrument │ 5.2.1 │ BSD-3-Clause ║ -║ 1867 │ istanbul-lib-report │ 3.0.1 │ BSD-3-Clause ║ -║ 1868 │ istanbul-lib-source-maps │ 4.0.1 │ BSD-3-Clause ║ -║ 1869 │ istanbul-reports │ 3.1.7 │ BSD-3-Clause ║ -║ 1870 │ iterall │ 1.3.0 │ MIT ║ -║ 1871 │ iterator.prototype │ 1.1.3 │ MIT ║ -║ 1872 │ jackspeak │ 3.4.3 │ BlueOak-1.0.0 ║ -║ 1873 │ jest │ 29.7.0 │ MIT ║ -║ 1874 │ jest-changed-files │ 29.7.0 │ MIT ║ -║ 1875 │ jest-circus │ 29.7.0 │ MIT ║ -║ 1876 │ jest-cli │ 29.7.0 │ MIT ║ -║ 1877 │ jest-config │ 29.7.0 │ MIT ║ -║ 1878 │ jest-css-modules │ 2.1.0 │ ISC ║ -║ 1879 │ jest-diff │ 29.7.0 │ MIT ║ -║ 1880 │ jest-docblock │ 29.7.0 │ MIT ║ -║ 1881 │ jest-each │ 29.7.0 │ MIT ║ -║ 1882 │ jest-environment-jsdom │ 29.7.0 │ MIT ║ -║ 1883 │ jest-environment-node │ 29.7.0 │ MIT ║ -║ 1884 │ jest-get-type │ 29.6.3 │ MIT ║ -║ 1885 │ jest-haste-map │ 29.7.0 │ MIT ║ -║ 1886 │ jest-leak-detector │ 29.7.0 │ MIT ║ -║ 1887 │ jest-matcher-utils │ 29.7.0 │ MIT ║ -║ 1888 │ jest-message-util │ 29.7.0 │ MIT ║ -║ 1889 │ jest-mock │ 29.7.0 │ MIT ║ -║ 1890 │ jest-pnp-resolver │ 1.2.3 │ MIT ║ -║ 1891 │ jest-regex-util │ 29.6.3 │ MIT ║ -║ 1892 │ jest-resolve │ 29.7.0 │ MIT ║ -║ 1893 │ jest-resolve-dependencies │ 29.7.0 │ MIT ║ -║ 1894 │ jest-runner │ 29.7.0 │ MIT ║ -║ 1895 │ jest-runtime │ 29.7.0 │ MIT ║ -║ 1896 │ jest-snapshot │ 29.7.0 │ MIT ║ -║ 1897 │ jest-util │ 29.7.0 │ MIT ║ -║ 1898 │ jest-validate │ 29.7.0 │ MIT ║ -║ 1899 │ jest-watcher │ 29.7.0 │ MIT ║ -║ 1900 │ jest-worker │ 29.7.0 │ MIT ║ -║ 1901 │ jest-worker │ 27.5.1 │ MIT ║ -║ 1902 │ jiti │ 2.4.1 │ MIT ║ -║ 1903 │ jmespath │ 0.15.0 │ Apache 2.0 ║ -║ 1904 │ jose │ 5.9.6 │ MIT ║ -║ 1905 │ jose │ 4.15.9 │ MIT ║ -║ 1906 │ js-base64 │ 3.7.7 │ BSD-3-Clause ║ -║ 1907 │ js-cookie │ 2.2.1 │ MIT ║ -║ 1908 │ js-file-download │ 0.4.12 │ MIT ║ -║ 1909 │ js-levenshtein │ 1.1.6 │ MIT ║ -║ 1910 │ js-md4 │ 0.3.2 │ MIT ║ -║ 1911 │ js-tokens │ 4.0.0 │ MIT ║ -║ 1912 │ js-yaml │ 3.14.1 │ MIT ║ -║ 1913 │ js-yaml │ 4.1.0 │ MIT ║ -║ 1914 │ jsbn │ 1.1.0 │ MIT ║ -║ 1915 │ jsdom │ 25.0.1 │ MIT ║ -║ 1916 │ jsdom │ 20.0.3 │ MIT ║ -║ 1917 │ jsep │ 1.4.0 │ MIT ║ -║ 1918 │ jsesc │ 3.0.2 │ MIT ║ -║ 1919 │ json-bigint │ 1.0.0 │ MIT ║ -║ 1920 │ json-buffer │ 3.0.1 │ MIT ║ -║ 1921 │ json-parse-even-better-errors │ 2.3.1 │ MIT ║ -║ 1922 │ json-pointer │ 0.6.2 │ MIT ║ -║ 1923 │ json-schema │ 0.4.0 │ (AFL-2.1 OR BSD-3-Clause) ║ -║ 1924 │ json-schema-compare │ 0.2.2 │ MIT ║ -║ 1925 │ json-schema-library │ 9.3.5 │ MIT ║ -║ 1926 │ json-schema-merge-allof │ 0.8.1 │ MIT ║ -║ 1927 │ json-schema-to-ts │ 3.1.1 │ MIT ║ -║ 1928 │ json-schema-traverse │ 0.4.1 │ MIT ║ -║ 1929 │ json-schema-traverse │ 1.0.0 │ MIT ║ -║ 1930 │ json-stable-stringify-without-jsonify │ 1.0.1 │ MIT ║ -║ 1931 │ json-stringify-safe │ 5.0.1 │ ISC ║ -║ 1932 │ json5 │ 1.0.2 │ MIT ║ -║ 1933 │ json5 │ 2.2.3 │ MIT ║ -║ 1934 │ jsonc-parser │ 3.3.1 │ MIT ║ -║ 1935 │ jsonc-parser │ 2.2.1 │ MIT ║ -║ 1936 │ jsonfile │ 4.0.0 │ MIT ║ -║ 1937 │ jsonfile │ 6.1.0 │ MIT ║ -║ 1938 │ jsonpath │ 1.1.1 │ MIT ║ -║ 1939 │ jsonpath-plus │ 10.3.0 │ MIT ║ -║ 1940 │ jsonpointer │ 5.0.1 │ MIT ║ -║ 1941 │ jsonschema │ 1.4.1 │ MIT ║ -║ 1942 │ jsonwebtoken │ 9.0.2 │ MIT ║ -║ 1943 │ jss │ 10.10.0 │ MIT ║ -║ 1944 │ jss-plugin-camel-case │ 10.10.0 │ MIT ║ -║ 1945 │ jss-plugin-default-unit │ 10.10.0 │ MIT ║ -║ 1946 │ jss-plugin-global │ 10.10.0 │ MIT ║ -║ 1947 │ jss-plugin-nested │ 10.10.0 │ MIT ║ -║ 1948 │ jss-plugin-props-sort │ 10.10.0 │ MIT ║ -║ 1949 │ jss-plugin-rule-value-function │ 10.10.0 │ MIT ║ -║ 1950 │ jss-plugin-vendor-prefixer │ 10.10.0 │ MIT ║ -║ 1951 │ jsx-ast-utils │ 3.3.5 │ MIT ║ -║ 1952 │ jszip │ 3.10.1 │ (MIT OR GPL-3.0-or-later) ║ -║ 1953 │ jwa │ 1.4.1 │ MIT ║ -║ 1954 │ jwa │ 2.0.0 │ MIT ║ -║ 1955 │ jws │ 3.2.2 │ MIT ║ -║ 1956 │ jws │ 4.0.0 │ MIT ║ -║ 1957 │ jwt-decode │ 3.1.2 │ MIT ║ -║ 1958 │ keygrip │ 1.1.0 │ MIT ║ -║ 1959 │ keyv │ 4.5.4 │ MIT ║ -║ 1960 │ kind-of │ 6.0.3 │ MIT ║ -║ 1961 │ kleur │ 3.0.3 │ MIT ║ -║ 1962 │ kleur │ 4.1.5 │ MIT ║ -║ 1963 │ knex │ 3.1.0 │ MIT ║ -║ 1964 │ koa │ 2.15.3 │ MIT ║ -║ 1965 │ koa-compose │ 4.1.0 │ MIT ║ -║ 1966 │ koa-convert │ 2.0.0 │ MIT ║ -║ 1967 │ kubernetes-models │ 4.4.2 │ MIT ║ -║ 1968 │ kuler │ 2.0.0 │ MIT ║ -║ 1969 │ language-subtag-registry │ 0.3.23 │ CC0-1.0 ║ -║ 1970 │ language-tags │ 1.0.9 │ MIT ║ -║ 1971 │ launch-editor │ 2.9.1 │ MIT ║ -║ 1972 │ lazystream │ 1.0.1 │ MIT ║ -║ 1973 │ leven │ 2.1.0 │ MIT ║ -║ 1974 │ leven │ 3.1.0 │ MIT ║ -║ 1975 │ levn │ 0.4.1 │ MIT ║ -║ 1976 │ levn │ 0.3.0 │ MIT ║ -║ 1977 │ li │ 1.3.0 │ MIT ║ -║ 1978 │ libsodium │ 0.7.15 │ ISC ║ -║ 1979 │ libsodium-wrappers │ 0.7.15 │ ISC ║ -║ 1980 │ lie │ 3.3.0 │ MIT ║ -║ 1981 │ lilconfig │ 2.1.0 │ MIT ║ -║ 1982 │ lines-and-columns │ 1.2.4 │ MIT ║ -║ 1983 │ linkify-it │ 5.0.0 │ MIT ║ -║ 1984 │ linkify-it │ 3.0.3 │ MIT ║ -║ 1985 │ linkify-react │ 4.1.3 │ MIT ║ -║ 1986 │ linkifyjs │ 4.1.3 │ MIT ║ -║ 1987 │ ljharb-monorepo-symlink-test │ 0.0.0 │ MIT ║ -║ 1988 │ loader-runner │ 4.3.0 │ MIT ║ -║ 1989 │ loader-utils │ 1.4.2 │ MIT ║ -║ 1990 │ loader-utils │ 3.3.1 │ MIT ║ -║ 1991 │ loader-utils │ 2.0.4 │ MIT ║ -║ 1992 │ locate-path │ 6.0.0 │ MIT ║ -║ 1993 │ locate-path │ 5.0.0 │ MIT ║ -║ 1994 │ locate-path │ 3.0.0 │ MIT ║ -║ 1995 │ lodash │ 4.17.21 │ MIT ║ -║ 1996 │ lodash-es │ 4.17.21 │ MIT ║ -║ 1997 │ lodash.camelcase │ 4.3.0 │ MIT ║ -║ 1998 │ lodash.clonedeep │ 4.5.0 │ MIT ║ -║ 1999 │ lodash.clonedeepwith │ 4.5.0 │ MIT ║ -║ 2000 │ lodash.debounce │ 4.0.8 │ MIT ║ -║ 2001 │ lodash.defaults │ 4.2.0 │ MIT ║ -║ 2002 │ lodash.flattendeep │ 4.4.0 │ MIT ║ -║ 2003 │ lodash.get │ 4.4.2 │ MIT ║ -║ 2004 │ lodash.includes │ 4.3.0 │ MIT ║ -║ 2005 │ lodash.isarguments │ 3.1.0 │ MIT ║ -║ 2006 │ lodash.isboolean │ 3.0.3 │ MIT ║ -║ 2007 │ lodash.isequal │ 4.5.0 │ MIT ║ -║ 2008 │ lodash.isinteger │ 4.0.4 │ MIT ║ -║ 2009 │ lodash.isnumber │ 3.0.3 │ MIT ║ -║ 2010 │ lodash.isplainobject │ 4.0.6 │ MIT ║ -║ 2011 │ lodash.isstring │ 4.0.1 │ MIT ║ -║ 2012 │ lodash.memoize │ 4.1.2 │ MIT ║ -║ 2013 │ lodash.merge │ 4.6.2 │ MIT ║ -║ 2014 │ lodash.once │ 4.1.1 │ MIT ║ -║ 2015 │ lodash.topath │ 4.5.2 │ MIT ║ -║ 2016 │ lodash.uniq │ 4.5.0 │ MIT ║ -║ 2017 │ log-symbols │ 4.1.0 │ MIT ║ -║ 2018 │ log4js │ 6.9.1 │ Apache-2.0 ║ -║ 2019 │ logform │ 2.7.0 │ MIT ║ -║ 2020 │ long │ 5.2.3 │ Apache-2.0 ║ -║ 2021 │ long-timeout │ 0.1.1 │ MIT ║ -║ 2022 │ longest-streak │ 3.1.0 │ MIT ║ -║ 2023 │ loose-envify │ 1.4.0 │ MIT ║ -║ 2024 │ lower-case │ 2.0.2 │ MIT ║ -║ 2025 │ lowercase-keys │ 2.0.0 │ MIT ║ -║ 2026 │ lowlight │ 1.20.0 │ MIT ║ -║ 2027 │ lru-cache │ 5.1.1 │ ISC ║ -║ 2028 │ lru-cache │ 9.1.2 │ ISC ║ -║ 2029 │ lru-cache │ 10.4.3 │ ISC ║ -║ 2030 │ lru-cache │ 7.18.3 │ ISC ║ -║ 2031 │ lru-cache │ 6.0.0 │ ISC ║ -║ 2032 │ lru.min │ 1.1.1 │ MIT ║ -║ 2033 │ lunr │ 2.3.9 │ MIT ║ -║ 2034 │ luxon │ 3.5.0 │ MIT ║ -║ 2035 │ lz-string │ 1.5.0 │ MIT ║ -║ 2036 │ magic-string │ 0.30.15 │ MIT ║ -║ 2037 │ make-dir │ 4.0.0 │ MIT ║ -║ 2038 │ make-error │ 1.3.6 │ ISC ║ -║ 2039 │ make-fetch-happen │ 14.0.3 │ ISC ║ -║ 2040 │ make-fetch-happen │ 13.0.1 │ ISC ║ -║ 2041 │ makeerror │ 1.0.12 │ BSD-3-Clause ║ -║ 2042 │ map-age-cleaner │ 0.2.0 │ MIT ║ -║ 2043 │ markdown-it │ 14.1.0 │ MIT ║ -║ 2044 │ markdown-it │ 12.3.2 │ MIT ║ -║ 2045 │ markdown-table │ 3.0.4 │ MIT ║ -║ 2046 │ markdown-to-jsx │ 7.7.1 │ MIT ║ -║ 2047 │ marked │ 4.3.0 │ MIT ║ -║ 2048 │ matcher │ 3.0.0 │ MIT ║ -║ 2049 │ material-ui-popup-state │ 1.9.3 │ MIT ║ -║ 2050 │ math-intrinsics │ 1.1.0 │ MIT ║ -║ 2051 │ md5.js │ 1.3.5 │ MIT ║ -║ 2052 │ mdast-util-definitions │ 5.1.2 │ MIT ║ -║ 2053 │ mdast-util-find-and-replace │ 2.2.2 │ MIT ║ -║ 2054 │ mdast-util-from-markdown │ 1.3.1 │ MIT ║ -║ 2055 │ mdast-util-gfm │ 2.0.2 │ MIT ║ -║ 2056 │ mdast-util-gfm-autolink-literal │ 1.0.3 │ MIT ║ -║ 2057 │ mdast-util-gfm-footnote │ 1.0.2 │ MIT ║ -║ 2058 │ mdast-util-gfm-strikethrough │ 1.0.3 │ MIT ║ -║ 2059 │ mdast-util-gfm-table │ 1.0.7 │ MIT ║ -║ 2060 │ mdast-util-gfm-task-list-item │ 1.0.2 │ MIT ║ -║ 2061 │ mdast-util-phrasing │ 3.0.1 │ MIT ║ -║ 2062 │ mdast-util-to-hast │ 12.3.0 │ MIT ║ -║ 2063 │ mdast-util-to-markdown │ 1.5.0 │ MIT ║ -║ 2064 │ mdast-util-to-string │ 3.2.0 │ MIT ║ -║ 2065 │ mdn-data │ 2.0.14 │ CC0-1.0 ║ -║ 2066 │ mdurl │ 1.0.1 │ MIT ║ -║ 2067 │ mdurl │ 2.0.0 │ MIT ║ -║ 2068 │ media-typer │ 1.1.0 │ MIT ║ -║ 2069 │ media-typer │ 0.3.0 │ MIT ║ -║ 2070 │ memfs │ 3.5.3 │ Unlicense ║ -║ 2071 │ memfs │ 4.15.0 │ Apache-2.0 ║ -║ 2072 │ memjs │ 1.3.2 │ MIT ║ -║ 2073 │ memoize-one │ 5.2.1 │ MIT ║ -║ 2074 │ merge-descriptors │ 1.0.3 │ MIT ║ -║ 2075 │ merge-stream │ 2.0.0 │ MIT ║ -║ 2076 │ merge2 │ 1.4.1 │ MIT ║ -║ 2077 │ meros │ 1.3.0 │ MIT ║ -║ 2078 │ methods │ 1.1.2 │ MIT ║ -║ 2079 │ micromark │ 3.2.0 │ MIT ║ -║ 2080 │ micromark-core-commonmark │ 1.1.0 │ MIT ║ -║ 2081 │ micromark-extension-gfm │ 2.0.3 │ MIT ║ -║ 2082 │ micromark-extension-gfm-autolink-literal │ 1.0.5 │ MIT ║ -║ 2083 │ micromark-extension-gfm-footnote │ 1.1.2 │ MIT ║ -║ 2084 │ micromark-extension-gfm-strikethrough │ 1.0.7 │ MIT ║ -║ 2085 │ micromark-extension-gfm-table │ 1.0.7 │ MIT ║ -║ 2086 │ micromark-extension-gfm-tagfilter │ 1.0.2 │ MIT ║ -║ 2087 │ micromark-extension-gfm-task-list-item │ 1.0.5 │ MIT ║ -║ 2088 │ micromark-factory-destination │ 1.1.0 │ MIT ║ -║ 2089 │ micromark-factory-label │ 1.1.0 │ MIT ║ -║ 2090 │ micromark-factory-space │ 1.1.0 │ MIT ║ -║ 2091 │ micromark-factory-title │ 1.1.0 │ MIT ║ -║ 2092 │ micromark-factory-whitespace │ 1.1.0 │ MIT ║ -║ 2093 │ micromark-util-character │ 1.2.0 │ MIT ║ -║ 2094 │ micromark-util-chunked │ 1.1.0 │ MIT ║ -║ 2095 │ micromark-util-classify-character │ 1.1.0 │ MIT ║ -║ 2096 │ micromark-util-combine-extensions │ 1.1.0 │ MIT ║ -║ 2097 │ micromark-util-decode-numeric-character-reference │ 1.1.0 │ MIT ║ -║ 2098 │ micromark-util-decode-string │ 1.1.0 │ MIT ║ -║ 2099 │ micromark-util-encode │ 1.1.0 │ MIT ║ -║ 2100 │ micromark-util-html-tag-name │ 1.2.0 │ MIT ║ -║ 2101 │ micromark-util-normalize-identifier │ 1.1.0 │ MIT ║ -║ 2102 │ micromark-util-resolve-all │ 1.1.0 │ MIT ║ -║ 2103 │ micromark-util-sanitize-uri │ 1.2.0 │ MIT ║ -║ 2104 │ micromark-util-subtokenize │ 1.1.0 │ MIT ║ -║ 2105 │ micromark-util-symbol │ 1.1.0 │ MIT ║ -║ 2106 │ micromark-util-types │ 1.1.0 │ MIT ║ -║ 2107 │ micromatch │ 4.0.8 │ MIT ║ -║ 2108 │ miller-rabin │ 4.0.1 │ MIT ║ -║ 2109 │ mime │ 3.0.0 │ MIT ║ -║ 2110 │ mime │ 1.6.0 │ MIT ║ -║ 2111 │ mime │ 2.6.0 │ MIT ║ -║ 2112 │ mime-db │ 1.53.0 │ MIT ║ -║ 2113 │ mime-db │ 1.52.0 │ MIT ║ -║ 2114 │ mime-types │ 2.1.35 │ MIT ║ -║ 2115 │ mimic-fn │ 2.1.0 │ MIT ║ -║ 2116 │ mimic-response │ 1.0.1 │ MIT ║ -║ 2117 │ mimic-response │ 3.1.0 │ MIT ║ -║ 2118 │ min-indent │ 1.0.1 │ MIT ║ -║ 2119 │ mini-css-extract-plugin │ 2.9.2 │ MIT ║ -║ 2120 │ minim │ 0.23.8 │ MIT ║ -║ 2121 │ minimalistic-assert │ 1.0.1 │ ISC ║ -║ 2122 │ minimalistic-crypto-utils │ 1.0.1 │ MIT ║ -║ 2123 │ minimatch │ 5.1.6 │ ISC ║ -║ 2124 │ minimatch │ 3.1.2 │ ISC ║ -║ 2125 │ minimatch │ 7.4.6 │ ISC ║ -║ 2126 │ minimatch │ 9.0.3 │ ISC ║ -║ 2127 │ minimatch │ 9.0.5 │ ISC ║ -║ 2128 │ minimist │ 1.2.8 │ MIT ║ -║ 2129 │ minimisted │ 2.0.1 │ MIT ║ -║ 2130 │ minipass │ 4.2.8 │ ISC ║ -║ 2131 │ minipass │ 7.1.2 │ ISC ║ -║ 2132 │ minipass │ 3.3.6 │ ISC ║ -║ 2133 │ minipass │ 5.0.0 │ ISC ║ -║ 2134 │ minipass-collect │ 2.0.1 │ ISC ║ -║ 2135 │ minipass-fetch │ 4.0.0 │ MIT ║ -║ 2136 │ minipass-fetch │ 3.0.5 │ MIT ║ -║ 2137 │ minipass-flush │ 1.0.5 │ ISC ║ -║ 2138 │ minipass-pipeline │ 1.2.4 │ ISC ║ -║ 2139 │ minipass-sized │ 1.0.3 │ ISC ║ -║ 2140 │ minizlib │ 3.0.1 │ MIT ║ -║ 2141 │ minizlib │ 2.1.2 │ MIT ║ -║ 2142 │ mkdirp │ 3.0.1 │ MIT ║ -║ 2143 │ mkdirp │ 0.5.6 │ MIT ║ -║ 2144 │ mkdirp │ 1.0.4 │ MIT ║ -║ 2145 │ mkdirp-classic │ 0.5.3 │ MIT ║ -║ 2146 │ mockttp │ 3.15.5 │ Apache-2.0 ║ -║ 2147 │ moment │ 2.30.1 │ MIT ║ -║ 2148 │ moo │ 0.5.2 │ BSD-3-Clause ║ -║ 2149 │ morgan │ 1.10.0 │ MIT ║ -║ 2150 │ mri │ 1.1.4 │ MIT ║ -║ 2151 │ mri │ 1.2.0 │ MIT ║ -║ 2152 │ ms │ 2.1.2 │ MIT ║ -║ 2153 │ ms │ 2.0.0 │ MIT ║ -║ 2154 │ ms │ 2.1.3 │ MIT ║ -║ 2155 │ msw │ 1.3.5 │ MIT ║ -║ 2156 │ multer │ 1.4.5-lts.1 │ MIT ║ -║ 2157 │ multicast-dns │ 7.2.5 │ MIT ║ -║ 2158 │ mute-stream │ 0.0.8 │ ISC ║ -║ 2159 │ mylib │ 0.0.0 │ ISC ║ -║ 2160 │ mysql2 │ 3.11.5 │ MIT ║ -║ 2161 │ mz │ 2.7.0 │ MIT ║ -║ 2162 │ named-placeholders │ 1.1.3 │ MIT ║ -║ 2163 │ nan │ 2.22.0 │ MIT ║ -║ 2164 │ nano-css │ 5.6.2 │ Unlicense ║ -║ 2165 │ nanoid │ 3.3.8 │ MIT ║ -║ 2166 │ napi-build-utils │ 1.0.2 │ MIT ║ -║ 2167 │ native-duplexpair │ 1.0.0 │ MIT ║ -║ 2168 │ native-example │ 1.0.0 │ ISC ║ -║ 2169 │ natural-compare │ 1.4.0 │ MIT ║ -║ 2170 │ ndjson │ 2.0.0 │ BSD-3-Clause ║ -║ 2171 │ nearley │ 2.20.1 │ MIT ║ -║ 2172 │ negotiator │ 0.6.3 │ MIT ║ -║ 2173 │ negotiator │ 1.0.0 │ MIT ║ -║ 2174 │ negotiator │ 0.6.4 │ MIT ║ -║ 2175 │ neo-async │ 2.6.2 │ MIT ║ -║ 2176 │ neotraverse │ 0.6.18 │ MIT ║ -║ 2177 │ netmask │ 2.0.2 │ MIT ║ -║ 2178 │ nimma │ 0.2.3 │ Apache-2.0 ║ -║ 2179 │ no-case │ 3.0.4 │ MIT ║ -║ 2180 │ node-abi │ 3.71.0 │ MIT ║ -║ 2181 │ node-abort-controller │ 3.1.1 │ MIT ║ -║ 2182 │ node-addon-api │ 8.3.0 │ MIT ║ -║ 2183 │ node-cache │ 5.1.2 │ MIT ║ -║ 2184 │ node-domexception │ 1.0.0 │ MIT ║ -║ 2185 │ node-fetch │ 2.6.7 │ MIT ║ -║ 2186 │ node-fetch │ 2.7.0 │ MIT ║ -║ 2187 │ node-fetch-commonjs │ 3.3.2 │ MIT ║ -║ 2188 │ node-forge │ 1.3.1 │ (BSD-3-Clause OR GPL-2.0) ║ -║ 2189 │ node-forge-flash │ 0.0.0 │ (BSD-3-Clause OR GPL-2.0) ║ -║ 2190 │ node-gyp │ 11.0.0 │ MIT ║ -║ 2191 │ node-gyp │ 10.3.1 │ MIT ║ -║ 2192 │ node-gyp-build │ 4.8.4 │ MIT ║ -║ 2193 │ node-int64 │ 0.4.0 │ MIT ║ -║ 2194 │ node-libs-browser │ 2.2.1 │ MIT ║ -║ 2195 │ node-releases │ 2.0.19 │ MIT ║ -║ 2196 │ node-schedule │ 2.1.1 │ MIT ║ -║ 2197 │ nopt │ 7.2.1 │ ISC ║ -║ 2198 │ nopt │ 8.0.0 │ ISC ║ -║ 2199 │ normalize-path │ 3.0.0 │ MIT ║ -║ 2200 │ normalize-path │ 2.1.1 │ MIT ║ -║ 2201 │ normalize-url │ 6.1.0 │ MIT ║ -║ 2202 │ npm-bundled │ 2.0.1 │ ISC ║ -║ 2203 │ npm-normalize-package-bin │ 2.0.0 │ ISC ║ -║ 2204 │ npm-packlist │ 5.1.3 │ ISC ║ -║ 2205 │ npm-run-path │ 4.0.1 │ MIT ║ -║ 2206 │ nth-check │ 2.1.1 │ BSD-2-Clause ║ -║ 2207 │ nullthrows │ 1.1.1 │ MIT ║ -║ 2208 │ nunjucks │ 3.2.4 │ BSD-2-Clause ║ -║ 2209 │ nwsapi │ 2.2.16 │ MIT ║ -║ 2210 │ oauth │ 0.10.0 │ MIT ║ -║ 2211 │ oauth │ 0.9.15 │ MIT ║ -║ 2212 │ object-assign │ 4.1.1 │ MIT ║ -║ 2213 │ object-hash │ 3.0.0 │ MIT ║ -║ 2214 │ object-hash │ 2.2.0 │ MIT ║ -║ 2215 │ object-inspect │ 1.13.3 │ MIT ║ -║ 2216 │ object-is │ 1.1.6 │ MIT ║ -║ 2217 │ object-keys │ 1.1.1 │ MIT ║ -║ 2218 │ object.assign │ 4.1.5 │ MIT ║ -║ 2219 │ object.entries │ 1.1.8 │ MIT ║ -║ 2220 │ object.fromentries │ 2.0.8 │ MIT ║ -║ 2221 │ object.groupby │ 1.0.3 │ MIT ║ -║ 2222 │ object.values │ 1.2.0 │ MIT ║ -║ 2223 │ obuf │ 1.1.2 │ MIT ║ -║ 2224 │ octokit │ 3.2.1 │ MIT ║ -║ 2225 │ octokit-plugin-create-pull-request │ 5.1.1 │ MIT ║ -║ 2226 │ oidc-token-hash │ 5.0.3 │ MIT ║ -║ 2227 │ on-finished │ 2.3.0 │ MIT ║ -║ 2228 │ on-finished │ 2.4.1 │ MIT ║ -║ 2229 │ on-headers │ 1.0.2 │ MIT ║ -║ 2230 │ once │ 1.4.0 │ ISC ║ -║ 2231 │ one-time │ 1.0.0 │ MIT ║ -║ 2232 │ onetime │ 5.1.2 │ MIT ║ -║ 2233 │ only │ 0.0.2 │ ║ -║ 2234 │ ono │ 7.1.3 │ MIT ║ -║ 2235 │ open │ 8.4.2 │ MIT ║ -║ 2236 │ open │ 10.1.0 │ MIT ║ -║ 2237 │ openapi-merge │ 1.3.3 │ MIT ║ -║ 2238 │ openapi-path-templating │ 1.6.0 │ Apache-2.0 ║ -║ 2239 │ openapi-sampler │ 1.6.1 │ MIT ║ -║ 2240 │ openapi-server-url-templating │ 1.1.0 │ Apache-2.0 ║ -║ 2241 │ openapi3-ts │ 3.2.0 │ MIT ║ -║ 2242 │ openid-client │ 5.7.1 │ MIT ║ -║ 2243 │ optionator │ 0.9.4 │ MIT ║ -║ 2244 │ optionator │ 0.8.3 │ MIT ║ -║ 2245 │ ora │ 5.4.1 │ MIT ║ -║ 2246 │ os-browserify │ 0.3.0 │ MIT ║ -║ 2247 │ os-tmpdir │ 1.0.2 │ MIT ║ -║ 2248 │ outvariant │ 1.4.3 │ MIT ║ -║ 2249 │ p-cancelable │ 2.1.1 │ MIT ║ -║ 2250 │ p-defer │ 1.0.0 │ MIT ║ -║ 2251 │ p-finally │ 1.0.0 │ MIT ║ -║ 2252 │ p-limit │ 3.1.0 │ MIT ║ -║ 2253 │ p-limit │ 2.3.0 │ MIT ║ -║ 2254 │ p-locate │ 5.0.0 │ MIT ║ -║ 2255 │ p-locate │ 4.1.0 │ MIT ║ -║ 2256 │ p-locate │ 3.0.0 │ MIT ║ -║ 2257 │ p-map │ 4.0.0 │ MIT ║ -║ 2258 │ p-map │ 7.0.3 │ MIT ║ -║ 2259 │ p-queue │ 6.6.2 │ MIT ║ -║ 2260 │ p-retry │ 6.2.1 │ MIT ║ -║ 2261 │ p-timeout │ 3.2.0 │ MIT ║ -║ 2262 │ p-try │ 2.2.0 │ MIT ║ -║ 2263 │ pac-proxy-agent │ 7.1.0 │ MIT ║ -║ 2264 │ pac-resolver │ 7.0.1 │ MIT ║ -║ 2265 │ package-json-from-dist │ 1.0.1 │ BlueOak-1.0.0 ║ -║ 2266 │ pako │ 1.0.11 │ (MIT AND Zlib) ║ -║ 2267 │ param-case │ 3.0.4 │ MIT ║ -║ 2268 │ parent-module │ 1.0.1 │ MIT ║ -║ 2269 │ parse-asn1 │ 5.1.7 │ ISC ║ -║ 2270 │ parse-entities │ 2.0.0 │ MIT ║ -║ 2271 │ parse-json │ 5.2.0 │ MIT ║ -║ 2272 │ parse-multipart-data │ 1.5.0 │ MIT ║ -║ 2273 │ parse-passwd │ 1.0.0 │ MIT ║ -║ 2274 │ parse-path │ 7.0.0 │ MIT ║ -║ 2275 │ parse-url │ 8.1.0 │ MIT ║ -║ 2276 │ parse5 │ 7.2.1 │ MIT ║ -║ 2277 │ parseurl │ 1.3.3 │ MIT ║ -║ 2278 │ pascal-case │ 3.1.2 │ MIT ║ -║ 2279 │ passport │ 0.7.0 │ MIT ║ -║ 2280 │ passport-atlassian-oauth2 │ 2.1.0 │ MIT ║ -║ 2281 │ passport-auth0 │ 1.4.4 │ MIT ║ -║ 2282 │ passport-bitbucket-oauth2 │ 0.1.2 │ MIT ║ -║ 2283 │ passport-github2 │ 0.1.12 │ MIT ║ -║ 2284 │ passport-gitlab2 │ 5.0.0 │ MIT ║ -║ 2285 │ passport-google-oauth20 │ 2.0.0 │ MIT ║ -║ 2286 │ passport-microsoft │ 1.1.0 │ MIT ║ -║ 2287 │ passport-microsoft-examples-login │ 0.1.0 │ MIT ║ -║ 2288 │ passport-oauth │ 1.0.0 │ MIT ║ -║ 2289 │ passport-oauth1 │ 1.3.0 │ MIT ║ -║ 2290 │ passport-oauth2 │ 1.8.0 │ MIT ║ -║ 2291 │ passport-onelogin-oauth │ 0.0.1 │ MIT ║ -║ 2292 │ passport-strategy │ 1.0.0 │ MIT ║ -║ 2293 │ path-browserify │ 0.0.1 │ MIT ║ -║ 2294 │ path-browserify │ 1.0.1 │ MIT ║ -║ 2295 │ path-equal │ 1.2.5 │ MIT ║ -║ 2296 │ path-exists │ 4.0.0 │ MIT ║ -║ 2297 │ path-exists │ 3.0.0 │ MIT ║ -║ 2298 │ path-is-absolute │ 1.0.1 │ MIT ║ -║ 2299 │ path-key │ 3.1.1 │ MIT ║ -║ 2300 │ path-parse │ 1.0.7 │ MIT ║ -║ 2301 │ path-scurry │ 1.11.1 │ BlueOak-1.0.0 ║ -║ 2302 │ path-to-regexp │ 6.3.0 │ MIT ║ -║ 2303 │ path-to-regexp │ 0.1.12 │ MIT ║ -║ 2304 │ path-to-regexp │ 8.2.0 │ MIT ║ -║ 2305 │ path-type │ 4.0.0 │ MIT ║ -║ 2306 │ pause │ 0.0.1 │ ║ -║ 2307 │ pbkdf2 │ 3.1.2 │ MIT ║ -║ 2308 │ pct-encode │ 1.0.3 │ BSD-2-Clause ║ -║ 2309 │ peek-readable │ 4.1.0 │ MIT ║ -║ 2310 │ pend │ 1.2.0 │ MIT ║ -║ 2311 │ performance-now │ 2.1.0 │ MIT ║ -║ 2312 │ pg │ 8.13.1 │ MIT ║ -║ 2313 │ pg-cloudflare │ 1.1.1 │ MIT ║ -║ 2314 │ pg-connection-string │ 2.6.2 │ MIT ║ -║ 2315 │ pg-connection-string │ 2.7.0 │ MIT ║ -║ 2316 │ pg-format │ 1.0.4 │ MIT ║ -║ 2317 │ pg-int8 │ 1.0.1 │ ISC ║ -║ 2318 │ pg-pool │ 3.7.0 │ MIT ║ -║ 2319 │ pg-protocol │ 1.7.0 │ MIT ║ -║ 2320 │ pg-types │ 2.2.0 │ MIT ║ -║ 2321 │ pgpass │ 1.0.5 │ MIT ║ -║ 2322 │ photoswipe │ 5.4.4 │ MIT ║ -║ 2323 │ picocolors │ 1.1.1 │ ISC ║ -║ 2324 │ picomatch │ 2.3.1 │ MIT ║ -║ 2325 │ picomatch │ 4.0.2 │ MIT ║ -║ 2326 │ picomatch-browser │ 2.2.6 │ MIT ║ -║ 2327 │ pify │ 5.0.0 │ MIT ║ -║ 2328 │ pify │ 4.0.1 │ MIT ║ -║ 2329 │ pino │ 5.17.0 │ MIT ║ -║ 2330 │ pino-pretty │ 2.6.1 │ MIT ║ -║ 2331 │ pino-std-serializers │ 2.5.0 │ MIT ║ -║ 2332 │ pirates │ 4.0.6 │ MIT ║ -║ 2333 │ pkg-dir │ 4.2.0 │ MIT ║ -║ 2334 │ pkg-up │ 3.1.0 │ MIT ║ -║ 2335 │ pkginfo │ 0.4.1 │ MIT ║ -║ 2336 │ pkginfo │ 0.2.3 │ ║ -║ 2337 │ playwright │ 1.49.1 │ Apache-2.0 ║ -║ 2338 │ playwright-core │ 1.49.1 │ Apache-2.0 ║ -║ 2339 │ pluralize │ 8.0.0 │ MIT ║ -║ 2340 │ pony-cause │ 1.1.1 │ 0BSD ║ -║ 2341 │ popmotion │ 11.0.3 │ MIT ║ -║ 2342 │ popper.js │ 1.16.1-lts │ MIT ║ -║ 2343 │ portfinder │ 1.0.32 │ MIT ║ -║ 2344 │ possible-typed-array-names │ 1.0.0 │ MIT ║ -║ 2345 │ postcss │ 8.4.49 │ MIT ║ -║ 2346 │ postcss-calc │ 8.2.4 │ MIT ║ -║ 2347 │ postcss-colormin │ 5.3.1 │ MIT ║ -║ 2348 │ postcss-convert-values │ 5.1.3 │ MIT ║ -║ 2349 │ postcss-discard-comments │ 5.1.2 │ MIT ║ -║ 2350 │ postcss-discard-duplicates │ 5.1.0 │ MIT ║ -║ 2351 │ postcss-discard-empty │ 5.1.1 │ MIT ║ -║ 2352 │ postcss-discard-overridden │ 5.1.0 │ MIT ║ -║ 2353 │ postcss-load-config │ 3.1.4 │ MIT ║ -║ 2354 │ postcss-merge-longhand │ 5.1.7 │ MIT ║ -║ 2355 │ postcss-merge-rules │ 5.1.4 │ MIT ║ -║ 2356 │ postcss-minify-font-values │ 5.1.0 │ MIT ║ -║ 2357 │ postcss-minify-gradients │ 5.1.1 │ MIT ║ -║ 2358 │ postcss-minify-params │ 5.1.4 │ MIT ║ -║ 2359 │ postcss-minify-selectors │ 5.2.1 │ MIT ║ -║ 2360 │ postcss-modules │ 4.3.1 │ MIT ║ -║ 2361 │ postcss-modules-extract-imports │ 3.1.0 │ ISC ║ -║ 2362 │ postcss-modules-local-by-default │ 4.1.0 │ MIT ║ -║ 2363 │ postcss-modules-scope │ 3.2.1 │ ISC ║ -║ 2364 │ postcss-modules-values │ 4.0.0 │ ISC ║ -║ 2365 │ postcss-normalize-charset │ 5.1.0 │ MIT ║ -║ 2366 │ postcss-normalize-display-values │ 5.1.0 │ MIT ║ -║ 2367 │ postcss-normalize-positions │ 5.1.1 │ MIT ║ -║ 2368 │ postcss-normalize-repeat-style │ 5.1.1 │ MIT ║ -║ 2369 │ postcss-normalize-string │ 5.1.0 │ MIT ║ -║ 2370 │ postcss-normalize-timing-functions │ 5.1.0 │ MIT ║ -║ 2371 │ postcss-normalize-unicode │ 5.1.1 │ MIT ║ -║ 2372 │ postcss-normalize-url │ 5.1.0 │ MIT ║ -║ 2373 │ postcss-normalize-whitespace │ 5.1.1 │ MIT ║ -║ 2374 │ postcss-ordered-values │ 5.1.3 │ MIT ║ -║ 2375 │ postcss-reduce-initial │ 5.1.2 │ MIT ║ -║ 2376 │ postcss-reduce-transforms │ 5.1.0 │ MIT ║ -║ 2377 │ postcss-selector-parser │ 7.0.0 │ MIT ║ -║ 2378 │ postcss-selector-parser │ 6.1.2 │ MIT ║ -║ 2379 │ postcss-svgo │ 5.1.0 │ MIT ║ -║ 2380 │ postcss-unique-selectors │ 5.1.1 │ MIT ║ -║ 2381 │ postcss-value-parser │ 4.2.0 │ MIT ║ -║ 2382 │ postgres-array │ 2.0.0 │ MIT ║ -║ 2383 │ postgres-bytea │ 1.0.0 │ MIT ║ -║ 2384 │ postgres-date │ 1.0.7 │ MIT ║ -║ 2385 │ postgres-interval │ 1.2.0 │ MIT ║ -║ 2386 │ prebuild-install │ 7.1.2 │ MIT ║ -║ 2387 │ prelude-ls │ 1.2.1 │ MIT ║ -║ 2388 │ prelude-ls │ 1.1.2 │ MIT ║ -║ 2389 │ prettier │ 2.8.8 │ MIT ║ -║ 2390 │ pretty-error │ 4.0.0 │ MIT ║ -║ 2391 │ pretty-format │ 27.5.1 │ MIT ║ -║ 2392 │ pretty-format │ 29.7.0 │ MIT ║ -║ 2393 │ prismjs │ 1.29.0 │ MIT ║ -║ 2394 │ prismjs │ 1.27.0 │ MIT ║ -║ 2395 │ proc-log │ 4.2.0 │ ISC ║ -║ 2396 │ proc-log │ 5.0.0 │ ISC ║ -║ 2397 │ process │ 0.11.10 │ MIT ║ -║ 2398 │ process-nextick-args │ 2.0.1 │ MIT ║ -║ 2399 │ prom-client │ 15.1.3 │ Apache-2.0 ║ -║ 2400 │ promise-retry │ 2.0.1 │ MIT ║ -║ 2401 │ promise.series │ 0.2.0 │ MIT ║ -║ 2402 │ prompts │ 2.4.2 │ MIT ║ -║ 2403 │ prop-types │ 15.8.1 │ MIT ║ -║ 2404 │ property-expr │ 2.0.6 │ MIT ║ -║ 2405 │ property-information │ 5.6.0 │ MIT ║ -║ 2406 │ property-information │ 6.5.0 │ MIT ║ -║ 2407 │ proto3-json-serializer │ 2.0.2 │ Apache-2.0 ║ -║ 2408 │ protobufjs │ 7.4.0 │ BSD-3-Clause ║ -║ 2409 │ protocols │ 2.0.1 │ MIT ║ -║ 2410 │ proxy-addr │ 2.0.7 │ MIT ║ -║ 2411 │ proxy-from-env │ 1.1.0 │ MIT ║ -║ 2412 │ psl │ 1.15.0 │ MIT ║ -║ 2413 │ public-encrypt │ 4.0.3 │ MIT ║ -║ 2414 │ pump │ 3.0.2 │ MIT ║ -║ 2415 │ punycode │ 1.4.1 │ MIT ║ -║ 2416 │ punycode │ 2.3.1 │ MIT ║ -║ 2417 │ punycode.js │ 2.3.1 │ MIT ║ -║ 2418 │ pure-rand │ 6.1.0 │ MIT ║ -║ 2419 │ qs │ 6.13.0 │ BSD-3-Clause ║ -║ 2420 │ qs │ 6.14.0 │ BSD-3-Clause ║ -║ 2421 │ qs │ 6.13.1 │ BSD-3-Clause ║ -║ 2422 │ query-string │ 7.1.3 │ MIT ║ -║ 2423 │ querystring-es3 │ 0.2.1 │ MIT ║ -║ 2424 │ querystringify │ 2.2.0 │ MIT ║ -║ 2425 │ queue-microtask │ 1.2.3 │ MIT ║ -║ 2426 │ queue-tick │ 1.0.1 │ MIT ║ -║ 2427 │ quick-format-unescaped │ 3.0.3 │ MIT ║ -║ 2428 │ quick-lru │ 5.1.1 │ MIT ║ -║ 2429 │ raf-schd │ 4.0.3 │ MIT ║ -║ 2430 │ railroad-diagrams │ 1.0.0 │ CC0-1.0 ║ -║ 2431 │ rambda │ 9.4.0 │ MIT ║ -║ 2432 │ ramda │ 0.30.1 │ MIT ║ -║ 2433 │ ramda-adjunct │ 5.1.0 │ BSD-3-Clause ║ -║ 2434 │ randexp │ 0.4.6 │ MIT ║ -║ 2435 │ randexp │ 0.5.3 │ MIT ║ -║ 2436 │ random-bytes │ 1.0.0 │ MIT ║ -║ 2437 │ randombytes │ 2.1.0 │ MIT ║ -║ 2438 │ randomfill │ 1.0.4 │ MIT ║ -║ 2439 │ range-parser │ 1.2.1 │ MIT ║ -║ 2440 │ rate-limiter-flexible │ 4.0.1 │ ISC ║ -║ 2441 │ raw-body │ 2.5.2 │ MIT ║ -║ 2442 │ raw-loader │ 4.0.2 │ MIT ║ -║ 2443 │ rc │ 1.2.8 │ (BSD-2-Clause OR MIT OR Apache-2.0) ║ -║ 2444 │ rc-progress │ 3.5.1 │ MIT ║ -║ 2445 │ rc-util │ 5.44.0 │ MIT ║ -║ 2446 │ re2-wasm │ 1.0.2 │ Apache-2.0 ║ -║ 2447 │ react │ 18.3.1 │ MIT ║ -║ 2448 │ react-beautiful-dnd │ 13.1.1 │ Apache-2.0 ║ -║ 2449 │ react-copy-to-clipboard │ 5.1.0 │ MIT ║ -║ 2450 │ react-debounce-input │ 3.3.0 │ MIT ║ -║ 2451 │ react-dev-utils │ 12.0.1 │ MIT ║ -║ 2452 │ react-dom │ 18.3.1 │ MIT ║ -║ 2453 │ react-double-scrollbar │ 0.0.15 │ MIT ║ -║ 2454 │ react-draggable │ 4.4.6 │ MIT ║ -║ 2455 │ react-error-boundary │ 4.1.2 │ MIT ║ -║ 2456 │ react-error-overlay │ 6.0.11 │ MIT ║ -║ 2457 │ react-fast-compare │ 3.2.2 │ MIT ║ -║ 2458 │ react-grid-layout │ 1.3.4 │ MIT ║ -║ 2459 │ react-helmet │ 6.1.0 │ MIT ║ -║ 2460 │ react-hook-form │ 7.54.0 │ MIT ║ -║ 2461 │ react-idle-timer │ 5.7.2 │ MIT ║ -║ 2462 │ react-iframe │ 1.8.5 │ ISC ║ -║ 2463 │ react-immutable-proptypes │ 2.2.0 │ MIT ║ -║ 2464 │ react-immutable-pure-component │ 2.2.2 │ MIT ║ -║ 2465 │ react-inspector │ 6.0.2 │ MIT ║ -║ 2466 │ react-is │ 17.0.2 │ MIT ║ -║ 2467 │ react-is │ 16.13.1 │ MIT ║ -║ 2468 │ react-is │ 18.3.1 │ MIT ║ -║ 2469 │ react-markdown │ 8.0.7 │ MIT ║ -║ 2470 │ react-redux │ 7.2.9 │ MIT ║ -║ 2471 │ react-redux │ 9.1.2 │ MIT ║ -║ 2472 │ react-refresh │ 0.14.2 │ MIT ║ -║ 2473 │ react-remove-scroll │ 2.6.0 │ MIT ║ -║ 2474 │ react-remove-scroll-bar │ 2.3.6 │ MIT ║ -║ 2475 │ react-resizable │ 3.0.5 │ MIT ║ -║ 2476 │ react-router │ 6.28.0 │ MIT ║ -║ 2477 │ react-router-dom │ 5.3.4 │ MIT ║ -║ 2478 │ react-router-dom │ 6.22.3 │ MIT ║ -║ 2479 │ react-router-dom │ 6.28.0 │ MIT ║ -║ 2480 │ react-side-effect │ 2.1.2 │ MIT ║ -║ 2481 │ react-sparklines │ 1.7.0 │ MIT ║ -║ 2482 │ react-style-singleton │ 2.2.1 │ MIT ║ -║ 2483 │ react-syntax-highlighter │ 15.6.1 │ MIT ║ -║ 2484 │ react-transition-group │ 4.4.5 │ BSD-3-Clause ║ -║ 2485 │ react-transition-group/CSSTransition │ NOT-SET │ ║ -║ 2486 │ react-transition-group/ReplaceTransition │ NOT-SET │ ║ -║ 2487 │ react-transition-group/SwitchTransition │ NOT-SET │ ║ -║ 2488 │ react-transition-group/Transition │ NOT-SET │ ║ -║ 2489 │ react-transition-group/TransitionGroup │ NOT-SET │ ║ -║ 2490 │ react-transition-group/TransitionGroupContext │ NOT-SET │ ║ -║ 2491 │ react-transition-group/config │ NOT-SET │ ║ -║ 2492 │ react-universal-interface │ 0.6.2 │ ║ -║ 2493 │ react-use │ 17.6.0 │ Unlicense ║ -║ 2494 │ react-virtualized-auto-sizer │ 1.0.24 │ MIT ║ -║ 2495 │ react-window │ 1.8.10 │ MIT ║ -║ 2496 │ read-tls-client-hello │ 1.0.1 │ Apache-2.0 ║ -║ 2497 │ read-yaml-file │ 1.1.0 │ MIT ║ -║ 2498 │ readable-stream │ 2.3.8 │ MIT ║ -║ 2499 │ readable-stream │ 4.5.2 │ MIT ║ -║ 2500 │ readable-stream │ 3.6.2 │ MIT ║ -║ 2501 │ readable-web-to-node-stream │ 3.0.2 │ MIT ║ -║ 2502 │ readdir-glob │ 1.1.3 │ Apache-2.0 ║ -║ 2503 │ readdirp │ 3.6.0 │ MIT ║ -║ 2504 │ rechoir │ 0.8.0 │ MIT ║ -║ 2505 │ recursive-readdir │ 2.2.3 │ MIT ║ -║ 2506 │ redent │ 3.0.0 │ MIT ║ -║ 2507 │ redis-errors │ 1.2.0 │ MIT ║ -║ 2508 │ redis-parser │ 3.0.0 │ MIT ║ -║ 2509 │ redux │ 4.2.1 │ MIT ║ -║ 2510 │ redux │ 5.0.1 │ MIT ║ -║ 2511 │ redux-immutable │ 4.0.0 │ BSD-3-Clause ║ -║ 2512 │ reflect.getprototypeof │ 1.0.8 │ MIT ║ -║ 2513 │ refractor │ 3.6.0 │ MIT ║ -║ 2514 │ regenerate │ 1.4.2 │ MIT ║ -║ 2515 │ regenerate-unicode-properties │ 10.2.0 │ MIT ║ -║ 2516 │ regenerator-runtime │ 0.10.5 │ MIT ║ -║ 2517 │ regenerator-runtime │ 0.11.1 │ MIT ║ -║ 2518 │ regenerator-runtime │ 0.14.1 │ MIT ║ -║ 2519 │ regenerator-transform │ 0.15.2 │ MIT ║ -║ 2520 │ regexp.prototype.flags │ 1.5.3 │ MIT ║ -║ 2521 │ regexpu-core │ 6.2.0 │ MIT ║ -║ 2522 │ regjsgen │ 0.8.0 │ MIT ║ -║ 2523 │ regjsparser │ 0.12.0 │ BSD-2-Clause ║ -║ 2524 │ relateurl │ 0.2.7 │ MIT ║ -║ 2525 │ remark-gfm │ 3.0.1 │ MIT ║ -║ 2526 │ remark-parse │ 10.0.2 │ MIT ║ -║ 2527 │ remark-rehype │ 10.1.0 │ MIT ║ -║ 2528 │ remarkable │ 2.0.1 │ MIT ║ -║ 2529 │ remarkable/linkify │ NOT-SET │ ║ -║ 2530 │ remove-trailing-separator │ 1.1.0 │ ISC ║ -║ 2531 │ renderkid │ 3.0.0 │ MIT ║ -║ 2532 │ repeat-string │ 1.6.1 │ MIT ║ -║ 2533 │ replace-in-file │ 7.2.0 │ MIT ║ -║ 2534 │ require-directory │ 2.1.1 │ MIT ║ -║ 2535 │ require-from-string │ 2.0.2 │ MIT ║ -║ 2536 │ requires-port │ 1.0.0 │ MIT ║ -║ 2537 │ reselect │ 5.1.1 │ MIT ║ -║ 2538 │ resize-observer-polyfill │ 1.5.1 │ MIT ║ -║ 2539 │ resolve │ 2.0.0-next.5 │ MIT ║ -║ 2540 │ resolve │ 1.22.8 │ MIT ║ -║ 2541 │ resolve-alpn │ 1.2.1 │ MIT ║ -║ 2542 │ resolve-cwd │ 3.0.0 │ MIT ║ -║ 2543 │ resolve-dir │ 1.0.1 │ MIT ║ -║ 2544 │ resolve-from │ 4.0.0 │ MIT ║ -║ 2545 │ resolve-from │ 5.0.0 │ MIT ║ -║ 2546 │ resolve-pkg-maps │ 1.0.0 │ MIT ║ -║ 2547 │ resolve.exports │ 2.0.3 │ MIT ║ -║ 2548 │ responselike │ 2.0.1 │ MIT ║ -║ 2549 │ restore-cursor │ 3.1.0 │ MIT ║ -║ 2550 │ ret │ 0.1.15 │ MIT ║ -║ 2551 │ ret │ 0.2.2 │ MIT ║ -║ 2552 │ retry │ 0.12.0 │ MIT ║ -║ 2553 │ retry │ 0.13.1 │ MIT ║ -║ 2554 │ retry-request │ 7.0.2 │ MIT ║ -║ 2555 │ reusify │ 1.0.4 │ MIT ║ -║ 2556 │ rfc4648 │ 1.5.3 │ MIT ║ -║ 2557 │ rfdc │ 1.4.1 │ MIT ║ -║ 2558 │ rifm │ 0.7.0 │ MIT ║ -║ 2559 │ rimraf │ 3.0.2 │ ISC ║ -║ 2560 │ rimraf │ 5.0.10 │ ISC ║ -║ 2561 │ ripemd160 │ 2.0.2 │ MIT ║ -║ 2562 │ roarr │ 2.15.4 │ BSD-3-Clause ║ -║ 2563 │ rollup │ 4.28.1 │ MIT ║ -║ 2564 │ rollup-plugin-dts │ 6.1.1 │ LGPL-3.0-only ║ -║ 2565 │ rollup-plugin-esbuild │ 6.1.1 │ MIT ║ -║ 2566 │ rollup-plugin-postcss │ 4.0.2 │ MIT ║ -║ 2567 │ rollup-pluginutils │ 2.8.2 │ MIT ║ -║ 2568 │ root │ NOT-SET │ ║ -║ 2569 │ rrweb-cssom │ 0.7.1 │ MIT ║ -║ 2570 │ rtl-css-js │ 1.16.1 │ MIT ║ -║ 2571 │ run-applescript │ 7.0.0 │ MIT ║ -║ 2572 │ run-async │ 2.4.1 │ MIT ║ -║ 2573 │ run-parallel │ 1.2.0 │ MIT ║ -║ 2574 │ rxjs │ 7.8.1 │ Apache-2.0 ║ -║ 2575 │ rxjs/ajax │ NOT-SET │ ║ -║ 2576 │ rxjs/fetch │ NOT-SET │ ║ -║ 2577 │ rxjs/operators │ NOT-SET │ ║ -║ 2578 │ rxjs/testing │ NOT-SET │ ║ -║ 2579 │ rxjs/webSocket │ NOT-SET │ ║ -║ 2580 │ sade │ 1.8.1 │ MIT ║ -║ 2581 │ safari-14-idb-fix │ 1.0.6 │ Apache-2.0 ║ -║ 2582 │ safe-array-concat │ 1.1.2 │ MIT ║ -║ 2583 │ safe-buffer │ 5.1.2 │ MIT ║ -║ 2584 │ safe-buffer │ 5.2.1 │ MIT ║ -║ 2585 │ safe-identifier │ 0.4.2 │ ISC ║ -║ 2586 │ safe-regex-test │ 1.0.3 │ MIT ║ -║ 2587 │ safe-stable-stringify │ 1.1.1 │ MIT ║ -║ 2588 │ safe-stable-stringify │ 2.5.0 │ MIT ║ -║ 2589 │ safer-buffer │ 2.1.2 │ MIT ║ -║ 2590 │ sax │ 1.4.1 │ ISC ║ -║ 2591 │ saxes │ 6.0.0 │ ISC ║ -║ 2592 │ scheduler │ 0.23.2 │ MIT ║ -║ 2593 │ schema-utils │ 3.3.0 │ MIT ║ -║ 2594 │ schema-utils │ 2.7.0 │ MIT ║ -║ 2595 │ schema-utils │ 4.2.0 │ MIT ║ -║ 2596 │ schemes │ 1.4.0 │ MIT ║ -║ 2597 │ screenfull │ 5.2.0 │ MIT ║ -║ 2598 │ select-hose │ 2.0.0 │ MIT ║ -║ 2599 │ selfsigned │ 2.4.1 │ MIT ║ -║ 2600 │ semver │ 6.3.1 │ ISC ║ -║ 2601 │ semver │ 7.6.3 │ ISC ║ -║ 2602 │ semver │ 7.7.1 │ ISC ║ -║ 2603 │ semver-compare │ 1.0.0 │ MIT ║ -║ 2604 │ send │ 0.19.0 │ MIT ║ -║ 2605 │ seq-queue │ 0.0.5 │ ║ -║ 2606 │ serialize-error │ 7.0.1 │ MIT ║ -║ 2607 │ serialize-error │ 8.1.0 │ MIT ║ -║ 2608 │ serialize-javascript │ 6.0.2 │ BSD-3-Clause ║ -║ 2609 │ serve-index │ 1.9.1 │ MIT ║ -║ 2610 │ serve-static │ 1.16.2 │ MIT ║ -║ 2611 │ set-cookie-parser │ 2.7.1 │ MIT ║ -║ 2612 │ set-function-length │ 1.2.2 │ MIT ║ -║ 2613 │ set-function-name │ 2.0.2 │ MIT ║ -║ 2614 │ set-harmonic-interval │ 1.0.1 │ Unlicense ║ -║ 2615 │ set-value │ 4.1.0 │ MIT ║ -║ 2616 │ setimmediate │ 1.0.5 │ MIT ║ -║ 2617 │ setprototypeof │ 1.1.0 │ ISC ║ -║ 2618 │ setprototypeof │ 1.2.0 │ ISC ║ -║ 2619 │ sha.js │ 2.4.11 │ (MIT AND BSD-3-Clause) ║ -║ 2620 │ shebang-command │ 2.0.0 │ MIT ║ -║ 2621 │ shebang-regex │ 3.0.0 │ MIT ║ -║ 2622 │ shell-quote │ 1.8.2 │ MIT ║ -║ 2623 │ short-unique-id │ 5.2.0 │ Apache-2.0 ║ -║ 2624 │ side-channel │ 1.1.0 │ MIT ║ -║ 2625 │ side-channel │ 1.0.6 │ MIT ║ -║ 2626 │ side-channel-list │ 1.0.0 │ MIT ║ -║ 2627 │ side-channel-map │ 1.0.1 │ MIT ║ -║ 2628 │ side-channel-weakmap │ 1.0.2 │ MIT ║ -║ 2629 │ signal-exit │ 4.1.0 │ ISC ║ -║ 2630 │ signal-exit │ 3.0.7 │ ISC ║ -║ 2631 │ simple-app │ 0.1.0 │ ║ -║ 2632 │ simple-app-subdir │ 0.1.0 │ ║ -║ 2633 │ simple-concat │ 1.0.1 │ MIT ║ -║ 2634 │ simple-eval │ 1.0.1 │ MIT ║ -║ 2635 │ simple-get │ 4.0.1 │ MIT ║ -║ 2636 │ simple-swizzle │ 0.2.2 │ MIT ║ -║ 2637 │ sisteransi │ 1.0.5 │ MIT ║ -║ 2638 │ slash │ 3.0.0 │ MIT ║ -║ 2639 │ smart-buffer │ 4.2.0 │ MIT ║ -║ 2640 │ smtp-address-parser │ 1.0.10 │ MIT ║ -║ 2641 │ smtp-address-parser │ 1.1.0 │ MIT ║ -║ 2642 │ sockjs │ 0.3.24 │ MIT ║ -║ 2643 │ socks │ 2.8.3 │ MIT ║ -║ 2644 │ socks-proxy-agent │ 7.0.0 │ MIT ║ -║ 2645 │ socks-proxy-agent │ 8.0.5 │ MIT ║ -║ 2646 │ sonic-boom │ 0.7.7 │ MIT ║ -║ 2647 │ sorted-array-functions │ 1.3.0 │ MIT ║ -║ 2648 │ source-list-map │ 2.0.1 │ MIT ║ -║ 2649 │ source-map │ 0.5.7 │ BSD-3-Clause ║ -║ 2650 │ source-map │ 0.7.4 │ BSD-3-Clause ║ -║ 2651 │ source-map │ 0.6.1 │ BSD-3-Clause ║ -║ 2652 │ source-map │ 0.5.6 │ BSD-3-Clause ║ -║ 2653 │ source-map-js │ 1.2.1 │ BSD-3-Clause ║ -║ 2654 │ source-map-support │ 0.5.13 │ MIT ║ -║ 2655 │ source-map-support │ 0.5.21 │ MIT ║ -║ 2656 │ space-separated-tokens │ 1.1.5 │ MIT ║ -║ 2657 │ space-separated-tokens │ 2.0.2 │ MIT ║ -║ 2658 │ spdy │ 4.0.2 │ MIT ║ -║ 2659 │ spdy-transport │ 3.0.0 │ MIT ║ -║ 2660 │ split-ca │ 1.0.1 │ ISC ║ -║ 2661 │ split-on-first │ 1.1.0 │ MIT ║ -║ 2662 │ split2 │ 4.2.0 │ ISC ║ -║ 2663 │ split2 │ 3.2.2 │ ISC ║ -║ 2664 │ sprintf-js │ 1.0.3 │ BSD-3-Clause ║ -║ 2665 │ sprintf-js │ 1.1.3 │ BSD-3-Clause ║ -║ 2666 │ sqlstring │ 2.3.3 │ MIT ║ -║ 2667 │ ssh2 │ 1.16.0 │ MIT ║ -║ 2668 │ ssri │ 10.0.6 │ ISC ║ -║ 2669 │ ssri │ 12.0.0 │ ISC ║ -║ 2670 │ stable │ 0.1.8 │ MIT ║ -║ 2671 │ stack-generator │ 2.0.10 │ MIT ║ -║ 2672 │ stack-trace │ 0.0.10 │ MIT ║ -║ 2673 │ stack-utils │ 2.0.6 │ MIT ║ -║ 2674 │ stackframe │ 1.3.4 │ MIT ║ -║ 2675 │ stacktrace-gps │ 3.1.2 │ MIT ║ -║ 2676 │ stacktrace-js │ 2.0.2 │ MIT ║ -║ 2677 │ standard-as-callback │ 2.1.0 │ MIT ║ -║ 2678 │ static-eval │ 2.0.2 │ MIT ║ -║ 2679 │ statuses │ 1.5.0 │ MIT ║ -║ 2680 │ statuses │ 2.0.1 │ MIT ║ -║ 2681 │ stop-iteration-iterator │ 1.0.0 │ MIT ║ -║ 2682 │ stoppable │ 1.1.0 │ MIT ║ -║ 2683 │ stream-browserify │ 3.0.0 │ MIT ║ -║ 2684 │ stream-browserify │ 2.0.2 │ MIT ║ -║ 2685 │ stream-buffers │ 3.0.3 │ Unlicense ║ -║ 2686 │ stream-events │ 1.0.5 │ MIT ║ -║ 2687 │ stream-http │ 2.8.3 │ MIT ║ -║ 2688 │ stream-shift │ 1.0.3 │ MIT ║ -║ 2689 │ streamroller │ 3.1.5 │ MIT ║ -║ 2690 │ streamsearch │ 1.1.0 │ MIT ║ -║ 2691 │ streamx │ 2.21.0 │ MIT ║ -║ 2692 │ strict-event-emitter │ 0.4.6 │ MIT ║ -║ 2693 │ strict-event-emitter │ 0.2.8 │ MIT ║ -║ 2694 │ strict-uri-encode │ 2.0.0 │ MIT ║ -║ 2695 │ string-env-interpolation │ 1.0.1 │ MIT ║ -║ 2696 │ string-hash │ 1.1.3 │ CC0-1.0 ║ -║ 2697 │ string-length │ 4.0.2 │ MIT ║ -║ 2698 │ string-width │ 5.1.2 │ MIT ║ -║ 2699 │ string-width │ 4.2.3 │ MIT ║ -║ 2700 │ string.prototype.includes │ 2.0.1 │ MIT ║ -║ 2701 │ string.prototype.matchall │ 4.0.11 │ MIT ║ -║ 2702 │ string.prototype.repeat │ 1.0.0 │ MIT ║ -║ 2703 │ string.prototype.trim │ 1.2.9 │ MIT ║ -║ 2704 │ string.prototype.trimend │ 1.0.8 │ MIT ║ -║ 2705 │ string.prototype.trimstart │ 1.0.8 │ MIT ║ -║ 2706 │ string_decoder │ 1.1.1 │ MIT ║ -║ 2707 │ string_decoder │ 1.3.0 │ MIT ║ -║ 2708 │ strip-ansi │ 7.1.0 │ MIT ║ -║ 2709 │ strip-ansi │ 5.2.0 │ MIT ║ -║ 2710 │ strip-ansi │ 6.0.1 │ MIT ║ -║ 2711 │ strip-bom │ 4.0.0 │ MIT ║ -║ 2712 │ strip-bom │ 3.0.0 │ MIT ║ -║ 2713 │ strip-final-newline │ 2.0.0 │ MIT ║ -║ 2714 │ strip-indent │ 3.0.0 │ MIT ║ -║ 2715 │ strip-json-comments │ 2.0.1 │ MIT ║ -║ 2716 │ strip-json-comments │ 3.1.1 │ MIT ║ -║ 2717 │ strnum │ 1.0.5 │ MIT ║ -║ 2718 │ strtok3 │ 6.3.0 │ MIT ║ -║ 2719 │ stubs │ 3.0.0 │ MIT ║ -║ 2720 │ style-inject │ 0.3.0 │ MIT ║ -║ 2721 │ style-loader │ 3.3.4 │ MIT ║ -║ 2722 │ style-mod │ 4.1.2 │ MIT ║ -║ 2723 │ style-to-object │ 0.4.4 │ MIT ║ -║ 2724 │ style-value-types │ 5.0.0 │ MIT ║ -║ 2725 │ stylehacks │ 5.1.1 │ MIT ║ -║ 2726 │ stylis │ 4.3.4 │ MIT ║ -║ 2727 │ stylis │ 4.2.0 │ MIT ║ -║ 2728 │ sucrase │ 3.35.0 │ MIT ║ -║ 2729 │ superagent │ 8.1.2 │ MIT ║ -║ 2730 │ supertest │ 6.3.4 │ MIT ║ -║ 2731 │ supports-color │ 5.5.0 │ MIT ║ -║ 2732 │ supports-color │ 8.1.1 │ MIT ║ -║ 2733 │ supports-color │ 7.2.0 │ MIT ║ -║ 2734 │ supports-preserve-symlinks-flag │ 1.0.0 │ MIT ║ -║ 2735 │ svg-parser │ 2.0.4 │ MIT ║ -║ 2736 │ svgo │ 2.8.0 │ MIT ║ -║ 2737 │ swagger-client │ 3.32.2 │ Apache-2.0 ║ -║ 2738 │ swagger-ui-react │ 5.18.2 │ Apache-2.0 ║ -║ 2739 │ swc-loader │ 0.2.6 │ MIT ║ -║ 2740 │ swr │ 2.2.5 │ MIT ║ -║ 2741 │ symbol-observable │ 1.2.0 │ MIT ║ -║ 2742 │ symbol-tree │ 3.2.4 │ MIT ║ -║ 2743 │ tapable │ 1.1.3 │ MIT ║ -║ 2744 │ tapable │ 2.2.1 │ MIT ║ -║ 2745 │ tar │ 7.4.3 │ ISC ║ -║ 2746 │ tar │ 6.2.1 │ ISC ║ -║ 2747 │ tar-fs │ 2.1.1 │ MIT ║ -║ 2748 │ tar-fs │ 2.0.1 │ MIT ║ -║ 2749 │ tar-stream │ 2.2.0 │ MIT ║ -║ 2750 │ tar-stream │ 3.1.7 │ MIT ║ -║ 2751 │ tarn │ 3.0.2 │ MIT ║ -║ 2752 │ tdigest │ 0.1.2 │ MIT ║ -║ 2753 │ teeny-request │ 9.0.0 │ Apache-2.0 ║ -║ 2754 │ terser │ 5.37.0 │ BSD-2-Clause ║ -║ 2755 │ terser-webpack-plugin │ 5.3.10 │ MIT ║ -║ 2756 │ test-exclude │ 6.0.0 │ ISC ║ -║ 2757 │ text-decoder │ 1.2.2 │ Apache-2.0 ║ -║ 2758 │ text-hex │ 1.0.0 │ MIT ║ -║ 2759 │ text-table │ 0.2.0 │ MIT ║ -║ 2760 │ thenify │ 3.3.1 │ MIT ║ -║ 2761 │ thenify-all │ 1.6.0 │ MIT ║ -║ 2762 │ thingies │ 1.21.0 │ Unlicense ║ -║ 2763 │ throttle-debounce │ 3.0.1 │ MIT ║ -║ 2764 │ through │ 2.3.8 │ MIT ║ -║ 2765 │ through2 │ 4.0.2 │ MIT ║ -║ 2766 │ thunky │ 1.1.0 │ MIT ║ -║ 2767 │ tildify │ 2.0.0 │ MIT ║ -║ 2768 │ timers-browserify │ 2.0.12 │ MIT ║ -║ 2769 │ tiny-case │ 1.0.3 │ MIT ║ -║ 2770 │ tiny-invariant │ 1.3.3 │ MIT ║ -║ 2771 │ tiny-warning │ 1.0.3 │ MIT ║ -║ 2772 │ tinyglobby │ 0.2.10 │ MIT ║ -║ 2773 │ tldts │ 6.1.66 │ MIT ║ -║ 2774 │ tldts-core │ 6.1.66 │ MIT ║ -║ 2775 │ tmp │ 0.0.33 │ MIT ║ -║ 2776 │ tmp │ 0.2.3 │ MIT ║ -║ 2777 │ tmp-promise │ 3.0.3 │ MIT ║ -║ 2778 │ tmpl │ 1.0.5 │ BSD-3-Clause ║ -║ 2779 │ to-arraybuffer │ 1.0.1 │ MIT ║ -║ 2780 │ to-regex-range │ 5.0.1 │ MIT ║ -║ 2781 │ toggle-selection │ 1.0.6 │ MIT ║ -║ 2782 │ toidentifier │ 1.0.1 │ MIT ║ -║ 2783 │ token-types │ 4.2.1 │ MIT ║ -║ 2784 │ toposort │ 2.0.2 │ MIT ║ -║ 2785 │ tosource │ 2.0.0-alpha.3 │ ║ -║ 2786 │ tough-cookie │ 5.0.0 │ BSD-3-Clause ║ -║ 2787 │ tough-cookie │ 4.1.4 │ BSD-3-Clause ║ -║ 2788 │ tr46 │ 3.0.0 │ MIT ║ -║ 2789 │ tr46 │ 5.0.0 │ MIT ║ -║ 2790 │ tr46 │ 0.0.3 │ MIT ║ -║ 2791 │ tree-dump │ 1.0.2 │ Apache-2.0 ║ -║ 2792 │ tree-sitter │ 0.21.1 │ MIT ║ -║ 2793 │ tree-sitter-json │ 0.24.8 │ MIT ║ -║ 2794 │ trim-lines │ 3.0.1 │ MIT ║ -║ 2795 │ triple-beam │ 1.4.1 │ MIT ║ -║ 2796 │ trough │ 2.2.0 │ MIT ║ -║ 2797 │ tryer │ 1.0.1 │ MIT ║ -║ 2798 │ ts-algebra │ 2.0.0 │ MIT ║ -║ 2799 │ ts-api-utils │ 1.4.3 │ MIT ║ -║ 2800 │ ts-easing │ 0.2.0 │ Unlicense ║ -║ 2801 │ ts-interface-checker │ 0.1.13 │ Apache-2.0 ║ -║ 2802 │ ts-is-present │ 1.2.2 │ MIT ║ -║ 2803 │ ts-mixer │ 6.0.4 │ MIT ║ -║ 2804 │ ts-morph │ 24.0.0 │ MIT ║ -║ 2805 │ ts-node │ 10.9.2 │ MIT ║ -║ 2806 │ ts-toolbelt │ 9.6.0 │ Apache-2.0 ║ -║ 2807 │ ts-use │ NOT-SET │ ║ -║ 2808 │ tsconfig-paths │ 3.15.0 │ MIT ║ -║ 2809 │ tslib │ 2.8.1 │ 0BSD ║ -║ 2810 │ tslib │ 1.14.1 │ 0BSD ║ -║ 2811 │ tsscmp │ 1.0.6 │ MIT ║ -║ 2812 │ tsutils │ 3.21.0 │ MIT ║ -║ 2813 │ tty-browserify │ 0.0.0 │ MIT ║ -║ 2814 │ tunnel │ 0.0.6 │ MIT ║ -║ 2815 │ tunnel-agent │ 0.6.0 │ Apache-2.0 ║ -║ 2816 │ tweetnacl │ 0.14.5 │ Unlicense ║ -║ 2817 │ type-check │ 0.4.0 │ MIT ║ -║ 2818 │ type-check │ 0.3.2 │ MIT ║ -║ 2819 │ type-detect │ 4.0.8 │ MIT ║ -║ 2820 │ type-fest │ 0.21.3 │ (MIT OR CC0-1.0) ║ -║ 2821 │ type-fest │ 0.13.1 │ (MIT OR CC0-1.0) ║ -║ 2822 │ type-fest │ 2.19.0 │ (MIT OR CC0-1.0) ║ -║ 2823 │ type-fest │ 0.20.2 │ (MIT OR CC0-1.0) ║ -║ 2824 │ type-is │ 1.6.18 │ MIT ║ -║ 2825 │ typed-array-buffer │ 1.0.2 │ MIT ║ -║ 2826 │ typed-array-byte-length │ 1.0.1 │ MIT ║ -║ 2827 │ typed-array-byte-offset │ 1.0.3 │ MIT ║ -║ 2828 │ typed-array-length │ 1.0.7 │ MIT ║ -║ 2829 │ typed-error │ 3.2.2 │ Apache-2.0 ║ -║ 2830 │ typed-rest-client │ 2.1.0 │ MIT ║ -║ 2831 │ typedarray │ 0.0.6 │ MIT ║ -║ 2832 │ types-ramda │ 0.30.1 │ MIT ║ -║ 2833 │ typescript │ 5.4.5 │ Apache-2.0 ║ -║ 2834 │ typescript │ 5.5.4 │ Apache-2.0 ║ -║ 2835 │ typescript-json-schema │ 0.65.1 │ BSD-3-Clause ║ -║ 2836 │ uc.micro │ 1.0.6 │ MIT ║ -║ 2837 │ uc.micro │ 2.1.0 │ MIT ║ -║ 2838 │ uglify-js │ 3.19.3 │ BSD-2-Clause ║ -║ 2839 │ uid-safe │ 2.1.5 │ MIT ║ -║ 2840 │ uid2 │ 1.0.0 │ MIT ║ -║ 2841 │ uid2 │ 0.0.3 │ ║ -║ 2842 │ uid2 │ 0.0.4 │ MIT ║ -║ 2843 │ unbox-primitive │ 1.0.2 │ MIT ║ -║ 2844 │ underscore │ 1.13.7 │ MIT ║ -║ 2845 │ underscore │ 1.12.1 │ MIT ║ -║ 2846 │ undici │ 7.3.0 │ MIT ║ -║ 2847 │ undici-types │ 6.20.0 │ MIT ║ -║ 2848 │ undici-types │ 6.19.8 │ MIT ║ -║ 2849 │ undici-types │ 5.26.5 │ MIT ║ -║ 2850 │ unicode-canonical-property-names-ecmascript │ 2.0.1 │ MIT ║ -║ 2851 │ unicode-match-property-ecmascript │ 2.0.0 │ MIT ║ -║ 2852 │ unicode-match-property-value-ecmascript │ 2.2.0 │ MIT ║ -║ 2853 │ unicode-property-aliases-ecmascript │ 2.1.0 │ MIT ║ -║ 2854 │ unified │ 10.1.2 │ MIT ║ -║ 2855 │ unique-filename │ 3.0.0 │ ISC ║ -║ 2856 │ unique-filename │ 4.0.0 │ ISC ║ -║ 2857 │ unique-slug │ 4.0.0 │ ISC ║ -║ 2858 │ unique-slug │ 5.0.0 │ ISC ║ -║ 2859 │ unist-util-generated │ 2.0.1 │ MIT ║ -║ 2860 │ unist-util-is │ 5.2.1 │ MIT ║ -║ 2861 │ unist-util-position │ 4.0.4 │ MIT ║ -║ 2862 │ unist-util-stringify-position │ 3.0.3 │ MIT ║ -║ 2863 │ unist-util-visit │ 4.1.2 │ MIT ║ -║ 2864 │ unist-util-visit-parents │ 5.1.3 │ MIT ║ -║ 2865 │ universal-github-app-jwt │ 1.2.0 │ MIT ║ -║ 2866 │ universal-user-agent │ 6.0.1 │ ISC ║ -║ 2867 │ universalify │ 0.1.2 │ MIT ║ -║ 2868 │ universalify │ 0.2.0 │ MIT ║ -║ 2869 │ universalify │ 2.0.1 │ MIT ║ -║ 2870 │ unixify │ 1.0.0 │ MIT ║ -║ 2871 │ unpipe │ 1.0.0 │ MIT ║ -║ 2872 │ unraw │ 3.0.0 │ MIT ║ -║ 2873 │ upath │ 2.0.1 │ MIT ║ -║ 2874 │ update-browserslist-db │ 1.1.1 │ MIT ║ -║ 2875 │ uri-js │ 4.4.1 │ BSD-2-Clause ║ -║ 2876 │ uri-template │ 2.0.0 │ MIT ║ -║ 2877 │ urijs │ 1.19.11 │ MIT ║ -║ 2878 │ url │ 0.11.4 │ MIT ║ -║ 2879 │ url-parse │ 1.5.10 │ MIT ║ -║ 2880 │ urlpattern-polyfill │ 8.0.2 │ MIT ║ -║ 2881 │ urlpattern-polyfill │ 10.0.0 │ MIT ║ -║ 2882 │ use-callback-ref │ 1.3.2 │ MIT ║ -║ 2883 │ use-immer │ 0.10.0 │ MIT ║ -║ 2884 │ use-memo-one │ 1.1.3 │ MIT ║ -║ 2885 │ use-resize-observer │ 9.1.0 │ MIT ║ -║ 2886 │ use-sidecar │ 1.1.2 │ MIT ║ -║ 2887 │ use-sync-external-store │ 1.4.0 │ MIT ║ -║ 2888 │ util │ 0.10.4 │ MIT ║ -║ 2889 │ util │ 0.11.1 │ MIT ║ -║ 2890 │ util │ 0.12.5 │ MIT ║ -║ 2891 │ util-deprecate │ 1.0.2 │ MIT ║ -║ 2892 │ utila │ 0.4.0 │ MIT ║ -║ 2893 │ utility-types │ 3.11.0 │ MIT ║ -║ 2894 │ utils-merge │ 1.0.1 │ MIT ║ -║ 2895 │ uuid │ 9.0.1 │ MIT ║ -║ 2896 │ uuid │ 8.3.2 │ MIT ║ -║ 2897 │ uuid │ 3.4.0 │ MIT ║ -║ 2898 │ uuid │ 11.0.3 │ MIT ║ -║ 2899 │ uvu │ 0.5.6 │ MIT ║ -║ 2900 │ v8-compile-cache-lib │ 3.0.1 │ MIT ║ -║ 2901 │ v8-to-istanbul │ 9.3.0 │ ISC ║ -║ 2902 │ valid-url │ 1.0.9 │ ║ -║ 2903 │ validate.io-array │ 1.0.6 │ MIT ║ -║ 2904 │ validate.io-function │ 1.0.2 │ MIT ║ -║ 2905 │ validate.io-integer │ 1.0.5 │ MIT ║ -║ 2906 │ validate.io-integer-array │ 1.0.0 │ MIT ║ -║ 2907 │ validate.io-number │ 1.0.3 │ MIT ║ -║ 2908 │ value-or-promise │ 1.0.11 │ MIT ║ -║ 2909 │ value-or-promise │ 1.0.12 │ MIT ║ -║ 2910 │ vary │ 1.1.2 │ MIT ║ -║ 2911 │ vfile │ 5.3.7 │ MIT ║ -║ 2912 │ vfile-message │ 3.1.4 │ MIT ║ -║ 2913 │ vm-browserify │ 1.1.2 │ MIT ║ -║ 2914 │ vscode-languageserver-types │ 3.17.5 │ MIT ║ -║ 2915 │ w3c-keyname │ 2.2.8 │ MIT ║ -║ 2916 │ w3c-xmlserializer │ 5.0.0 │ MIT ║ -║ 2917 │ w3c-xmlserializer │ 4.0.0 │ MIT ║ -║ 2918 │ walker │ 1.0.8 │ Apache-2.0 ║ -║ 2919 │ watchpack │ 2.4.2 │ MIT ║ -║ 2920 │ wbuf │ 1.7.3 │ MIT ║ -║ 2921 │ wcwidth │ 1.0.1 │ MIT ║ -║ 2922 │ web-encoding │ 1.1.5 │ MIT ║ -║ 2923 │ web-streams-polyfill │ 3.3.3 │ MIT ║ -║ 2924 │ web-streams-polyfill-es2018 │ NOT-SET │ ║ -║ 2925 │ web-streams-polyfill-es6 │ NOT-SET │ ║ -║ 2926 │ web-streams-ponyfill │ NOT-SET │ ║ -║ 2927 │ web-streams-ponyfill-es2018 │ NOT-SET │ ║ -║ 2928 │ web-streams-ponyfill-es6 │ NOT-SET │ ║ -║ 2929 │ web-tree-sitter │ 0.24.3 │ MIT ║ -║ 2930 │ webidl-conversions │ 7.0.0 │ BSD-2-Clause ║ -║ 2931 │ webidl-conversions │ 3.0.1 │ BSD-2-Clause ║ -║ 2932 │ webpack │ 5.97.1 │ MIT ║ -║ 2933 │ webpack-dev-middleware │ 7.4.2 │ MIT ║ -║ 2934 │ webpack-dev-server │ 5.1.0 │ MIT ║ -║ 2935 │ webpack-sources │ 3.2.3 │ MIT ║ -║ 2936 │ webpack-sources │ 1.4.3 │ MIT ║ -║ 2937 │ websocket-driver │ 0.7.4 │ Apache-2.0 ║ -║ 2938 │ websocket-extensions │ 0.1.4 │ Apache-2.0 ║ -║ 2939 │ whatwg-encoding │ 3.1.1 │ MIT ║ -║ 2940 │ whatwg-encoding │ 2.0.0 │ MIT ║ -║ 2941 │ whatwg-mimetype │ 4.0.0 │ MIT ║ -║ 2942 │ whatwg-mimetype │ 3.0.0 │ MIT ║ -║ 2943 │ whatwg-url │ 11.0.0 │ MIT ║ -║ 2944 │ whatwg-url │ 14.1.0 │ MIT ║ -║ 2945 │ whatwg-url │ 5.0.0 │ MIT ║ -║ 2946 │ which │ 5.0.0 │ ISC ║ -║ 2947 │ which │ 2.0.2 │ ISC ║ -║ 2948 │ which │ 4.0.0 │ ISC ║ -║ 2949 │ which │ 1.3.1 │ ISC ║ -║ 2950 │ which-boxed-primitive │ 1.1.0 │ MIT ║ -║ 2951 │ which-builtin-type │ 1.2.0 │ MIT ║ -║ 2952 │ which-collection │ 1.0.2 │ MIT ║ -║ 2953 │ which-typed-array │ 1.1.16 │ MIT ║ -║ 2954 │ winston │ 3.17.0 │ MIT ║ -║ 2955 │ winston-daily-rotate-file │ 5.0.0 │ MIT ║ -║ 2956 │ winston-transport │ 4.9.0 │ MIT ║ -║ 2957 │ word-wrap │ 1.2.5 │ MIT ║ -║ 2958 │ wordwrap │ 1.0.0 │ MIT ║ -║ 2959 │ wrap-ansi │ 8.1.0 │ MIT ║ -║ 2960 │ wrap-ansi │ 6.2.0 │ MIT ║ -║ 2961 │ wrap-ansi │ 7.0.0 │ MIT ║ -║ 2962 │ wrappy │ 1.0.2 │ ISC ║ -║ 2963 │ write-file-atomic │ 4.0.2 │ ISC ║ -║ 2964 │ ws │ 8.18.0 │ MIT ║ -║ 2965 │ xcase │ 2.0.1 │ MIT ║ -║ 2966 │ xml │ 1.0.1 │ MIT ║ -║ 2967 │ xml-but-prettier │ 1.0.1 │ MIT ║ -║ 2968 │ xml-crypto │ 6.0.1 │ MIT ║ -║ 2969 │ xml-encryption │ 3.0.2 │ MIT ║ -║ 2970 │ xml-name-validator │ 5.0.0 │ Apache-2.0 ║ -║ 2971 │ xml-name-validator │ 4.0.0 │ Apache-2.0 ║ -║ 2972 │ xml2js │ 0.6.2 │ MIT ║ -║ 2973 │ xmlbuilder │ 15.1.1 │ MIT ║ -║ 2974 │ xmlbuilder │ 11.0.1 │ MIT ║ -║ 2975 │ xmlchars │ 2.2.0 │ MIT ║ -║ 2976 │ xpath │ 0.0.33 │ MIT ║ -║ 2977 │ xpath │ 0.0.32 │ MIT ║ -║ 2978 │ xpath │ 0.0.34 │ MIT ║ -║ 2979 │ xtend │ 4.0.2 │ MIT ║ -║ 2980 │ xterm │ 5.3.0 │ MIT ║ -║ 2981 │ xterm-addon-attach │ 0.9.0 │ MIT ║ -║ 2982 │ xterm-addon-fit │ 0.8.0 │ MIT ║ -║ 2983 │ y18n │ 5.0.8 │ ISC ║ -║ 2984 │ yallist │ 3.1.1 │ ISC ║ -║ 2985 │ yallist │ 5.0.0 │ BlueOak-1.0.0 ║ -║ 2986 │ yallist │ 4.0.0 │ ISC ║ -║ 2987 │ yaml │ 2.6.1 │ ISC ║ -║ 2988 │ yaml │ 1.10.2 │ ISC ║ -║ 2989 │ yaml │ 2.7.0 │ ISC ║ -║ 2990 │ yargs │ 16.2.0 │ MIT ║ -║ 2991 │ yargs │ 17.7.2 │ MIT ║ -║ 2992 │ yargs-parser │ 20.2.9 │ ISC ║ -║ 2993 │ yargs-parser │ 21.1.1 │ ISC ║ -║ 2994 │ yauzl │ 3.2.0 │ MIT ║ -║ 2995 │ ylru │ 1.4.0 │ MIT ║ -║ 2996 │ yml-loader │ 2.1.0 │ MIT ║ -║ 2997 │ yn │ 3.1.1 │ MIT ║ -║ 2998 │ yn │ 4.0.0 │ MIT ║ -║ 2999 │ yocto-queue │ 0.1.0 │ MIT ║ -║ 3000 │ yup │ 1.5.0 │ MIT ║ -║ 3001 │ zen-observable │ 0.10.0 │ MIT ║ -║ 3002 │ zenscroll │ 4.0.2 │ Unlicense ║ -║ 3003 │ zip-stream │ 5.0.2 │ MIT ║ -║ 3004 │ zip-stream │ 6.0.1 │ MIT ║ -║ 3005 │ zod │ 3.24.0 │ MIT ║ -║ 3006 │ zod-to-json-schema │ 3.23.5 │ ISC ║ -║ 3007 │ zod-validation-error │ 3.4.0 │ MIT ║ -║ 3008 │ zstd-codec │ 0.1.5 │ MIT ║ -║ 3009 │ zwitch │ 2.0.4 │ MIT ║ +║ 495 │ @keyv/memcache │ 2.0.1 │ MIT ║ +║ 496 │ @keyv/redis │ 2.8.5 │ MIT ║ +║ 497 │ @keyv/redis │ 4.3.4 │ MIT ║ +║ 498 │ @keyv/serialize │ 1.0.3 │ MIT ║ +║ 499 │ @kubernetes-models/apimachinery │ 2.0.2 │ MIT ║ +║ 500 │ @kubernetes-models/base │ 5.0.1 │ MIT ║ +║ 501 │ @kubernetes-models/validate │ 4.0.0 │ MIT ║ +║ 502 │ @kubernetes/client-node │ 1.1.2 │ Apache-2.0 ║ +║ 503 │ @kwsites/file-exists │ 1.1.1 │ MIT ║ +║ 504 │ @kwsites/promise-deferred │ 1.1.1 │ MIT ║ +║ 505 │ @leichtgewicht/ip-codec │ 2.0.5 │ MIT ║ +║ 506 │ @lezer/common │ 1.2.3 │ MIT ║ +║ 507 │ @lezer/highlight │ 1.2.1 │ MIT ║ +║ 508 │ @lezer/lr │ 1.4.2 │ MIT ║ +║ 509 │ @manypkg/find-root │ 1.1.0 │ MIT ║ +║ 510 │ @manypkg/get-packages │ 1.1.3 │ MIT ║ +║ 511 │ @marijn/find-cluster-break │ 1.0.2 │ MIT ║ +║ 512 │ @material-table/core │ 3.2.5 │ MIT ║ +║ 513 │ @material-ui/core │ 4.12.4 │ MIT ║ +║ 514 │ @material-ui/icons │ 4.11.3 │ MIT ║ +║ 515 │ @material-ui/lab │ 4.0.0-alpha.61 │ MIT ║ +║ 516 │ @material-ui/pickers │ 3.3.11 │ MIT ║ +║ 517 │ @material-ui/styles │ 4.11.5 │ MIT ║ +║ 518 │ @material-ui/system │ 4.12.2 │ MIT ║ +║ 519 │ @material-ui/types │ 5.1.0 │ MIT ║ +║ 520 │ @material-ui/types │ 6.0.2 │ MIT ║ +║ 521 │ @material-ui/utils │ 4.11.3 │ MIT ║ +║ 522 │ @microsoft/fetch-event-source │ 2.0.1 │ MIT ║ +║ 523 │ @module-federation/bridge-react-webpack-plugin │ 0.8.12 │ MIT ║ +║ 524 │ @module-federation/data-prefetch │ 0.8.12 │ MIT ║ +║ 525 │ @module-federation/dts-plugin │ 0.8.12 │ MIT ║ +║ 526 │ @module-federation/enhanced │ 0.8.12 │ MIT ║ +║ 527 │ @module-federation/error-codes │ 0.8.12 │ MIT ║ +║ 528 │ @module-federation/inject-external-runtime-core-plugin │ 0.8.12 │ MIT ║ +║ 529 │ @module-federation/managers │ 0.8.12 │ MIT ║ +║ 530 │ @module-federation/manifest │ 0.8.12 │ MIT ║ +║ 531 │ @module-federation/rspack │ 0.8.12 │ MIT ║ +║ 532 │ @module-federation/runtime │ 0.8.12 │ MIT ║ +║ 533 │ @module-federation/runtime-core │ 0.6.20 │ MIT ║ +║ 534 │ @module-federation/runtime-tools │ 0.8.12 │ MIT ║ +║ 535 │ @module-federation/sdk │ 0.8.12 │ MIT ║ +║ 536 │ @module-federation/third-party-dts-extractor │ 0.8.12 │ MIT ║ +║ 537 │ @module-federation/webpack-bundler-runtime │ 0.8.12 │ MIT ║ +║ 538 │ @motionone/animation │ 10.18.0 │ MIT ║ +║ 539 │ @motionone/dom │ 10.12.0 │ MIT ║ +║ 540 │ @motionone/easing │ 10.18.0 │ MIT ║ +║ 541 │ @motionone/generators │ 10.18.0 │ MIT ║ +║ 542 │ @motionone/types │ 10.17.1 │ MIT ║ +║ 543 │ @motionone/utils │ 10.18.0 │ MIT ║ +║ 544 │ @mswjs/cookies │ 0.2.2 │ MIT ║ +║ 545 │ @mswjs/interceptors │ 0.17.10 │ MIT ║ +║ 546 │ @mui/core-downloads-tracker │ 5.17.1 │ MIT ║ +║ 547 │ @mui/material │ 5.17.1 │ MIT ║ +║ 548 │ @mui/private-theming │ 5.17.1 │ MIT ║ +║ 549 │ @mui/styled-engine │ 5.16.14 │ MIT ║ +║ 550 │ @mui/system │ 5.17.1 │ MIT ║ +║ 551 │ @mui/types │ 7.2.24 │ MIT ║ +║ 552 │ @mui/utils │ 5.17.1 │ MIT ║ +║ 553 │ @my-scope/package-a │ 0.0.0 │ MIT ║ +║ 554 │ @my-scope/package-b │ 0.0.0 │ MIT ║ +║ 555 │ @n1ru4l/push-pull-async-iterable-iterator │ 3.2.0 │ MIT ║ +║ 556 │ @node-saml/node-saml │ 5.0.1 │ MIT ║ +║ 557 │ @node-saml/passport-saml │ 5.0.1 │ MIT ║ +║ 558 │ @nodelib/fs.scandir │ 2.1.5 │ MIT ║ +║ 559 │ @nodelib/fs.stat │ 2.0.5 │ MIT ║ +║ 560 │ @nodelib/fs.walk │ 1.2.8 │ MIT ║ +║ 561 │ @npmcli/agent │ 3.0.0 │ ISC ║ +║ 562 │ @npmcli/agent │ 2.2.2 │ ISC ║ +║ 563 │ @npmcli/fs │ 4.0.0 │ ISC ║ +║ 564 │ @npmcli/fs │ 3.1.1 │ ISC ║ +║ 565 │ @octokit/app │ 14.1.0 │ MIT ║ +║ 566 │ @octokit/auth-app │ 6.1.3 │ MIT ║ +║ 567 │ @octokit/auth-app │ 4.0.13 │ MIT ║ +║ 568 │ @octokit/auth-oauth-app │ 7.1.0 │ MIT ║ +║ 569 │ @octokit/auth-oauth-app │ 5.0.6 │ MIT ║ +║ 570 │ @octokit/auth-oauth-device │ 6.1.0 │ MIT ║ +║ 571 │ @octokit/auth-oauth-device │ 4.0.5 │ MIT ║ +║ 572 │ @octokit/auth-oauth-user │ 4.1.0 │ MIT ║ +║ 573 │ @octokit/auth-oauth-user │ 2.1.2 │ MIT ║ +║ 574 │ @octokit/auth-token │ 3.0.4 │ MIT ║ +║ 575 │ @octokit/auth-token │ 4.0.0 │ MIT ║ +║ 576 │ @octokit/auth-unauthenticated │ 3.0.5 │ MIT ║ +║ 577 │ @octokit/auth-unauthenticated │ 5.0.1 │ MIT ║ +║ 578 │ @octokit/core │ 4.2.4 │ MIT ║ +║ 579 │ @octokit/core │ 5.2.1 │ MIT ║ +║ 580 │ @octokit/endpoint │ 9.0.6 │ MIT ║ +║ 581 │ @octokit/graphql │ 5.0.6 │ MIT ║ +║ 582 │ @octokit/graphql │ 7.1.1 │ MIT ║ +║ 583 │ @octokit/graphql-schema │ 13.10.0 │ MIT ║ +║ 584 │ @octokit/oauth-app │ 4.2.4 │ MIT ║ +║ 585 │ @octokit/oauth-app │ 6.1.0 │ MIT ║ +║ 586 │ @octokit/oauth-authorization-url │ 6.0.2 │ MIT ║ +║ 587 │ @octokit/oauth-authorization-url │ 5.0.0 │ MIT ║ +║ 588 │ @octokit/oauth-methods │ 4.1.0 │ MIT ║ +║ 589 │ @octokit/oauth-methods │ 2.0.6 │ MIT ║ +║ 590 │ @octokit/openapi-types │ 24.2.0 │ MIT ║ +║ 591 │ @octokit/openapi-types │ 20.0.0 │ MIT ║ +║ 592 │ @octokit/openapi-types │ 18.1.1 │ MIT ║ +║ 593 │ @octokit/openapi-types │ 14.0.0 │ MIT ║ +║ 594 │ @octokit/plugin-paginate-graphql │ 4.0.1 │ MIT ║ +║ 595 │ @octokit/plugin-paginate-rest │ 9.2.2 │ MIT ║ +║ 596 │ @octokit/plugin-request-log │ 1.0.4 │ MIT ║ +║ 597 │ @octokit/plugin-rest-endpoint-methods │ 13.2.2 │ MIT ║ +║ 598 │ @octokit/plugin-rest-endpoint-methods │ 7.2.3 │ MIT ║ +║ 599 │ @octokit/plugin-retry │ 6.1.0 │ MIT ║ +║ 600 │ @octokit/plugin-throttling │ 8.2.0 │ MIT ║ +║ 601 │ @octokit/request │ 8.4.1 │ MIT ║ +║ 602 │ @octokit/request-error │ 5.1.1 │ MIT ║ +║ 603 │ @octokit/rest │ 19.0.13 │ MIT ║ +║ 604 │ @octokit/types │ 9.3.2 │ MIT ║ +║ 605 │ @octokit/types │ 13.10.0 │ MIT ║ +║ 606 │ @octokit/types │ 12.6.0 │ MIT ║ +║ 607 │ @octokit/types │ 10.0.0 │ MIT ║ +║ 608 │ @octokit/types │ 8.2.1 │ MIT ║ +║ 609 │ @octokit/webhooks │ 12.3.1 │ MIT ║ +║ 610 │ @octokit/webhooks │ 10.9.2 │ MIT ║ +║ 611 │ @octokit/webhooks-methods │ 4.1.0 │ MIT ║ +║ 612 │ @octokit/webhooks-methods │ 3.0.3 │ MIT ║ +║ 613 │ @octokit/webhooks-types │ 7.6.1 │ MIT ║ +║ 614 │ @octokit/webhooks-types │ 6.11.0 │ MIT ║ +║ 615 │ @open-draft/until │ 1.0.3 │ MIT ║ +║ 616 │ @openapi-contrib/openapi-schema-to-json-schema │ 3.2.0 │ MIT ║ +║ 617 │ @opentelemetry/api │ 1.9.0 │ Apache-2.0 ║ +║ 618 │ @pkgjs/parseargs │ 0.11.0 │ MIT ║ +║ 619 │ @playwright/test │ 1.52.0 │ Apache-2.0 ║ +║ 620 │ @pmmmwh/react-refresh-webpack-plugin │ 0.5.16 │ MIT ║ +║ 621 │ @popperjs/core │ 2.11.8 │ MIT ║ +║ 622 │ @protobufjs/aspromise │ 1.1.2 │ BSD-3-Clause ║ +║ 623 │ @protobufjs/base64 │ 1.1.2 │ BSD-3-Clause ║ +║ 624 │ @protobufjs/codegen │ 2.0.4 │ BSD-3-Clause ║ +║ 625 │ @protobufjs/eventemitter │ 1.1.0 │ BSD-3-Clause ║ +║ 626 │ @protobufjs/fetch │ 1.1.0 │ BSD-3-Clause ║ +║ 627 │ @protobufjs/float │ 1.0.2 │ BSD-3-Clause ║ +║ 628 │ @protobufjs/inquire │ 1.1.0 │ BSD-3-Clause ║ +║ 629 │ @protobufjs/path │ 1.1.2 │ BSD-3-Clause ║ +║ 630 │ @protobufjs/pool │ 1.1.0 │ BSD-3-Clause ║ +║ 631 │ @protobufjs/utf8 │ 1.1.0 │ BSD-3-Clause ║ +║ 632 │ @radix-ui/primitive │ 1.1.2 │ MIT ║ +║ 633 │ @radix-ui/react-arrow │ 1.1.4 │ MIT ║ +║ 634 │ @radix-ui/react-collection │ 1.1.4 │ MIT ║ +║ 635 │ @radix-ui/react-compose-refs │ 1.1.2 │ MIT ║ +║ 636 │ @radix-ui/react-context │ 1.1.2 │ MIT ║ +║ 637 │ @radix-ui/react-dialog │ 1.1.11 │ MIT ║ +║ 638 │ @radix-ui/react-direction │ 1.1.1 │ MIT ║ +║ 639 │ @radix-ui/react-dismissable-layer │ 1.1.7 │ MIT ║ +║ 640 │ @radix-ui/react-dropdown-menu │ 2.1.12 │ MIT ║ +║ 641 │ @radix-ui/react-focus-guards │ 1.1.2 │ MIT ║ +║ 642 │ @radix-ui/react-focus-scope │ 1.1.4 │ MIT ║ +║ 643 │ @radix-ui/react-id │ 1.1.1 │ MIT ║ +║ 644 │ @radix-ui/react-menu │ 2.1.12 │ MIT ║ +║ 645 │ @radix-ui/react-popper │ 1.2.4 │ MIT ║ +║ 646 │ @radix-ui/react-portal │ 1.1.6 │ MIT ║ +║ 647 │ @radix-ui/react-presence │ 1.1.4 │ MIT ║ +║ 648 │ @radix-ui/react-primitive │ 2.1.0 │ MIT ║ +║ 649 │ @radix-ui/react-roving-focus │ 1.1.7 │ MIT ║ +║ 650 │ @radix-ui/react-slot │ 1.2.0 │ MIT ║ +║ 651 │ @radix-ui/react-tooltip │ 1.2.4 │ MIT ║ +║ 652 │ @radix-ui/react-use-callback-ref │ 1.1.1 │ MIT ║ +║ 653 │ @radix-ui/react-use-controllable-state │ 1.2.2 │ MIT ║ +║ 654 │ @radix-ui/react-use-effect-event │ 0.0.2 │ MIT ║ +║ 655 │ @radix-ui/react-use-escape-keydown │ 1.1.1 │ MIT ║ +║ 656 │ @radix-ui/react-use-layout-effect │ 1.1.1 │ MIT ║ +║ 657 │ @radix-ui/react-use-rect │ 1.1.1 │ MIT ║ +║ 658 │ @radix-ui/react-use-size │ 1.1.1 │ MIT ║ +║ 659 │ @radix-ui/react-visually-hidden │ 1.2.0 │ MIT ║ +║ 660 │ @radix-ui/rect │ 1.1.1 │ MIT ║ +║ 661 │ @react-hookz/deep-equal │ 1.0.4 │ MIT ║ +║ 662 │ @react-hookz/web │ 24.0.4 │ MIT ║ +║ 663 │ @redis/bloom │ 1.2.0 │ MIT ║ +║ 664 │ @redis/client │ 1.6.0 │ MIT ║ +║ 665 │ @redis/client │ 1.5.17 │ MIT ║ +║ 666 │ @redis/graph │ 1.1.1 │ MIT ║ +║ 667 │ @redis/json │ 1.0.7 │ MIT ║ +║ 668 │ @redis/search │ 1.2.0 │ MIT ║ +║ 669 │ @redis/time-series │ 1.1.0 │ MIT ║ +║ 670 │ @remix-run/router │ 1.23.0 │ MIT ║ +║ 671 │ @repeaterjs/repeater │ 3.0.6 │ MIT ║ +║ 672 │ @repeaterjs/repeater-cjs │ NOT-SET │ ║ +║ 673 │ @rjsf/core │ 5.23.2 │ Apache-2.0 ║ +║ 674 │ @rjsf/material-ui │ 5.23.2 │ Apache-2.0 ║ +║ 675 │ @rjsf/utils │ 5.23.2 │ Apache-2.0 ║ +║ 676 │ @rjsf/validator-ajv8 │ 5.23.2 │ Apache-2.0 ║ +║ 677 │ @rollup/plugin-commonjs │ 26.0.3 │ MIT ║ +║ 678 │ @rollup/plugin-json │ 6.1.0 │ MIT ║ +║ 679 │ @rollup/plugin-node-resolve │ 15.3.1 │ MIT ║ +║ 680 │ @rollup/plugin-yaml │ 4.1.2 │ MIT ║ +║ 681 │ @rollup/pluginutils │ 5.1.4 │ MIT ║ +║ 682 │ @rollup/pluginutils │ 4.2.1 │ MIT ║ +║ 683 │ @rollup/rollup-darwin-x64 │ 4.40.1 │ MIT ║ +║ 684 │ @rtsao/scc │ 1.1.0 │ MIT ║ +║ 685 │ @sagold/json-pointer │ 5.1.2 │ MIT ║ +║ 686 │ @sagold/json-query │ 6.2.0 │ MIT ║ +║ 687 │ @scarf/scarf │ 1.4.0 │ Apache-2.0 ║ +║ 688 │ @sinclair/typebox │ 0.27.8 │ MIT ║ +║ 689 │ @sinonjs/commons │ 3.0.1 │ BSD-3-Clause ║ +║ 690 │ @sinonjs/fake-timers │ 10.3.0 │ BSD-3-Clause ║ +║ 691 │ @smithy/abort-controller │ 3.1.9 │ Apache-2.0 ║ +║ 692 │ @smithy/abort-controller │ 4.0.2 │ Apache-2.0 ║ +║ 693 │ @smithy/chunked-blob-reader │ 5.0.0 │ Apache-2.0 ║ +║ 694 │ @smithy/chunked-blob-reader-native │ 4.0.0 │ Apache-2.0 ║ +║ 695 │ @smithy/config-resolver │ 4.1.0 │ Apache-2.0 ║ +║ 696 │ @smithy/core │ 3.3.0 │ Apache-2.0 ║ +║ 697 │ @smithy/credential-provider-imds │ 4.0.2 │ Apache-2.0 ║ +║ 698 │ @smithy/eventstream-codec │ 4.0.2 │ Apache-2.0 ║ +║ 699 │ @smithy/eventstream-serde-browser │ 4.0.2 │ Apache-2.0 ║ +║ 700 │ @smithy/eventstream-serde-config-resolver │ 4.1.0 │ Apache-2.0 ║ +║ 701 │ @smithy/eventstream-serde-node │ 4.0.2 │ Apache-2.0 ║ +║ 702 │ @smithy/eventstream-serde-universal │ 4.0.2 │ Apache-2.0 ║ +║ 703 │ @smithy/fetch-http-handler │ 5.0.2 │ Apache-2.0 ║ +║ 704 │ @smithy/hash-blob-browser │ 4.0.2 │ Apache-2.0 ║ +║ 705 │ @smithy/hash-node │ 4.0.2 │ Apache-2.0 ║ +║ 706 │ @smithy/hash-stream-node │ 4.0.2 │ Apache-2.0 ║ +║ 707 │ @smithy/invalid-dependency │ 4.0.2 │ Apache-2.0 ║ +║ 708 │ @smithy/is-array-buffer │ 2.2.0 │ Apache-2.0 ║ +║ 709 │ @smithy/is-array-buffer │ 4.0.0 │ Apache-2.0 ║ +║ 710 │ @smithy/md5-js │ 4.0.2 │ Apache-2.0 ║ +║ 711 │ @smithy/middleware-content-length │ 4.0.2 │ Apache-2.0 ║ +║ 712 │ @smithy/middleware-endpoint │ 4.1.1 │ Apache-2.0 ║ +║ 713 │ @smithy/middleware-retry │ 4.1.1 │ Apache-2.0 ║ +║ 714 │ @smithy/middleware-serde │ 4.0.3 │ Apache-2.0 ║ +║ 715 │ @smithy/middleware-stack │ 4.0.2 │ Apache-2.0 ║ +║ 716 │ @smithy/node-config-provider │ 4.0.2 │ Apache-2.0 ║ +║ 717 │ @smithy/node-http-handler │ 3.3.3 │ Apache-2.0 ║ +║ 718 │ @smithy/node-http-handler │ 4.0.4 │ Apache-2.0 ║ +║ 719 │ @smithy/property-provider │ 4.0.2 │ Apache-2.0 ║ +║ 720 │ @smithy/protocol-http │ 4.1.8 │ Apache-2.0 ║ +║ 721 │ @smithy/protocol-http │ 5.1.0 │ Apache-2.0 ║ +║ 722 │ @smithy/querystring-builder │ 3.0.11 │ Apache-2.0 ║ +║ 723 │ @smithy/querystring-builder │ 4.0.2 │ Apache-2.0 ║ +║ 724 │ @smithy/querystring-parser │ 4.0.2 │ Apache-2.0 ║ +║ 725 │ @smithy/service-error-classification │ 4.0.2 │ Apache-2.0 ║ +║ 726 │ @smithy/shared-ini-file-loader │ 4.0.2 │ Apache-2.0 ║ +║ 727 │ @smithy/signature-v4 │ 5.1.0 │ Apache-2.0 ║ +║ 728 │ @smithy/smithy-client │ 4.2.1 │ Apache-2.0 ║ +║ 729 │ @smithy/types │ 1.2.0 │ Apache-2.0 ║ +║ 730 │ @smithy/types │ 3.7.2 │ Apache-2.0 ║ +║ 731 │ @smithy/types │ 4.2.0 │ Apache-2.0 ║ +║ 732 │ @smithy/url-parser │ 4.0.2 │ Apache-2.0 ║ +║ 733 │ @smithy/util-base64 │ 4.0.0 │ Apache-2.0 ║ +║ 734 │ @smithy/util-body-length-browser │ 4.0.0 │ Apache-2.0 ║ +║ 735 │ @smithy/util-body-length-node │ 4.0.0 │ Apache-2.0 ║ +║ 736 │ @smithy/util-buffer-from │ 2.2.0 │ Apache-2.0 ║ +║ 737 │ @smithy/util-buffer-from │ 4.0.0 │ Apache-2.0 ║ +║ 738 │ @smithy/util-config-provider │ 4.0.0 │ Apache-2.0 ║ +║ 739 │ @smithy/util-defaults-mode-browser │ 4.0.9 │ Apache-2.0 ║ +║ 740 │ @smithy/util-defaults-mode-node │ 4.0.9 │ Apache-2.0 ║ +║ 741 │ @smithy/util-endpoints │ 3.0.2 │ Apache-2.0 ║ +║ 742 │ @smithy/util-hex-encoding │ 4.0.0 │ Apache-2.0 ║ +║ 743 │ @smithy/util-middleware │ 4.0.2 │ Apache-2.0 ║ +║ 744 │ @smithy/util-retry │ 4.0.2 │ Apache-2.0 ║ +║ 745 │ @smithy/util-stream │ 4.2.0 │ Apache-2.0 ║ +║ 746 │ @smithy/util-uri-escape │ 3.0.0 │ Apache-2.0 ║ +║ 747 │ @smithy/util-uri-escape │ 4.0.0 │ Apache-2.0 ║ +║ 748 │ @smithy/util-utf8 │ 2.3.0 │ Apache-2.0 ║ +║ 749 │ @smithy/util-utf8 │ 4.0.0 │ Apache-2.0 ║ +║ 750 │ @smithy/util-waiter │ 4.0.3 │ Apache-2.0 ║ +║ 751 │ @spotify/eslint-config-base │ 15.0.0 │ Apache-2.0 ║ +║ 752 │ @spotify/eslint-config-react │ 15.0.0 │ Apache-2.0 ║ +║ 753 │ @spotify/eslint-config-typescript │ 15.0.0 │ Apache-2.0 ║ +║ 754 │ @spotify/prettier-config │ 12.0.0 │ Apache-2.0 ║ +║ 755 │ @stoplight/better-ajv-errors │ 1.0.3 │ Apache-2.0 ║ +║ 756 │ @stoplight/json │ 3.21.0 │ Apache-2.0 ║ +║ 757 │ @stoplight/json │ 3.21.7 │ Apache-2.0 ║ +║ 758 │ @stoplight/json-ref-readers │ 1.2.2 │ Apache-2.0 ║ +║ 759 │ @stoplight/json-ref-resolver │ 3.1.6 │ Apache-2.0 ║ +║ 760 │ @stoplight/ordered-object-literal │ 1.0.5 │ Apache-2.0 ║ +║ 761 │ @stoplight/path │ 1.3.2 │ Apache-2.0 ║ +║ 762 │ @stoplight/spectral-core │ 1.20.0 │ Apache-2.0 ║ +║ 763 │ @stoplight/spectral-formats │ 1.8.2 │ Apache-2.0 ║ +║ 764 │ @stoplight/spectral-functions │ 1.10.1 │ Apache-2.0 ║ +║ 765 │ @stoplight/spectral-parsers │ 1.0.5 │ Apache-2.0 ║ +║ 766 │ @stoplight/spectral-ref-resolver │ 1.0.5 │ Apache-2.0 ║ +║ 767 │ @stoplight/spectral-runtime │ 1.1.4 │ Apache-2.0 ║ +║ 768 │ @stoplight/types │ 13.6.0 │ Apache-2.0 ║ +║ 769 │ @stoplight/types │ 14.1.1 │ Apache-2.0 ║ +║ 770 │ @stoplight/types │ 13.20.0 │ Apache-2.0 ║ +║ 771 │ @stoplight/yaml │ 4.3.0 │ Apache-2.0 ║ +║ 772 │ @stoplight/yaml-ast-parser │ 0.0.50 │ Apache-2.0 ║ +║ 773 │ @sucrase/webpack-loader │ 2.0.0 │ MIT ║ +║ 774 │ @svgr/babel-plugin-add-jsx-attribute │ 6.5.1 │ MIT ║ +║ 775 │ @svgr/babel-plugin-remove-jsx-attribute │ 8.0.0 │ MIT ║ +║ 776 │ @svgr/babel-plugin-remove-jsx-empty-expression │ 8.0.0 │ MIT ║ +║ 777 │ @svgr/babel-plugin-replace-jsx-attribute-value │ 6.5.1 │ MIT ║ +║ 778 │ @svgr/babel-plugin-svg-dynamic-title │ 6.5.1 │ MIT ║ +║ 779 │ @svgr/babel-plugin-svg-em-dimensions │ 6.5.1 │ MIT ║ +║ 780 │ @svgr/babel-plugin-transform-react-native-svg │ 6.5.1 │ MIT ║ +║ 781 │ @svgr/babel-plugin-transform-svg-component │ 6.5.1 │ MIT ║ +║ 782 │ @svgr/babel-preset │ 6.5.1 │ MIT ║ +║ 783 │ @svgr/core │ 6.5.1 │ MIT ║ +║ 784 │ @svgr/hast-util-to-babel-ast │ 6.5.1 │ MIT ║ +║ 785 │ @svgr/plugin-jsx │ 6.5.1 │ MIT ║ +║ 786 │ @svgr/plugin-svgo │ 6.5.1 │ MIT ║ +║ 787 │ @svgr/rollup │ 6.5.1 │ MIT ║ +║ 788 │ @svgr/webpack │ 6.5.1 │ MIT ║ +║ 789 │ @swagger-api/apidom-ast │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 790 │ @swagger-api/apidom-core │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 791 │ @swagger-api/apidom-error │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 792 │ @swagger-api/apidom-json-pointer │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 793 │ @swagger-api/apidom-ns-api-design-systems │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 794 │ @swagger-api/apidom-ns-arazzo-1 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 795 │ @swagger-api/apidom-ns-asyncapi-2 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 796 │ @swagger-api/apidom-ns-json-schema-2019-09 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 797 │ @swagger-api/apidom-ns-json-schema-2020-12 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 798 │ @swagger-api/apidom-ns-json-schema-draft-4 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 799 │ @swagger-api/apidom-ns-json-schema-draft-6 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 800 │ @swagger-api/apidom-ns-json-schema-draft-7 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 801 │ @swagger-api/apidom-ns-openapi-2 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 802 │ @swagger-api/apidom-ns-openapi-3-0 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 803 │ @swagger-api/apidom-ns-openapi-3-1 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 804 │ @swagger-api/apidom-parser-adapter-api-design-systems-json │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 805 │ @swagger-api/apidom-parser-adapter-api-design-systems-yaml │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 806 │ @swagger-api/apidom-parser-adapter-arazzo-json-1 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 807 │ @swagger-api/apidom-parser-adapter-arazzo-yaml-1 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 808 │ @swagger-api/apidom-parser-adapter-asyncapi-json-2 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 809 │ @swagger-api/apidom-parser-adapter-asyncapi-yaml-2 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 810 │ @swagger-api/apidom-parser-adapter-json │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 811 │ @swagger-api/apidom-parser-adapter-openapi-json-2 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 812 │ @swagger-api/apidom-parser-adapter-openapi-json-3-0 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 813 │ @swagger-api/apidom-parser-adapter-openapi-json-3-1 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 814 │ @swagger-api/apidom-parser-adapter-openapi-yaml-2 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 815 │ @swagger-api/apidom-parser-adapter-openapi-yaml-3-0 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 816 │ @swagger-api/apidom-parser-adapter-openapi-yaml-3-1 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 817 │ @swagger-api/apidom-parser-adapter-yaml-1-2 │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 818 │ @swagger-api/apidom-reference │ 1.0.0-beta.32 │ Apache-2.0 ║ +║ 819 │ @swaggerexpert/cookie │ 2.0.2 │ Apache-2.0 ║ +║ 820 │ @swc/core │ 1.11.24 │ Apache-2.0 ║ +║ 821 │ @swc/core-darwin-x64 │ 1.11.24 │ Apache-2.0 AND MIT ║ +║ 822 │ @swc/counter │ 0.1.3 │ Apache-2.0 ║ +║ 823 │ @swc/helpers │ 0.5.17 │ Apache-2.0 ║ +║ 824 │ @swc/jest │ 0.2.38 │ MIT ║ +║ 825 │ @swc/types │ 0.1.21 │ Apache-2.0 ║ +║ 826 │ @tanstack/react-virtual │ 3.13.6 │ MIT ║ +║ 827 │ @tanstack/virtual-core │ 3.13.6 │ MIT ║ +║ 828 │ @testing-library/dom │ 9.3.4 │ MIT ║ +║ 829 │ @testing-library/jest-dom │ 6.6.3 │ MIT ║ +║ 830 │ @testing-library/react │ 16.3.0 │ MIT ║ +║ 831 │ @testing-library/react │ 14.3.1 │ MIT ║ +║ 832 │ @testing-library/user-event │ 14.6.1 │ MIT ║ +║ 833 │ @tokenizer/token │ 0.3.0 │ MIT ║ +║ 834 │ @tootallnate/once │ 2.0.0 │ MIT ║ +║ 835 │ @tootallnate/quickjs-emscripten │ 0.23.0 │ MIT ║ +║ 836 │ @tree-sitter-grammars/tree-sitter-yaml │ 0.7.0 │ MIT ║ +║ 837 │ @trendyol-js/openstack-swift-sdk │ 0.0.7 │ MIT ║ +║ 838 │ @trysound/sax │ 0.2.0 │ ISC ║ +║ 839 │ @ts-morph/common │ 0.25.0 │ MIT ║ +║ 840 │ @tsconfig/node10 │ 1.0.11 │ MIT ║ +║ 841 │ @tsconfig/node12 │ 1.0.11 │ MIT ║ +║ 842 │ @tsconfig/node14 │ 1.0.3 │ MIT ║ +║ 843 │ @tsconfig/node16 │ 1.0.4 │ MIT ║ +║ 844 │ @types/aria-query │ 5.0.4 │ MIT ║ +║ 845 │ @types/aws-lambda │ 8.10.149 │ MIT ║ +║ 846 │ @types/babel__core │ 7.20.5 │ MIT ║ +║ 847 │ @types/babel__generator │ 7.27.0 │ MIT ║ +║ 848 │ @types/babel__template │ 7.4.4 │ MIT ║ +║ 849 │ @types/babel__traverse │ 7.20.7 │ MIT ║ +║ 850 │ @types/body-parser │ 1.19.5 │ MIT ║ +║ 851 │ @types/bonjour │ 3.5.13 │ MIT ║ +║ 852 │ @types/btoa-lite │ 1.0.2 │ MIT ║ +║ 853 │ @types/caseless │ 0.12.5 │ MIT ║ +║ 854 │ @types/codemirror │ 5.60.15 │ MIT ║ +║ 855 │ @types/connect │ 3.4.38 │ MIT ║ +║ 856 │ @types/connect-history-api-fallback │ 1.5.4 │ MIT ║ +║ 857 │ @types/content-type │ 1.1.8 │ MIT ║ +║ 858 │ @types/cookie │ 0.4.1 │ MIT ║ +║ 859 │ @types/cors │ 2.8.17 │ MIT ║ +║ 860 │ @types/debug │ 4.1.12 │ MIT ║ +║ 861 │ @types/docker-modem │ 3.0.6 │ MIT ║ +║ 862 │ @types/dockerode │ 3.3.38 │ MIT ║ +║ 863 │ @types/es-aggregate-error │ 1.0.6 │ MIT ║ +║ 864 │ @types/eslint │ 8.56.12 │ MIT ║ +║ 865 │ @types/eslint │ 9.6.1 │ MIT ║ +║ 866 │ @types/eslint-scope │ 3.7.7 │ MIT ║ +║ 867 │ @types/estree │ 1.0.7 │ MIT ║ +║ 868 │ @types/express │ 4.17.21 │ MIT ║ +║ 869 │ @types/express │ 5.0.1 │ MIT ║ +║ 870 │ @types/express-serve-static-core │ 4.19.6 │ MIT ║ +║ 871 │ @types/express-serve-static-core │ 5.0.6 │ MIT ║ +║ 872 │ @types/graceful-fs │ 4.1.9 │ MIT ║ +║ 873 │ @types/hast │ 2.3.10 │ MIT ║ +║ 874 │ @types/hoist-non-react-statics │ 3.3.6 │ MIT ║ +║ 875 │ @types/html-minifier-terser │ 6.1.0 │ MIT ║ +║ 876 │ @types/http-errors │ 2.0.4 │ MIT ║ +║ 877 │ @types/http-proxy │ 1.17.16 │ MIT ║ +║ 878 │ @types/http-proxy-middleware │ 1.0.0 │ MIT ║ +║ 879 │ @types/istanbul-lib-coverage │ 2.0.6 │ MIT ║ +║ 880 │ @types/istanbul-lib-report │ 3.0.3 │ MIT ║ +║ 881 │ @types/istanbul-reports │ 3.0.4 │ MIT ║ +║ 882 │ @types/jest │ 29.5.14 │ MIT ║ +║ 883 │ @types/js-cookie │ 2.2.7 │ MIT ║ +║ 884 │ @types/js-levenshtein │ 1.1.3 │ MIT ║ +║ 885 │ @types/js-yaml │ 4.0.9 │ MIT ║ +║ 886 │ @types/jsdom │ 20.0.1 │ MIT ║ +║ 887 │ @types/json-schema │ 7.0.15 │ MIT ║ +║ 888 │ @types/json5 │ 0.0.29 │ MIT ║ +║ 889 │ @types/jsonpath │ 0.2.4 │ MIT ║ +║ 890 │ @types/jsonwebtoken │ 9.0.9 │ MIT ║ +║ 891 │ @types/keyv │ 4.2.0 │ MIT ║ +║ 892 │ @types/long │ 4.0.2 │ MIT ║ +║ 893 │ @types/lunr │ 2.3.7 │ MIT ║ +║ 894 │ @types/luxon │ 3.6.2 │ MIT ║ +║ 895 │ @types/luxon │ 3.4.2 │ MIT ║ +║ 896 │ @types/mdast │ 3.0.15 │ MIT ║ +║ 897 │ @types/mime │ 1.3.5 │ MIT ║ +║ 898 │ @types/ms │ 2.1.0 │ MIT ║ +║ 899 │ @types/multer │ 1.4.12 │ MIT ║ +║ 900 │ @types/node │ 22.15.3 │ MIT ║ +║ 901 │ @types/node │ 12.20.55 │ MIT ║ +║ 902 │ @types/node │ 20.17.32 │ MIT ║ +║ 903 │ @types/node │ 18.19.87 │ MIT ║ +║ 904 │ @types/node-fetch │ 2.6.12 │ MIT ║ +║ 905 │ @types/node-forge │ 1.3.11 │ MIT ║ +║ 906 │ @types/oauth │ 0.9.6 │ MIT ║ +║ 907 │ @types/parse-json │ 4.0.2 │ MIT ║ +║ 908 │ @types/passport │ 1.0.17 │ MIT ║ +║ 909 │ @types/passport-oauth2 │ 1.4.17 │ MIT ║ +║ 910 │ @types/passport-strategy │ 0.2.38 │ MIT ║ +║ 911 │ @types/prop-types │ 15.7.14 │ MIT ║ +║ 912 │ @types/protocol-buffers-schema │ 3.4.3 │ MIT ║ +║ 913 │ @types/qs │ 6.9.18 │ MIT ║ +║ 914 │ @types/ramda │ 0.30.2 │ MIT ║ +║ 915 │ @types/range-parser │ 1.2.7 │ MIT ║ +║ 916 │ @types/react │ 18.3.20 │ MIT ║ +║ 917 │ @types/react-dom │ 18.3.6 │ MIT ║ +║ 918 │ @types/react-redux │ 7.1.34 │ MIT ║ +║ 919 │ @types/react-sparklines │ 1.7.5 │ MIT ║ +║ 920 │ @types/react-transition-group │ 4.4.12 │ MIT ║ +║ 921 │ @types/request │ 2.48.12 │ MIT ║ +║ 922 │ @types/resolve │ 1.20.2 │ MIT ║ +║ 923 │ @types/retry │ 0.12.2 │ MIT ║ +║ 924 │ @types/semver │ 7.5.8 │ MIT ║ +║ 925 │ @types/send │ 0.17.4 │ MIT ║ +║ 926 │ @types/serve-index │ 1.9.4 │ MIT ║ +║ 927 │ @types/serve-static │ 1.15.7 │ MIT ║ +║ 928 │ @types/set-cookie-parser │ 2.4.10 │ MIT ║ +║ 929 │ @types/sockjs │ 0.3.36 │ MIT ║ +║ 930 │ @types/ssh2 │ 1.15.5 │ MIT ║ +║ 931 │ @types/ssh2 │ 0.5.52 │ MIT ║ +║ 932 │ @types/ssh2-streams │ 0.1.12 │ MIT ║ +║ 933 │ @types/stack-utils │ 2.0.3 │ MIT ║ +║ 934 │ @types/stream-buffers │ 3.0.7 │ MIT ║ +║ 935 │ @types/styled-jsx │ 2.2.9 │ MIT ║ +║ 936 │ @types/tar │ 6.1.13 │ MIT ║ +║ 937 │ @types/tern │ 0.23.9 │ MIT ║ +║ 938 │ @types/tough-cookie │ 4.0.5 │ MIT ║ +║ 939 │ @types/triple-beam │ 1.3.5 │ MIT ║ +║ 940 │ @types/trusted-types │ 2.0.7 │ MIT ║ +║ 941 │ @types/unist │ 2.0.11 │ MIT ║ +║ 942 │ @types/urijs │ 1.19.25 │ MIT ║ +║ 943 │ @types/use-sync-external-store │ 0.0.6 │ MIT ║ +║ 944 │ @types/uuid │ 9.0.8 │ MIT ║ +║ 945 │ @types/webpack-env │ 1.18.8 │ MIT ║ +║ 946 │ @types/ws │ 8.18.1 │ MIT ║ +║ 947 │ @types/xml-encryption │ 1.2.4 │ MIT ║ +║ 948 │ @types/xml2js │ 0.4.14 │ MIT ║ +║ 949 │ @types/yargs │ 17.0.33 │ MIT ║ +║ 950 │ @types/yargs-parser │ 21.0.3 │ MIT ║ +║ 951 │ @typescript-eslint/eslint-plugin │ 8.31.1 │ MIT ║ +║ 952 │ @typescript-eslint/parser │ 8.31.1 │ MIT ║ +║ 953 │ @typescript-eslint/scope-manager │ 8.31.1 │ MIT ║ +║ 954 │ @typescript-eslint/scope-manager │ 7.18.0 │ MIT ║ +║ 955 │ @typescript-eslint/type-utils │ 8.31.1 │ MIT ║ +║ 956 │ @typescript-eslint/types │ 8.31.1 │ MIT ║ +║ 957 │ @typescript-eslint/types │ 7.18.0 │ MIT ║ +║ 958 │ @typescript-eslint/typescript-estree │ 8.31.1 │ MIT ║ +║ 959 │ @typescript-eslint/typescript-estree │ 7.18.0 │ BSD-2-Clause ║ +║ 960 │ @typescript-eslint/utils │ 8.31.1 │ MIT ║ +║ 961 │ @typescript-eslint/utils │ 7.18.0 │ MIT ║ +║ 962 │ @typescript-eslint/visitor-keys │ 8.31.1 │ MIT ║ +║ 963 │ @typescript-eslint/visitor-keys │ 7.18.0 │ MIT ║ +║ 964 │ @uiw/codemirror-extensions-basic-setup │ 4.23.11 │ MIT ║ +║ 965 │ @uiw/react-codemirror │ 4.23.11 │ MIT ║ +║ 966 │ @ungap/structured-clone │ 1.3.0 │ ISC ║ +║ 967 │ @webassemblyjs/ast │ 1.14.1 │ MIT ║ +║ 968 │ @webassemblyjs/floating-point-hex-parser │ 1.13.2 │ MIT ║ +║ 969 │ @webassemblyjs/helper-api-error │ 1.13.2 │ MIT ║ +║ 970 │ @webassemblyjs/helper-buffer │ 1.14.1 │ MIT ║ +║ 971 │ @webassemblyjs/helper-numbers │ 1.13.2 │ MIT ║ +║ 972 │ @webassemblyjs/helper-wasm-bytecode │ 1.13.2 │ MIT ║ +║ 973 │ @webassemblyjs/helper-wasm-section │ 1.14.1 │ MIT ║ +║ 974 │ @webassemblyjs/ieee754 │ 1.13.2 │ MIT ║ +║ 975 │ @webassemblyjs/leb128 │ 1.13.2 │ Apache-2.0 ║ +║ 976 │ @webassemblyjs/utf8 │ 1.13.2 │ MIT ║ +║ 977 │ @webassemblyjs/wasm-edit │ 1.14.1 │ MIT ║ +║ 978 │ @webassemblyjs/wasm-gen │ 1.14.1 │ MIT ║ +║ 979 │ @webassemblyjs/wasm-opt │ 1.14.1 │ MIT ║ +║ 980 │ @webassemblyjs/wasm-parser │ 1.14.1 │ MIT ║ +║ 981 │ @webassemblyjs/wast-printer │ 1.14.1 │ MIT ║ +║ 982 │ @whatwg-node/disposablestack │ 0.0.6 │ MIT ║ +║ 983 │ @whatwg-node/fetch │ 0.10.6 │ MIT ║ +║ 984 │ @whatwg-node/node-fetch │ 0.7.18 │ MIT ║ +║ 985 │ @whatwg-node/promise-helpers │ 1.3.1 │ MIT ║ +║ 986 │ @wmhilton/crypto-hash │ 1.0.2 │ MIT ║ +║ 987 │ @wolfy1339/lru-cache │ 11.0.2-patch.1 │ ISC ║ +║ 988 │ @xmldom/is-dom-node │ 1.0.1 │ MIT ║ +║ 989 │ @xmldom/xmldom │ 0.8.10 │ MIT ║ +║ 990 │ @xobotyi/scrollbar-width │ 1.9.5 │ MIT ║ +║ 991 │ @xtuc/ieee754 │ 1.2.0 │ BSD-3-Clause ║ +║ 992 │ @xtuc/long │ 4.2.2 │ Apache-2.0 ║ +║ 993 │ @yarnpkg/lockfile │ 1.1.0 │ BSD-2-Clause ║ +║ 994 │ @yarnpkg/parsers │ 3.0.3 │ BSD-2-Clause ║ +║ 995 │ @zxing/text-encoding │ 0.9.0 │ (Unlicense OR Apache-2.0) ║ +║ 996 │ a-sync-waterfall │ 1.0.1 │ MIT ║ +║ 997 │ abab │ 2.0.6 │ BSD-3-Clause ║ +║ 998 │ abbrev │ 3.0.1 │ ISC ║ +║ 999 │ abbrev │ 2.0.0 │ ISC ║ +║ 1000 │ abort-controller │ 3.0.0 │ MIT ║ +║ 1001 │ accepts │ 1.3.8 │ MIT ║ +║ 1002 │ acorn │ 8.14.1 │ MIT ║ +║ 1003 │ acorn-globals │ 7.0.1 │ MIT ║ +║ 1004 │ acorn-jsx │ 5.3.2 │ MIT ║ +║ 1005 │ acorn-walk │ 8.3.4 │ MIT ║ +║ 1006 │ address │ 1.2.2 │ MIT ║ +║ 1007 │ adm-zip │ 0.5.16 │ MIT ║ +║ 1008 │ agent-base │ 7.1.3 │ MIT ║ +║ 1009 │ agent-base │ 6.0.2 │ MIT ║ +║ 1010 │ agentkeepalive │ 4.6.0 │ MIT ║ +║ 1011 │ aggregate-error │ 3.1.0 │ MIT ║ +║ 1012 │ ajv │ 6.12.6 │ MIT ║ +║ 1013 │ ajv │ 8.17.1 │ MIT ║ +║ 1014 │ ajv-draft-04 │ 1.0.0 │ MIT ║ +║ 1015 │ ajv-errors │ 3.0.0 │ MIT ║ +║ 1016 │ ajv-formats │ 2.1.1 │ MIT ║ +║ 1017 │ ajv-formats │ 3.0.1 │ MIT ║ +║ 1018 │ ajv-formats-draft2019 │ 1.6.1 │ MIT ║ +║ 1019 │ ajv-i18n │ 4.2.0 │ MIT ║ +║ 1020 │ ajv-keywords │ 5.1.0 │ MIT ║ +║ 1021 │ ajv-keywords │ 3.5.2 │ MIT ║ +║ 1022 │ ansi-colors │ 4.1.3 │ MIT ║ +║ 1023 │ ansi-escapes │ 4.3.2 │ MIT ║ +║ 1024 │ ansi-html │ 0.0.9 │ Apache-2.0 ║ +║ 1025 │ ansi-html-community │ 0.0.8 │ Apache-2.0 ║ +║ 1026 │ ansi-regex │ 5.0.1 │ MIT ║ +║ 1027 │ ansi-regex │ 6.1.0 │ MIT ║ +║ 1028 │ ansi-regex │ 4.1.1 │ MIT ║ +║ 1029 │ ansi-styles │ 3.2.1 │ MIT ║ +║ 1030 │ ansi-styles │ 6.2.1 │ MIT ║ +║ 1031 │ ansi-styles │ 5.2.0 │ MIT ║ +║ 1032 │ ansi-styles │ 4.3.0 │ MIT ║ +║ 1033 │ any-promise │ 1.3.0 │ MIT ║ +║ 1034 │ anymatch │ 3.1.3 │ ISC ║ +║ 1035 │ apg-lite │ 1.0.4 │ BSD-2-Clause ║ +║ 1036 │ append-field │ 1.0.0 │ MIT ║ +║ 1037 │ archiver │ 7.0.1 │ MIT ║ +║ 1038 │ archiver │ 6.0.2 │ MIT ║ +║ 1039 │ archiver-utils │ 4.0.1 │ MIT ║ +║ 1040 │ archiver-utils │ 5.0.2 │ MIT ║ +║ 1041 │ arg │ 4.1.3 │ MIT ║ +║ 1042 │ argparse │ 1.0.10 │ MIT ║ +║ 1043 │ argparse │ 2.0.1 │ Python-2.0 ║ +║ 1044 │ args │ 5.0.3 │ MIT ║ +║ 1045 │ aria-hidden │ 1.2.4 │ MIT ║ +║ 1046 │ aria-query │ 5.1.3 │ Apache-2.0 ║ +║ 1047 │ aria-query │ 5.3.2 │ Apache-2.0 ║ +║ 1048 │ array-buffer-byte-length │ 1.0.2 │ MIT ║ +║ 1049 │ array-buffer-to-hex │ 1.0.0 │ MIT ║ +║ 1050 │ array-flatten │ 1.1.1 │ MIT ║ +║ 1051 │ array-includes │ 3.1.8 │ MIT ║ +║ 1052 │ array-union │ 2.1.0 │ MIT ║ +║ 1053 │ array.prototype.findlast │ 1.2.5 │ MIT ║ +║ 1054 │ array.prototype.findlastindex │ 1.2.6 │ MIT ║ +║ 1055 │ array.prototype.flat │ 1.3.3 │ MIT ║ +║ 1056 │ array.prototype.flatmap │ 1.3.3 │ MIT ║ +║ 1057 │ array.prototype.tosorted │ 1.1.4 │ MIT ║ +║ 1058 │ arraybuffer.prototype.slice │ 1.0.4 │ MIT ║ +║ 1059 │ arrify │ 2.0.1 │ MIT ║ +║ 1060 │ asap │ 2.0.6 │ MIT ║ +║ 1061 │ asn1 │ 0.2.6 │ MIT ║ +║ 1062 │ asn1.js │ 4.10.1 │ MIT ║ +║ 1063 │ assert │ 2.1.0 │ MIT ║ +║ 1064 │ ast-types │ 0.13.4 │ MIT ║ +║ 1065 │ ast-types-flow │ 0.0.8 │ MIT ║ +║ 1066 │ astring │ 1.9.0 │ MIT ║ +║ 1067 │ async │ 3.2.6 │ MIT ║ +║ 1068 │ async-function │ 1.0.0 │ MIT ║ +║ 1069 │ async-lock │ 1.4.1 │ MIT ║ +║ 1070 │ async-mutex │ 0.5.0 │ MIT ║ +║ 1071 │ async-retry │ 1.3.3 │ MIT ║ +║ 1072 │ asynckit │ 0.4.0 │ MIT ║ +║ 1073 │ at-least-node │ 1.0.0 │ ISC ║ +║ 1074 │ atlassian-openapi │ 1.0.21 │ MIT ║ +║ 1075 │ atomic-sleep │ 1.0.0 │ MIT ║ +║ 1076 │ autolinker │ 3.16.2 │ MIT ║ +║ 1077 │ available-typed-arrays │ 1.0.7 │ MIT ║ +║ 1078 │ avsc │ 5.7.7 │ MIT ║ +║ 1079 │ aws-ssl-profiles │ 1.1.2 │ MIT ║ +║ 1080 │ axe-core │ 4.10.3 │ MPL-2.0 ║ +║ 1081 │ axios │ 1.9.0 │ MIT ║ +║ 1082 │ axios-cached-dns-resolve │ 0.5.2 │ MIT ║ +║ 1083 │ axobject-query │ 4.1.0 │ Apache-2.0 ║ +║ 1084 │ azure-devops-node-api │ 14.1.0 │ MIT ║ +║ 1085 │ b4a │ 1.6.7 │ Apache-2.0 ║ +║ 1086 │ babel-jest │ 29.7.0 │ MIT ║ +║ 1087 │ babel-plugin-istanbul │ 6.1.1 │ BSD-3-Clause ║ +║ 1088 │ babel-plugin-jest-hoist │ 29.6.3 │ MIT ║ +║ 1089 │ babel-plugin-macros │ 3.1.0 │ MIT ║ +║ 1090 │ babel-plugin-polyfill-corejs2 │ 0.4.13 │ MIT ║ +║ 1091 │ babel-plugin-polyfill-corejs3 │ 0.11.1 │ MIT ║ +║ 1092 │ babel-plugin-polyfill-regenerator │ 0.6.4 │ MIT ║ +║ 1093 │ babel-polyfill │ 6.26.0 │ MIT ║ +║ 1094 │ babel-preset-current-node-syntax │ 1.1.0 │ MIT ║ +║ 1095 │ babel-preset-jest │ 29.6.3 │ MIT ║ +║ 1096 │ babel-runtime │ 6.26.0 │ MIT ║ +║ 1097 │ backo2 │ 1.0.2 │ MIT ║ +║ 1098 │ bail │ 2.0.2 │ MIT ║ +║ 1099 │ balanced-match │ 1.0.2 │ MIT ║ +║ 1100 │ bare-events │ 2.5.4 │ Apache-2.0 ║ +║ 1101 │ base64-arraybuffer │ 0.1.5 │ MIT ║ +║ 1102 │ base64-js │ 1.5.1 │ MIT ║ +║ 1103 │ base64-stream │ 1.0.0 │ MIT ║ +║ 1104 │ base64url │ 3.0.1 │ MIT ║ +║ 1105 │ basic-auth │ 2.0.1 │ MIT ║ +║ 1106 │ basic-ftp │ 5.0.5 │ MIT ║ +║ 1107 │ batch │ 0.6.1 │ MIT ║ +║ 1108 │ baz │ NOT-SET │ ║ +║ 1109 │ bcrypt-pbkdf │ 1.0.2 │ BSD-3-Clause ║ +║ 1110 │ beep-boop │ 1.2.3 │ ║ +║ 1111 │ before-after-hook │ 2.2.3 │ Apache-2.0 ║ +║ 1112 │ better-sqlite3 │ 11.9.1 │ MIT ║ +║ 1113 │ better-sqlite3 │ 9.6.0 │ MIT ║ +║ 1114 │ bfj │ 8.0.0 │ MIT ║ +║ 1115 │ big.js │ 5.2.2 │ MIT ║ +║ 1116 │ bignumber.js │ 9.3.0 │ MIT ║ +║ 1117 │ bin │ 1.0.0 │ BSD-2-Clause ║ +║ 1118 │ binary-extensions │ 2.3.0 │ MIT ║ +║ 1119 │ bindings │ 1.5.0 │ MIT ║ +║ 1120 │ bintrees │ 1.0.2 │ MIT ║ +║ 1121 │ bitbucket │ 2.12.0 │ MIT ║ +║ 1122 │ bl │ 4.1.0 │ MIT ║ +║ 1123 │ bluebird │ 3.7.2 │ MIT ║ +║ 1124 │ bn.js │ 4.12.2 │ MIT ║ +║ 1125 │ bn.js │ 5.2.2 │ MIT ║ +║ 1126 │ body-parser │ 1.20.3 │ MIT ║ +║ 1127 │ bonjour-service │ 1.3.0 │ MIT ║ +║ 1128 │ boolbase │ 1.0.0 │ ISC ║ +║ 1129 │ boolean │ 3.2.0 │ MIT ║ +║ 1130 │ bottleneck │ 2.19.5 │ MIT ║ +║ 1131 │ bowser │ 2.11.0 │ MIT ║ +║ 1132 │ brace-expansion │ 1.1.11 │ MIT ║ +║ 1133 │ brace-expansion │ 2.0.1 │ MIT ║ +║ 1134 │ braces │ 3.0.3 │ MIT ║ +║ 1135 │ brorand │ 1.1.0 │ MIT ║ +║ 1136 │ brotli-wasm │ 3.0.1 │ Apache-2.0 ║ +║ 1137 │ browser-resolve │ 2.0.0 │ MIT ║ +║ 1138 │ browser_field │ NOT-SET │ ║ +║ 1139 │ browserify-aes │ 1.2.0 │ MIT ║ +║ 1140 │ browserify-cipher │ 1.0.1 │ MIT ║ +║ 1141 │ browserify-des │ 1.0.2 │ MIT ║ +║ 1142 │ browserify-rsa │ 4.1.1 │ MIT ║ +║ 1143 │ browserify-sign │ 4.2.3 │ ISC ║ +║ 1144 │ browserify-zlib │ 0.2.0 │ MIT ║ +║ 1145 │ browserslist │ 4.24.4 │ MIT ║ +║ 1146 │ bser │ 2.1.1 │ Apache-2.0 ║ +║ 1147 │ btoa │ 1.2.1 │ (MIT OR Apache-2.0) ║ +║ 1148 │ btoa-lite │ 1.0.0 │ MIT ║ +║ 1149 │ buffer │ 5.6.0 │ MIT ║ +║ 1150 │ buffer │ 5.7.1 │ MIT ║ +║ 1151 │ buffer │ 6.0.3 │ MIT ║ +║ 1152 │ buffer-crc32 │ 1.0.0 │ MIT ║ +║ 1153 │ buffer-crc32 │ 0.2.13 │ MIT ║ +║ 1154 │ buffer-equal-constant-time │ 1.0.1 │ BSD-3-Clause ║ +║ 1155 │ buffer-from │ 1.1.2 │ MIT ║ +║ 1156 │ buffer-xor │ 1.0.3 │ MIT ║ +║ 1157 │ buildcheck │ 0.0.6 │ MIT ║ +║ 1158 │ builtin-status-codes │ 3.0.0 │ MIT ║ +║ 1159 │ bundle-name │ 4.1.0 │ MIT ║ +║ 1160 │ busboy │ 1.6.0 │ MIT ║ +║ 1161 │ byline │ 5.0.0 │ MIT ║ +║ 1162 │ bytes │ 3.1.2 │ MIT ║ +║ 1163 │ cacache │ 19.0.1 │ ISC ║ +║ 1164 │ cacache │ 18.0.4 │ ISC ║ +║ 1165 │ cache-content-type │ 1.0.1 │ MIT ║ +║ 1166 │ cacheable-lookup │ 6.1.0 │ MIT ║ +║ 1167 │ call-bind │ 1.0.8 │ MIT ║ +║ 1168 │ call-bind-apply-helpers │ 1.0.2 │ MIT ║ +║ 1169 │ call-bound │ 1.0.4 │ MIT ║ +║ 1170 │ call-me-maybe │ 1.0.2 │ MIT ║ +║ 1171 │ callsites │ 3.1.0 │ MIT ║ +║ 1172 │ camel-case │ 4.1.2 │ MIT ║ +║ 1173 │ camelcase │ 5.3.1 │ MIT ║ +║ 1174 │ camelcase │ 5.0.0 │ MIT ║ +║ 1175 │ camelcase │ 6.3.0 │ MIT ║ +║ 1176 │ caniuse-api │ 3.0.0 │ MIT ║ +║ 1177 │ caniuse-lite │ 1.0.30001716 │ CC-BY-4.0 ║ +║ 1178 │ ccount │ 2.0.1 │ MIT ║ +║ 1179 │ chalk │ 2.4.2 │ MIT ║ +║ 1180 │ chalk │ 3.0.0 │ MIT ║ +║ 1181 │ chalk │ 4.1.2 │ MIT ║ +║ 1182 │ char-regex │ 1.0.2 │ MIT ║ +║ 1183 │ character-entities │ 2.0.2 │ MIT ║ +║ 1184 │ character-entities │ 1.2.4 │ MIT ║ +║ 1185 │ character-entities-legacy │ 1.1.4 │ MIT ║ +║ 1186 │ character-reference-invalid │ 1.1.4 │ MIT ║ +║ 1187 │ chardet │ 0.7.0 │ MIT ║ +║ 1188 │ check-types │ 11.2.3 │ MIT ║ +║ 1189 │ chokidar │ 3.6.0 │ MIT ║ +║ 1190 │ chokidar │ 4.0.3 │ MIT ║ +║ 1191 │ chownr │ 3.0.0 │ BlueOak-1.0.0 ║ +║ 1192 │ chownr │ 2.0.0 │ ISC ║ +║ 1193 │ chownr │ 1.1.4 │ ISC ║ +║ 1194 │ chrome-trace-event │ 1.0.4 │ MIT ║ +║ 1195 │ ci-info │ 3.9.0 │ MIT ║ +║ 1196 │ cidr-regex │ 3.1.1 │ BSD-2-Clause ║ +║ 1197 │ cipher-base │ 1.0.6 │ MIT ║ +║ 1198 │ cjs-module-lexer │ 1.4.3 │ MIT ║ +║ 1199 │ cjs-use │ NOT-SET │ ║ +║ 1200 │ classnames │ 2.5.1 │ MIT ║ +║ 1201 │ clean-css │ 5.3.3 │ MIT ║ +║ 1202 │ clean-git-ref │ 2.0.1 │ Apache-2.0 ║ +║ 1203 │ clean-stack │ 2.2.0 │ MIT ║ +║ 1204 │ cli-cursor │ 3.1.0 │ MIT ║ +║ 1205 │ cli-spinners │ 2.9.2 │ MIT ║ +║ 1206 │ cli-width │ 3.0.0 │ ISC ║ +║ 1207 │ client-only │ 0.0.1 │ MIT ║ +║ 1208 │ cliui │ 7.0.4 │ ISC ║ +║ 1209 │ cliui │ 8.0.1 │ ISC ║ +║ 1210 │ clone │ 1.0.4 │ MIT ║ +║ 1211 │ clone │ 2.1.2 │ MIT ║ +║ 1212 │ clsx │ 2.1.1 │ MIT ║ +║ 1213 │ clsx │ 1.2.1 │ MIT ║ +║ 1214 │ cluster-key-slot │ 1.1.2 │ Apache-2.0 ║ +║ 1215 │ clz-buffer │ 1.0.0 │ ISC ║ +║ 1216 │ co │ 4.6.0 │ MIT ║ +║ 1217 │ code-block-writer │ 13.0.3 │ MIT ║ +║ 1218 │ codemirror │ 6.0.1 │ MIT ║ +║ 1219 │ codemirror │ 5.65.19 │ MIT ║ +║ 1220 │ codemirror-graphql │ 2.2.1 │ MIT ║ +║ 1221 │ codeowners-utils │ 1.0.2 │ MIT ║ +║ 1222 │ collect-v8-coverage │ 1.0.2 │ MIT ║ +║ 1223 │ color │ 3.2.1 │ MIT ║ +║ 1224 │ color-convert │ 2.0.1 │ MIT ║ +║ 1225 │ color-convert │ 1.9.3 │ MIT ║ +║ 1226 │ color-name │ 1.1.3 │ MIT ║ +║ 1227 │ color-name │ 1.1.4 │ MIT ║ +║ 1228 │ color-string │ 1.9.1 │ MIT ║ +║ 1229 │ colord │ 2.9.3 │ MIT ║ +║ 1230 │ colorette │ 2.0.19 │ MIT ║ +║ 1231 │ colorette │ 2.0.20 │ MIT ║ +║ 1232 │ colorspace │ 1.1.4 │ MIT ║ +║ 1233 │ combined-stream │ 1.0.8 │ MIT ║ +║ 1234 │ comma-separated-tokens │ 2.0.3 │ MIT ║ +║ 1235 │ comma-separated-tokens │ 1.0.8 │ MIT ║ +║ 1236 │ commander │ 10.0.1 │ MIT ║ +║ 1237 │ commander │ 12.1.0 │ MIT ║ +║ 1238 │ commander │ 2.20.3 │ MIT ║ +║ 1239 │ commander │ 8.3.0 │ MIT ║ +║ 1240 │ commander │ 5.1.0 │ MIT ║ +║ 1241 │ commander │ 4.1.1 │ MIT ║ +║ 1242 │ commander │ 7.2.0 │ MIT ║ +║ 1243 │ common-tags │ 1.8.2 │ MIT ║ +║ 1244 │ commondir │ 1.0.1 │ MIT ║ +║ 1245 │ compress-commons │ 5.0.3 │ MIT ║ +║ 1246 │ compress-commons │ 6.0.2 │ MIT ║ +║ 1247 │ compressible │ 2.0.18 │ MIT ║ +║ 1248 │ compression │ 1.8.0 │ MIT ║ +║ 1249 │ compute-gcd │ 1.2.1 │ MIT ║ +║ 1250 │ compute-lcm │ 1.1.2 │ MIT ║ +║ 1251 │ concat-buffers │ 1.0.0 │ MIT ║ +║ 1252 │ concat-map │ 0.0.1 │ MIT ║ +║ 1253 │ concat-stream │ 2.0.0 │ MIT ║ +║ 1254 │ concat-stream │ 1.6.2 │ MIT ║ +║ 1255 │ concat-with-sourcemaps │ 1.1.0 │ ISC ║ +║ 1256 │ connect │ 3.7.0 │ MIT ║ +║ 1257 │ connect-history-api-fallback │ 2.0.0 │ MIT ║ +║ 1258 │ connect-session-knex │ 4.0.2 │ ISC ║ +║ 1259 │ console-browserify │ 1.2.0 │ MIT ║ +║ 1260 │ constants-browserify │ 1.0.0 │ MIT ║ +║ 1261 │ content-disposition │ 0.5.4 │ MIT ║ +║ 1262 │ content-type │ 1.0.5 │ MIT ║ +║ 1263 │ convert-source-map │ 1.9.0 │ MIT ║ +║ 1264 │ convert-source-map │ 2.0.0 │ MIT ║ +║ 1265 │ cookie │ 0.7.2 │ MIT ║ +║ 1266 │ cookie │ 0.7.1 │ MIT ║ +║ 1267 │ cookie │ 0.4.2 │ MIT ║ +║ 1268 │ cookie-parser │ 1.4.7 │ MIT ║ +║ 1269 │ cookie-signature │ 1.0.6 │ MIT ║ +║ 1270 │ cookie-signature │ 1.0.7 │ MIT ║ +║ 1271 │ cookies │ 0.9.1 │ MIT ║ +║ 1272 │ copy-to-clipboard │ 3.3.3 │ MIT ║ +║ 1273 │ core-js │ 3.42.0 │ MIT ║ +║ 1274 │ core-js │ 2.6.12 │ MIT ║ +║ 1275 │ core-js-compat │ 3.42.0 │ MIT ║ +║ 1276 │ core-js-pure │ 3.42.0 │ MIT ║ +║ 1277 │ core-util-is │ 1.0.3 │ MIT ║ +║ 1278 │ cors │ 2.8.5 │ MIT ║ +║ 1279 │ cors-gate │ 1.1.3 │ MIT ║ +║ 1280 │ cosmiconfig │ 7.1.0 │ MIT ║ +║ 1281 │ cosmiconfig │ 8.3.6 │ MIT ║ +║ 1282 │ cosmiconfig │ 6.0.0 │ MIT ║ +║ 1283 │ cpu-features │ 0.0.10 │ MIT ║ +║ 1284 │ crc │ 3.8.0 │ MIT ║ +║ 1285 │ crc-32 │ 1.2.2 │ Apache-2.0 ║ +║ 1286 │ crc32-stream │ 5.0.1 │ MIT ║ +║ 1287 │ crc32-stream │ 6.0.0 │ MIT ║ +║ 1288 │ create-ecdh │ 4.0.4 │ MIT ║ +║ 1289 │ create-hash │ 1.2.0 │ MIT ║ +║ 1290 │ create-hmac │ 1.1.7 │ MIT ║ +║ 1291 │ create-jest │ 29.7.0 │ MIT ║ +║ 1292 │ create-require │ 1.1.1 │ MIT ║ +║ 1293 │ crelt │ 1.0.6 │ MIT ║ +║ 1294 │ cron │ 3.5.0 │ MIT ║ +║ 1295 │ cron-parser │ 4.9.0 │ MIT ║ +║ 1296 │ cronstrue │ 2.59.0 │ MIT ║ +║ 1297 │ cross-env │ 7.0.3 │ MIT ║ +║ 1298 │ cross-fetch │ 4.1.0 │ MIT ║ +║ 1299 │ cross-fetch │ 3.2.0 │ MIT ║ +║ 1300 │ cross-fetch-polyfill │ 0.0.0 │ MIT ║ +║ 1301 │ cross-inspect │ 1.0.1 │ MIT ║ +║ 1302 │ cross-spawn │ 7.0.6 │ MIT ║ +║ 1303 │ crypto-browserify │ 3.12.1 │ MIT ║ +║ 1304 │ css-box-model │ 1.2.1 │ MIT ║ +║ 1305 │ css-declaration-sorter │ 6.4.1 │ ISC ║ +║ 1306 │ css-in-js-utils │ 3.1.0 │ MIT ║ +║ 1307 │ css-loader │ 6.11.0 │ MIT ║ +║ 1308 │ css-select │ 4.3.0 │ BSD-2-Clause ║ +║ 1309 │ css-tree │ 1.1.3 │ MIT ║ +║ 1310 │ css-vendor │ 2.0.8 │ MIT ║ +║ 1311 │ css-what │ 6.1.0 │ BSD-2-Clause ║ +║ 1312 │ css.escape │ 1.5.1 │ MIT ║ +║ 1313 │ cssesc │ 3.0.0 │ MIT ║ +║ 1314 │ cssnano │ 5.1.15 │ MIT ║ +║ 1315 │ cssnano-preset-default │ 5.2.14 │ MIT ║ +║ 1316 │ cssnano-utils │ 3.1.0 │ MIT ║ +║ 1317 │ csso │ 4.2.0 │ MIT ║ +║ 1318 │ cssom │ 0.5.0 │ MIT ║ +║ 1319 │ cssom │ 0.3.8 │ MIT ║ +║ 1320 │ cssstyle │ 2.3.0 │ MIT ║ +║ 1321 │ cssstyle │ 4.3.1 │ MIT ║ +║ 1322 │ csstype │ 2.6.21 │ MIT ║ +║ 1323 │ csstype │ 3.1.3 │ MIT ║ +║ 1324 │ ctrlc-windows │ 2.2.0 │ MIT ║ +║ 1325 │ d3-color │ 3.1.0 │ ISC ║ +║ 1326 │ d3-dispatch │ 3.0.1 │ ISC ║ +║ 1327 │ d3-drag │ 3.0.0 │ ISC ║ +║ 1328 │ d3-ease │ 3.0.1 │ BSD-3-Clause ║ +║ 1329 │ d3-interpolate │ 3.0.1 │ ISC ║ +║ 1330 │ d3-path │ 3.1.0 │ ISC ║ +║ 1331 │ d3-selection │ 3.0.0 │ ISC ║ +║ 1332 │ d3-shape │ 3.2.0 │ ISC ║ +║ 1333 │ d3-timer │ 3.0.1 │ ISC ║ +║ 1334 │ d3-transition │ 3.0.1 │ ISC ║ +║ 1335 │ d3-zoom │ 3.0.0 │ ISC ║ +║ 1336 │ dagre │ 0.8.5 │ MIT ║ +║ 1337 │ damerau-levenshtein │ 1.0.8 │ BSD-2-Clause ║ +║ 1338 │ data-uri-to-buffer │ 4.0.1 │ MIT ║ +║ 1339 │ data-uri-to-buffer │ 6.0.2 │ MIT ║ +║ 1340 │ data-urls │ 3.0.2 │ MIT ║ +║ 1341 │ data-urls │ 5.0.0 │ MIT ║ +║ 1342 │ data-view-buffer │ 1.0.2 │ MIT ║ +║ 1343 │ data-view-byte-length │ 1.0.2 │ MIT ║ +║ 1344 │ data-view-byte-offset │ 1.0.1 │ MIT ║ +║ 1345 │ dataloader │ 2.2.3 │ MIT ║ +║ 1346 │ date-fns │ 2.30.0 │ MIT ║ +║ 1347 │ date-format │ 4.0.14 │ MIT ║ +║ 1348 │ dateformat │ 3.0.3 │ MIT ║ +║ 1349 │ debounce │ 1.2.1 │ MIT ║ +║ 1350 │ debounce-promise │ 3.1.2 │ MIT ║ +║ 1351 │ debug │ 4.3.4 │ MIT ║ +║ 1352 │ debug │ 2.6.9 │ MIT ║ +║ 1353 │ debug │ 4.4.0 │ MIT ║ +║ 1354 │ debug │ 3.2.7 │ MIT ║ +║ 1355 │ decimal.js │ 10.5.0 │ MIT ║ +║ 1356 │ decode-named-character-reference │ 1.1.0 │ MIT ║ +║ 1357 │ decompress-response │ 6.0.0 │ MIT ║ +║ 1358 │ dedent │ 1.5.3 │ MIT ║ +║ 1359 │ deep-equal │ 2.2.3 │ MIT ║ +║ 1360 │ deep-equal │ 1.0.1 │ MIT ║ +║ 1361 │ deep-extend │ 0.6.0 │ MIT ║ +║ 1362 │ deep-is │ 0.1.4 │ MIT ║ +║ 1363 │ deepmerge │ 4.3.1 │ MIT ║ +║ 1364 │ default-browser │ 5.2.1 │ MIT ║ +║ 1365 │ default-browser-id │ 5.0.0 │ MIT ║ +║ 1366 │ defaults │ 1.0.4 │ MIT ║ +║ 1367 │ define-data-property │ 1.1.4 │ MIT ║ +║ 1368 │ define-lazy-prop │ 3.0.0 │ MIT ║ +║ 1369 │ define-lazy-prop │ 2.0.0 │ MIT ║ +║ 1370 │ define-properties │ 1.2.1 │ MIT ║ +║ 1371 │ degenerator │ 5.0.1 │ MIT ║ +║ 1372 │ delayed-stream │ 1.0.0 │ MIT ║ +║ 1373 │ delegates │ 1.0.0 │ MIT ║ +║ 1374 │ demo │ 1.0.1 │ MIT ║ +║ 1375 │ denque │ 2.1.0 │ Apache-2.0 ║ +║ 1376 │ depd │ 2.0.0 │ MIT ║ +║ 1377 │ depd │ 1.1.2 │ MIT ║ +║ 1378 │ dependency-graph │ 0.11.0 │ MIT ║ +║ 1379 │ deprecation │ 2.3.1 │ ISC ║ +║ 1380 │ dequal │ 2.0.3 │ MIT ║ +║ 1381 │ des.js │ 1.1.0 │ MIT ║ +║ 1382 │ destroy │ 1.2.0 │ MIT ║ +║ 1383 │ destroyable-server │ 1.1.1 │ Apache-2.0 ║ +║ 1384 │ detect-libc │ 2.0.4 │ Apache-2.0 ║ +║ 1385 │ detect-newline │ 3.1.0 │ MIT ║ +║ 1386 │ detect-node │ 2.1.0 │ MIT ║ +║ 1387 │ detect-node-es │ 1.1.0 │ MIT ║ +║ 1388 │ detect-port-alt │ 1.1.6 │ MIT ║ +║ 1389 │ diff │ 4.0.2 │ BSD-3-Clause ║ +║ 1390 │ diff │ 5.2.0 │ BSD-3-Clause ║ +║ 1391 │ diff-sequences │ 29.6.3 │ MIT ║ +║ 1392 │ diff3 │ 0.0.3 │ MIT ║ +║ 1393 │ diffie-hellman │ 5.0.3 │ MIT ║ +║ 1394 │ dir-glob │ 3.0.1 │ MIT ║ +║ 1395 │ discontinuous-range │ 1.0.0 │ MIT ║ +║ 1396 │ dist │ 1.0.0 │ BSD-2-Clause ║ +║ 1397 │ dns-packet │ 5.6.1 │ MIT ║ +║ 1398 │ docker-compose │ 0.24.8 │ MIT ║ +║ 1399 │ docker-modem │ 5.0.6 │ Apache-2.0 ║ +║ 1400 │ docker-modem │ 3.0.8 │ Apache-2.0 ║ +║ 1401 │ dockerode │ 4.0.6 │ Apache-2.0 ║ +║ 1402 │ dockerode │ 3.3.5 │ Apache-2.0 ║ +║ 1403 │ doctrine │ 2.1.0 │ Apache-2.0 ║ +║ 1404 │ doctrine │ 3.0.0 │ Apache-2.0 ║ +║ 1405 │ dom-accessibility-api │ 0.6.3 │ MIT ║ +║ 1406 │ dom-accessibility-api │ 0.5.16 │ MIT ║ +║ 1407 │ dom-converter │ 0.2.0 │ MIT ║ +║ 1408 │ dom-helpers │ 5.2.1 │ MIT ║ +║ 1409 │ dom-helpers/activeElement │ NOT-SET │ ║ +║ 1410 │ dom-helpers/addClass │ NOT-SET │ ║ +║ 1411 │ dom-helpers/addEventListener │ NOT-SET │ ║ +║ 1412 │ dom-helpers/animate │ NOT-SET │ ║ +║ 1413 │ dom-helpers/animationFrame │ NOT-SET │ ║ +║ 1414 │ dom-helpers/attribute │ NOT-SET │ ║ +║ 1415 │ dom-helpers/camelize │ NOT-SET │ ║ +║ 1416 │ dom-helpers/camelizeStyle │ NOT-SET │ ║ +║ 1417 │ dom-helpers/canUseDOM │ NOT-SET │ ║ +║ 1418 │ dom-helpers/childElements │ NOT-SET │ ║ +║ 1419 │ dom-helpers/childNodes │ NOT-SET │ ║ +║ 1420 │ dom-helpers/clear │ NOT-SET │ ║ +║ 1421 │ dom-helpers/closest │ NOT-SET │ ║ +║ 1422 │ dom-helpers/collectElements │ NOT-SET │ ║ +║ 1423 │ dom-helpers/collectSiblings │ NOT-SET │ ║ +║ 1424 │ dom-helpers/contains │ NOT-SET │ ║ +║ 1425 │ dom-helpers/css │ NOT-SET │ ║ +║ 1426 │ dom-helpers/filterEventHandler │ NOT-SET │ ║ +║ 1427 │ dom-helpers/getComputedStyle │ NOT-SET │ ║ +║ 1428 │ dom-helpers/getScrollAccessor │ NOT-SET │ ║ +║ 1429 │ dom-helpers/hasClass │ NOT-SET │ ║ +║ 1430 │ dom-helpers/height │ NOT-SET │ ║ +║ 1431 │ dom-helpers/hyphenate │ NOT-SET │ ║ +║ 1432 │ dom-helpers/hyphenateStyle │ NOT-SET │ ║ +║ 1433 │ dom-helpers/insertAfter │ NOT-SET │ ║ +║ 1434 │ dom-helpers/isDocument │ NOT-SET │ ║ +║ 1435 │ dom-helpers/isInput │ NOT-SET │ ║ +║ 1436 │ dom-helpers/isTransform │ NOT-SET │ ║ +║ 1437 │ dom-helpers/isVisible │ NOT-SET │ ║ +║ 1438 │ dom-helpers/isWindow │ NOT-SET │ ║ +║ 1439 │ dom-helpers/listen │ NOT-SET │ ║ +║ 1440 │ dom-helpers/matches │ NOT-SET │ ║ +║ 1441 │ dom-helpers/nextUntil │ NOT-SET │ ║ +║ 1442 │ dom-helpers/offset │ NOT-SET │ ║ +║ 1443 │ dom-helpers/offsetParent │ NOT-SET │ ║ +║ 1444 │ dom-helpers/ownerDocument │ NOT-SET │ ║ +║ 1445 │ dom-helpers/ownerWindow │ NOT-SET │ ║ +║ 1446 │ dom-helpers/parents │ NOT-SET │ ║ +║ 1447 │ dom-helpers/position │ NOT-SET │ ║ +║ 1448 │ dom-helpers/prepend │ NOT-SET │ ║ +║ 1449 │ dom-helpers/querySelectorAll │ NOT-SET │ ║ +║ 1450 │ dom-helpers/remove │ NOT-SET │ ║ +║ 1451 │ dom-helpers/removeClass │ NOT-SET │ ║ +║ 1452 │ dom-helpers/removeEventListener │ NOT-SET │ ║ +║ 1453 │ dom-helpers/scrollLeft │ NOT-SET │ ║ +║ 1454 │ dom-helpers/scrollParent │ NOT-SET │ ║ +║ 1455 │ dom-helpers/scrollTo │ NOT-SET │ ║ +║ 1456 │ dom-helpers/scrollTop │ NOT-SET │ ║ +║ 1457 │ dom-helpers/scrollbarSize │ NOT-SET │ ║ +║ 1458 │ dom-helpers/siblings │ NOT-SET │ ║ +║ 1459 │ dom-helpers/text │ NOT-SET │ ║ +║ 1460 │ dom-helpers/toggleClass │ NOT-SET │ ║ +║ 1461 │ dom-helpers/transitionEnd │ NOT-SET │ ║ +║ 1462 │ dom-helpers/triggerEvent │ NOT-SET │ ║ +║ 1463 │ dom-helpers/width │ NOT-SET │ ║ +║ 1464 │ dom-serializer │ 1.4.1 │ MIT ║ +║ 1465 │ domain-browser │ 4.22.0 │ MIT ║ +║ 1466 │ domelementtype │ 2.3.0 │ BSD-2-Clause ║ +║ 1467 │ domexception │ 4.0.0 │ MIT ║ +║ 1468 │ domhandler │ 4.3.1 │ BSD-2-Clause ║ +║ 1469 │ dompurify │ 3.2.5 │ (MPL-2.0 OR Apache-2.0) ║ +║ 1470 │ dompurify │ 3.2.4 │ (MPL-2.0 OR Apache-2.0) ║ +║ 1471 │ domutils │ 2.8.0 │ BSD-2-Clause ║ +║ 1472 │ dot-case │ 3.0.4 │ MIT ║ +║ 1473 │ drange │ 1.1.1 │ MIT ║ +║ 1474 │ dset │ 3.1.4 │ MIT ║ +║ 1475 │ dunder-proto │ 1.0.1 │ MIT ║ +║ 1476 │ duplexer │ 0.1.2 │ MIT ║ +║ 1477 │ duplexify │ 3.7.1 │ MIT ║ +║ 1478 │ duplexify │ 4.1.3 │ MIT ║ +║ 1479 │ eastasianwidth │ 0.2.0 │ MIT ║ +║ 1480 │ ebnf │ 1.9.1 │ MIT ║ +║ 1481 │ ecdsa-sig-formatter │ 1.0.11 │ Apache-2.0 ║ +║ 1482 │ ee-first │ 1.1.1 │ MIT ║ +║ 1483 │ electron-to-chromium │ 1.5.145 │ ISC ║ +║ 1484 │ elliptic │ 6.6.1 │ MIT ║ +║ 1485 │ emittery │ 0.13.1 │ MIT ║ +║ 1486 │ emoji-regex │ 9.2.2 │ MIT ║ +║ 1487 │ emoji-regex │ 8.0.0 │ MIT ║ +║ 1488 │ emojis-list │ 3.0.0 │ MIT ║ +║ 1489 │ enabled │ 2.0.0 │ MIT ║ +║ 1490 │ encodeurl │ 1.0.2 │ MIT ║ +║ 1491 │ encodeurl │ 2.0.0 │ MIT ║ +║ 1492 │ encoding │ 0.1.13 │ MIT ║ +║ 1493 │ end-of-stream │ 1.4.4 │ MIT ║ +║ 1494 │ enhanced-resolve │ 5.18.1 │ MIT ║ +║ 1495 │ entities │ 2.2.0 │ BSD-2-Clause ║ +║ 1496 │ entities │ 4.5.0 │ BSD-2-Clause ║ +║ 1497 │ entities │ 2.1.0 │ BSD-2-Clause ║ +║ 1498 │ entities │ 6.0.0 │ BSD-2-Clause ║ +║ 1499 │ env-paths │ 2.2.1 │ MIT ║ +║ 1500 │ err-code │ 2.0.3 │ MIT ║ +║ 1501 │ error-ex │ 1.3.2 │ MIT ║ +║ 1502 │ error-stack-parser │ 2.1.4 │ MIT ║ +║ 1503 │ es-abstract │ 1.23.9 │ MIT ║ +║ 1504 │ es-aggregate-error │ 1.0.13 │ MIT ║ +║ 1505 │ es-define-property │ 1.0.1 │ MIT ║ +║ 1506 │ es-errors │ 1.3.0 │ MIT ║ +║ 1507 │ es-get-iterator │ 1.1.3 │ MIT ║ +║ 1508 │ es-iterator-helpers │ 1.2.1 │ MIT ║ +║ 1509 │ es-module-lexer │ 1.7.0 │ MIT ║ +║ 1510 │ es-object-atoms │ 1.1.1 │ MIT ║ +║ 1511 │ es-set-tostringtag │ 2.1.0 │ MIT ║ +║ 1512 │ es-shim-unscopables │ 1.1.0 │ MIT ║ +║ 1513 │ es-to-primitive │ 1.3.0 │ MIT ║ +║ 1514 │ es6-error │ 4.1.1 │ MIT ║ +║ 1515 │ es6-promise │ 4.2.8 │ MIT ║ +║ 1516 │ esbuild │ 0.24.2 │ MIT ║ +║ 1517 │ esbuild │ 0.25.3 │ MIT ║ +║ 1518 │ esbuild-loader │ 4.3.0 │ MIT ║ +║ 1519 │ escalade │ 3.2.0 │ MIT ║ +║ 1520 │ escape-html │ 1.0.3 │ MIT ║ +║ 1521 │ escape-string-regexp │ 1.0.5 │ MIT ║ +║ 1522 │ escape-string-regexp │ 4.0.0 │ MIT ║ +║ 1523 │ escape-string-regexp │ 5.0.0 │ MIT ║ +║ 1524 │ escape-string-regexp │ 2.0.0 │ MIT ║ +║ 1525 │ escodegen │ 2.1.0 │ BSD-2-Clause ║ +║ 1526 │ escodegen │ 1.14.3 │ BSD-2-Clause ║ +║ 1527 │ eslint │ 8.57.1 │ MIT ║ +║ 1528 │ eslint-config-prettier │ 9.1.0 │ MIT ║ +║ 1529 │ eslint-formatter-friendly │ 7.0.0 │ MIT ║ +║ 1530 │ eslint-import-resolver-node │ 0.3.9 │ MIT ║ +║ 1531 │ eslint-module-utils │ 2.12.0 │ MIT ║ +║ 1532 │ eslint-plugin-deprecation │ 3.0.0 │ LGPL-3.0-or-later ║ +║ 1533 │ eslint-plugin-import │ 2.31.0 │ MIT ║ +║ 1534 │ eslint-plugin-jest │ 28.11.0 │ MIT ║ +║ 1535 │ eslint-plugin-jsx-a11y │ 6.10.2 │ MIT ║ +║ 1536 │ eslint-plugin-react │ 7.37.5 │ MIT ║ +║ 1537 │ eslint-plugin-react-hooks │ 5.2.0 │ MIT ║ +║ 1538 │ eslint-plugin-unused-imports │ 4.1.4 │ MIT ║ +║ 1539 │ eslint-scope │ 7.2.2 │ BSD-2-Clause ║ +║ 1540 │ eslint-scope │ 5.1.1 │ BSD-2-Clause ║ +║ 1541 │ eslint-visitor-keys │ 4.2.0 │ Apache-2.0 ║ +║ 1542 │ eslint-visitor-keys │ 3.4.3 │ Apache-2.0 ║ +║ 1543 │ eslint-webpack-plugin │ 4.2.0 │ MIT ║ +║ 1544 │ esm │ 3.2.25 │ MIT ║ +║ 1545 │ esm-use │ NOT-SET │ ║ +║ 1546 │ espree │ 9.6.1 │ BSD-2-Clause ║ +║ 1547 │ esprima │ 4.0.1 │ BSD-2-Clause ║ +║ 1548 │ esprima │ 1.2.2 │ BSD ║ +║ 1549 │ esquery │ 1.6.0 │ BSD-3-Clause ║ +║ 1550 │ esrecurse │ 4.3.0 │ BSD-2-Clause ║ +║ 1551 │ estraverse │ 5.3.0 │ BSD-2-Clause ║ +║ 1552 │ estraverse │ 4.3.0 │ BSD-2-Clause ║ +║ 1553 │ estree-walker │ 2.0.2 │ MIT ║ +║ 1554 │ estree-walker │ 0.6.1 │ MIT ║ +║ 1555 │ esutils │ 2.0.3 │ BSD-2-Clause ║ +║ 1556 │ etag │ 1.8.1 │ MIT ║ +║ 1557 │ event-target-shim │ 5.0.1 │ MIT ║ +║ 1558 │ eventemitter3 │ 4.0.7 │ MIT ║ +║ 1559 │ eventemitter3 │ 3.1.2 │ MIT ║ +║ 1560 │ events │ 3.3.0 │ MIT ║ +║ 1561 │ evp_bytestokey │ 1.0.3 │ MIT ║ +║ 1562 │ example │ NOT-SET │ ║ +║ 1563 │ execa │ 5.1.1 │ MIT ║ +║ 1564 │ exit │ 0.1.2 │ MIT ║ +║ 1565 │ expand-template │ 2.0.3 │ (MIT OR WTFPL) ║ +║ 1566 │ expand-tilde │ 2.0.2 │ MIT ║ +║ 1567 │ expect │ 29.7.0 │ MIT ║ +║ 1568 │ exponential-backoff │ 3.1.2 │ Apache-2.0 ║ +║ 1569 │ express │ 4.21.2 │ MIT ║ +║ 1570 │ express-http-proxy │ 2.1.1 │ MIT ║ +║ 1571 │ express-openapi-validator │ 5.4.9 │ MIT ║ +║ 1572 │ express-promise-router │ 4.1.1 │ MIT ║ +║ 1573 │ express-session │ 1.18.1 │ MIT ║ +║ 1574 │ extend │ 3.0.2 │ MIT ║ +║ 1575 │ external-editor │ 3.1.0 │ MIT ║ +║ 1576 │ false_main │ NOT-SET │ ║ +║ 1577 │ fast-copy │ 3.0.2 │ MIT ║ +║ 1578 │ fast-deep-equal │ 3.1.3 │ MIT ║ +║ 1579 │ fast-fifo │ 1.3.2 │ MIT ║ +║ 1580 │ fast-glob │ 3.3.3 │ MIT ║ +║ 1581 │ fast-json-parse │ 1.0.3 │ MIT ║ +║ 1582 │ fast-json-patch │ 3.1.1 │ MIT ║ +║ 1583 │ fast-json-stable-stringify │ 2.1.0 │ MIT ║ +║ 1584 │ fast-levenshtein │ 2.0.6 │ MIT ║ +║ 1585 │ fast-memoize │ 2.5.2 │ MIT ║ +║ 1586 │ fast-redact │ 2.1.0 │ MIT ║ +║ 1587 │ fast-safe-stringify │ 2.1.1 │ MIT ║ +║ 1588 │ fast-shallow-equal │ 1.0.0 │ ║ +║ 1589 │ fast-text-encoding │ 1.0.6 │ Apache-2.0 ║ +║ 1590 │ fast-uri │ 3.0.6 │ BSD-3-Clause ║ +║ 1591 │ fast-xml-parser │ 4.4.1 │ MIT ║ +║ 1592 │ fast-xml-parser │ 5.2.1 │ MIT ║ +║ 1593 │ fast-xml-parser │ 4.5.3 │ MIT ║ +║ 1594 │ fastest-stable-stringify │ 2.0.2 │ MIT ║ +║ 1595 │ fastq │ 1.19.1 │ ISC ║ +║ 1596 │ fault │ 1.0.4 │ MIT ║ +║ 1597 │ faye-websocket │ 0.11.4 │ Apache-2.0 ║ +║ 1598 │ fb-watchman │ 2.0.2 │ Apache-2.0 ║ +║ 1599 │ fdir │ 6.4.4 │ MIT ║ +║ 1600 │ fecha │ 4.2.3 │ MIT ║ +║ 1601 │ fetch-blob │ 3.2.0 │ MIT ║ +║ 1602 │ figures │ 3.2.0 │ MIT ║ +║ 1603 │ file-entry-cache │ 6.0.1 │ MIT ║ +║ 1604 │ file-stream-rotator │ 0.6.1 │ MIT ║ +║ 1605 │ file-type │ 16.5.4 │ MIT ║ +║ 1606 │ file-uri-to-path │ 1.0.0 │ MIT ║ +║ 1607 │ filesize │ 8.0.7 │ BSD-3-Clause ║ +║ 1608 │ fill-range │ 7.1.1 │ MIT ║ +║ 1609 │ finalhandler │ 1.1.2 │ MIT ║ +║ 1610 │ finalhandler │ 1.3.1 │ MIT ║ +║ 1611 │ find-file-up │ 2.0.1 │ MIT ║ +║ 1612 │ find-pkg │ 2.0.0 │ MIT ║ +║ 1613 │ find-root │ 1.1.0 │ MIT ║ +║ 1614 │ find-up │ 5.0.0 │ MIT ║ +║ 1615 │ find-up │ 4.1.0 │ MIT ║ +║ 1616 │ find-up │ 3.0.0 │ MIT ║ +║ 1617 │ flat-cache │ 3.2.0 │ MIT ║ +║ 1618 │ flatstr │ 1.0.12 │ MIT ║ +║ 1619 │ flatted │ 3.3.3 │ ISC ║ +║ 1620 │ fn.name │ 1.1.0 │ MIT ║ +║ 1621 │ follow-redirects │ 1.15.9 │ MIT ║ +║ 1622 │ for-each │ 0.3.5 │ MIT ║ +║ 1623 │ foreach │ 2.0.6 │ MIT ║ +║ 1624 │ foreground-child │ 3.3.1 │ ISC ║ +║ 1625 │ fork-ts-checker-webpack-plugin │ 9.1.0 │ MIT ║ +║ 1626 │ fork-ts-checker-webpack-plugin │ 6.5.3 │ MIT ║ +║ 1627 │ form-data │ 2.5.3 │ MIT ║ +║ 1628 │ form-data │ 4.0.2 │ MIT ║ +║ 1629 │ format │ 0.2.2 │ MIT ║ +║ 1630 │ formdata-polyfill │ 4.0.10 │ MIT ║ +║ 1631 │ forwarded │ 0.2.0 │ MIT ║ +║ 1632 │ framer-motion │ 6.5.1 │ MIT ║ +║ 1633 │ framesync │ 6.0.1 │ MIT ║ +║ 1634 │ fresh │ 0.5.2 │ MIT ║ +║ 1635 │ fromentries │ 1.3.2 │ MIT ║ +║ 1636 │ fs-constants │ 1.0.0 │ MIT ║ +║ 1637 │ fs-extra │ 8.1.0 │ MIT ║ +║ 1638 │ fs-extra │ 9.1.0 │ MIT ║ +║ 1639 │ fs-extra │ 10.1.0 │ MIT ║ +║ 1640 │ fs-extra │ 11.3.0 │ MIT ║ +║ 1641 │ fs-minipass │ 3.0.3 │ ISC ║ +║ 1642 │ fs-minipass │ 2.1.0 │ ISC ║ +║ 1643 │ fs-monkey │ 1.0.6 │ Unlicense ║ +║ 1644 │ fs.realpath │ 1.0.0 │ ISC ║ +║ 1645 │ fsevents │ 2.3.3 │ MIT ║ +║ 1646 │ fsevents │ 2.3.2 │ MIT ║ +║ 1647 │ function-bind │ 1.1.2 │ MIT ║ +║ 1648 │ function.prototype.name │ 1.1.8 │ MIT ║ +║ 1649 │ functional-red-black-tree │ 1.0.1 │ MIT ║ +║ 1650 │ functions-have-names │ 1.2.3 │ MIT ║ +║ 1651 │ gaxios │ 6.7.1 │ Apache-2.0 ║ +║ 1652 │ gcp-metadata │ 6.1.1 │ Apache-2.0 ║ +║ 1653 │ generate-function │ 2.3.1 │ MIT ║ +║ 1654 │ generic-names │ 4.0.0 │ MIT ║ +║ 1655 │ generic-pool │ 3.9.0 │ MIT ║ +║ 1656 │ gensync │ 1.0.0-beta.2 │ MIT ║ +║ 1657 │ get-caller-file │ 2.0.5 │ ISC ║ +║ 1658 │ get-intrinsic │ 1.3.0 │ MIT ║ +║ 1659 │ get-nonce │ 1.0.1 │ MIT ║ +║ 1660 │ get-package-type │ 0.1.0 │ MIT ║ +║ 1661 │ get-port │ 5.1.1 │ MIT ║ +║ 1662 │ get-port │ 7.1.0 │ MIT ║ +║ 1663 │ get-proto │ 1.0.1 │ MIT ║ +║ 1664 │ get-stream │ 6.0.1 │ MIT ║ +║ 1665 │ get-symbol-description │ 1.1.0 │ MIT ║ +║ 1666 │ get-tsconfig │ 4.10.0 │ MIT ║ +║ 1667 │ get-uri │ 6.0.4 │ MIT ║ +║ 1668 │ getopts │ 2.3.0 │ MIT ║ +║ 1669 │ git-up │ 7.0.0 │ MIT ║ +║ 1670 │ git-url-parse │ 14.1.0 │ MIT ║ +║ 1671 │ git-url-parse │ 15.0.0 │ MIT ║ +║ 1672 │ github-from-package │ 0.0.0 │ MIT ║ +║ 1673 │ glob │ 8.1.0 │ ISC ║ +║ 1674 │ glob │ 7.2.3 │ ISC ║ +║ 1675 │ glob │ 10.4.5 │ ISC ║ +║ 1676 │ glob-parent │ 6.0.2 │ ISC ║ +║ 1677 │ glob-parent │ 5.1.2 │ ISC ║ +║ 1678 │ glob-to-regexp │ 0.4.1 │ BSD-2-Clause ║ +║ 1679 │ global-agent │ 3.0.0 │ BSD-3-Clause ║ +║ 1680 │ global-modules │ 1.0.0 │ MIT ║ +║ 1681 │ global-modules │ 2.0.0 │ MIT ║ +║ 1682 │ global-prefix │ 1.0.2 │ MIT ║ +║ 1683 │ global-prefix │ 3.0.0 │ MIT ║ +║ 1684 │ globals │ 13.24.0 │ MIT ║ +║ 1685 │ globals │ 11.12.0 │ MIT ║ +║ 1686 │ globalthis │ 1.0.4 │ MIT ║ +║ 1687 │ globby │ 11.1.0 │ MIT ║ +║ 1688 │ google-auth-library │ 9.15.1 │ Apache-2.0 ║ +║ 1689 │ google-gax │ 4.6.0 │ Apache-2.0 ║ +║ 1690 │ google-logging-utils │ 0.0.2 │ Apache-2.0 ║ +║ 1691 │ gopd │ 1.2.0 │ MIT ║ +║ 1692 │ graceful-fs │ 4.2.11 │ ISC ║ +║ 1693 │ graphemer │ 1.4.0 │ MIT ║ +║ 1694 │ graphiql │ 3.1.1 │ MIT ║ +║ 1695 │ graphlib │ 2.1.8 │ MIT ║ +║ 1696 │ graphql │ 16.11.0 │ MIT ║ +║ 1697 │ graphql │ 15.10.1 │ MIT ║ +║ 1698 │ graphql-config │ 5.1.5 │ MIT ║ +║ 1699 │ graphql-http │ 1.22.4 │ MIT ║ +║ 1700 │ graphql-language-service │ 5.3.1 │ MIT ║ +║ 1701 │ graphql-subscriptions │ 1.2.1 │ MIT ║ +║ 1702 │ graphql-tag │ 2.12.6 │ MIT ║ +║ 1703 │ graphql-ws │ 5.16.2 │ MIT ║ +║ 1704 │ graphql-ws │ 6.0.4 │ MIT ║ +║ 1705 │ gtoken │ 7.1.0 │ MIT ║ +║ 1706 │ gzip-size │ 6.0.0 │ MIT ║ +║ 1707 │ handle-thing │ 2.0.1 │ MIT ║ +║ 1708 │ handlebars │ 4.7.8 │ MIT ║ +║ 1709 │ harmony-reflect │ 1.6.2 │ (Apache-2.0 OR MPL-1.1) ║ +║ 1710 │ has-bigints │ 1.1.0 │ MIT ║ +║ 1711 │ has-flag │ 3.0.0 │ MIT ║ +║ 1712 │ has-flag │ 4.0.0 │ MIT ║ +║ 1713 │ has-property-descriptors │ 1.0.2 │ MIT ║ +║ 1714 │ has-proto │ 1.2.0 │ MIT ║ +║ 1715 │ has-symbols │ 1.1.0 │ MIT ║ +║ 1716 │ has-tostringtag │ 1.0.2 │ MIT ║ +║ 1717 │ hash-base │ 3.0.5 │ MIT ║ +║ 1718 │ hash-base │ 3.1.0 │ MIT ║ +║ 1719 │ hash.js │ 1.1.7 │ MIT ║ +║ 1720 │ hasown │ 2.0.2 │ MIT ║ +║ 1721 │ hast-util-parse-selector │ 2.2.5 │ MIT ║ +║ 1722 │ hast-util-whitespace │ 2.0.1 │ MIT ║ +║ 1723 │ hastscript │ 6.0.0 │ MIT ║ +║ 1724 │ he │ 1.2.0 │ MIT ║ +║ 1725 │ headers-polyfill │ 3.2.5 │ MIT ║ +║ 1726 │ helmet │ 6.2.0 │ MIT ║ +║ 1727 │ hey-listen │ 1.0.8 │ MIT ║ +║ 1728 │ highlight.js │ 10.7.3 │ BSD-3-Clause ║ +║ 1729 │ highlightjs-vue │ 1.0.0 │ CC0-1.0 ║ +║ 1730 │ history │ 5.3.0 │ MIT ║ +║ 1731 │ hmac-drbg │ 1.0.1 │ MIT ║ +║ 1732 │ hoist-non-react-statics │ 3.3.2 │ BSD-3-Clause ║ +║ 1733 │ homedir-polyfill │ 1.0.3 │ MIT ║ +║ 1734 │ hoopy │ 0.1.4 │ MIT ║ +║ 1735 │ hpack.js │ 2.1.6 │ MIT ║ +║ 1736 │ hpagent │ 1.2.0 │ MIT ║ +║ 1737 │ html-encoding-sniffer │ 3.0.0 │ MIT ║ +║ 1738 │ html-encoding-sniffer │ 4.0.0 │ MIT ║ +║ 1739 │ html-entities │ 2.6.0 │ MIT ║ +║ 1740 │ html-escaper │ 2.0.2 │ MIT ║ +║ 1741 │ html-minifier-terser │ 6.1.0 │ MIT ║ +║ 1742 │ html-webpack-plugin │ 5.6.3 │ MIT ║ +║ 1743 │ htmlparser2 │ 6.1.0 │ MIT ║ +║ 1744 │ http-assert │ 1.5.0 │ MIT ║ +║ 1745 │ http-cache-semantics │ 4.1.1 │ BSD-2-Clause ║ +║ 1746 │ http-deceiver │ 1.2.7 │ MIT ║ +║ 1747 │ http-encoding │ 2.0.1 │ Apache-2.0 ║ +║ 1748 │ http-errors │ 1.8.1 │ MIT ║ +║ 1749 │ http-errors │ 2.0.0 │ MIT ║ +║ 1750 │ http-errors │ 1.6.3 │ MIT ║ +║ 1751 │ http-parser-js │ 0.5.10 │ MIT ║ +║ 1752 │ http-proxy │ 1.18.1 │ MIT ║ +║ 1753 │ http-proxy-agent │ 7.0.2 │ MIT ║ +║ 1754 │ http-proxy-agent │ 5.0.0 │ MIT ║ +║ 1755 │ http-proxy-middleware │ 3.0.5 │ MIT ║ +║ 1756 │ http-proxy-middleware │ 2.0.9 │ MIT ║ +║ 1757 │ http2-wrapper │ 2.2.1 │ MIT ║ +║ 1758 │ https-browserify │ 1.0.0 │ MIT ║ +║ 1759 │ https-proxy-agent │ 7.0.6 │ MIT ║ +║ 1760 │ https-proxy-agent │ 5.0.1 │ MIT ║ +║ 1761 │ human-signals │ 2.1.0 │ Apache-2.0 ║ +║ 1762 │ humanize-duration │ 3.32.1 │ Unlicense ║ +║ 1763 │ humanize-ms │ 1.2.1 │ MIT ║ +║ 1764 │ hyperdyperid │ 1.2.0 │ MIT ║ +║ 1765 │ hyphenate-style-name │ 1.1.0 │ BSD-3-Clause ║ +║ 1766 │ i18next │ 22.5.1 │ MIT ║ +║ 1767 │ iconv-lite │ 0.4.24 │ MIT ║ +║ 1768 │ iconv-lite │ 0.6.3 │ MIT ║ +║ 1769 │ icss-replace-symbols │ 1.1.0 │ ISC ║ +║ 1770 │ icss-utils │ 5.1.0 │ ISC ║ +║ 1771 │ idb-keyval │ 5.1.5 │ Apache-2.0 ║ +║ 1772 │ identity-obj-proxy │ 3.0.0 │ MIT ║ +║ 1773 │ ieee754 │ 1.2.1 │ BSD-3-Clause ║ +║ 1774 │ ignore │ 5.3.2 │ MIT ║ +║ 1775 │ ignore-walk │ 5.0.1 │ ISC ║ +║ 1776 │ immediate │ 3.0.6 │ MIT ║ +║ 1777 │ immer │ 9.0.21 │ MIT ║ +║ 1778 │ immutable │ 3.8.2 │ MIT ║ +║ 1779 │ import-cwd │ 3.0.0 │ MIT ║ +║ 1780 │ import-fresh │ 3.3.1 │ MIT ║ +║ 1781 │ import-from │ 3.0.0 │ MIT ║ +║ 1782 │ import-local │ 3.2.0 │ MIT ║ +║ 1783 │ imurmurhash │ 0.1.4 │ MIT ║ +║ 1784 │ indent-string │ 4.0.0 │ MIT ║ +║ 1785 │ inflight │ 1.0.6 │ ISC ║ +║ 1786 │ inherits │ 2.0.4 │ ISC ║ +║ 1787 │ inherits │ 2.0.3 │ ISC ║ +║ 1788 │ ini │ 1.3.8 │ ISC ║ +║ 1789 │ inline-style-parser │ 0.1.1 │ MIT ║ +║ 1790 │ inline-style-prefixer │ 7.0.1 │ MIT ║ +║ 1791 │ inquirer │ 8.2.6 │ MIT ║ +║ 1792 │ internal-slot │ 1.1.0 │ MIT ║ +║ 1793 │ interpret │ 2.2.0 │ MIT ║ +║ 1794 │ invalid_main │ NOT-SET │ ║ +║ 1795 │ invariant │ 2.2.4 │ MIT ║ +║ 1796 │ ioredis │ 5.6.1 │ MIT ║ +║ 1797 │ ip-address │ 9.0.5 │ MIT ║ +║ 1798 │ ip-regex │ 4.3.0 │ MIT ║ +║ 1799 │ ipaddr.js │ 1.9.1 │ MIT ║ +║ 1800 │ ipaddr.js │ 2.2.0 │ MIT ║ +║ 1801 │ is-alphabetical │ 1.0.4 │ MIT ║ +║ 1802 │ is-alphanumerical │ 1.0.4 │ MIT ║ +║ 1803 │ is-arguments │ 1.2.0 │ MIT ║ +║ 1804 │ is-array-buffer │ 3.0.5 │ MIT ║ +║ 1805 │ is-arrayish │ 0.2.1 │ MIT ║ +║ 1806 │ is-arrayish │ 0.3.2 │ MIT ║ +║ 1807 │ is-async-function │ 2.1.1 │ MIT ║ +║ 1808 │ is-bigint │ 1.1.0 │ MIT ║ +║ 1809 │ is-binary-path │ 2.1.0 │ MIT ║ +║ 1810 │ is-boolean-object │ 1.2.2 │ MIT ║ +║ 1811 │ is-buffer │ 2.0.5 │ MIT ║ +║ 1812 │ is-callable │ 1.2.7 │ MIT ║ +║ 1813 │ is-cidr │ 4.0.2 │ BSD-2-Clause ║ +║ 1814 │ is-core-module │ 2.16.1 │ MIT ║ +║ 1815 │ is-data-view │ 1.0.2 │ MIT ║ +║ 1816 │ is-date-object │ 1.1.0 │ MIT ║ +║ 1817 │ is-decimal │ 1.0.4 │ MIT ║ +║ 1818 │ is-docker │ 2.2.1 │ MIT ║ +║ 1819 │ is-docker │ 3.0.0 │ MIT ║ +║ 1820 │ is-extglob │ 2.1.1 │ MIT ║ +║ 1821 │ is-finalizationregistry │ 1.1.1 │ MIT ║ +║ 1822 │ is-fullwidth-code-point │ 3.0.0 │ MIT ║ +║ 1823 │ is-generator-fn │ 2.1.0 │ MIT ║ +║ 1824 │ is-generator-function │ 1.1.0 │ MIT ║ +║ 1825 │ is-glob │ 4.0.3 │ MIT ║ +║ 1826 │ is-hexadecimal │ 1.0.4 │ MIT ║ +║ 1827 │ is-in-browser │ 1.1.3 │ MIT ║ +║ 1828 │ is-inside-container │ 1.0.0 │ MIT ║ +║ 1829 │ is-interactive │ 1.0.0 │ MIT ║ +║ 1830 │ is-lambda │ 1.0.1 │ MIT ║ +║ 1831 │ is-map │ 2.0.3 │ MIT ║ +║ 1832 │ is-module │ 1.0.0 │ MIT ║ +║ 1833 │ is-nan │ 1.3.2 │ MIT ║ +║ 1834 │ is-network-error │ 1.1.0 │ MIT ║ +║ 1835 │ is-node-process │ 1.2.0 │ MIT ║ +║ 1836 │ is-number │ 7.0.0 │ MIT ║ +║ 1837 │ is-number-object │ 1.1.1 │ MIT ║ +║ 1838 │ is-path-inside │ 3.0.3 │ MIT ║ +║ 1839 │ is-plain-obj │ 3.0.0 │ MIT ║ +║ 1840 │ is-plain-obj │ 4.1.0 │ MIT ║ +║ 1841 │ is-plain-object │ 3.0.1 │ MIT ║ +║ 1842 │ is-plain-object │ 5.0.0 │ MIT ║ +║ 1843 │ is-plain-object │ 2.0.4 │ MIT ║ +║ 1844 │ is-potential-custom-element-name │ 1.0.1 │ MIT ║ +║ 1845 │ is-primitive │ 3.0.1 │ MIT ║ +║ 1846 │ is-promise │ 4.0.0 │ MIT ║ +║ 1847 │ is-property │ 1.0.2 │ MIT ║ +║ 1848 │ is-reference │ 1.2.1 │ MIT ║ +║ 1849 │ is-regex │ 1.2.1 │ MIT ║ +║ 1850 │ is-root │ 2.1.0 │ MIT ║ +║ 1851 │ is-set │ 2.0.3 │ MIT ║ +║ 1852 │ is-shared-array-buffer │ 1.0.4 │ MIT ║ +║ 1853 │ is-ssh │ 1.4.1 │ MIT ║ +║ 1854 │ is-stream │ 2.0.1 │ MIT ║ +║ 1855 │ is-string │ 1.1.1 │ MIT ║ +║ 1856 │ is-symbol │ 1.1.1 │ MIT ║ +║ 1857 │ is-typed-array │ 1.1.15 │ MIT ║ +║ 1858 │ is-unicode-supported │ 0.1.0 │ MIT ║ +║ 1859 │ is-weakmap │ 2.0.2 │ MIT ║ +║ 1860 │ is-weakref │ 1.1.1 │ MIT ║ +║ 1861 │ is-weakset │ 2.0.4 │ MIT ║ +║ 1862 │ is-windows │ 1.0.2 │ MIT ║ +║ 1863 │ is-wsl │ 3.1.0 │ MIT ║ +║ 1864 │ is-wsl │ 2.2.0 │ MIT ║ +║ 1865 │ isarray │ 1.0.0 │ MIT ║ +║ 1866 │ isarray │ 2.0.5 │ MIT ║ +║ 1867 │ isbinaryfile │ 5.0.4 │ MIT ║ +║ 1868 │ isexe │ 3.1.1 │ ISC ║ +║ 1869 │ isexe │ 2.0.0 │ ISC ║ +║ 1870 │ isobject │ 3.0.1 │ MIT ║ +║ 1871 │ isolated-vm │ 5.0.4 │ ISC ║ +║ 1872 │ isomorphic-dompurify │ 2.24.0 │ MIT ║ +║ 1873 │ isomorphic-form-data │ 2.0.0 │ MIT ║ +║ 1874 │ isomorphic-git │ 1.30.1 │ MIT ║ +║ 1875 │ isomorphic-rslog │ 0.0.7 │ MIT ║ +║ 1876 │ isomorphic-textencoder │ 1.0.1 │ MIT ║ +║ 1877 │ isomorphic-timers-promises │ 1.0.1 │ MIT ║ +║ 1878 │ isomorphic-ws │ 4.0.1 │ MIT ║ +║ 1879 │ isomorphic-ws │ 5.0.0 │ MIT ║ +║ 1880 │ istanbul-lib-coverage │ 3.2.2 │ BSD-3-Clause ║ +║ 1881 │ istanbul-lib-instrument │ 6.0.3 │ BSD-3-Clause ║ +║ 1882 │ istanbul-lib-instrument │ 5.2.1 │ BSD-3-Clause ║ +║ 1883 │ istanbul-lib-report │ 3.0.1 │ BSD-3-Clause ║ +║ 1884 │ istanbul-lib-source-maps │ 4.0.1 │ BSD-3-Clause ║ +║ 1885 │ istanbul-reports │ 3.1.7 │ BSD-3-Clause ║ +║ 1886 │ iterall │ 1.3.0 │ MIT ║ +║ 1887 │ iterator.prototype │ 1.1.5 │ MIT ║ +║ 1888 │ jackspeak │ 3.4.3 │ BlueOak-1.0.0 ║ +║ 1889 │ jest │ 29.7.0 │ MIT ║ +║ 1890 │ jest-changed-files │ 29.7.0 │ MIT ║ +║ 1891 │ jest-circus │ 29.7.0 │ MIT ║ +║ 1892 │ jest-cli │ 29.7.0 │ MIT ║ +║ 1893 │ jest-config │ 29.7.0 │ MIT ║ +║ 1894 │ jest-css-modules │ 2.1.0 │ ISC ║ +║ 1895 │ jest-diff │ 29.7.0 │ MIT ║ +║ 1896 │ jest-docblock │ 29.7.0 │ MIT ║ +║ 1897 │ jest-each │ 29.7.0 │ MIT ║ +║ 1898 │ jest-environment-jsdom │ 29.7.0 │ MIT ║ +║ 1899 │ jest-environment-node │ 29.7.0 │ MIT ║ +║ 1900 │ jest-get-type │ 29.6.3 │ MIT ║ +║ 1901 │ jest-haste-map │ 29.7.0 │ MIT ║ +║ 1902 │ jest-leak-detector │ 29.7.0 │ MIT ║ +║ 1903 │ jest-matcher-utils │ 29.7.0 │ MIT ║ +║ 1904 │ jest-message-util │ 29.7.0 │ MIT ║ +║ 1905 │ jest-mock │ 29.7.0 │ MIT ║ +║ 1906 │ jest-pnp-resolver │ 1.2.3 │ MIT ║ +║ 1907 │ jest-regex-util │ 29.6.3 │ MIT ║ +║ 1908 │ jest-resolve │ 29.7.0 │ MIT ║ +║ 1909 │ jest-resolve-dependencies │ 29.7.0 │ MIT ║ +║ 1910 │ jest-runner │ 29.7.0 │ MIT ║ +║ 1911 │ jest-runtime │ 29.7.0 │ MIT ║ +║ 1912 │ jest-snapshot │ 29.7.0 │ MIT ║ +║ 1913 │ jest-util │ 29.7.0 │ MIT ║ +║ 1914 │ jest-validate │ 29.7.0 │ MIT ║ +║ 1915 │ jest-watcher │ 29.7.0 │ MIT ║ +║ 1916 │ jest-worker │ 29.7.0 │ MIT ║ +║ 1917 │ jest-worker │ 27.5.1 │ MIT ║ +║ 1918 │ jiti │ 2.4.2 │ MIT ║ +║ 1919 │ jmespath │ 0.15.0 │ Apache 2.0 ║ +║ 1920 │ jose │ 6.0.10 │ MIT ║ +║ 1921 │ jose │ 5.10.0 │ MIT ║ +║ 1922 │ jose │ 4.15.9 │ MIT ║ +║ 1923 │ js-base64 │ 3.7.7 │ BSD-3-Clause ║ +║ 1924 │ js-cookie │ 2.2.1 │ MIT ║ +║ 1925 │ js-file-download │ 0.4.12 │ MIT ║ +║ 1926 │ js-levenshtein │ 1.1.6 │ MIT ║ +║ 1927 │ js-md4 │ 0.3.2 │ MIT ║ +║ 1928 │ js-tokens │ 4.0.0 │ MIT ║ +║ 1929 │ js-yaml │ 3.14.1 │ MIT ║ +║ 1930 │ js-yaml │ 4.1.0 │ MIT ║ +║ 1931 │ jsbn │ 1.1.0 │ MIT ║ +║ 1932 │ jsdom │ 26.1.0 │ MIT ║ +║ 1933 │ jsdom │ 20.0.3 │ MIT ║ +║ 1934 │ jsep │ 1.4.0 │ MIT ║ +║ 1935 │ jsesc │ 3.1.0 │ MIT ║ +║ 1936 │ jsesc │ 3.0.2 │ MIT ║ +║ 1937 │ json-bigint │ 1.0.0 │ MIT ║ +║ 1938 │ json-buffer │ 3.0.1 │ MIT ║ +║ 1939 │ json-parse-even-better-errors │ 2.3.1 │ MIT ║ +║ 1940 │ json-pointer │ 0.6.2 │ MIT ║ +║ 1941 │ json-schema │ 0.4.0 │ (AFL-2.1 OR BSD-3-Clause) ║ +║ 1942 │ json-schema-compare │ 0.2.2 │ MIT ║ +║ 1943 │ json-schema-library │ 9.3.5 │ MIT ║ +║ 1944 │ json-schema-merge-allof │ 0.8.1 │ MIT ║ +║ 1945 │ json-schema-to-ts │ 3.1.1 │ MIT ║ +║ 1946 │ json-schema-traverse │ 0.4.1 │ MIT ║ +║ 1947 │ json-schema-traverse │ 1.0.0 │ MIT ║ +║ 1948 │ json-stable-stringify-without-jsonify │ 1.0.1 │ MIT ║ +║ 1949 │ json-stringify-safe │ 5.0.1 │ ISC ║ +║ 1950 │ json5 │ 1.0.2 │ MIT ║ +║ 1951 │ json5 │ 2.2.3 │ MIT ║ +║ 1952 │ jsonc-parser │ 3.3.1 │ MIT ║ +║ 1953 │ jsonc-parser │ 2.2.1 │ MIT ║ +║ 1954 │ jsonfile │ 4.0.0 │ MIT ║ +║ 1955 │ jsonfile │ 6.1.0 │ MIT ║ +║ 1956 │ jsonpath │ 1.1.1 │ MIT ║ +║ 1957 │ jsonpath-plus │ 10.3.0 │ MIT ║ +║ 1958 │ jsonpointer │ 5.0.1 │ MIT ║ +║ 1959 │ jsonschema │ 1.5.0 │ MIT ║ +║ 1960 │ jsonwebtoken │ 9.0.2 │ MIT ║ +║ 1961 │ jss │ 10.10.0 │ MIT ║ +║ 1962 │ jss-plugin-camel-case │ 10.10.0 │ MIT ║ +║ 1963 │ jss-plugin-default-unit │ 10.10.0 │ MIT ║ +║ 1964 │ jss-plugin-global │ 10.10.0 │ MIT ║ +║ 1965 │ jss-plugin-nested │ 10.10.0 │ MIT ║ +║ 1966 │ jss-plugin-props-sort │ 10.10.0 │ MIT ║ +║ 1967 │ jss-plugin-rule-value-function │ 10.10.0 │ MIT ║ +║ 1968 │ jss-plugin-vendor-prefixer │ 10.10.0 │ MIT ║ +║ 1969 │ jsx-ast-utils │ 3.3.5 │ MIT ║ +║ 1970 │ jszip │ 3.10.1 │ (MIT OR GPL-3.0-or-later) ║ +║ 1971 │ jwa │ 1.4.1 │ MIT ║ +║ 1972 │ jwa │ 2.0.0 │ MIT ║ +║ 1973 │ jws │ 3.2.2 │ MIT ║ +║ 1974 │ jws │ 4.0.0 │ MIT ║ +║ 1975 │ jwt-decode │ 3.1.2 │ MIT ║ +║ 1976 │ keygrip │ 1.1.0 │ MIT ║ +║ 1977 │ keyv │ 4.5.4 │ MIT ║ +║ 1978 │ keyv │ 5.3.3 │ MIT ║ +║ 1979 │ kind-of │ 6.0.3 │ MIT ║ +║ 1980 │ kleur │ 3.0.3 │ MIT ║ +║ 1981 │ kleur │ 4.1.5 │ MIT ║ +║ 1982 │ knex │ 3.1.0 │ MIT ║ +║ 1983 │ koa │ 2.15.3 │ MIT ║ +║ 1984 │ koa-compose │ 4.1.0 │ MIT ║ +║ 1985 │ koa-convert │ 2.0.0 │ MIT ║ +║ 1986 │ kubernetes-models │ 4.4.2 │ MIT ║ +║ 1987 │ kuler │ 2.0.0 │ MIT ║ +║ 1988 │ language-subtag-registry │ 0.3.23 │ CC0-1.0 ║ +║ 1989 │ language-tags │ 1.0.9 │ MIT ║ +║ 1990 │ launch-editor │ 2.10.0 │ MIT ║ +║ 1991 │ lazystream │ 1.0.1 │ MIT ║ +║ 1992 │ leven │ 2.1.0 │ MIT ║ +║ 1993 │ leven │ 3.1.0 │ MIT ║ +║ 1994 │ levn │ 0.4.1 │ MIT ║ +║ 1995 │ levn │ 0.3.0 │ MIT ║ +║ 1996 │ libsodium │ 0.7.15 │ ISC ║ +║ 1997 │ libsodium-wrappers │ 0.7.15 │ ISC ║ +║ 1998 │ lie │ 3.3.0 │ MIT ║ +║ 1999 │ lilconfig │ 2.1.0 │ MIT ║ +║ 2000 │ lines-and-columns │ 1.2.4 │ MIT ║ +║ 2001 │ linkify-it │ 5.0.0 │ MIT ║ +║ 2002 │ linkify-it │ 3.0.3 │ MIT ║ +║ 2003 │ linkify-react │ 4.1.3 │ MIT ║ +║ 2004 │ linkifyjs │ 4.1.3 │ MIT ║ +║ 2005 │ ljharb-monorepo-symlink-test │ 0.0.0 │ MIT ║ +║ 2006 │ loader-runner │ 4.3.0 │ MIT ║ +║ 2007 │ loader-utils │ 1.4.2 │ MIT ║ +║ 2008 │ loader-utils │ 3.3.1 │ MIT ║ +║ 2009 │ loader-utils │ 2.0.4 │ MIT ║ +║ 2010 │ locate-path │ 6.0.0 │ MIT ║ +║ 2011 │ locate-path │ 5.0.0 │ MIT ║ +║ 2012 │ locate-path │ 3.0.0 │ MIT ║ +║ 2013 │ lodash │ 4.17.21 │ MIT ║ +║ 2014 │ lodash-es │ 4.17.21 │ MIT ║ +║ 2015 │ lodash.camelcase │ 4.3.0 │ MIT ║ +║ 2016 │ lodash.clonedeep │ 4.5.0 │ MIT ║ +║ 2017 │ lodash.clonedeepwith │ 4.5.0 │ MIT ║ +║ 2018 │ lodash.debounce │ 4.0.8 │ MIT ║ +║ 2019 │ lodash.defaults │ 4.2.0 │ MIT ║ +║ 2020 │ lodash.flattendeep │ 4.4.0 │ MIT ║ +║ 2021 │ lodash.get │ 4.4.2 │ MIT ║ +║ 2022 │ lodash.includes │ 4.3.0 │ MIT ║ +║ 2023 │ lodash.isarguments │ 3.1.0 │ MIT ║ +║ 2024 │ lodash.isboolean │ 3.0.3 │ MIT ║ +║ 2025 │ lodash.isequal │ 4.5.0 │ MIT ║ +║ 2026 │ lodash.isinteger │ 4.0.4 │ MIT ║ +║ 2027 │ lodash.isnumber │ 3.0.3 │ MIT ║ +║ 2028 │ lodash.isplainobject │ 4.0.6 │ MIT ║ +║ 2029 │ lodash.isstring │ 4.0.1 │ MIT ║ +║ 2030 │ lodash.memoize │ 4.1.2 │ MIT ║ +║ 2031 │ lodash.merge │ 4.6.2 │ MIT ║ +║ 2032 │ lodash.once │ 4.1.1 │ MIT ║ +║ 2033 │ lodash.topath │ 4.5.2 │ MIT ║ +║ 2034 │ lodash.uniq │ 4.5.0 │ MIT ║ +║ 2035 │ log-symbols │ 4.1.0 │ MIT ║ +║ 2036 │ log4js │ 6.9.1 │ Apache-2.0 ║ +║ 2037 │ logform │ 2.7.0 │ MIT ║ +║ 2038 │ long │ 5.3.2 │ Apache-2.0 ║ +║ 2039 │ long-timeout │ 0.1.1 │ MIT ║ +║ 2040 │ longest-streak │ 3.1.0 │ MIT ║ +║ 2041 │ loose-envify │ 1.4.0 │ MIT ║ +║ 2042 │ lower-case │ 2.0.2 │ MIT ║ +║ 2043 │ lowlight │ 1.20.0 │ MIT ║ +║ 2044 │ lru-cache │ 5.1.1 │ ISC ║ +║ 2045 │ lru-cache │ 9.1.2 │ ISC ║ +║ 2046 │ lru-cache │ 10.4.3 │ ISC ║ +║ 2047 │ lru-cache │ 7.18.3 │ ISC ║ +║ 2048 │ lru-cache │ 6.0.0 │ ISC ║ +║ 2049 │ lru.min │ 1.1.2 │ MIT ║ +║ 2050 │ lunr │ 2.3.9 │ MIT ║ +║ 2051 │ luxon │ 3.5.0 │ MIT ║ +║ 2052 │ luxon │ 3.6.1 │ MIT ║ +║ 2053 │ lz-string │ 1.5.0 │ MIT ║ +║ 2054 │ magic-string │ 0.30.17 │ MIT ║ +║ 2055 │ make-dir │ 4.0.0 │ MIT ║ +║ 2056 │ make-error │ 1.3.6 │ ISC ║ +║ 2057 │ make-fetch-happen │ 14.0.3 │ ISC ║ +║ 2058 │ make-fetch-happen │ 13.0.1 │ ISC ║ +║ 2059 │ makeerror │ 1.0.12 │ BSD-3-Clause ║ +║ 2060 │ markdown-it │ 14.1.0 │ MIT ║ +║ 2061 │ markdown-it │ 12.3.2 │ MIT ║ +║ 2062 │ markdown-table │ 3.0.4 │ MIT ║ +║ 2063 │ markdown-to-jsx │ 7.7.6 │ MIT ║ +║ 2064 │ marked │ 4.3.0 │ MIT ║ +║ 2065 │ matcher │ 3.0.0 │ MIT ║ +║ 2066 │ material-ui-popup-state │ 1.9.3 │ MIT ║ +║ 2067 │ math-intrinsics │ 1.1.0 │ MIT ║ +║ 2068 │ md5.js │ 1.3.5 │ MIT ║ +║ 2069 │ mdast-util-definitions │ 5.1.2 │ MIT ║ +║ 2070 │ mdast-util-find-and-replace │ 2.2.2 │ MIT ║ +║ 2071 │ mdast-util-from-markdown │ 1.3.1 │ MIT ║ +║ 2072 │ mdast-util-gfm │ 2.0.2 │ MIT ║ +║ 2073 │ mdast-util-gfm-autolink-literal │ 1.0.3 │ MIT ║ +║ 2074 │ mdast-util-gfm-footnote │ 1.0.2 │ MIT ║ +║ 2075 │ mdast-util-gfm-strikethrough │ 1.0.3 │ MIT ║ +║ 2076 │ mdast-util-gfm-table │ 1.0.7 │ MIT ║ +║ 2077 │ mdast-util-gfm-task-list-item │ 1.0.2 │ MIT ║ +║ 2078 │ mdast-util-phrasing │ 3.0.1 │ MIT ║ +║ 2079 │ mdast-util-to-hast │ 12.3.0 │ MIT ║ +║ 2080 │ mdast-util-to-markdown │ 1.5.0 │ MIT ║ +║ 2081 │ mdast-util-to-string │ 3.2.0 │ MIT ║ +║ 2082 │ mdn-data │ 2.0.14 │ CC0-1.0 ║ +║ 2083 │ mdurl │ 1.0.1 │ MIT ║ +║ 2084 │ mdurl │ 2.0.0 │ MIT ║ +║ 2085 │ media-typer │ 1.1.0 │ MIT ║ +║ 2086 │ media-typer │ 0.3.0 │ MIT ║ +║ 2087 │ memfs │ 3.5.3 │ Unlicense ║ +║ 2088 │ memfs │ 4.17.0 │ Apache-2.0 ║ +║ 2089 │ memjs │ 1.3.2 │ MIT ║ +║ 2090 │ memoize-one │ 5.2.1 │ MIT ║ +║ 2091 │ merge-descriptors │ 1.0.3 │ MIT ║ +║ 2092 │ merge-stream │ 2.0.0 │ MIT ║ +║ 2093 │ merge2 │ 1.4.1 │ MIT ║ +║ 2094 │ meros │ 1.3.0 │ MIT ║ +║ 2095 │ methods │ 1.1.2 │ MIT ║ +║ 2096 │ micromark │ 3.2.0 │ MIT ║ +║ 2097 │ micromark-core-commonmark │ 1.1.0 │ MIT ║ +║ 2098 │ micromark-extension-gfm │ 2.0.3 │ MIT ║ +║ 2099 │ micromark-extension-gfm-autolink-literal │ 1.0.5 │ MIT ║ +║ 2100 │ micromark-extension-gfm-footnote │ 1.1.2 │ MIT ║ +║ 2101 │ micromark-extension-gfm-strikethrough │ 1.0.7 │ MIT ║ +║ 2102 │ micromark-extension-gfm-table │ 1.0.7 │ MIT ║ +║ 2103 │ micromark-extension-gfm-tagfilter │ 1.0.2 │ MIT ║ +║ 2104 │ micromark-extension-gfm-task-list-item │ 1.0.5 │ MIT ║ +║ 2105 │ micromark-factory-destination │ 1.1.0 │ MIT ║ +║ 2106 │ micromark-factory-label │ 1.1.0 │ MIT ║ +║ 2107 │ micromark-factory-space │ 1.1.0 │ MIT ║ +║ 2108 │ micromark-factory-title │ 1.1.0 │ MIT ║ +║ 2109 │ micromark-factory-whitespace │ 1.1.0 │ MIT ║ +║ 2110 │ micromark-util-character │ 1.2.0 │ MIT ║ +║ 2111 │ micromark-util-chunked │ 1.1.0 │ MIT ║ +║ 2112 │ micromark-util-classify-character │ 1.1.0 │ MIT ║ +║ 2113 │ micromark-util-combine-extensions │ 1.1.0 │ MIT ║ +║ 2114 │ micromark-util-decode-numeric-character-reference │ 1.1.0 │ MIT ║ +║ 2115 │ micromark-util-decode-string │ 1.1.0 │ MIT ║ +║ 2116 │ micromark-util-encode │ 1.1.0 │ MIT ║ +║ 2117 │ micromark-util-html-tag-name │ 1.2.0 │ MIT ║ +║ 2118 │ micromark-util-normalize-identifier │ 1.1.0 │ MIT ║ +║ 2119 │ micromark-util-resolve-all │ 1.1.0 │ MIT ║ +║ 2120 │ micromark-util-sanitize-uri │ 1.2.0 │ MIT ║ +║ 2121 │ micromark-util-subtokenize │ 1.1.0 │ MIT ║ +║ 2122 │ micromark-util-symbol │ 1.1.0 │ MIT ║ +║ 2123 │ micromark-util-types │ 1.1.0 │ MIT ║ +║ 2124 │ micromatch │ 4.0.8 │ MIT ║ +║ 2125 │ miller-rabin │ 4.0.1 │ MIT ║ +║ 2126 │ mime │ 3.0.0 │ MIT ║ +║ 2127 │ mime │ 1.6.0 │ MIT ║ +║ 2128 │ mime-db │ 1.54.0 │ MIT ║ +║ 2129 │ mime-db │ 1.52.0 │ MIT ║ +║ 2130 │ mime-types │ 2.1.35 │ MIT ║ +║ 2131 │ mimic-fn │ 2.1.0 │ MIT ║ +║ 2132 │ mimic-response │ 3.1.0 │ MIT ║ +║ 2133 │ min-indent │ 1.0.1 │ MIT ║ +║ 2134 │ mini-css-extract-plugin │ 2.9.2 │ MIT ║ +║ 2135 │ minim │ 0.23.8 │ MIT ║ +║ 2136 │ minimalistic-assert │ 1.0.1 │ ISC ║ +║ 2137 │ minimalistic-crypto-utils │ 1.0.1 │ MIT ║ +║ 2138 │ minimatch │ 5.1.6 │ ISC ║ +║ 2139 │ minimatch │ 3.1.2 │ ISC ║ +║ 2140 │ minimatch │ 7.4.6 │ ISC ║ +║ 2141 │ minimatch │ 9.0.5 │ ISC ║ +║ 2142 │ minimist │ 1.2.8 │ MIT ║ +║ 2143 │ minimisted │ 2.0.1 │ MIT ║ +║ 2144 │ minipass │ 4.2.8 │ ISC ║ +║ 2145 │ minipass │ 7.1.2 │ ISC ║ +║ 2146 │ minipass │ 3.3.6 │ ISC ║ +║ 2147 │ minipass │ 5.0.0 │ ISC ║ +║ 2148 │ minipass-collect │ 2.0.1 │ ISC ║ +║ 2149 │ minipass-fetch │ 4.0.1 │ MIT ║ +║ 2150 │ minipass-fetch │ 3.0.5 │ MIT ║ +║ 2151 │ minipass-flush │ 1.0.5 │ ISC ║ +║ 2152 │ minipass-pipeline │ 1.2.4 │ ISC ║ +║ 2153 │ minipass-sized │ 1.0.3 │ ISC ║ +║ 2154 │ minizlib │ 3.0.2 │ MIT ║ +║ 2155 │ minizlib │ 2.1.2 │ MIT ║ +║ 2156 │ mkdirp │ 3.0.1 │ MIT ║ +║ 2157 │ mkdirp │ 1.0.4 │ MIT ║ +║ 2158 │ mkdirp │ 0.5.6 │ MIT ║ +║ 2159 │ mkdirp-classic │ 0.5.3 │ MIT ║ +║ 2160 │ mockttp │ 3.17.1 │ Apache-2.0 ║ +║ 2161 │ moment │ 2.30.1 │ MIT ║ +║ 2162 │ moo │ 0.5.2 │ BSD-3-Clause ║ +║ 2163 │ morgan │ 1.10.0 │ MIT ║ +║ 2164 │ mri │ 1.1.4 │ MIT ║ +║ 2165 │ mri │ 1.2.0 │ MIT ║ +║ 2166 │ ms │ 2.1.2 │ MIT ║ +║ 2167 │ ms │ 2.0.0 │ MIT ║ +║ 2168 │ ms │ 2.1.3 │ MIT ║ +║ 2169 │ msw │ 1.3.5 │ MIT ║ +║ 2170 │ multer │ 1.4.5-lts.2 │ MIT ║ +║ 2171 │ multicast-dns │ 7.2.5 │ MIT ║ +║ 2172 │ mute-stream │ 0.0.8 │ ISC ║ +║ 2173 │ mylib │ 0.0.0 │ ISC ║ +║ 2174 │ mysql2 │ 3.14.1 │ MIT ║ +║ 2175 │ mz │ 2.7.0 │ MIT ║ +║ 2176 │ named-placeholders │ 1.1.3 │ MIT ║ +║ 2177 │ nan │ 2.22.2 │ MIT ║ +║ 2178 │ nano-css │ 5.6.2 │ Unlicense ║ +║ 2179 │ nanoid │ 3.3.11 │ MIT ║ +║ 2180 │ napi-build-utils │ 2.0.0 │ MIT ║ +║ 2181 │ native-duplexpair │ 1.0.0 │ MIT ║ +║ 2182 │ native-example │ 1.0.0 │ ISC ║ +║ 2183 │ natural-compare │ 1.4.0 │ MIT ║ +║ 2184 │ ndjson │ 2.0.0 │ BSD-3-Clause ║ +║ 2185 │ nearley │ 2.20.1 │ MIT ║ +║ 2186 │ negotiator │ 0.6.3 │ MIT ║ +║ 2187 │ negotiator │ 1.0.0 │ MIT ║ +║ 2188 │ negotiator │ 0.6.4 │ MIT ║ +║ 2189 │ neo-async │ 2.6.2 │ MIT ║ +║ 2190 │ neotraverse │ 0.6.18 │ MIT ║ +║ 2191 │ netmask │ 2.0.2 │ MIT ║ +║ 2192 │ nimma │ 0.2.3 │ Apache-2.0 ║ +║ 2193 │ no-case │ 3.0.4 │ MIT ║ +║ 2194 │ node-abi │ 3.74.0 │ MIT ║ +║ 2195 │ node-abort-controller │ 3.1.1 │ MIT ║ +║ 2196 │ node-addon-api │ 8.3.1 │ MIT ║ +║ 2197 │ node-cache │ 5.1.2 │ MIT ║ +║ 2198 │ node-domexception │ 1.0.0 │ MIT ║ +║ 2199 │ node-fetch │ 2.6.7 │ MIT ║ +║ 2200 │ node-fetch │ 2.7.0 │ MIT ║ +║ 2201 │ node-fetch │ 3.3.2 │ MIT ║ +║ 2202 │ node-fetch-commonjs │ 3.3.2 │ MIT ║ +║ 2203 │ node-forge │ 1.3.1 │ (BSD-3-Clause OR GPL-2.0) ║ +║ 2204 │ node-forge-flash │ 0.0.0 │ (BSD-3-Clause OR GPL-2.0) ║ +║ 2205 │ node-gyp │ 11.2.0 │ MIT ║ +║ 2206 │ node-gyp │ 10.3.1 │ MIT ║ +║ 2207 │ node-gyp-build │ 4.8.4 │ MIT ║ +║ 2208 │ node-int64 │ 0.4.0 │ MIT ║ +║ 2209 │ node-releases │ 2.0.19 │ MIT ║ +║ 2210 │ node-schedule │ 2.1.1 │ MIT ║ +║ 2211 │ node-stdlib-browser │ 1.3.1 │ MIT ║ +║ 2212 │ nopt │ 7.2.1 │ ISC ║ +║ 2213 │ nopt │ 8.1.0 │ ISC ║ +║ 2214 │ normalize-path │ 3.0.0 │ MIT ║ +║ 2215 │ normalize-path │ 2.1.1 │ MIT ║ +║ 2216 │ normalize-url │ 6.1.0 │ MIT ║ +║ 2217 │ npm-bundled │ 2.0.1 │ ISC ║ +║ 2218 │ npm-normalize-package-bin │ 2.0.0 │ ISC ║ +║ 2219 │ npm-packlist │ 5.1.3 │ ISC ║ +║ 2220 │ npm-run-path │ 4.0.1 │ MIT ║ +║ 2221 │ nth-check │ 2.1.1 │ BSD-2-Clause ║ +║ 2222 │ nullthrows │ 1.1.1 │ MIT ║ +║ 2223 │ nunjucks │ 3.2.4 │ BSD-2-Clause ║ +║ 2224 │ nwsapi │ 2.2.20 │ MIT ║ +║ 2225 │ oauth │ 0.10.2 │ MIT ║ +║ 2226 │ oauth │ 0.9.15 │ MIT ║ +║ 2227 │ oauth4webapi │ 3.5.0 │ MIT ║ +║ 2228 │ object-assign │ 4.1.1 │ MIT ║ +║ 2229 │ object-hash │ 3.0.0 │ MIT ║ +║ 2230 │ object-hash │ 2.2.0 │ MIT ║ +║ 2231 │ object-inspect │ 1.13.4 │ MIT ║ +║ 2232 │ object-is │ 1.1.6 │ MIT ║ +║ 2233 │ object-keys │ 1.1.1 │ MIT ║ +║ 2234 │ object.assign │ 4.1.7 │ MIT ║ +║ 2235 │ object.entries │ 1.1.9 │ MIT ║ +║ 2236 │ object.fromentries │ 2.0.8 │ MIT ║ +║ 2237 │ object.groupby │ 1.0.3 │ MIT ║ +║ 2238 │ object.values │ 1.2.1 │ MIT ║ +║ 2239 │ obuf │ 1.1.2 │ MIT ║ +║ 2240 │ octokit │ 3.2.1 │ MIT ║ +║ 2241 │ octokit-plugin-create-pull-request │ 5.1.1 │ MIT ║ +║ 2242 │ oidc-token-hash │ 5.1.0 │ MIT ║ +║ 2243 │ on-finished │ 2.3.0 │ MIT ║ +║ 2244 │ on-finished │ 2.4.1 │ MIT ║ +║ 2245 │ on-headers │ 1.0.2 │ MIT ║ +║ 2246 │ once │ 1.4.0 │ ISC ║ +║ 2247 │ one-time │ 1.0.0 │ MIT ║ +║ 2248 │ onetime │ 5.1.2 │ MIT ║ +║ 2249 │ only │ 0.0.2 │ ║ +║ 2250 │ ono │ 7.1.3 │ MIT ║ +║ 2251 │ open │ 10.1.1 │ MIT ║ +║ 2252 │ open │ 8.4.2 │ MIT ║ +║ 2253 │ openapi-merge │ 1.3.3 │ MIT ║ +║ 2254 │ openapi-path-templating │ 2.2.1 │ Apache-2.0 ║ +║ 2255 │ openapi-sampler │ 1.6.1 │ MIT ║ +║ 2256 │ openapi-server-url-templating │ 1.3.0 │ Apache-2.0 ║ +║ 2257 │ openapi3-ts │ 3.2.0 │ MIT ║ +║ 2258 │ openid-client │ 6.4.2 │ MIT ║ +║ 2259 │ openid-client │ 5.7.1 │ MIT ║ +║ 2260 │ optionator │ 0.9.4 │ MIT ║ +║ 2261 │ optionator │ 0.8.3 │ MIT ║ +║ 2262 │ ora │ 5.4.1 │ MIT ║ +║ 2263 │ os-browserify │ 0.3.0 │ MIT ║ +║ 2264 │ os-tmpdir │ 1.0.2 │ MIT ║ +║ 2265 │ outvariant │ 1.4.3 │ MIT ║ +║ 2266 │ own-keys │ 1.0.1 │ MIT ║ +║ 2267 │ p-finally │ 1.0.0 │ MIT ║ +║ 2268 │ p-limit │ 3.1.0 │ MIT ║ +║ 2269 │ p-limit │ 2.3.0 │ MIT ║ +║ 2270 │ p-locate │ 5.0.0 │ MIT ║ +║ 2271 │ p-locate │ 4.1.0 │ MIT ║ +║ 2272 │ p-locate │ 3.0.0 │ MIT ║ +║ 2273 │ p-map │ 4.0.0 │ MIT ║ +║ 2274 │ p-map │ 7.0.3 │ MIT ║ +║ 2275 │ p-queue │ 6.6.2 │ MIT ║ +║ 2276 │ p-retry │ 6.2.1 │ MIT ║ +║ 2277 │ p-throttle │ 4.1.1 │ MIT ║ +║ 2278 │ p-timeout │ 3.2.0 │ MIT ║ +║ 2279 │ p-try │ 2.2.0 │ MIT ║ +║ 2280 │ pac-proxy-agent │ 7.2.0 │ MIT ║ +║ 2281 │ pac-resolver │ 7.0.1 │ MIT ║ +║ 2282 │ package-json-from-dist │ 1.0.1 │ BlueOak-1.0.0 ║ +║ 2283 │ pako │ 1.0.11 │ (MIT AND Zlib) ║ +║ 2284 │ param-case │ 3.0.4 │ MIT ║ +║ 2285 │ parent-module │ 1.0.1 │ MIT ║ +║ 2286 │ parse-asn1 │ 5.1.7 │ ISC ║ +║ 2287 │ parse-entities │ 2.0.0 │ MIT ║ +║ 2288 │ parse-json │ 5.2.0 │ MIT ║ +║ 2289 │ parse-multipart-data │ 1.5.0 │ MIT ║ +║ 2290 │ parse-passwd │ 1.0.0 │ MIT ║ +║ 2291 │ parse-path │ 7.1.0 │ MIT ║ +║ 2292 │ parse-url │ 8.1.0 │ MIT ║ +║ 2293 │ parse5 │ 7.3.0 │ MIT ║ +║ 2294 │ parseurl │ 1.3.3 │ MIT ║ +║ 2295 │ pascal-case │ 3.1.2 │ MIT ║ +║ 2296 │ passport │ 0.7.0 │ MIT ║ +║ 2297 │ passport-atlassian-oauth2 │ 2.1.0 │ MIT ║ +║ 2298 │ passport-auth0 │ 1.4.4 │ MIT ║ +║ 2299 │ passport-bitbucket-oauth2 │ 0.1.2 │ MIT ║ +║ 2300 │ passport-github2 │ 0.1.12 │ MIT ║ +║ 2301 │ passport-gitlab2 │ 5.0.0 │ MIT ║ +║ 2302 │ passport-google-oauth20 │ 2.0.0 │ MIT ║ +║ 2303 │ passport-microsoft │ 1.1.0 │ MIT ║ +║ 2304 │ passport-microsoft-examples-login │ 0.1.0 │ MIT ║ +║ 2305 │ passport-oauth │ 1.0.0 │ MIT ║ +║ 2306 │ passport-oauth1 │ 1.3.0 │ MIT ║ +║ 2307 │ passport-oauth2 │ 1.8.0 │ MIT ║ +║ 2308 │ passport-onelogin-oauth │ 0.0.1 │ MIT ║ +║ 2309 │ passport-strategy │ 1.0.0 │ MIT ║ +║ 2310 │ path-browserify │ 1.0.1 │ MIT ║ +║ 2311 │ path-equal │ 1.2.5 │ MIT ║ +║ 2312 │ path-exists │ 4.0.0 │ MIT ║ +║ 2313 │ path-exists │ 3.0.0 │ MIT ║ +║ 2314 │ path-is-absolute │ 1.0.1 │ MIT ║ +║ 2315 │ path-key │ 3.1.1 │ MIT ║ +║ 2316 │ path-parse │ 1.0.7 │ MIT ║ +║ 2317 │ path-scurry │ 1.11.1 │ BlueOak-1.0.0 ║ +║ 2318 │ path-to-regexp │ 8.2.0 │ MIT ║ +║ 2319 │ path-to-regexp │ 6.3.0 │ MIT ║ +║ 2320 │ path-to-regexp │ 0.1.12 │ MIT ║ +║ 2321 │ path-type │ 4.0.0 │ MIT ║ +║ 2322 │ pathe │ 2.0.3 │ MIT ║ +║ 2323 │ pause │ 0.0.1 │ ║ +║ 2324 │ pbkdf2 │ 3.1.2 │ MIT ║ +║ 2325 │ pct-encode │ 1.0.3 │ BSD-2-Clause ║ +║ 2326 │ peek-readable │ 4.1.0 │ MIT ║ +║ 2327 │ pend │ 1.2.0 │ MIT ║ +║ 2328 │ performance-now │ 2.1.0 │ MIT ║ +║ 2329 │ pg │ 8.15.6 │ MIT ║ +║ 2330 │ pg-cloudflare │ 1.2.5 │ MIT ║ +║ 2331 │ pg-connection-string │ 2.6.2 │ MIT ║ +║ 2332 │ pg-connection-string │ 2.8.5 │ MIT ║ +║ 2333 │ pg-format │ 1.0.4 │ MIT ║ +║ 2334 │ pg-int8 │ 1.0.1 │ ISC ║ +║ 2335 │ pg-pool │ 3.9.6 │ MIT ║ +║ 2336 │ pg-protocol │ 1.9.5 │ MIT ║ +║ 2337 │ pg-types │ 2.2.0 │ MIT ║ +║ 2338 │ pgpass │ 1.0.5 │ MIT ║ +║ 2339 │ photoswipe │ 5.4.4 │ MIT ║ +║ 2340 │ picocolors │ 1.1.1 │ ISC ║ +║ 2341 │ picomatch │ 2.3.1 │ MIT ║ +║ 2342 │ picomatch │ 4.0.2 │ MIT ║ +║ 2343 │ picomatch-browser │ 2.2.6 │ MIT ║ +║ 2344 │ pify │ 5.0.0 │ MIT ║ +║ 2345 │ pify │ 4.0.1 │ MIT ║ +║ 2346 │ pino │ 5.17.0 │ MIT ║ +║ 2347 │ pino-pretty │ 2.6.1 │ MIT ║ +║ 2348 │ pino-std-serializers │ 2.5.0 │ MIT ║ +║ 2349 │ pirates │ 4.0.7 │ MIT ║ +║ 2350 │ pkg-dir │ 4.2.0 │ MIT ║ +║ 2351 │ pkg-dir │ 5.0.0 │ MIT ║ +║ 2352 │ pkg-up │ 3.1.0 │ MIT ║ +║ 2353 │ pkginfo │ 0.4.1 │ MIT ║ +║ 2354 │ pkginfo │ 0.2.3 │ ║ +║ 2355 │ playwright │ 1.52.0 │ Apache-2.0 ║ +║ 2356 │ playwright-core │ 1.52.0 │ Apache-2.0 ║ +║ 2357 │ pluralize │ 8.0.0 │ MIT ║ +║ 2358 │ pony-cause │ 1.1.1 │ 0BSD ║ +║ 2359 │ popmotion │ 11.0.3 │ MIT ║ +║ 2360 │ popper.js │ 1.16.1-lts │ MIT ║ +║ 2361 │ portfinder │ 1.0.37 │ MIT ║ +║ 2362 │ possible-typed-array-names │ 1.1.0 │ MIT ║ +║ 2363 │ postcss │ 8.5.3 │ MIT ║ +║ 2364 │ postcss-calc │ 8.2.4 │ MIT ║ +║ 2365 │ postcss-colormin │ 5.3.1 │ MIT ║ +║ 2366 │ postcss-convert-values │ 5.1.3 │ MIT ║ +║ 2367 │ postcss-discard-comments │ 5.1.2 │ MIT ║ +║ 2368 │ postcss-discard-duplicates │ 5.1.0 │ MIT ║ +║ 2369 │ postcss-discard-empty │ 5.1.1 │ MIT ║ +║ 2370 │ postcss-discard-overridden │ 5.1.0 │ MIT ║ +║ 2371 │ postcss-load-config │ 3.1.4 │ MIT ║ +║ 2372 │ postcss-merge-longhand │ 5.1.7 │ MIT ║ +║ 2373 │ postcss-merge-rules │ 5.1.4 │ MIT ║ +║ 2374 │ postcss-minify-font-values │ 5.1.0 │ MIT ║ +║ 2375 │ postcss-minify-gradients │ 5.1.1 │ MIT ║ +║ 2376 │ postcss-minify-params │ 5.1.4 │ MIT ║ +║ 2377 │ postcss-minify-selectors │ 5.2.1 │ MIT ║ +║ 2378 │ postcss-modules │ 4.3.1 │ MIT ║ +║ 2379 │ postcss-modules-extract-imports │ 3.1.0 │ ISC ║ +║ 2380 │ postcss-modules-local-by-default │ 4.2.0 │ MIT ║ +║ 2381 │ postcss-modules-scope │ 3.2.1 │ ISC ║ +║ 2382 │ postcss-modules-values │ 4.0.0 │ ISC ║ +║ 2383 │ postcss-normalize-charset │ 5.1.0 │ MIT ║ +║ 2384 │ postcss-normalize-display-values │ 5.1.0 │ MIT ║ +║ 2385 │ postcss-normalize-positions │ 5.1.1 │ MIT ║ +║ 2386 │ postcss-normalize-repeat-style │ 5.1.1 │ MIT ║ +║ 2387 │ postcss-normalize-string │ 5.1.0 │ MIT ║ +║ 2388 │ postcss-normalize-timing-functions │ 5.1.0 │ MIT ║ +║ 2389 │ postcss-normalize-unicode │ 5.1.1 │ MIT ║ +║ 2390 │ postcss-normalize-url │ 5.1.0 │ MIT ║ +║ 2391 │ postcss-normalize-whitespace │ 5.1.1 │ MIT ║ +║ 2392 │ postcss-ordered-values │ 5.1.3 │ MIT ║ +║ 2393 │ postcss-reduce-initial │ 5.1.2 │ MIT ║ +║ 2394 │ postcss-reduce-transforms │ 5.1.0 │ MIT ║ +║ 2395 │ postcss-selector-parser │ 7.1.0 │ MIT ║ +║ 2396 │ postcss-selector-parser │ 6.1.2 │ MIT ║ +║ 2397 │ postcss-svgo │ 5.1.0 │ MIT ║ +║ 2398 │ postcss-unique-selectors │ 5.1.1 │ MIT ║ +║ 2399 │ postcss-value-parser │ 4.2.0 │ MIT ║ +║ 2400 │ postgres-array │ 2.0.0 │ MIT ║ +║ 2401 │ postgres-bytea │ 1.0.0 │ MIT ║ +║ 2402 │ postgres-date │ 1.0.7 │ MIT ║ +║ 2403 │ postgres-interval │ 1.2.0 │ MIT ║ +║ 2404 │ prebuild-install │ 7.1.3 │ MIT ║ +║ 2405 │ prelude-ls │ 1.2.1 │ MIT ║ +║ 2406 │ prelude-ls │ 1.1.2 │ MIT ║ +║ 2407 │ prettier │ 2.8.8 │ MIT ║ +║ 2408 │ pretty-error │ 4.0.0 │ MIT ║ +║ 2409 │ pretty-format │ 27.5.1 │ MIT ║ +║ 2410 │ pretty-format │ 29.7.0 │ MIT ║ +║ 2411 │ prismjs │ 1.30.0 │ MIT ║ +║ 2412 │ prismjs │ 1.27.0 │ MIT ║ +║ 2413 │ proc-log │ 4.2.0 │ ISC ║ +║ 2414 │ proc-log │ 5.0.0 │ ISC ║ +║ 2415 │ process │ 0.11.10 │ MIT ║ +║ 2416 │ process-nextick-args │ 2.0.1 │ MIT ║ +║ 2417 │ prom-client │ 15.1.3 │ Apache-2.0 ║ +║ 2418 │ promise-retry │ 2.0.1 │ MIT ║ +║ 2419 │ promise.series │ 0.2.0 │ MIT ║ +║ 2420 │ prompts │ 2.4.2 │ MIT ║ +║ 2421 │ prop-types │ 15.8.1 │ MIT ║ +║ 2422 │ proper-lockfile │ 4.1.2 │ MIT ║ +║ 2423 │ properties-reader │ 2.3.0 │ MIT ║ +║ 2424 │ property-expr │ 2.0.6 │ MIT ║ +║ 2425 │ property-information │ 5.6.0 │ MIT ║ +║ 2426 │ property-information │ 6.5.0 │ MIT ║ +║ 2427 │ proto3-json-serializer │ 2.0.2 │ Apache-2.0 ║ +║ 2428 │ protobufjs │ 7.5.0 │ BSD-3-Clause ║ +║ 2429 │ protocols │ 2.0.2 │ MIT ║ +║ 2430 │ proxy-addr │ 2.0.7 │ MIT ║ +║ 2431 │ proxy-from-env │ 1.1.0 │ MIT ║ +║ 2432 │ psl │ 1.15.0 │ MIT ║ +║ 2433 │ public-encrypt │ 4.0.3 │ MIT ║ +║ 2434 │ pump │ 3.0.2 │ MIT ║ +║ 2435 │ punycode │ 1.4.1 │ MIT ║ +║ 2436 │ punycode │ 2.3.1 │ MIT ║ +║ 2437 │ punycode.js │ 2.3.1 │ MIT ║ +║ 2438 │ pure-rand │ 6.1.0 │ MIT ║ +║ 2439 │ qs │ 6.13.0 │ BSD-3-Clause ║ +║ 2440 │ qs │ 6.14.0 │ BSD-3-Clause ║ +║ 2441 │ querystring-es3 │ 0.2.1 │ MIT ║ +║ 2442 │ querystringify │ 2.2.0 │ MIT ║ +║ 2443 │ queue-microtask │ 1.2.3 │ MIT ║ +║ 2444 │ quick-format-unescaped │ 3.0.3 │ MIT ║ +║ 2445 │ quick-lru │ 5.1.1 │ MIT ║ +║ 2446 │ raf-schd │ 4.0.3 │ MIT ║ +║ 2447 │ railroad-diagrams │ 1.0.0 │ CC0-1.0 ║ +║ 2448 │ rambda │ 9.4.2 │ MIT ║ +║ 2449 │ ramda │ 0.30.1 │ MIT ║ +║ 2450 │ ramda-adjunct │ 5.1.0 │ BSD-3-Clause ║ +║ 2451 │ randexp │ 0.4.6 │ MIT ║ +║ 2452 │ randexp │ 0.5.3 │ MIT ║ +║ 2453 │ random-bytes │ 1.0.0 │ MIT ║ +║ 2454 │ randombytes │ 2.1.0 │ MIT ║ +║ 2455 │ randomfill │ 1.0.4 │ MIT ║ +║ 2456 │ range-parser │ 1.2.1 │ MIT ║ +║ 2457 │ rate-limiter-flexible │ 4.0.1 │ ISC ║ +║ 2458 │ raw-body │ 2.5.2 │ MIT ║ +║ 2459 │ raw-loader │ 4.0.2 │ MIT ║ +║ 2460 │ rc │ 1.2.8 │ (BSD-2-Clause OR MIT OR Apache-2.0) ║ +║ 2461 │ rc-progress │ 3.5.1 │ MIT ║ +║ 2462 │ rc-util │ 5.44.4 │ MIT ║ +║ 2463 │ re2-wasm │ 1.0.2 │ Apache-2.0 ║ +║ 2464 │ react │ 18.3.1 │ MIT ║ +║ 2465 │ react-beautiful-dnd │ 13.1.1 │ Apache-2.0 ║ +║ 2466 │ react-copy-to-clipboard │ 5.1.0 │ MIT ║ +║ 2467 │ react-debounce-input │ 3.3.0 │ MIT ║ +║ 2468 │ react-dev-utils │ 12.0.1 │ MIT ║ +║ 2469 │ react-dom │ 18.3.1 │ MIT ║ +║ 2470 │ react-double-scrollbar │ 0.0.15 │ MIT ║ +║ 2471 │ react-draggable │ 4.4.6 │ MIT ║ +║ 2472 │ react-error-boundary │ 4.1.2 │ MIT ║ +║ 2473 │ react-error-overlay │ 6.1.0 │ MIT ║ +║ 2474 │ react-fast-compare │ 3.2.2 │ MIT ║ +║ 2475 │ react-grid-layout │ 1.3.4 │ MIT ║ +║ 2476 │ react-helmet │ 6.1.0 │ MIT ║ +║ 2477 │ react-hook-form │ 7.56.1 │ MIT ║ +║ 2478 │ react-idle-timer │ 5.7.2 │ MIT ║ +║ 2479 │ react-iframe │ 1.8.5 │ ISC ║ +║ 2480 │ react-immutable-proptypes │ 2.2.0 │ MIT ║ +║ 2481 │ react-immutable-pure-component │ 2.2.2 │ MIT ║ +║ 2482 │ react-inspector │ 6.0.2 │ MIT ║ +║ 2483 │ react-is │ 19.1.0 │ MIT ║ +║ 2484 │ react-is │ 18.3.1 │ MIT ║ +║ 2485 │ react-is │ 16.13.1 │ MIT ║ +║ 2486 │ react-is │ 17.0.2 │ MIT ║ +║ 2487 │ react-markdown │ 8.0.7 │ MIT ║ +║ 2488 │ react-redux │ 7.2.9 │ MIT ║ +║ 2489 │ react-redux │ 9.2.0 │ MIT ║ +║ 2490 │ react-refresh │ 0.14.2 │ MIT ║ +║ 2491 │ react-remove-scroll │ 2.6.3 │ MIT ║ +║ 2492 │ react-remove-scroll-bar │ 2.3.8 │ MIT ║ +║ 2493 │ react-resizable │ 3.0.5 │ MIT ║ +║ 2494 │ react-router │ 6.30.0 │ MIT ║ +║ 2495 │ react-router-dom │ 5.3.4 │ MIT ║ +║ 2496 │ react-router-dom │ 6.22.3 │ MIT ║ +║ 2497 │ react-router-dom │ 6.30.0 │ MIT ║ +║ 2498 │ react-side-effect │ 2.1.2 │ MIT ║ +║ 2499 │ react-sparklines │ 1.7.0 │ MIT ║ +║ 2500 │ react-style-singleton │ 2.2.3 │ MIT ║ +║ 2501 │ react-syntax-highlighter │ 15.6.1 │ MIT ║ +║ 2502 │ react-transition-group │ 4.4.5 │ BSD-3-Clause ║ +║ 2503 │ react-transition-group/CSSTransition │ NOT-SET │ ║ +║ 2504 │ react-transition-group/ReplaceTransition │ NOT-SET │ ║ +║ 2505 │ react-transition-group/SwitchTransition │ NOT-SET │ ║ +║ 2506 │ react-transition-group/Transition │ NOT-SET │ ║ +║ 2507 │ react-transition-group/TransitionGroup │ NOT-SET │ ║ +║ 2508 │ react-transition-group/TransitionGroupContext │ NOT-SET │ ║ +║ 2509 │ react-transition-group/config │ NOT-SET │ ║ +║ 2510 │ react-universal-interface │ 0.6.2 │ ║ +║ 2511 │ react-use │ 17.6.0 │ Unlicense ║ +║ 2512 │ react-virtualized-auto-sizer │ 1.0.26 │ MIT ║ +║ 2513 │ react-window │ 1.8.11 │ MIT ║ +║ 2514 │ read-tls-client-hello │ 1.1.0 │ Apache-2.0 ║ +║ 2515 │ read-yaml-file │ 1.1.0 │ MIT ║ +║ 2516 │ readable-stream │ 4.7.0 │ MIT ║ +║ 2517 │ readable-stream │ 2.3.8 │ MIT ║ +║ 2518 │ readable-stream │ 3.6.2 │ MIT ║ +║ 2519 │ readable-web-to-node-stream │ 3.0.4 │ MIT ║ +║ 2520 │ readdir-glob │ 1.1.3 │ Apache-2.0 ║ +║ 2521 │ readdirp │ 4.1.2 │ MIT ║ +║ 2522 │ readdirp │ 3.6.0 │ MIT ║ +║ 2523 │ rechoir │ 0.8.0 │ MIT ║ +║ 2524 │ recursive-readdir │ 2.2.3 │ MIT ║ +║ 2525 │ redent │ 3.0.0 │ MIT ║ +║ 2526 │ redis │ 4.7.0 │ MIT ║ +║ 2527 │ redis-errors │ 1.2.0 │ MIT ║ +║ 2528 │ redis-parser │ 3.0.0 │ MIT ║ +║ 2529 │ redux │ 4.2.1 │ MIT ║ +║ 2530 │ redux │ 5.0.1 │ MIT ║ +║ 2531 │ redux-immutable │ 4.0.0 │ BSD-3-Clause ║ +║ 2532 │ reflect.getprototypeof │ 1.0.10 │ MIT ║ +║ 2533 │ refractor │ 3.6.0 │ MIT ║ +║ 2534 │ regenerate │ 1.4.2 │ MIT ║ +║ 2535 │ regenerate-unicode-properties │ 10.2.0 │ MIT ║ +║ 2536 │ regenerator-runtime │ 0.10.5 │ MIT ║ +║ 2537 │ regenerator-runtime │ 0.11.1 │ MIT ║ +║ 2538 │ regenerator-runtime │ 0.14.1 │ MIT ║ +║ 2539 │ regenerator-transform │ 0.15.2 │ MIT ║ +║ 2540 │ regex-parser │ 2.3.1 │ MIT ║ +║ 2541 │ regexp.prototype.flags │ 1.5.4 │ MIT ║ +║ 2542 │ regexpu-core │ 6.2.0 │ MIT ║ +║ 2543 │ regjsgen │ 0.8.0 │ MIT ║ +║ 2544 │ regjsparser │ 0.12.0 │ BSD-2-Clause ║ +║ 2545 │ relateurl │ 0.2.7 │ MIT ║ +║ 2546 │ remark-gfm │ 3.0.1 │ MIT ║ +║ 2547 │ remark-parse │ 10.0.2 │ MIT ║ +║ 2548 │ remark-rehype │ 10.1.0 │ MIT ║ +║ 2549 │ remarkable │ 2.0.1 │ MIT ║ +║ 2550 │ remarkable/linkify │ NOT-SET │ ║ +║ 2551 │ remove-trailing-separator │ 1.1.0 │ ISC ║ +║ 2552 │ renderkid │ 3.0.0 │ MIT ║ +║ 2553 │ repeat-string │ 1.6.1 │ MIT ║ +║ 2554 │ replace-in-file │ 7.2.0 │ MIT ║ +║ 2555 │ require-directory │ 2.1.1 │ MIT ║ +║ 2556 │ require-from-string │ 2.0.2 │ MIT ║ +║ 2557 │ requires-port │ 1.0.0 │ MIT ║ +║ 2558 │ reselect │ 5.1.1 │ MIT ║ +║ 2559 │ resize-observer-polyfill │ 1.5.1 │ MIT ║ +║ 2560 │ resolve │ 1.22.8 │ MIT ║ +║ 2561 │ resolve │ 2.0.0-next.5 │ MIT ║ +║ 2562 │ resolve │ 1.22.10 │ MIT ║ +║ 2563 │ resolve-alpn │ 1.2.1 │ MIT ║ +║ 2564 │ resolve-cwd │ 3.0.0 │ MIT ║ +║ 2565 │ resolve-dir │ 1.0.1 │ MIT ║ +║ 2566 │ resolve-from │ 4.0.0 │ MIT ║ +║ 2567 │ resolve-from │ 5.0.0 │ MIT ║ +║ 2568 │ resolve-pkg-maps │ 1.0.0 │ MIT ║ +║ 2569 │ resolve.exports │ 2.0.3 │ MIT ║ +║ 2570 │ restore-cursor │ 3.1.0 │ MIT ║ +║ 2571 │ ret │ 0.1.15 │ MIT ║ +║ 2572 │ ret │ 0.2.2 │ MIT ║ +║ 2573 │ retry │ 0.13.1 │ MIT ║ +║ 2574 │ retry │ 0.12.0 │ MIT ║ +║ 2575 │ retry-request │ 7.0.2 │ MIT ║ +║ 2576 │ reusify │ 1.1.0 │ MIT ║ +║ 2577 │ rfc4648 │ 1.5.4 │ MIT ║ +║ 2578 │ rfdc │ 1.4.1 │ MIT ║ +║ 2579 │ rifm │ 0.7.0 │ MIT ║ +║ 2580 │ rimraf │ 3.0.2 │ ISC ║ +║ 2581 │ ripemd160 │ 2.0.2 │ MIT ║ +║ 2582 │ roarr │ 2.15.4 │ BSD-3-Clause ║ +║ 2583 │ rollup │ 4.40.1 │ MIT ║ +║ 2584 │ rollup-plugin-dts │ 6.2.1 │ LGPL-3.0-only ║ +║ 2585 │ rollup-plugin-esbuild │ 6.2.1 │ MIT ║ +║ 2586 │ rollup-plugin-postcss │ 4.0.2 │ MIT ║ +║ 2587 │ rollup-pluginutils │ 2.8.2 │ MIT ║ +║ 2588 │ root │ NOT-SET │ ║ +║ 2589 │ rrweb-cssom │ 0.8.0 │ MIT ║ +║ 2590 │ rtl-css-js │ 1.16.1 │ MIT ║ +║ 2591 │ run-applescript │ 7.0.0 │ MIT ║ +║ 2592 │ run-async │ 2.4.1 │ MIT ║ +║ 2593 │ run-parallel │ 1.2.0 │ MIT ║ +║ 2594 │ rxjs │ 7.8.2 │ Apache-2.0 ║ +║ 2595 │ rxjs/ajax │ NOT-SET │ ║ +║ 2596 │ rxjs/fetch │ NOT-SET │ ║ +║ 2597 │ rxjs/operators │ NOT-SET │ ║ +║ 2598 │ rxjs/testing │ NOT-SET │ ║ +║ 2599 │ rxjs/webSocket │ NOT-SET │ ║ +║ 2600 │ sade │ 1.8.1 │ MIT ║ +║ 2601 │ safari-14-idb-fix │ 1.0.6 │ Apache-2.0 ║ +║ 2602 │ safe-array-concat │ 1.1.3 │ MIT ║ +║ 2603 │ safe-buffer │ 5.1.2 │ MIT ║ +║ 2604 │ safe-buffer │ 5.2.1 │ MIT ║ +║ 2605 │ safe-identifier │ 0.4.2 │ ISC ║ +║ 2606 │ safe-push-apply │ 1.0.0 │ MIT ║ +║ 2607 │ safe-regex-test │ 1.1.0 │ MIT ║ +║ 2608 │ safe-stable-stringify │ 1.1.1 │ MIT ║ +║ 2609 │ safe-stable-stringify │ 2.5.0 │ MIT ║ +║ 2610 │ safer-buffer │ 2.1.2 │ MIT ║ +║ 2611 │ sax │ 1.4.1 │ ISC ║ +║ 2612 │ saxes │ 6.0.0 │ ISC ║ +║ 2613 │ scheduler │ 0.23.2 │ MIT ║ +║ 2614 │ schema-utils │ 3.3.0 │ MIT ║ +║ 2615 │ schema-utils │ 2.7.0 │ MIT ║ +║ 2616 │ schema-utils │ 4.3.2 │ MIT ║ +║ 2617 │ schemes │ 1.4.0 │ MIT ║ +║ 2618 │ screenfull │ 5.2.0 │ MIT ║ +║ 2619 │ select-case │ 1.0.0 │ MIT ║ +║ 2620 │ select-hose │ 2.0.0 │ MIT ║ +║ 2621 │ selfsigned │ 2.4.1 │ MIT ║ +║ 2622 │ semver │ 6.3.1 │ ISC ║ +║ 2623 │ semver │ 7.6.3 │ ISC ║ +║ 2624 │ semver │ 7.7.1 │ ISC ║ +║ 2625 │ semver-compare │ 1.0.0 │ MIT ║ +║ 2626 │ send │ 0.19.0 │ MIT ║ +║ 2627 │ seq-queue │ 0.0.5 │ ║ +║ 2628 │ serialize-error │ 7.0.1 │ MIT ║ +║ 2629 │ serialize-error │ 8.1.0 │ MIT ║ +║ 2630 │ serialize-javascript │ 6.0.2 │ BSD-3-Clause ║ +║ 2631 │ serve-index │ 1.9.1 │ MIT ║ +║ 2632 │ serve-static │ 1.16.2 │ MIT ║ +║ 2633 │ set-cookie-parser │ 2.7.1 │ MIT ║ +║ 2634 │ set-function-length │ 1.2.2 │ MIT ║ +║ 2635 │ set-function-name │ 2.0.2 │ MIT ║ +║ 2636 │ set-harmonic-interval │ 1.0.1 │ Unlicense ║ +║ 2637 │ set-proto │ 1.0.0 │ MIT ║ +║ 2638 │ set-value │ 4.1.0 │ MIT ║ +║ 2639 │ setimmediate │ 1.0.5 │ MIT ║ +║ 2640 │ setprototypeof │ 1.1.0 │ ISC ║ +║ 2641 │ setprototypeof │ 1.2.0 │ ISC ║ +║ 2642 │ sha.js │ 2.4.11 │ (MIT AND BSD-3-Clause) ║ +║ 2643 │ shebang-command │ 2.0.0 │ MIT ║ +║ 2644 │ shebang-regex │ 3.0.0 │ MIT ║ +║ 2645 │ shell-quote │ 1.8.2 │ MIT ║ +║ 2646 │ short-unique-id │ 5.2.0 │ Apache-2.0 ║ +║ 2647 │ side-channel │ 1.1.0 │ MIT ║ +║ 2648 │ side-channel-list │ 1.0.0 │ MIT ║ +║ 2649 │ side-channel-map │ 1.0.1 │ MIT ║ +║ 2650 │ side-channel-weakmap │ 1.0.2 │ MIT ║ +║ 2651 │ signal-exit │ 4.1.0 │ ISC ║ +║ 2652 │ signal-exit │ 3.0.7 │ ISC ║ +║ 2653 │ simple-app │ 0.1.0 │ ║ +║ 2654 │ simple-app-subdir │ 0.1.0 │ ║ +║ 2655 │ simple-concat │ 1.0.1 │ MIT ║ +║ 2656 │ simple-eval │ 1.0.1 │ MIT ║ +║ 2657 │ simple-get │ 4.0.1 │ MIT ║ +║ 2658 │ simple-git │ 3.27.0 │ MIT ║ +║ 2659 │ simple-swizzle │ 0.2.2 │ MIT ║ +║ 2660 │ sisteransi │ 1.0.5 │ MIT ║ +║ 2661 │ slash │ 3.0.0 │ MIT ║ +║ 2662 │ smart-buffer │ 4.2.0 │ MIT ║ +║ 2663 │ smtp-address-parser │ 1.0.10 │ MIT ║ +║ 2664 │ smtp-address-parser │ 1.1.0 │ MIT ║ +║ 2665 │ sockjs │ 0.3.24 │ MIT ║ +║ 2666 │ socks │ 2.8.4 │ MIT ║ +║ 2667 │ socks-proxy-agent │ 7.0.0 │ MIT ║ +║ 2668 │ socks-proxy-agent │ 8.0.5 │ MIT ║ +║ 2669 │ sonic-boom │ 0.7.7 │ MIT ║ +║ 2670 │ sorted-array-functions │ 1.3.0 │ MIT ║ +║ 2671 │ source-list-map │ 2.0.1 │ MIT ║ +║ 2672 │ source-map │ 0.5.7 │ BSD-3-Clause ║ +║ 2673 │ source-map │ 0.7.4 │ BSD-3-Clause ║ +║ 2674 │ source-map │ 0.6.1 │ BSD-3-Clause ║ +║ 2675 │ source-map │ 0.5.6 │ BSD-3-Clause ║ +║ 2676 │ source-map-js │ 1.2.1 │ BSD-3-Clause ║ +║ 2677 │ source-map-support │ 0.5.13 │ MIT ║ +║ 2678 │ source-map-support │ 0.5.21 │ MIT ║ +║ 2679 │ space-separated-tokens │ 1.1.5 │ MIT ║ +║ 2680 │ space-separated-tokens │ 2.0.2 │ MIT ║ +║ 2681 │ spdy │ 4.0.2 │ MIT ║ +║ 2682 │ spdy-transport │ 3.0.0 │ MIT ║ +║ 2683 │ split-ca │ 1.0.1 │ ISC ║ +║ 2684 │ split2 │ 4.2.0 │ ISC ║ +║ 2685 │ split2 │ 3.2.2 │ ISC ║ +║ 2686 │ sprintf-js │ 1.0.3 │ BSD-3-Clause ║ +║ 2687 │ sprintf-js │ 1.1.3 │ BSD-3-Clause ║ +║ 2688 │ sqlstring │ 2.3.3 │ MIT ║ +║ 2689 │ ssh-remote-port-forward │ 1.0.4 │ MIT ║ +║ 2690 │ ssh2 │ 1.16.0 │ MIT ║ +║ 2691 │ ssri │ 10.0.6 │ ISC ║ +║ 2692 │ ssri │ 12.0.0 │ ISC ║ +║ 2693 │ stable │ 0.1.8 │ MIT ║ +║ 2694 │ stack-generator │ 2.0.10 │ MIT ║ +║ 2695 │ stack-trace │ 0.0.10 │ MIT ║ +║ 2696 │ stack-utils │ 2.0.6 │ MIT ║ +║ 2697 │ stackframe │ 1.3.4 │ MIT ║ +║ 2698 │ stacktrace-gps │ 3.1.2 │ MIT ║ +║ 2699 │ stacktrace-js │ 2.0.2 │ MIT ║ +║ 2700 │ standard-as-callback │ 2.1.0 │ MIT ║ +║ 2701 │ static-eval │ 2.0.2 │ MIT ║ +║ 2702 │ statuses │ 1.5.0 │ MIT ║ +║ 2703 │ statuses │ 2.0.1 │ MIT ║ +║ 2704 │ stop-iteration-iterator │ 1.1.0 │ MIT ║ +║ 2705 │ stoppable │ 1.1.0 │ MIT ║ +║ 2706 │ stream-browserify │ 3.0.0 │ MIT ║ +║ 2707 │ stream-buffers │ 3.0.3 │ Unlicense ║ +║ 2708 │ stream-events │ 1.0.5 │ MIT ║ +║ 2709 │ stream-http │ 3.2.0 │ MIT ║ +║ 2710 │ stream-shift │ 1.0.3 │ MIT ║ +║ 2711 │ streamroller │ 3.1.5 │ MIT ║ +║ 2712 │ streamsearch │ 1.1.0 │ MIT ║ +║ 2713 │ streamx │ 2.22.0 │ MIT ║ +║ 2714 │ strict-event-emitter │ 0.4.6 │ MIT ║ +║ 2715 │ strict-event-emitter │ 0.2.8 │ MIT ║ +║ 2716 │ string-env-interpolation │ 1.0.1 │ MIT ║ +║ 2717 │ string-hash │ 1.1.3 │ CC0-1.0 ║ +║ 2718 │ string-length │ 4.0.2 │ MIT ║ +║ 2719 │ string-width │ 5.1.2 │ MIT ║ +║ 2720 │ string-width │ 4.2.3 │ MIT ║ +║ 2721 │ string.prototype.includes │ 2.0.1 │ MIT ║ +║ 2722 │ string.prototype.matchall │ 4.0.12 │ MIT ║ +║ 2723 │ string.prototype.repeat │ 1.0.0 │ MIT ║ +║ 2724 │ string.prototype.trim │ 1.2.10 │ MIT ║ +║ 2725 │ string.prototype.trimend │ 1.0.9 │ MIT ║ +║ 2726 │ string.prototype.trimstart │ 1.0.8 │ MIT ║ +║ 2727 │ string_decoder │ 1.1.1 │ MIT ║ +║ 2728 │ string_decoder │ 1.3.0 │ MIT ║ +║ 2729 │ strip-ansi │ 7.1.0 │ MIT ║ +║ 2730 │ strip-ansi │ 5.2.0 │ MIT ║ +║ 2731 │ strip-ansi │ 6.0.1 │ MIT ║ +║ 2732 │ strip-bom │ 4.0.0 │ MIT ║ +║ 2733 │ strip-bom │ 3.0.0 │ MIT ║ +║ 2734 │ strip-final-newline │ 2.0.0 │ MIT ║ +║ 2735 │ strip-indent │ 3.0.0 │ MIT ║ +║ 2736 │ strip-json-comments │ 2.0.1 │ MIT ║ +║ 2737 │ strip-json-comments │ 3.1.1 │ MIT ║ +║ 2738 │ strnum │ 2.0.5 │ MIT ║ +║ 2739 │ strnum │ 1.1.2 │ MIT ║ +║ 2740 │ strtok3 │ 6.3.0 │ MIT ║ +║ 2741 │ stubs │ 3.0.0 │ MIT ║ +║ 2742 │ style-inject │ 0.3.0 │ MIT ║ +║ 2743 │ style-loader │ 3.3.4 │ MIT ║ +║ 2744 │ style-mod │ 4.1.2 │ MIT ║ +║ 2745 │ style-to-object │ 0.4.4 │ MIT ║ +║ 2746 │ style-value-types │ 5.0.0 │ MIT ║ +║ 2747 │ stylehacks │ 5.1.1 │ MIT ║ +║ 2748 │ stylis │ 4.3.6 │ MIT ║ +║ 2749 │ stylis │ 4.2.0 │ MIT ║ +║ 2750 │ sucrase │ 3.35.0 │ MIT ║ +║ 2751 │ supports-color │ 5.5.0 │ MIT ║ +║ 2752 │ supports-color │ 8.1.1 │ MIT ║ +║ 2753 │ supports-color │ 7.2.0 │ MIT ║ +║ 2754 │ supports-preserve-symlinks-flag │ 1.0.0 │ MIT ║ +║ 2755 │ svg-parser │ 2.0.4 │ MIT ║ +║ 2756 │ svgo │ 2.8.0 │ MIT ║ +║ 2757 │ swagger-client │ 3.35.0 │ Apache-2.0 ║ +║ 2758 │ swagger-ui-react │ 5.21.0 │ Apache-2.0 ║ +║ 2759 │ swc-loader │ 0.2.6 │ MIT ║ +║ 2760 │ swr │ 2.3.3 │ MIT ║ +║ 2761 │ symbol-observable │ 1.2.0 │ MIT ║ +║ 2762 │ symbol-tree │ 3.2.4 │ MIT ║ +║ 2763 │ sync-fetch │ 0.6.0-2 │ MIT ║ +║ 2764 │ tapable │ 1.1.3 │ MIT ║ +║ 2765 │ tapable │ 2.2.1 │ MIT ║ +║ 2766 │ tar │ 7.4.3 │ ISC ║ +║ 2767 │ tar │ 6.2.1 │ ISC ║ +║ 2768 │ tar-fs │ 2.1.2 │ MIT ║ +║ 2769 │ tar-stream │ 2.2.0 │ MIT ║ +║ 2770 │ tar-stream │ 3.1.7 │ MIT ║ +║ 2771 │ tarn │ 3.0.2 │ MIT ║ +║ 2772 │ tdigest │ 0.1.2 │ MIT ║ +║ 2773 │ teeny-request │ 9.0.0 │ Apache-2.0 ║ +║ 2774 │ terser │ 5.39.0 │ BSD-2-Clause ║ +║ 2775 │ terser-webpack-plugin │ 5.3.14 │ MIT ║ +║ 2776 │ test-exclude │ 6.0.0 │ ISC ║ +║ 2777 │ testcontainers │ 10.24.2 │ MIT ║ +║ 2778 │ text-decoder │ 1.2.3 │ Apache-2.0 ║ +║ 2779 │ text-hex │ 1.0.0 │ MIT ║ +║ 2780 │ text-table │ 0.2.0 │ MIT ║ +║ 2781 │ textextensions │ 5.16.0 │ MIT ║ +║ 2782 │ thenify │ 3.3.1 │ MIT ║ +║ 2783 │ thenify-all │ 1.6.0 │ MIT ║ +║ 2784 │ thingies │ 1.21.0 │ Unlicense ║ +║ 2785 │ throttle-debounce │ 3.0.1 │ MIT ║ +║ 2786 │ through │ 2.3.8 │ MIT ║ +║ 2787 │ through2 │ 4.0.2 │ MIT ║ +║ 2788 │ thunky │ 1.1.0 │ MIT ║ +║ 2789 │ tildify │ 2.0.0 │ MIT ║ +║ 2790 │ timeout-signal │ 2.0.0 │ MIT ║ +║ 2791 │ timers-browserify │ 2.0.12 │ MIT ║ +║ 2792 │ tiny-case │ 1.0.3 │ MIT ║ +║ 2793 │ tiny-invariant │ 1.3.3 │ MIT ║ +║ 2794 │ tiny-warning │ 1.0.3 │ MIT ║ +║ 2795 │ tinyglobby │ 0.2.13 │ MIT ║ +║ 2796 │ tldts │ 6.1.86 │ MIT ║ +║ 2797 │ tldts-core │ 6.1.86 │ MIT ║ +║ 2798 │ tmp │ 0.0.33 │ MIT ║ +║ 2799 │ tmp │ 0.2.3 │ MIT ║ +║ 2800 │ tmp-promise │ 3.0.3 │ MIT ║ +║ 2801 │ tmpl │ 1.0.5 │ BSD-3-Clause ║ +║ 2802 │ to-regex-range │ 5.0.1 │ MIT ║ +║ 2803 │ toggle-selection │ 1.0.6 │ MIT ║ +║ 2804 │ toidentifier │ 1.0.1 │ MIT ║ +║ 2805 │ token-types │ 4.2.1 │ MIT ║ +║ 2806 │ toposort │ 2.0.2 │ MIT ║ +║ 2807 │ tosource │ 2.0.0-alpha.3 │ ║ +║ 2808 │ tough-cookie │ 5.1.2 │ BSD-3-Clause ║ +║ 2809 │ tough-cookie │ 4.1.4 │ BSD-3-Clause ║ +║ 2810 │ tr46 │ 3.0.0 │ MIT ║ +║ 2811 │ tr46 │ 5.1.1 │ MIT ║ +║ 2812 │ tr46 │ 0.0.3 │ MIT ║ +║ 2813 │ tree-dump │ 1.0.2 │ Apache-2.0 ║ +║ 2814 │ tree-sitter │ 0.22.1 │ MIT ║ +║ 2815 │ tree-sitter-json │ 0.24.8 │ MIT ║ +║ 2816 │ trim-lines │ 3.0.1 │ MIT ║ +║ 2817 │ triple-beam │ 1.4.1 │ MIT ║ +║ 2818 │ trough │ 2.2.0 │ MIT ║ +║ 2819 │ tryer │ 1.0.1 │ MIT ║ +║ 2820 │ ts-algebra │ 2.0.0 │ MIT ║ +║ 2821 │ ts-api-utils │ 1.4.3 │ MIT ║ +║ 2822 │ ts-api-utils │ 2.1.0 │ MIT ║ +║ 2823 │ ts-easing │ 0.2.0 │ Unlicense ║ +║ 2824 │ ts-interface-checker │ 0.1.13 │ Apache-2.0 ║ +║ 2825 │ ts-is-present │ 1.2.2 │ MIT ║ +║ 2826 │ ts-mixer │ 6.0.4 │ MIT ║ +║ 2827 │ ts-morph │ 24.0.0 │ MIT ║ +║ 2828 │ ts-node │ 10.9.2 │ MIT ║ +║ 2829 │ ts-toolbelt │ 9.6.0 │ Apache-2.0 ║ +║ 2830 │ ts-use │ NOT-SET │ ║ +║ 2831 │ tsconfig-paths │ 3.15.0 │ MIT ║ +║ 2832 │ tslib │ 2.8.1 │ 0BSD ║ +║ 2833 │ tslib │ 1.14.1 │ 0BSD ║ +║ 2834 │ tsscmp │ 1.0.6 │ MIT ║ +║ 2835 │ tty-browserify │ 0.0.1 │ MIT ║ +║ 2836 │ tunnel │ 0.0.6 │ MIT ║ +║ 2837 │ tunnel-agent │ 0.6.0 │ Apache-2.0 ║ +║ 2838 │ tweetnacl │ 0.14.5 │ Unlicense ║ +║ 2839 │ type-check │ 0.4.0 │ MIT ║ +║ 2840 │ type-check │ 0.3.2 │ MIT ║ +║ 2841 │ type-detect │ 4.0.8 │ MIT ║ +║ 2842 │ type-fest │ 0.21.3 │ (MIT OR CC0-1.0) ║ +║ 2843 │ type-fest │ 0.13.1 │ (MIT OR CC0-1.0) ║ +║ 2844 │ type-fest │ 2.19.0 │ (MIT OR CC0-1.0) ║ +║ 2845 │ type-fest │ 0.20.2 │ (MIT OR CC0-1.0) ║ +║ 2846 │ type-is │ 1.6.18 │ MIT ║ +║ 2847 │ typed-array-buffer │ 1.0.3 │ MIT ║ +║ 2848 │ typed-array-byte-length │ 1.0.3 │ MIT ║ +║ 2849 │ typed-array-byte-offset │ 1.0.4 │ MIT ║ +║ 2850 │ typed-array-length │ 1.0.7 │ MIT ║ +║ 2851 │ typed-error │ 3.2.2 │ Apache-2.0 ║ +║ 2852 │ typed-rest-client │ 2.1.0 │ MIT ║ +║ 2853 │ typedarray │ 0.0.6 │ MIT ║ +║ 2854 │ types-ramda │ 0.30.1 │ MIT ║ +║ 2855 │ typescript │ 5.4.5 │ Apache-2.0 ║ +║ 2856 │ typescript │ 5.5.4 │ Apache-2.0 ║ +║ 2857 │ typescript-json-schema │ 0.65.1 │ BSD-3-Clause ║ +║ 2858 │ uc.micro │ 1.0.6 │ MIT ║ +║ 2859 │ uc.micro │ 2.1.0 │ MIT ║ +║ 2860 │ uglify-js │ 3.19.3 │ BSD-2-Clause ║ +║ 2861 │ uid-safe │ 2.1.5 │ MIT ║ +║ 2862 │ uid2 │ 1.0.0 │ MIT ║ +║ 2863 │ uid2 │ 0.0.3 │ ║ +║ 2864 │ uid2 │ 0.0.4 │ MIT ║ +║ 2865 │ unbox-primitive │ 1.1.0 │ MIT ║ +║ 2866 │ underscore │ 1.13.7 │ MIT ║ +║ 2867 │ underscore │ 1.12.1 │ MIT ║ +║ 2868 │ undici │ 5.29.0 │ MIT ║ +║ 2869 │ undici │ 7.8.0 │ MIT ║ +║ 2870 │ undici-types │ 6.21.0 │ MIT ║ +║ 2871 │ undici-types │ 6.19.8 │ MIT ║ +║ 2872 │ undici-types │ 5.26.5 │ MIT ║ +║ 2873 │ unicode-canonical-property-names-ecmascript │ 2.0.1 │ MIT ║ +║ 2874 │ unicode-match-property-ecmascript │ 2.0.0 │ MIT ║ +║ 2875 │ unicode-match-property-value-ecmascript │ 2.2.0 │ MIT ║ +║ 2876 │ unicode-property-aliases-ecmascript │ 2.1.0 │ MIT ║ +║ 2877 │ unified │ 10.1.2 │ MIT ║ +║ 2878 │ unique-filename │ 3.0.0 │ ISC ║ +║ 2879 │ unique-filename │ 4.0.0 │ ISC ║ +║ 2880 │ unique-slug │ 4.0.0 │ ISC ║ +║ 2881 │ unique-slug │ 5.0.0 │ ISC ║ +║ 2882 │ unist-util-generated │ 2.0.1 │ MIT ║ +║ 2883 │ unist-util-is │ 5.2.1 │ MIT ║ +║ 2884 │ unist-util-position │ 4.0.4 │ MIT ║ +║ 2885 │ unist-util-stringify-position │ 3.0.3 │ MIT ║ +║ 2886 │ unist-util-visit │ 4.1.2 │ MIT ║ +║ 2887 │ unist-util-visit-parents │ 5.1.3 │ MIT ║ +║ 2888 │ universal-github-app-jwt │ 1.2.0 │ MIT ║ +║ 2889 │ universal-user-agent │ 6.0.1 │ ISC ║ +║ 2890 │ universalify │ 0.1.2 │ MIT ║ +║ 2891 │ universalify │ 0.2.0 │ MIT ║ +║ 2892 │ universalify │ 2.0.1 │ MIT ║ +║ 2893 │ unixify │ 1.0.0 │ MIT ║ +║ 2894 │ unpipe │ 1.0.0 │ MIT ║ +║ 2895 │ unplugin-utils │ 0.2.4 │ MIT ║ +║ 2896 │ unraw │ 3.0.0 │ MIT ║ +║ 2897 │ upath │ 2.0.1 │ MIT ║ +║ 2898 │ update-browserslist-db │ 1.1.3 │ MIT ║ +║ 2899 │ uri-js │ 4.4.1 │ BSD-2-Clause ║ +║ 2900 │ uri-template │ 2.0.0 │ MIT ║ +║ 2901 │ urijs │ 1.19.11 │ MIT ║ +║ 2902 │ url │ 0.11.4 │ MIT ║ +║ 2903 │ url-parse │ 1.5.10 │ MIT ║ +║ 2904 │ url-template │ 2.0.8 │ BSD ║ +║ 2905 │ urlpattern-polyfill │ 8.0.2 │ MIT ║ +║ 2906 │ urlpattern-polyfill │ 10.0.0 │ MIT ║ +║ 2907 │ use-callback-ref │ 1.3.3 │ MIT ║ +║ 2908 │ use-immer │ 0.10.0 │ MIT ║ +║ 2909 │ use-memo-one │ 1.1.3 │ MIT ║ +║ 2910 │ use-resize-observer │ 9.1.0 │ MIT ║ +║ 2911 │ use-sidecar │ 1.1.3 │ MIT ║ +║ 2912 │ use-sync-external-store │ 1.5.0 │ MIT ║ +║ 2913 │ util │ 0.12.5 │ MIT ║ +║ 2914 │ util-deprecate │ 1.0.2 │ MIT ║ +║ 2915 │ utila │ 0.4.0 │ MIT ║ +║ 2916 │ utility-types │ 3.11.0 │ MIT ║ +║ 2917 │ utils-merge │ 1.0.1 │ MIT ║ +║ 2918 │ uuid │ 9.0.1 │ MIT ║ +║ 2919 │ uuid │ 8.3.2 │ MIT ║ +║ 2920 │ uuid │ 10.0.0 │ MIT ║ +║ 2921 │ uuid │ 3.4.0 │ MIT ║ +║ 2922 │ uuid │ 11.1.0 │ MIT ║ +║ 2923 │ uvu │ 0.5.6 │ MIT ║ +║ 2924 │ v8-compile-cache-lib │ 3.0.1 │ MIT ║ +║ 2925 │ v8-to-istanbul │ 9.3.0 │ ISC ║ +║ 2926 │ valid-url │ 1.0.9 │ ║ +║ 2927 │ validate.io-array │ 1.0.6 │ MIT ║ +║ 2928 │ validate.io-function │ 1.0.2 │ MIT ║ +║ 2929 │ validate.io-integer │ 1.0.5 │ MIT ║ +║ 2930 │ validate.io-integer-array │ 1.0.0 │ MIT ║ +║ 2931 │ validate.io-number │ 1.0.3 │ MIT ║ +║ 2932 │ value-or-promise │ 1.0.11 │ MIT ║ +║ 2933 │ vary │ 1.1.2 │ MIT ║ +║ 2934 │ vfile │ 5.3.7 │ MIT ║ +║ 2935 │ vfile-message │ 3.1.4 │ MIT ║ +║ 2936 │ vm-browserify │ 1.1.2 │ MIT ║ +║ 2937 │ vscode-languageserver-types │ 3.17.5 │ MIT ║ +║ 2938 │ w3c-keyname │ 2.2.8 │ MIT ║ +║ 2939 │ w3c-xmlserializer │ 5.0.0 │ MIT ║ +║ 2940 │ w3c-xmlserializer │ 4.0.0 │ MIT ║ +║ 2941 │ walker │ 1.0.8 │ Apache-2.0 ║ +║ 2942 │ watchpack │ 2.4.2 │ MIT ║ +║ 2943 │ wbuf │ 1.7.3 │ MIT ║ +║ 2944 │ wcwidth │ 1.0.1 │ MIT ║ +║ 2945 │ web-encoding │ 1.1.5 │ MIT ║ +║ 2946 │ web-streams-polyfill │ 3.3.3 │ MIT ║ +║ 2947 │ web-streams-polyfill-es2018 │ NOT-SET │ ║ +║ 2948 │ web-streams-polyfill-es6 │ NOT-SET │ ║ +║ 2949 │ web-streams-ponyfill │ NOT-SET │ ║ +║ 2950 │ web-streams-ponyfill-es2018 │ NOT-SET │ ║ +║ 2951 │ web-streams-ponyfill-es6 │ NOT-SET │ ║ +║ 2952 │ web-tree-sitter │ 0.24.5 │ MIT ║ +║ 2953 │ webidl-conversions │ 3.0.1 │ BSD-2-Clause ║ +║ 2954 │ webidl-conversions │ 7.0.0 │ BSD-2-Clause ║ +║ 2955 │ webpack │ 5.99.7 │ MIT ║ +║ 2956 │ webpack-dev-middleware │ 7.4.2 │ MIT ║ +║ 2957 │ webpack-dev-server │ 5.2.1 │ MIT ║ +║ 2958 │ webpack-sources │ 3.2.3 │ MIT ║ +║ 2959 │ webpack-sources │ 1.4.3 │ MIT ║ +║ 2960 │ websocket-driver │ 0.7.4 │ Apache-2.0 ║ +║ 2961 │ websocket-extensions │ 0.1.4 │ Apache-2.0 ║ +║ 2962 │ whatwg-encoding │ 3.1.1 │ MIT ║ +║ 2963 │ whatwg-encoding │ 2.0.0 │ MIT ║ +║ 2964 │ whatwg-mimetype │ 3.0.0 │ MIT ║ +║ 2965 │ whatwg-mimetype │ 4.0.0 │ MIT ║ +║ 2966 │ whatwg-url │ 5.0.0 │ MIT ║ +║ 2967 │ whatwg-url │ 11.0.0 │ MIT ║ +║ 2968 │ whatwg-url │ 14.2.0 │ MIT ║ +║ 2969 │ which │ 5.0.0 │ ISC ║ +║ 2970 │ which │ 2.0.2 │ ISC ║ +║ 2971 │ which │ 4.0.0 │ ISC ║ +║ 2972 │ which │ 1.3.1 │ ISC ║ +║ 2973 │ which-boxed-primitive │ 1.1.1 │ MIT ║ +║ 2974 │ which-builtin-type │ 1.2.1 │ MIT ║ +║ 2975 │ which-collection │ 1.0.2 │ MIT ║ +║ 2976 │ which-typed-array │ 1.1.19 │ MIT ║ +║ 2977 │ winston │ 3.17.0 │ MIT ║ +║ 2978 │ winston-daily-rotate-file │ 5.0.0 │ MIT ║ +║ 2979 │ winston-transport │ 4.9.0 │ MIT ║ +║ 2980 │ word-wrap │ 1.2.5 │ MIT ║ +║ 2981 │ wordwrap │ 1.0.0 │ MIT ║ +║ 2982 │ wrap-ansi │ 8.1.0 │ MIT ║ +║ 2983 │ wrap-ansi │ 6.2.0 │ MIT ║ +║ 2984 │ wrap-ansi │ 7.0.0 │ MIT ║ +║ 2985 │ wrappy │ 1.0.2 │ ISC ║ +║ 2986 │ write-file-atomic │ 4.0.2 │ ISC ║ +║ 2987 │ ws │ 8.18.0 │ MIT ║ +║ 2988 │ ws │ 8.18.1 │ MIT ║ +║ 2989 │ xcase │ 2.0.1 │ MIT ║ +║ 2990 │ xml │ 1.0.1 │ MIT ║ +║ 2991 │ xml-but-prettier │ 1.0.1 │ MIT ║ +║ 2992 │ xml-crypto │ 6.1.2 │ MIT ║ +║ 2993 │ xml-encryption │ 3.1.0 │ MIT ║ +║ 2994 │ xml-name-validator │ 5.0.0 │ Apache-2.0 ║ +║ 2995 │ xml-name-validator │ 4.0.0 │ Apache-2.0 ║ +║ 2996 │ xml2js │ 0.6.2 │ MIT ║ +║ 2997 │ xmlbuilder │ 15.1.1 │ MIT ║ +║ 2998 │ xmlbuilder │ 11.0.1 │ MIT ║ +║ 2999 │ xmlchars │ 2.2.0 │ MIT ║ +║ 3000 │ xpath │ 0.0.33 │ MIT ║ +║ 3001 │ xpath │ 0.0.32 │ MIT ║ +║ 3002 │ xpath │ 0.0.34 │ MIT ║ +║ 3003 │ xtend │ 4.0.2 │ MIT ║ +║ 3004 │ xterm │ 5.3.0 │ MIT ║ +║ 3005 │ xterm-addon-attach │ 0.9.0 │ MIT ║ +║ 3006 │ xterm-addon-fit │ 0.8.0 │ MIT ║ +║ 3007 │ y18n │ 5.0.8 │ ISC ║ +║ 3008 │ yallist │ 3.1.1 │ ISC ║ +║ 3009 │ yallist │ 5.0.0 │ BlueOak-1.0.0 ║ +║ 3010 │ yallist │ 4.0.0 │ ISC ║ +║ 3011 │ yaml │ 1.10.2 │ ISC ║ +║ 3012 │ yaml │ 2.7.1 │ ISC ║ +║ 3013 │ yargs │ 16.2.0 │ MIT ║ +║ 3014 │ yargs │ 17.7.2 │ MIT ║ +║ 3015 │ yargs-parser │ 20.2.9 │ ISC ║ +║ 3016 │ yargs-parser │ 21.1.1 │ ISC ║ +║ 3017 │ yauzl │ 3.2.0 │ MIT ║ +║ 3018 │ ylru │ 1.4.0 │ MIT ║ +║ 3019 │ yml-loader │ 2.1.0 │ MIT ║ +║ 3020 │ yn │ 3.1.1 │ MIT ║ +║ 3021 │ yn │ 4.0.0 │ MIT ║ +║ 3022 │ yocto-queue │ 0.1.0 │ MIT ║ +║ 3023 │ yup │ 1.6.1 │ MIT ║ +║ 3024 │ zen-observable │ 0.10.0 │ MIT ║ +║ 3025 │ zenscroll │ 4.0.2 │ Unlicense ║ +║ 3026 │ zip-stream │ 5.0.2 │ MIT ║ +║ 3027 │ zip-stream │ 6.0.1 │ MIT ║ +║ 3028 │ zod │ 3.24.3 │ MIT ║ +║ 3029 │ zod-to-json-schema │ 3.24.5 │ ISC ║ +║ 3030 │ zod-validation-error │ 3.4.0 │ MIT ║ +║ 3031 │ zstd-codec │ 0.1.5 │ MIT ║ +║ 3032 │ zwitch │ 2.0.4 │ MIT ║ ╚═══════╧════════════════════════════════════════════════════════════════════════════════╧══════════════════════════════════════╧══════════════════════════════════════╝ ------------------------------------- - Package: @adobe/css-tools -- Version: 4.4.1 +- Version: 4.4.2 - License: MIT ------------------------------------- (The MIT License) @@ -3245,7 +3267,7 @@ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: @apidevtools/json-schema-ref-parser -- Version: 9.0.6 +- Version: 11.7.2 - License: MIT ------------------------------------- The MIT License (MIT) @@ -3275,7 +3297,7 @@ THE SOFTWARE. ------------------------------------- - Package: @apidevtools/json-schema-ref-parser -- Version: 11.7.3 +- Version: 11.9.3 - License: MIT ------------------------------------- The MIT License (MIT) @@ -3365,7 +3387,7 @@ THE SOFTWARE. ------------------------------------- - Package: @apidevtools/swagger-parser -- Version: 10.1.0 +- Version: 10.1.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -3394,13 +3416,13 @@ THE SOFTWARE. ------------------------------------- -- Package: @ardatan/sync-fetch -- Version: 0.0.1 +- Package: @asamuzakjp/css-color +- Version: 3.1.5 - License: MIT ------------------------------------- MIT License -Copyright (c) 2019 Lars Willighagen +Copyright (c) 2024 asamuzaK (Kazz) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -3845,7 +3867,7 @@ SOFTWARE. ------------------------------------- - Package: @asyncapi/protobuf-schema-parser -- Version: 3.3.0 +- Version: 3.5.1 - License: Apache-2.0 ------------------------------------- Apache License @@ -4054,7 +4076,7 @@ SOFTWARE. ------------------------------------- - Package: @asyncapi/react-component -- Version: 2.5.0 +- Version: 2.6.3 - License: Apache-2.0 ------------------------------------- Apache License @@ -4264,7 +4286,7 @@ SOFTWARE. ------------------------------------- - Package: @asyncapi/specs -- Version: 6.8.0 +- Version: 6.8.1 - License: Apache-2.0 ------------------------------------- Apache License @@ -6575,7 +6597,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/client-codecommit -- Version: 3.699.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -6785,7 +6807,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/client-cognito-identity -- Version: 3.699.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -6995,7 +7017,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/client-s3 -- Version: 3.705.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -7205,217 +7227,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/client-sso -- Version: 3.696.0 -- License: Apache-2.0 -------------------------------------- - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -------------------------------------- - - - -------------------------------------- -- Package: @aws-sdk/client-sso-oidc -- Version: 3.699.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -7625,7 +7437,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/client-sts -- Version: 3.699.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -7835,7 +7647,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/credential-provider-cognito-identity -- Version: 3.699.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -8045,7 +7857,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/credential-provider-env -- Version: 3.696.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -8254,7 +8066,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/credential-provider-ini -- Version: 3.699.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -8463,7 +8275,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/credential-provider-node -- Version: 3.699.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -8672,7 +8484,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/credential-provider-process -- Version: 3.696.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -8881,7 +8693,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/credential-provider-sso -- Version: 3.699.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -9090,7 +8902,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/credential-provider-web-identity -- Version: 3.696.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -9299,7 +9111,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/credential-providers -- Version: 3.699.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -9927,7 +9739,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/lib-storage -- Version: 3.705.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -10136,7 +9948,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/middleware-bucket-endpoint -- Version: 3.696.0 +- Version: 3.775.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -10346,7 +10158,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/middleware-expect-continue -- Version: 3.696.0 +- Version: 3.775.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -10556,7 +10368,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/middleware-flexible-checksums -- Version: 3.701.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -10766,7 +10578,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/middleware-host-header -- Version: 3.696.0 +- Version: 3.775.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -10976,7 +10788,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/middleware-location-constraint -- Version: 3.696.0 +- Version: 3.775.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -11186,7 +10998,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/middleware-logger -- Version: 3.696.0 +- Version: 3.775.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -11395,7 +11207,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/middleware-recursion-detection -- Version: 3.696.0 +- Version: 3.775.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -11605,7 +11417,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/middleware-sdk-s3 -- Version: 3.696.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -11815,7 +11627,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/middleware-ssec -- Version: 3.696.0 +- Version: 3.775.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -12025,7 +11837,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/middleware-user-agent -- Version: 3.696.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -12235,7 +12047,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/region-config-resolver -- Version: 3.696.0 +- Version: 3.775.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -12653,7 +12465,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/signature-v4-multi-region -- Version: 3.696.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -12863,7 +12675,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/token-providers -- Version: 3.699.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -13281,7 +13093,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/types -- Version: 3.696.0 +- Version: 3.775.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -13490,7 +13302,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/util-arn-parser -- Version: 3.693.0 +- Version: 3.723.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -13908,7 +13720,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/util-endpoints -- Version: 3.696.0 +- Version: 3.787.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -14326,7 +14138,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/util-locate-window -- Version: 3.693.0 +- Version: 3.723.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -14953,7 +14765,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/util-user-agent-browser -- Version: 3.696.0 +- Version: 3.775.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -15163,7 +14975,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/util-user-agent-node -- Version: 3.696.0 +- Version: 3.799.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -15791,7 +15603,7 @@ Apache License ------------------------------------- - Package: @aws-sdk/xml-builder -- Version: 3.696.0 +- Version: 3.775.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -16060,12 +15872,12 @@ SOFTWARE. ------------------------------------- - Package: @azure/core-client -- Version: 1.9.2 +- Version: 1.9.3 - License: MIT ------------------------------------- -The MIT License (MIT) +Copyright (c) Microsoft Corporation. -Copyright (c) 2020 Microsoft +MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -16077,7 +15889,7 @@ furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER @@ -16090,12 +15902,12 @@ SOFTWARE. ------------------------------------- - Package: @azure/core-http-compat -- Version: 2.1.2 +- Version: 2.2.0 - License: MIT ------------------------------------- -The MIT License (MIT) +Copyright (c) Microsoft Corporation. -Copyright (c) 2020 Microsoft +MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -16107,7 +15919,7 @@ furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER @@ -16180,12 +15992,12 @@ SOFTWARE. ------------------------------------- - Package: @azure/core-rest-pipeline -- Version: 1.18.1 +- Version: 1.19.1 - License: MIT ------------------------------------- -The MIT License (MIT) +Copyright (c) Microsoft Corporation. -Copyright (c) 2020 Microsoft +MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -16197,7 +16009,7 @@ furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER @@ -16270,12 +16082,12 @@ SOFTWARE. ------------------------------------- - Package: @azure/core-xml -- Version: 1.4.4 +- Version: 1.4.5 - License: MIT ------------------------------------- -The MIT License (MIT) +Copyright (c) Microsoft Corporation. -Copyright (c) 2020 Microsoft +MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -16287,7 +16099,7 @@ furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER @@ -16300,12 +16112,12 @@ SOFTWARE. ------------------------------------- - Package: @azure/identity -- Version: 4.5.0 +- Version: 4.9.1 - License: MIT ------------------------------------- -The MIT License (MIT) +Copyright (c) Microsoft Corporation. -Copyright (c) 2020 Microsoft +MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -16317,7 +16129,7 @@ furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER @@ -16360,7 +16172,7 @@ SOFTWARE. ------------------------------------- - Package: @azure/msal-browser -- Version: 3.27.0 +- Version: 4.11.1 - License: MIT ------------------------------------- MIT License @@ -16390,7 +16202,7 @@ SOFTWARE ------------------------------------- - Package: @azure/msal-common -- Version: 14.16.0 +- Version: 15.5.2 - License: MIT ------------------------------------- MIT License @@ -16420,7 +16232,7 @@ SOFTWARE ------------------------------------- - Package: @azure/msal-node -- Version: 2.16.2 +- Version: 3.5.2 - License: MIT ------------------------------------- MIT License @@ -16450,12 +16262,12 @@ SOFTWARE. ------------------------------------- - Package: @azure/storage-blob -- Version: 12.26.0 +- Version: 12.27.0 - License: MIT ------------------------------------- -The MIT License (MIT) +Copyright (c) Microsoft Corporation. -Copyright (c) 2020 Microsoft +MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -16467,7 +16279,7 @@ furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER @@ -16542,7 +16354,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/compat-data -- Version: 7.26.3 +- Version: 7.26.8 - License: MIT ------------------------------------- MIT License @@ -16573,7 +16385,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/core -- Version: 7.26.0 +- Version: 7.26.10 - License: MIT ------------------------------------- MIT License @@ -16604,7 +16416,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/generator -- Version: 7.26.3 +- Version: 7.27.0 - License: MIT ------------------------------------- MIT License @@ -16666,7 +16478,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/helper-compilation-targets -- Version: 7.25.9 +- Version: 7.27.0 - License: MIT ------------------------------------- MIT License @@ -16697,7 +16509,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/helper-create-class-features-plugin -- Version: 7.25.9 +- Version: 7.27.0 - License: MIT ------------------------------------- MIT License @@ -16728,7 +16540,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/helper-create-regexp-features-plugin -- Version: 7.26.3 +- Version: 7.27.0 - License: MIT ------------------------------------- MIT License @@ -16759,7 +16571,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/helper-define-polyfill-provider -- Version: 0.6.3 +- Version: 0.6.4 - License: MIT ------------------------------------- MIT License @@ -16914,7 +16726,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/helper-plugin-utils -- Version: 7.25.9 +- Version: 7.26.5 - License: MIT ------------------------------------- MIT License @@ -16976,7 +16788,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/helper-replace-supers -- Version: 7.25.9 +- Version: 7.26.5 - License: MIT ------------------------------------- MIT License @@ -17162,7 +16974,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/helpers -- Version: 7.26.0 +- Version: 7.27.0 - License: MIT ------------------------------------- MIT License @@ -17224,7 +17036,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/parser -- Version: 7.26.3 +- Version: 7.27.0 - License: MIT ------------------------------------- Copyright (C) 2012-2014 by various contributors (see AUTHORS) @@ -18058,7 +17870,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/plugin-transform-async-generator-functions -- Version: 7.25.9 +- Version: 7.26.8 - License: MIT ------------------------------------- MIT License @@ -18120,7 +17932,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/plugin-transform-block-scoped-functions -- Version: 7.25.9 +- Version: 7.26.5 - License: MIT ------------------------------------- MIT License @@ -18151,7 +17963,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/plugin-transform-block-scoping -- Version: 7.25.9 +- Version: 7.27.0 - License: MIT ------------------------------------- MIT License @@ -18523,7 +18335,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/plugin-transform-for-of -- Version: 7.25.9 +- Version: 7.26.9 - License: MIT ------------------------------------- MIT License @@ -18895,7 +18707,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/plugin-transform-nullish-coalescing-operator -- Version: 7.25.9 +- Version: 7.26.6 - License: MIT ------------------------------------- MIT License @@ -19360,7 +19172,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/plugin-transform-regenerator -- Version: 7.25.9 +- Version: 7.27.0 - License: MIT ------------------------------------- MIT License @@ -19546,7 +19358,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/plugin-transform-template-literals -- Version: 7.25.9 +- Version: 7.26.8 - License: MIT ------------------------------------- MIT License @@ -19577,7 +19389,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/plugin-transform-typeof-symbol -- Version: 7.25.9 +- Version: 7.27.0 - License: MIT ------------------------------------- MIT License @@ -19608,7 +19420,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/plugin-transform-typescript -- Version: 7.26.3 +- Version: 7.27.0 - License: MIT ------------------------------------- MIT License @@ -19763,7 +19575,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/preset-env -- Version: 7.26.0 +- Version: 7.26.9 - License: MIT ------------------------------------- MIT License @@ -19855,7 +19667,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/preset-typescript -- Version: 7.26.0 +- Version: 7.27.0 - License: MIT ------------------------------------- MIT License @@ -19886,7 +19698,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/runtime -- Version: 7.26.10 +- Version: 7.27.0 - License: MIT ------------------------------------- MIT License @@ -19917,7 +19729,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/runtime-corejs3 -- Version: 7.26.0 +- Version: 7.27.0 - License: MIT ------------------------------------- MIT License @@ -19948,7 +19760,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/template -- Version: 7.25.9 +- Version: 7.27.0 - License: MIT ------------------------------------- MIT License @@ -19979,7 +19791,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/traverse -- Version: 7.26.4 +- Version: 7.27.0 - License: MIT ------------------------------------- MIT License @@ -20010,7 +19822,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @babel/types -- Version: 7.26.3 +- Version: 7.27.0 - License: MIT ------------------------------------- MIT License @@ -20298,39 +20110,9 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -------------------------------------- -- Package: @braintree/sanitize-url -- Version: 7.0.4 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) 2017 Braintree - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: @codemirror/autocomplete -- Version: 6.18.3 +- Version: 6.18.6 - License: MIT ------------------------------------- MIT License @@ -20360,7 +20142,7 @@ THE SOFTWARE. ------------------------------------- - Package: @codemirror/commands -- Version: 6.7.1 +- Version: 6.8.1 - License: MIT ------------------------------------- MIT License @@ -20390,7 +20172,7 @@ THE SOFTWARE. ------------------------------------- - Package: @codemirror/language -- Version: 6.10.6 +- Version: 6.11.0 - License: MIT ------------------------------------- MIT License @@ -20420,7 +20202,7 @@ THE SOFTWARE. ------------------------------------- - Package: @codemirror/legacy-modes -- Version: 6.4.2 +- Version: 6.5.1 - License: MIT ------------------------------------- MIT License @@ -20450,7 +20232,7 @@ THE SOFTWARE. ------------------------------------- - Package: @codemirror/lint -- Version: 6.8.4 +- Version: 6.8.5 - License: MIT ------------------------------------- MIT License @@ -20480,7 +20262,7 @@ THE SOFTWARE. ------------------------------------- - Package: @codemirror/search -- Version: 6.5.8 +- Version: 6.5.10 - License: MIT ------------------------------------- MIT License @@ -20510,7 +20292,7 @@ THE SOFTWARE. ------------------------------------- - Package: @codemirror/state -- Version: 6.5.0 +- Version: 6.5.2 - License: MIT ------------------------------------- MIT License @@ -20570,7 +20352,7 @@ THE SOFTWARE. ------------------------------------- - Package: @codemirror/view -- Version: 6.35.3 +- Version: 6.36.6 - License: MIT ------------------------------------- MIT License @@ -20664,13 +20446,40 @@ SOFTWARE. ------------------------------------- -- Package: @dabh/diagnostics -- Version: 2.0.3 +- Package: @csstools/color-helpers +- Version: 5.0.2 +- License: MIT-0 +------------------------------------- +MIT No Attribution (MIT-0) + +Copyright © CSSTools Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the “Software”), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @csstools/css-calc +- Version: 2.1.3 - License: MIT ------------------------------------- The MIT License (MIT) -Copyright (c) 2015 Arnout Kazemier, Martijn Swaagman, the Contributors. +Copyright 2022 Romain Menke, Antonio Laguna Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in @@ -20693,129 +20502,100 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- -- Package: @dagrejs/dagre -- Version: 1.1.4 +- Package: @csstools/css-color-parser +- Version: 3.0.9 - License: MIT ------------------------------------- -Copyright (c) 2012-2014 Chris Pettitt - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -------------------------------------- - - +The MIT License (MIT) -------------------------------------- -- Package: @dagrejs/graphlib -- Version: 2.2.4 -- License: MIT -------------------------------------- -Copyright (c) 2012-2014 Chris Pettitt +Copyright 2022 Romain Menke, Antonio Laguna -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- ------------------------------------- -- Package: @date-io/core -- Version: 1.3.13 +- Package: @csstools/css-parser-algorithms +- Version: 3.0.4 - License: MIT ------------------------------------- -MIT License +The MIT License (MIT) -Copyright (c) 2017 Dmitriy Kovalenko +Copyright 2022 Romain Menke, Antonio Laguna -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- ------------------------------------- -- Package: @date-io/date-fns -- Version: 1.3.13 +- Package: @csstools/css-tokenizer +- Version: 3.0.3 - License: MIT ------------------------------------- -MIT License +The MIT License (MIT) -Copyright (c) 2017 Dmitriy Kovalenko +Copyright 2022 Romain Menke, Antonio Laguna -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- ------------------------------------- -- Package: @davidzemon/passport-okta-oauth -- Version: 0.0.5 +- Package: @dabh/diagnostics +- Version: 2.0.3 - License: MIT ------------------------------------- -(The MIT License) +The MIT License (MIT) -Copyright (c) 2016 Steven Chau +Copyright (c) 2015 Arnout Kazemier, Martijn Swaagman, the Contributors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in @@ -20838,13 +20618,39 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- -- Package: @emotion/babel-plugin -- Version: 11.13.5 +- Package: @dagrejs/dagre +- Version: 1.1.4 - License: MIT ------------------------------------- -MIT License +Copyright (c) 2012-2014 Chris Pettitt -Copyright (c) Emotion team and other contributors +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @dagrejs/graphlib +- Version: 2.2.4 +- License: MIT +------------------------------------- +Copyright (c) 2012-2014 Chris Pettitt Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -20853,28 +20659,147 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. ------------------------------------- ------------------------------------- -- Package: @emotion/cache -- Version: 11.14.0 +- Package: @date-io/core +- Version: 1.3.13 - License: MIT ------------------------------------- MIT License -Copyright (c) Emotion team and other contributors +Copyright (c) 2017 Dmitriy Kovalenko + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @date-io/date-fns +- Version: 1.3.13 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2017 Dmitriy Kovalenko + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @davidzemon/passport-okta-oauth +- Version: 0.0.5 +- License: MIT +------------------------------------- +(The MIT License) + +Copyright (c) 2016 Steven Chau + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @emotion/babel-plugin +- Version: 11.13.5 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) Emotion team and other contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @emotion/cache +- Version: 11.14.0 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) Emotion team and other contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -21317,9 +21242,99 @@ SOFTWARE. +------------------------------------- +- Package: @envelop/core +- Version: 5.2.3 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2020 Dotan Simha + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @envelop/instrumentation +- Version: 1.0.0 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2020 Dotan Simha + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @envelop/types +- Version: 5.2.1 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2020 Dotan Simha + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: @eslint-community/eslint-utils -- Version: 4.4.1 +- Version: 4.6.1 - License: MIT ------------------------------------- MIT License @@ -21433,9 +21448,63 @@ THE SOFTWARE. +------------------------------------- +- Package: @fastify/busboy +- Version: 3.1.1 +- License: MIT +------------------------------------- +Copyright Brian White. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE.------------------------------------- + + + +------------------------------------- +- Package: @fastify/busboy +- Version: 2.1.1 +- License: MIT +------------------------------------- +Copyright Brian White. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE.------------------------------------- + + + ------------------------------------- - Package: @floating-ui/core -- Version: 1.6.8 +- Version: 1.6.9 - License: MIT ------------------------------------- MIT License @@ -21464,7 +21533,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @floating-ui/dom -- Version: 1.6.12 +- Version: 1.6.13 - License: MIT ------------------------------------- MIT License @@ -21522,7 +21591,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @floating-ui/utils -- Version: 0.2.8 +- Version: 0.2.9 - License: MIT ------------------------------------- MIT License @@ -21551,7 +21620,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @gitbeaker/core -- Version: 39.34.3 +- Version: 41.3.0 - License: MIT ------------------------------------- # The MIT License @@ -21582,7 +21651,7 @@ THE SOFTWARE. ------------------------------------- - Package: @gitbeaker/requester-utils -- Version: 39.34.3 +- Version: 41.3.0 - License: MIT ------------------------------------- # The MIT License @@ -21613,7 +21682,7 @@ THE SOFTWARE. ------------------------------------- - Package: @gitbeaker/rest -- Version: 39.34.3 +- Version: 41.3.0 - License: MIT ------------------------------------- # The MIT License @@ -22699,7 +22768,7 @@ THE SOFTWARE. ------------------------------------- - Package: @google-cloud/storage -- Version: 7.14.0 +- Version: 7.16.0 - License: Apache-2.0 ------------------------------------- @@ -23018,7 +23087,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: @grpc/grpc-js -- Version: 1.12.4 +- Version: 1.13.3 - License: Apache-2.0 ------------------------------------- Apache License @@ -23228,7 +23297,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: @grpc/proto-loader -- Version: 0.7.13 +- Version: 0.7.15 - License: Apache-2.0 ------------------------------------- Apache License @@ -24048,128 +24117,212 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ------------------------------------- -- Package: @istanbuljs/load-nyc-config -- Version: 1.1.0 -- License: ISC +- Package: @isomorphic-git/pgp-plugin +- Version: 0.0.7 +- License: LGPL-3.0+ ------------------------------------- -ISC License + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 -Copyright (c) 2019, Contributors + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. -Permission to use, copy, modify, and/or distribute this software -for any purpose with or without fee is hereby granted, provided -that the above copyright notice and this permission notice -appear in all copies. -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE -LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES -OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -------------------------------------- + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + 0. Additional Definitions. + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. -------------------------------------- -- Package: @istanbuljs/schema -- Version: 0.1.3 -- License: MIT -------------------------------------- -MIT License + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. -Copyright (c) 2019 CFWare, LLC + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -------------------------------------- + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + 1. Exception to Section 3 of the GNU GPL. + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. -------------------------------------- -- Package: @jest-mock/express -- Version: 2.1.0 -- License: MIT -------------------------------------- -MIT License + 2. Conveying Modified Versions. -Copyright (c) 2021 bikk.uk + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. ------------------------------------- ------------------------------------- -- Package: @jest/console -- Version: 29.7.0 -- License: MIT +- Package: @istanbuljs/load-nyc-config +- Version: 1.1.0 +- License: ISC ------------------------------------- -MIT License - -Copyright (c) Meta Platforms, Inc. and affiliates. +ISC License -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Copyright (c) 2019, Contributors -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Permission to use, copy, modify, and/or distribute this software +for any purpose with or without fee is hereby granted, provided +that the above copyright notice and this permission notice +appear in all copies. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE +LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ------------------------------------- ------------------------------------- -- Package: @jest/core -- Version: 29.7.0 +- Package: @istanbuljs/schema +- Version: 0.1.3 - License: MIT ------------------------------------- MIT License -Copyright (c) Meta Platforms, Inc. and affiliates. +Copyright (c) 2019 CFWare, LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -24193,13 +24346,103 @@ SOFTWARE. ------------------------------------- -- Package: @jest/create-cache-key-function -- Version: 29.7.0 +- Package: @jest-mock/express +- Version: 2.1.0 - License: MIT ------------------------------------- MIT License -Copyright (c) Meta Platforms, Inc. and affiliates. +Copyright (c) 2021 bikk.uk + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @jest/console +- Version: 29.7.0 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) Meta Platforms, Inc. and affiliates. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @jest/core +- Version: 29.7.0 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) Meta Platforms, Inc. and affiliates. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @jest/create-cache-key-function +- Version: 29.7.0 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) Meta Platforms, Inc. and affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -24584,7 +24827,7 @@ SOFTWARE. ------------------------------------- - Package: @jridgewell/gen-mapping -- Version: 0.3.5 +- Version: 0.3.8 - License: MIT ------------------------------------- Copyright 2022 Justin Ridgewell @@ -25138,7 +25381,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @jsonjoy.com/json-pack -- Version: 1.1.1 +- Version: 1.2.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -25767,11 +26010,14 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- -- Package: @kamilkisiela/fast-url-parser -- Version: 1.1.4 +- Package: @keyv/memcache +- Version: 2.0.1 - License: MIT ------------------------------------- -Copyright (c) 2014 Petka Antonov +MIT License + +Copyright (c) 2017-2021 Luke Childs +Copyright (c) 2021-2022 Jared Wray Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -25780,16 +26026,78 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @keyv/redis +- Version: 4.3.4 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2017-2021 Luke Childs +Copyright (c) 2021-2022 Jared Wray + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @keyv/serialize +- Version: 1.0.3 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2017-2021 Luke Childs +Copyright (c) 2021-2022 Jared Wray + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. ------------------------------------- @@ -25886,7 +26194,7 @@ SOFTWARE. ------------------------------------- - Package: @kubernetes/client-node -- Version: 1.0.0-rc7 +- Version: 1.1.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -26094,6 +26402,65 @@ SOFTWARE. +------------------------------------- +- Package: @kwsites/file-exists +- Version: 1.1.1 +- License: MIT +------------------------------------- +The MIT License (MIT) + +Copyright (c) 2015 Steve King + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @kwsites/promise-deferred +- Version: 1.1.1 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2018 kwsites + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: @leichtgewicht/ip-codec - Version: 2.0.5 @@ -26516,7 +26883,7 @@ SOFTWARE. ------------------------------------- - Package: @module-federation/bridge-react-webpack-plugin -- Version: 0.7.7 +- Version: 0.8.12 - License: MIT ------------------------------------- MIT License @@ -26546,7 +26913,7 @@ SOFTWARE. ------------------------------------- - Package: @module-federation/data-prefetch -- Version: 0.7.7 +- Version: 0.8.12 - License: MIT ------------------------------------- MIT License @@ -26576,7 +26943,7 @@ SOFTWARE. ------------------------------------- - Package: @module-federation/dts-plugin -- Version: 0.7.7 +- Version: 0.8.12 - License: MIT ------------------------------------- MIT License @@ -26606,7 +26973,7 @@ SOFTWARE. ------------------------------------- - Package: @module-federation/enhanced -- Version: 0.7.7 +- Version: 0.8.12 - License: MIT ------------------------------------- MIT License @@ -26636,7 +27003,7 @@ SOFTWARE. ------------------------------------- - Package: @module-federation/error-codes -- Version: 0.7.7 +- Version: 0.8.12 - License: MIT ------------------------------------- MIT License @@ -26664,9 +27031,39 @@ SOFTWARE. +------------------------------------- +- Package: @module-federation/inject-external-runtime-core-plugin +- Version: 0.8.12 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2024-present zhanghang(2heal1) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: @module-federation/managers -- Version: 0.7.7 +- Version: 0.8.12 - License: MIT ------------------------------------- MIT License @@ -26696,7 +27093,7 @@ SOFTWARE. ------------------------------------- - Package: @module-federation/manifest -- Version: 0.7.7 +- Version: 0.8.12 - License: MIT ------------------------------------- MIT License @@ -26726,7 +27123,7 @@ SOFTWARE. ------------------------------------- - Package: @module-federation/rspack -- Version: 0.7.7 +- Version: 0.8.12 - License: MIT ------------------------------------- MIT License @@ -26756,7 +27153,37 @@ SOFTWARE. ------------------------------------- - Package: @module-federation/runtime -- Version: 0.7.7 +- Version: 0.8.12 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2023-present zhouxiao(zhoushaw) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @module-federation/runtime-core +- Version: 0.6.20 - License: MIT ------------------------------------- MIT License @@ -26786,7 +27213,7 @@ SOFTWARE. ------------------------------------- - Package: @module-federation/runtime-tools -- Version: 0.7.7 +- Version: 0.8.12 - License: MIT ------------------------------------- MIT License @@ -26816,7 +27243,7 @@ SOFTWARE. ------------------------------------- - Package: @module-federation/sdk -- Version: 0.7.7 +- Version: 0.8.12 - License: MIT ------------------------------------- MIT License @@ -26846,7 +27273,7 @@ SOFTWARE. ------------------------------------- - Package: @module-federation/third-party-dts-extractor -- Version: 0.7.7 +- Version: 0.8.12 - License: MIT ------------------------------------- MIT License @@ -26876,7 +27303,7 @@ SOFTWARE. ------------------------------------- - Package: @module-federation/webpack-bundler-runtime -- Version: 0.7.7 +- Version: 0.8.12 - License: MIT ------------------------------------- MIT License @@ -27134,7 +27561,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: @mui/core-downloads-tracker -- Version: 5.16.9 +- Version: 5.17.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -27164,7 +27591,7 @@ SOFTWARE. ------------------------------------- - Package: @mui/material -- Version: 5.16.9 +- Version: 5.17.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -27194,7 +27621,7 @@ SOFTWARE. ------------------------------------- - Package: @mui/private-theming -- Version: 5.16.8 +- Version: 5.17.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -27224,7 +27651,7 @@ SOFTWARE. ------------------------------------- - Package: @mui/styled-engine -- Version: 5.16.8 +- Version: 5.16.14 - License: MIT ------------------------------------- The MIT License (MIT) @@ -27254,7 +27681,7 @@ SOFTWARE. ------------------------------------- - Package: @mui/system -- Version: 5.16.8 +- Version: 5.17.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -27284,7 +27711,7 @@ SOFTWARE. ------------------------------------- - Package: @mui/types -- Version: 7.2.19 +- Version: 7.2.24 - License: MIT ------------------------------------- The MIT License (MIT) @@ -27314,7 +27741,7 @@ SOFTWARE. ------------------------------------- - Package: @mui/utils -- Version: 5.16.8 +- Version: 5.17.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -27373,7 +27800,7 @@ SOFTWARE.------------------------------------- ------------------------------------- - Package: @node-saml/node-saml -- Version: 5.0.0 +- Version: 5.0.1 - License: MIT ------------------------------------- Copyright (c) 2012 Henri Bergius @@ -27405,7 +27832,7 @@ OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: @node-saml/passport-saml -- Version: 5.0.0 +- Version: 5.0.1 - License: MIT ------------------------------------- Copyright (c) 2012 Henri Bergius @@ -27957,7 +28384,7 @@ THE SOFTWARE. ------------------------------------- - Package: @octokit/core -- Version: 5.2.0 +- Version: 5.2.1 - License: MIT ------------------------------------- The MIT License @@ -28017,7 +28444,7 @@ THE SOFTWARE. ------------------------------------- - Package: @octokit/graphql -- Version: 7.1.1 +- Version: 5.0.6 - License: MIT ------------------------------------- The MIT License @@ -28047,7 +28474,7 @@ THE SOFTWARE. ------------------------------------- - Package: @octokit/graphql -- Version: 5.0.6 +- Version: 7.1.1 - License: MIT ------------------------------------- The MIT License @@ -28234,22 +28661,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: @octokit/openapi-types -- Version: 22.2.0 -- License: MIT -------------------------------------- -Copyright 2020 Gregor Martynus - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.------------------------------------- - - - -------------------------------------- -- Package: @octokit/openapi-types -- Version: 23.0.1 +- Version: 24.2.0 - License: MIT ------------------------------------- Copyright 2020 Gregor Martynus @@ -28556,23 +28968,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: @octokit/types -- Version: 13.6.2 -- License: MIT -------------------------------------- -MIT License Copyright (c) 2019 Octokit contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - -------------------------------------- -- Package: @octokit/types -- Version: 13.8.0 +- Version: 13.10.0 - License: MIT ------------------------------------- MIT License Copyright (c) 2019 Octokit contributors @@ -29165,7 +29561,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: @playwright/test -- Version: 1.49.1 +- Version: 1.52.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -29376,7 +29772,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: @pmmmwh/react-refresh-webpack-plugin -- Version: 0.5.15 +- Version: 0.5.16 - License: MIT ------------------------------------- MIT License @@ -29784,13 +30180,13 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------- -- Package: @react-hookz/deep-equal -- Version: 1.0.4 +- Package: @radix-ui/react-arrow +- Version: 1.1.4 - License: MIT ------------------------------------- MIT License -Copyright (c) 2022 react-hookz +Copyright (c) 2022 WorkOS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -29814,13 +30210,13 @@ SOFTWARE. ------------------------------------- -- Package: @react-hookz/web -- Version: 24.0.4 +- Package: @radix-ui/react-collection +- Version: 1.1.4 - License: MIT ------------------------------------- MIT License -Copyright (c) 2021 react-hookz +Copyright (c) 2022 WorkOS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -29844,15 +30240,13 @@ SOFTWARE. ------------------------------------- -- Package: @remix-run/router -- Version: 1.21.0 +- Package: @radix-ui/react-dialog +- Version: 1.1.11 - License: MIT ------------------------------------- MIT License -Copyright (c) React Training LLC 2015-2019 -Copyright (c) Remix Software Inc. 2020-2021 -Copyright (c) Shopify Inc. 2022-2023 +Copyright (c) 2022 WorkOS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -29876,331 +30270,603 @@ SOFTWARE. ------------------------------------- -- Package: @rjsf/core -- Version: 5.21.2 -- License: Apache-2.0 +- Package: @radix-ui/react-dismissable-layer +- Version: 1.1.7 +- License: MIT ------------------------------------- - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +MIT License -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +Copyright (c) 2022 WorkOS -1. Definitions. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +------------------------------------- +- Package: @radix-ui/react-dropdown-menu +- Version: 2.1.12 +- License: MIT +------------------------------------- +MIT License - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. +Copyright (c) 2022 WorkOS - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. +------------------------------------- +- Package: @radix-ui/react-focus-scope +- Version: 1.1.4 +- License: MIT +------------------------------------- +MIT License -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: +Copyright (c) 2022 WorkOS - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. +------------------------------------- +- Package: @radix-ui/react-menu +- Version: 2.1.12 +- License: MIT +------------------------------------- +MIT License -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. +Copyright (c) 2022 WorkOS -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- -END OF TERMS AND CONDITIONS -APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. +------------------------------------- +- Package: @radix-ui/react-popper +- Version: 1.2.4 +- License: MIT +------------------------------------- +MIT License -Copyright 2015-2024 rjsf-team +Copyright (c) 2022 WorkOS -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - http://www.apache.org/licenses/LICENSE-2.0 +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. ------------------------------------- ------------------------------------- -- Package: @rjsf/material-ui -- Version: 5.21.2 -- License: Apache-2.0 +- Package: @radix-ui/react-portal +- Version: 1.1.6 +- License: MIT ------------------------------------- - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +MIT License -1. Definitions. +Copyright (c) 2022 WorkOS - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. +------------------------------------- +- Package: @radix-ui/react-presence +- Version: 1.1.4 +- License: MIT +------------------------------------- +MIT License - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). +Copyright (c) 2022 WorkOS - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: +------------------------------------- +- Package: @radix-ui/react-primitive +- Version: 2.1.0 +- License: MIT +------------------------------------- +MIT License - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and +Copyright (c) 2022 WorkOS - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @radix-ui/react-roving-focus +- Version: 1.1.7 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2022 WorkOS + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @radix-ui/react-tooltip +- Version: 1.2.4 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2022 WorkOS + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @radix-ui/react-use-controllable-state +- Version: 1.2.2 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2022 WorkOS + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @radix-ui/react-use-effect-event +- Version: 0.0.2 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2022 WorkOS + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @radix-ui/react-visually-hidden +- Version: 1.2.0 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2022 WorkOS + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @react-hookz/deep-equal +- Version: 1.0.4 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2022 react-hookz + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @react-hookz/web +- Version: 24.0.4 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2021 react-hookz + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @remix-run/router +- Version: 1.23.0 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) React Training LLC 2015-2019 +Copyright (c) Remix Software Inc. 2020-2021 +Copyright (c) Shopify Inc. 2022-2023 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @rjsf/core +- Version: 5.23.2 +- License: Apache-2.0 +------------------------------------- + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and @@ -30296,8 +30962,8 @@ limitations under the License. ------------------------------------- -- Package: @rjsf/utils -- Version: 5.21.2 +- Package: @rjsf/material-ui +- Version: 5.23.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -30506,8 +31172,8 @@ limitations under the License. ------------------------------------- -- Package: @rjsf/validator-ajv8 -- Version: 5.21.2 +- Package: @rjsf/utils +- Version: 5.23.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -30716,98 +31382,308 @@ limitations under the License. ------------------------------------- -- Package: @rollup/plugin-commonjs -- Version: 26.0.3 -- License: MIT +- Package: @rjsf/validator-ajv8 +- Version: 5.23.2 +- License: Apache-2.0 ------------------------------------- -The MIT License (MIT) - -Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -------------------------------------- +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +1. Definitions. + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. -------------------------------------- -- Package: @rollup/plugin-json -- Version: 6.1.0 -- License: MIT -------------------------------------- -The MIT License (MIT) + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. -Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors) + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -------------------------------------- + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. -------------------------------------- -- Package: @rollup/plugin-node-resolve -- Version: 15.3.0 -- License: MIT -------------------------------------- -The MIT License (MIT) + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." -Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors) + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -------------------------------------- +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright 2015-2024 rjsf-team + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +------------------------------------- + + + +------------------------------------- +- Package: @rollup/plugin-commonjs +- Version: 26.0.3 +- License: MIT +------------------------------------- +The MIT License (MIT) + +Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @rollup/plugin-json +- Version: 6.1.0 +- License: MIT +------------------------------------- +The MIT License (MIT) + +Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @rollup/plugin-node-resolve +- Version: 15.3.1 +- License: MIT +------------------------------------- +The MIT License (MIT) + +Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +------------------------------------- ------------------------------------- - Package: @rollup/pluginutils -- Version: 5.1.3 +- Version: 5.1.4 - License: MIT ------------------------------------- The MIT License (MIT) @@ -31086,7 +31962,723 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2020 Scarf Systems, Inc. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +------------------------------------- + + + +------------------------------------- +- Package: @sinclair/typebox +- Version: 0.27.8 +- License: MIT +------------------------------------- +TypeBox: JSON Schema Type Builder with Static Type Resolution for TypeScript + +The MIT License (MIT) + +Copyright (c) 2017-2023 Haydn Paterson (sinclair) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.------------------------------------- + + + +------------------------------------- +- Package: @sinonjs/commons +- Version: 3.0.1 +- License: BSD-3-Clause +------------------------------------- +BSD 3-Clause License + +Copyright (c) 2018, Sinon.JS +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +------------------------------------- + + + +------------------------------------- +- Package: @sinonjs/fake-timers +- Version: 10.3.0 +- License: BSD-3-Clause +------------------------------------- +Copyright (c) 2010-2014, Christian Johansen, christian@cjohansen.no. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------- + + + +------------------------------------- +- Package: @smithy/abort-controller +- Version: 3.1.9 +- License: Apache-2.0 +------------------------------------- +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License.------------------------------------- + + + +------------------------------------- +- Package: @smithy/abort-controller +- Version: 4.0.2 +- License: Apache-2.0 +------------------------------------- +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License.------------------------------------- + + + +------------------------------------- +- Package: @smithy/chunked-blob-reader +- Version: 5.0.0 +- License: Apache-2.0 +------------------------------------- +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -31094,7 +32686,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Scarf Systems, Inc. + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -31106,120 +32698,222 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License. -------------------------------------- + limitations under the License.------------------------------------- ------------------------------------- -- Package: @sinclair/typebox -- Version: 0.27.8 -- License: MIT +- Package: @smithy/chunked-blob-reader-native +- Version: 4.0.0 +- License: Apache-2.0 ------------------------------------- -TypeBox: JSON Schema Type Builder with Static Type Resolution for TypeScript +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ -The MIT License (MIT) + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -Copyright (c) 2017-2023 Haydn Paterson (sinclair) + 1. Definitions. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE.------------------------------------- + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. -------------------------------------- -- Package: @sindresorhus/is -- Version: 4.6.0 -- License: MIT -------------------------------------- -MIT License + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. -Copyright (c) Sindre Sorhus (https://sindresorhus.com) + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. -------------------------------------- -- Package: @sinonjs/commons -- Version: 3.0.1 -- License: BSD-3-Clause -------------------------------------- -BSD 3-Clause License + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: -Copyright (c) 2018, Sinon.JS -All rights reserved. + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. -* Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------- + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. -------------------------------------- -- Package: @sinonjs/fake-timers -- Version: 10.3.0 -- License: BSD-3-Clause -------------------------------------- -Copyright (c) 2010-2014, Christian Johansen, christian@cjohansen.no. All rights reserved. + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + END OF TERMS AND CONDITIONS -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + APPENDIX: How to apply the Apache License to your work. -3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------- + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License.------------------------------------- ------------------------------------- -- Package: @smithy/abort-controller -- Version: 3.1.9 +- Package: @smithy/config-resolver +- Version: 4.1.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -31427,11 +33121,11 @@ Apache License ------------------------------------- -- Package: @smithy/chunked-blob-reader -- Version: 4.0.0 +- Package: @smithy/core +- Version: 3.3.0 - License: Apache-2.0 ------------------------------------- -Apache License + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -31619,7 +33313,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -31631,13 +33325,14 @@ Apache License distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License.------------------------------------- + limitations under the License. +------------------------------------- ------------------------------------- -- Package: @smithy/chunked-blob-reader-native -- Version: 3.0.1 +- Package: @smithy/credential-provider-imds +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -31845,11 +33540,11 @@ Apache License ------------------------------------- -- Package: @smithy/config-resolver -- Version: 3.0.13 +- Package: @smithy/eventstream-codec +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- -Apache License + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -32049,13 +33744,14 @@ Apache License distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License.------------------------------------- + limitations under the License. +------------------------------------- ------------------------------------- -- Package: @smithy/core -- Version: 2.5.5 +- Package: @smithy/eventstream-serde-browser +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -32264,11 +33960,11 @@ Apache License ------------------------------------- -- Package: @smithy/credential-provider-imds -- Version: 3.2.8 +- Package: @smithy/eventstream-serde-config-resolver +- Version: 4.1.0 - License: Apache-2.0 ------------------------------------- -Apache License + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -32456,7 +34152,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -32468,13 +34164,14 @@ Apache License distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License.------------------------------------- + limitations under the License. +------------------------------------- ------------------------------------- -- Package: @smithy/eventstream-codec -- Version: 3.1.10 +- Package: @smithy/eventstream-serde-node +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -32665,7 +34362,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -32683,8 +34380,8 @@ Apache License ------------------------------------- -- Package: @smithy/eventstream-serde-browser -- Version: 3.0.14 +- Package: @smithy/eventstream-serde-universal +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -32893,11 +34590,11 @@ Apache License ------------------------------------- -- Package: @smithy/eventstream-serde-config-resolver -- Version: 3.0.11 +- Package: @smithy/fetch-http-handler +- Version: 5.0.2 - License: Apache-2.0 ------------------------------------- - Apache License +Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -33085,7 +34782,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -33097,17 +34794,16 @@ Apache License distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License. -------------------------------------- + limitations under the License.------------------------------------- ------------------------------------- -- Package: @smithy/eventstream-serde-node -- Version: 3.0.13 +- Package: @smithy/hash-blob-browser +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- - Apache License +Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -33295,7 +34991,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -33307,17 +35003,16 @@ Apache License distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License. -------------------------------------- + limitations under the License.------------------------------------- ------------------------------------- -- Package: @smithy/eventstream-serde-universal -- Version: 3.0.13 +- Package: @smithy/hash-node +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- - Apache License +Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -33505,7 +35200,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -33517,14 +35212,13 @@ Apache License distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License. -------------------------------------- + limitations under the License.------------------------------------- ------------------------------------- -- Package: @smithy/fetch-http-handler -- Version: 4.1.2 +- Package: @smithy/hash-stream-node +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -33732,8 +35426,218 @@ Apache License ------------------------------------- -- Package: @smithy/hash-blob-browser -- Version: 3.1.10 +- Package: @smithy/invalid-dependency +- Version: 4.0.2 +- License: Apache-2.0 +------------------------------------- + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +------------------------------------- + + + +------------------------------------- +- Package: @smithy/is-array-buffer +- Version: 2.2.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -33941,8 +35845,8 @@ Apache License ------------------------------------- -- Package: @smithy/hash-node -- Version: 3.0.11 +- Package: @smithy/is-array-buffer +- Version: 4.0.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -34150,8 +36054,8 @@ Apache License ------------------------------------- -- Package: @smithy/hash-stream-node -- Version: 3.1.10 +- Package: @smithy/md5-js +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -34359,218 +36263,8 @@ Apache License ------------------------------------- -- Package: @smithy/invalid-dependency -- Version: 3.0.11 -- License: Apache-2.0 -------------------------------------- - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -------------------------------------- - - - -------------------------------------- -- Package: @smithy/is-array-buffer -- Version: 2.2.0 +- Package: @smithy/middleware-content-length +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -34778,8 +36472,8 @@ Apache License ------------------------------------- -- Package: @smithy/is-array-buffer -- Version: 3.0.0 +- Package: @smithy/middleware-endpoint +- Version: 4.1.1 - License: Apache-2.0 ------------------------------------- Apache License @@ -34987,11 +36681,11 @@ Apache License ------------------------------------- -- Package: @smithy/md5-js -- Version: 3.0.11 +- Package: @smithy/middleware-retry +- Version: 4.1.1 - License: Apache-2.0 ------------------------------------- -Apache License + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -35191,16 +36885,17 @@ Apache License distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License.------------------------------------- + limitations under the License. +------------------------------------- ------------------------------------- -- Package: @smithy/middleware-content-length -- Version: 3.0.13 +- Package: @smithy/middleware-serde +- Version: 4.0.3 - License: Apache-2.0 ------------------------------------- -Apache License + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -35388,7 +37083,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -35400,13 +37095,14 @@ Apache License distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License.------------------------------------- + limitations under the License. +------------------------------------- ------------------------------------- -- Package: @smithy/middleware-endpoint -- Version: 3.2.5 +- Package: @smithy/middleware-stack +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -35614,11 +37310,11 @@ Apache License ------------------------------------- -- Package: @smithy/middleware-retry -- Version: 3.0.30 +- Package: @smithy/node-config-provider +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- - Apache License +Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -35806,7 +37502,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -35818,17 +37514,16 @@ Apache License distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License. -------------------------------------- + limitations under the License.------------------------------------- ------------------------------------- -- Package: @smithy/middleware-serde -- Version: 3.0.11 +- Package: @smithy/node-http-handler +- Version: 3.3.3 - License: Apache-2.0 ------------------------------------- - Apache License +Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -36016,7 +37711,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -36028,14 +37723,13 @@ Apache License distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License. -------------------------------------- + limitations under the License.------------------------------------- ------------------------------------- -- Package: @smithy/middleware-stack -- Version: 3.0.11 +- Package: @smithy/node-http-handler +- Version: 4.0.4 - License: Apache-2.0 ------------------------------------- Apache License @@ -36243,8 +37937,8 @@ Apache License ------------------------------------- -- Package: @smithy/node-config-provider -- Version: 3.1.12 +- Package: @smithy/property-provider +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -36435,7 +38129,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -36452,11 +38146,11 @@ Apache License ------------------------------------- -- Package: @smithy/node-http-handler -- Version: 3.3.2 +- Package: @smithy/protocol-http +- Version: 4.1.8 - License: Apache-2.0 ------------------------------------- -Apache License + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -36644,7 +38338,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -36656,16 +38350,17 @@ Apache License distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License.------------------------------------- + limitations under the License. +------------------------------------- ------------------------------------- -- Package: @smithy/property-provider -- Version: 3.1.11 +- Package: @smithy/protocol-http +- Version: 5.1.0 - License: Apache-2.0 ------------------------------------- -Apache License + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -36853,7 +38548,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -36865,13 +38560,14 @@ Apache License distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License.------------------------------------- + limitations under the License. +------------------------------------- ------------------------------------- -- Package: @smithy/protocol-http -- Version: 4.1.8 +- Package: @smithy/querystring-builder +- Version: 3.0.11 - License: Apache-2.0 ------------------------------------- Apache License @@ -37062,7 +38758,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -37081,7 +38777,7 @@ Apache License ------------------------------------- - Package: @smithy/querystring-builder -- Version: 3.0.11 +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -37291,7 +38987,7 @@ Apache License ------------------------------------- - Package: @smithy/querystring-parser -- Version: 3.0.11 +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -37501,7 +39197,7 @@ Apache License ------------------------------------- - Package: @smithy/service-error-classification -- Version: 3.0.11 +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -37711,7 +39407,216 @@ Apache License ------------------------------------- - Package: @smithy/shared-ini-file-loader -- Version: 3.1.12 +- Version: 4.0.2 +- License: Apache-2.0 +------------------------------------- +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License.------------------------------------- + + + +------------------------------------- +- Package: @smithy/signature-v4 +- Version: 5.1.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -37919,11 +39824,11 @@ Apache License ------------------------------------- -- Package: @smithy/signature-v4 -- Version: 4.2.4 +- Package: @smithy/smithy-client +- Version: 4.2.1 - License: Apache-2.0 ------------------------------------- -Apache License + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -38111,7 +40016,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -38123,13 +40028,14 @@ Apache License distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License.------------------------------------- + limitations under the License. +------------------------------------- ------------------------------------- -- Package: @smithy/smithy-client -- Version: 3.5.0 +- Package: @smithy/types +- Version: 1.2.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -38339,7 +40245,7 @@ Apache License ------------------------------------- - Package: @smithy/types -- Version: 1.2.0 +- Version: 3.7.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -38549,7 +40455,7 @@ Apache License ------------------------------------- - Package: @smithy/types -- Version: 3.7.2 +- Version: 4.2.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -38759,7 +40665,7 @@ Apache License ------------------------------------- - Package: @smithy/url-parser -- Version: 3.0.11 +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -38969,7 +40875,7 @@ Apache License ------------------------------------- - Package: @smithy/util-base64 -- Version: 3.0.0 +- Version: 4.0.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -39178,7 +41084,7 @@ Apache License ------------------------------------- - Package: @smithy/util-body-length-browser -- Version: 3.0.0 +- Version: 4.0.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -39387,7 +41293,7 @@ Apache License ------------------------------------- - Package: @smithy/util-body-length-node -- Version: 3.0.0 +- Version: 4.0.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -39805,7 +41711,7 @@ Apache License ------------------------------------- - Package: @smithy/util-buffer-from -- Version: 3.0.0 +- Version: 4.0.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -40014,7 +41920,7 @@ Apache License ------------------------------------- - Package: @smithy/util-config-provider -- Version: 3.0.0 +- Version: 4.0.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -40223,7 +42129,7 @@ Apache License ------------------------------------- - Package: @smithy/util-defaults-mode-browser -- Version: 3.0.30 +- Version: 4.0.9 - License: Apache-2.0 ------------------------------------- Apache License @@ -40433,7 +42339,7 @@ Apache License ------------------------------------- - Package: @smithy/util-defaults-mode-node -- Version: 3.0.30 +- Version: 4.0.9 - License: Apache-2.0 ------------------------------------- Apache License @@ -40643,7 +42549,7 @@ Apache License ------------------------------------- - Package: @smithy/util-endpoints -- Version: 2.1.7 +- Version: 3.0.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -40852,7 +42758,7 @@ Apache License ------------------------------------- - Package: @smithy/util-hex-encoding -- Version: 3.0.0 +- Version: 4.0.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -41061,7 +42967,7 @@ Apache License ------------------------------------- - Package: @smithy/util-middleware -- Version: 3.0.11 +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -41270,7 +43176,7 @@ Apache License ------------------------------------- - Package: @smithy/util-retry -- Version: 3.0.11 +- Version: 4.0.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -41479,7 +43385,7 @@ Apache License ------------------------------------- - Package: @smithy/util-stream -- Version: 3.3.2 +- Version: 4.2.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -41895,6 +43801,215 @@ Apache License +------------------------------------- +- Package: @smithy/util-uri-escape +- Version: 4.0.0 +- License: Apache-2.0 +------------------------------------- +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License.------------------------------------- + + + ------------------------------------- - Package: @smithy/util-utf8 - Version: 2.3.0 @@ -42106,7 +44221,7 @@ Apache License ------------------------------------- - Package: @smithy/util-utf8 -- Version: 3.0.0 +- Version: 4.0.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -42315,7 +44430,7 @@ Apache License ------------------------------------- - Package: @smithy/util-waiter -- Version: 3.2.0 +- Version: 4.0.3 - License: Apache-2.0 ------------------------------------- Apache License @@ -44584,7 +46699,7 @@ limitations under the License. ------------------------------------- - Package: @stoplight/spectral-core -- Version: 1.19.4 +- Version: 1.20.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -44982,7 +47097,7 @@ limitations under the License. ------------------------------------- - Package: @stoplight/spectral-functions -- Version: 1.9.3 +- Version: 1.10.1 - License: Apache-2.0 ------------------------------------- Apache License @@ -46635,9 +48750,219 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI +------------------------------------- +- Package: @swaggerexpert/cookie +- Version: 2.0.2 +- License: Apache-2.0 +------------------------------------- + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +------------------------------------- + + + ------------------------------------- - Package: @swc/helpers -- Version: 0.5.15 +- Version: 0.5.17 - License: Apache-2.0 ------------------------------------- Apache License @@ -46846,7 +49171,7 @@ limitations under the License.------------------------------------- ------------------------------------- - Package: @swc/jest -- Version: 0.2.37 +- Version: 0.2.38 - License: MIT ------------------------------------- Copyright (c) 2021 The swc Project Developers @@ -46879,7 +49204,7 @@ DEALINGS IN THE SOFTWARE.------------------------------------- ------------------------------------- - Package: @swc/types -- Version: 0.1.17 +- Version: 0.1.21 - License: Apache-2.0 ------------------------------------- Apache License @@ -47086,39 +49411,9 @@ limitations under the License.------------------------------------- -------------------------------------- -- Package: @szmarczak/http-timer -- Version: 4.0.6 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) 2018 Szymon Marczak - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: @tanstack/react-virtual -- Version: 3.11.1 +- Version: 3.13.6 - License: MIT ------------------------------------- MIT License @@ -47148,7 +49443,7 @@ SOFTWARE. ------------------------------------- - Package: @tanstack/virtual-core -- Version: 3.10.9 +- Version: 3.13.6 - License: MIT ------------------------------------- MIT License @@ -47236,7 +49531,7 @@ SOFTWARE. ------------------------------------- - Package: @testing-library/react -- Version: 16.1.0 +- Version: 16.3.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -47294,7 +49589,7 @@ SOFTWARE. ------------------------------------- - Package: @testing-library/user-event -- Version: 14.5.2 +- Version: 14.6.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -47383,7 +49678,7 @@ SOFTWARE. ------------------------------------- - Package: @tree-sitter-grammars/tree-sitter-yaml -- Version: 0.6.1 +- Version: 0.7.0 - License: MIT ------------------------------------- Copyright (c) 2024 tree-sitter-grammars contributors @@ -47645,7 +49940,7 @@ SOFTWARE ------------------------------------- - Package: @types/aws-lambda -- Version: 8.10.146 +- Version: 8.10.149 - License: MIT ------------------------------------- MIT License @@ -47705,7 +50000,7 @@ SOFTWARE ------------------------------------- - Package: @types/babel__generator -- Version: 7.6.8 +- Version: 7.27.0 - License: MIT ------------------------------------- MIT License @@ -47765,7 +50060,7 @@ SOFTWARE ------------------------------------- - Package: @types/babel__traverse -- Version: 7.20.6 +- Version: 7.20.7 - License: MIT ------------------------------------- MIT License @@ -47883,36 +50178,6 @@ SOFTWARE -------------------------------------- -- Package: @types/cacheable-request -- Version: 6.0.3 -- License: MIT -------------------------------------- - MIT License - - Copyright (c) Microsoft Corporation. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all - copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE -------------------------------------- - - - ------------------------------------- - Package: @types/caseless - Version: 0.12.5 @@ -48034,8 +50299,8 @@ SOFTWARE ------------------------------------- -- Package: @types/cookie -- Version: 0.4.1 +- Package: @types/content-type +- Version: 1.1.8 - License: MIT ------------------------------------- MIT License @@ -48064,8 +50329,8 @@ SOFTWARE ------------------------------------- -- Package: @types/cookiejar -- Version: 2.1.5 +- Package: @types/cookie +- Version: 0.4.1 - License: MIT ------------------------------------- MIT License @@ -48185,7 +50450,7 @@ SOFTWARE ------------------------------------- - Package: @types/dockerode -- Version: 3.3.32 +- Version: 3.3.38 - License: MIT ------------------------------------- MIT License @@ -48335,7 +50600,7 @@ SOFTWARE ------------------------------------- - Package: @types/estree -- Version: 1.0.6 +- Version: 1.0.7 - License: MIT ------------------------------------- MIT License @@ -48365,7 +50630,7 @@ SOFTWARE ------------------------------------- - Package: @types/express -- Version: 5.0.0 +- Version: 4.17.21 - License: MIT ------------------------------------- MIT License @@ -48395,7 +50660,7 @@ SOFTWARE ------------------------------------- - Package: @types/express -- Version: 4.17.21 +- Version: 5.0.1 - License: MIT ------------------------------------- MIT License @@ -48455,7 +50720,7 @@ SOFTWARE ------------------------------------- - Package: @types/express-serve-static-core -- Version: 5.0.2 +- Version: 5.0.6 - License: MIT ------------------------------------- MIT License @@ -48603,36 +50868,6 @@ SOFTWARE -------------------------------------- -- Package: @types/http-cache-semantics -- Version: 4.0.4 -- License: MIT -------------------------------------- - MIT License - - Copyright (c) Microsoft Corporation. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all - copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE -------------------------------------- - - - ------------------------------------- - Package: @types/http-errors - Version: 2.0.4 @@ -48665,7 +50900,7 @@ SOFTWARE ------------------------------------- - Package: @types/http-proxy -- Version: 1.17.15 +- Version: 1.17.16 - License: MIT ------------------------------------- MIT License @@ -49025,7 +51260,7 @@ SOFTWARE ------------------------------------- - Package: @types/jsonwebtoken -- Version: 9.0.7 +- Version: 9.0.9 - License: MIT ------------------------------------- MIT License @@ -49055,7 +51290,7 @@ SOFTWARE ------------------------------------- - Package: @types/keyv -- Version: 3.1.4 +- Version: 4.2.0 - License: MIT ------------------------------------- MIT License @@ -49145,7 +51380,7 @@ SOFTWARE ------------------------------------- - Package: @types/luxon -- Version: 3.4.2 +- Version: 3.6.2 - License: MIT ------------------------------------- MIT License @@ -49174,8 +51409,8 @@ SOFTWARE ------------------------------------- -- Package: @types/mdast -- Version: 3.0.15 +- Package: @types/luxon +- Version: 3.4.2 - License: MIT ------------------------------------- MIT License @@ -49204,8 +51439,8 @@ SOFTWARE ------------------------------------- -- Package: @types/methods -- Version: 1.1.4 +- Package: @types/mdast +- Version: 3.0.15 - License: MIT ------------------------------------- MIT License @@ -49265,7 +51500,7 @@ SOFTWARE ------------------------------------- - Package: @types/ms -- Version: 0.7.34 +- Version: 2.1.0 - License: MIT ------------------------------------- MIT License @@ -49325,7 +51560,7 @@ SOFTWARE ------------------------------------- - Package: @types/node -- Version: 22.10.1 +- Version: 22.15.3 - License: MIT ------------------------------------- MIT License @@ -49385,7 +51620,7 @@ SOFTWARE ------------------------------------- - Package: @types/node -- Version: 20.17.9 +- Version: 20.17.32 - License: MIT ------------------------------------- MIT License @@ -49415,7 +51650,7 @@ SOFTWARE ------------------------------------- - Package: @types/node -- Version: 18.19.67 +- Version: 18.19.87 - License: MIT ------------------------------------- MIT License @@ -49715,7 +51950,7 @@ SOFTWARE ------------------------------------- - Package: @types/qs -- Version: 6.9.17 +- Version: 6.9.18 - License: MIT ------------------------------------- MIT License @@ -49774,38 +52009,8 @@ SOFTWARE ------------------------------------- -- Package: @types/range-parser -- Version: 1.2.7 -- License: MIT -------------------------------------- - MIT License - - Copyright (c) Microsoft Corporation. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all - copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE -------------------------------------- - - - -------------------------------------- -- Package: @types/react -- Version: 18.3.14 +- Package: @types/range-parser +- Version: 1.2.7 - License: MIT ------------------------------------- MIT License @@ -49834,8 +52039,8 @@ SOFTWARE ------------------------------------- -- Package: @types/react-dom -- Version: 18.3.3 +- Package: @types/react +- Version: 18.3.20 - License: MIT ------------------------------------- MIT License @@ -49864,8 +52069,8 @@ SOFTWARE ------------------------------------- -- Package: @types/react-redux -- Version: 7.1.34 +- Package: @types/react-dom +- Version: 18.3.6 - License: MIT ------------------------------------- MIT License @@ -49894,8 +52099,8 @@ SOFTWARE ------------------------------------- -- Package: @types/react-sparklines -- Version: 1.7.5 +- Package: @types/react-redux +- Version: 7.1.34 - License: MIT ------------------------------------- MIT License @@ -49924,8 +52129,8 @@ SOFTWARE ------------------------------------- -- Package: @types/react-transition-group -- Version: 4.4.11 +- Package: @types/react-sparklines +- Version: 1.7.5 - License: MIT ------------------------------------- MIT License @@ -49954,8 +52159,8 @@ SOFTWARE ------------------------------------- -- Package: @types/request -- Version: 2.48.12 +- Package: @types/react-transition-group +- Version: 4.4.12 - License: MIT ------------------------------------- MIT License @@ -49984,8 +52189,8 @@ SOFTWARE ------------------------------------- -- Package: @types/resolve -- Version: 1.20.2 +- Package: @types/request +- Version: 2.48.12 - License: MIT ------------------------------------- MIT License @@ -50014,8 +52219,8 @@ SOFTWARE ------------------------------------- -- Package: @types/responselike -- Version: 1.0.3 +- Package: @types/resolve +- Version: 1.20.2 - License: MIT ------------------------------------- MIT License @@ -50255,7 +52460,7 @@ SOFTWARE ------------------------------------- - Package: @types/ssh2 -- Version: 1.15.1 +- Version: 1.15.5 - License: MIT ------------------------------------- MIT License @@ -50284,8 +52489,8 @@ SOFTWARE ------------------------------------- -- Package: @types/stack-utils -- Version: 2.0.3 +- Package: @types/ssh2 +- Version: 0.5.52 - License: MIT ------------------------------------- MIT License @@ -50314,8 +52519,8 @@ SOFTWARE ------------------------------------- -- Package: @types/stream-buffers -- Version: 3.0.7 +- Package: @types/ssh2-streams +- Version: 0.1.12 - License: MIT ------------------------------------- MIT License @@ -50344,8 +52549,8 @@ SOFTWARE ------------------------------------- -- Package: @types/styled-jsx -- Version: 2.2.9 +- Package: @types/stack-utils +- Version: 2.0.3 - License: MIT ------------------------------------- MIT License @@ -50374,8 +52579,8 @@ SOFTWARE ------------------------------------- -- Package: @types/superagent -- Version: 8.1.9 +- Package: @types/stream-buffers +- Version: 3.0.7 - License: MIT ------------------------------------- MIT License @@ -50404,8 +52609,8 @@ SOFTWARE ------------------------------------- -- Package: @types/supertest -- Version: 2.0.16 +- Package: @types/styled-jsx +- Version: 2.2.9 - License: MIT ------------------------------------- MIT License @@ -50645,7 +52850,7 @@ SOFTWARE ------------------------------------- - Package: @types/use-sync-external-store -- Version: 0.0.3 +- Version: 0.0.6 - License: MIT ------------------------------------- MIT License @@ -50705,7 +52910,7 @@ SOFTWARE ------------------------------------- - Package: @types/webpack-env -- Version: 1.18.5 +- Version: 1.18.8 - License: MIT ------------------------------------- MIT License @@ -50735,7 +52940,7 @@ SOFTWARE ------------------------------------- - Package: @types/ws -- Version: 8.5.13 +- Version: 8.18.1 - License: MIT ------------------------------------- MIT License @@ -50885,7 +53090,7 @@ SOFTWARE ------------------------------------- - Package: @typescript-eslint/eslint-plugin -- Version: 6.21.0 +- Version: 8.31.1 - License: MIT ------------------------------------- MIT License @@ -50915,38 +53120,37 @@ SOFTWARE. ------------------------------------- - Package: @typescript-eslint/parser -- Version: 6.21.0 -- License: BSD-2-Clause +- Version: 8.31.1 +- License: MIT ------------------------------------- -TypeScript ESLint Parser -Copyright JS Foundation and other contributors, https://js.foundation +MIT License -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: +Copyright (c) 2019 typescript-eslint and other contributors -- Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. ------------------------------------- ------------------------------------- - Package: @typescript-eslint/scope-manager -- Version: 6.21.0 +- Version: 8.31.1 - License: MIT ------------------------------------- MIT License @@ -50976,7 +53180,7 @@ SOFTWARE. ------------------------------------- - Package: @typescript-eslint/scope-manager -- Version: 8.18.0 +- Version: 7.18.0 - License: MIT ------------------------------------- MIT License @@ -51006,7 +53210,7 @@ SOFTWARE. ------------------------------------- - Package: @typescript-eslint/type-utils -- Version: 6.21.0 +- Version: 8.31.1 - License: MIT ------------------------------------- MIT License @@ -51036,7 +53240,7 @@ SOFTWARE. ------------------------------------- - Package: @typescript-eslint/types -- Version: 6.21.0 +- Version: 8.31.1 - License: MIT ------------------------------------- MIT License @@ -51066,7 +53270,7 @@ SOFTWARE. ------------------------------------- - Package: @typescript-eslint/types -- Version: 8.18.0 +- Version: 7.18.0 - License: MIT ------------------------------------- MIT License @@ -51096,7 +53300,37 @@ SOFTWARE. ------------------------------------- - Package: @typescript-eslint/typescript-estree -- Version: 6.21.0 +- Version: 8.31.1 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2019 typescript-eslint and other contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: @typescript-eslint/typescript-estree +- Version: 7.18.0 - License: BSD-2-Clause ------------------------------------- TypeScript ESTree @@ -51129,39 +53363,9 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------- -- Package: @typescript-eslint/typescript-estree -- Version: 8.18.0 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) 2019 typescript-eslint and other contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: @typescript-eslint/utils -- Version: 6.21.0 +- Version: 8.31.1 - License: MIT ------------------------------------- MIT License @@ -51191,7 +53395,7 @@ SOFTWARE. ------------------------------------- - Package: @typescript-eslint/utils -- Version: 8.18.0 +- Version: 7.18.0 - License: MIT ------------------------------------- MIT License @@ -51221,7 +53425,7 @@ SOFTWARE. ------------------------------------- - Package: @typescript-eslint/visitor-keys -- Version: 6.21.0 +- Version: 8.31.1 - License: MIT ------------------------------------- MIT License @@ -51251,7 +53455,7 @@ SOFTWARE. ------------------------------------- - Package: @typescript-eslint/visitor-keys -- Version: 8.18.0 +- Version: 7.18.0 - License: MIT ------------------------------------- MIT License @@ -51281,7 +53485,7 @@ SOFTWARE. ------------------------------------- - Package: @ungap/structured-clone -- Version: 1.2.1 +- Version: 1.3.0 - License: ISC ------------------------------------- ISC License @@ -51925,6 +54129,24 @@ SOFTWARE. +------------------------------------- +- Package: @wmhilton/crypto-hash +- Version: 1.0.2 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: @wolfy1339/lru-cache - Version: 11.0.2-patch.1 @@ -52572,6 +54794,61 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +------------------------------------- +- Package: abbrev +- Version: 3.0.1 +- License: ISC +------------------------------------- +This software is dual-licensed under the ISC and MIT licenses. +You may use this software under EITHER of the following licenses. + +---------- + +The ISC License + +Copyright (c) Isaac Z. Schlueter and Contributors + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +---------- + +Copyright Isaac Z. Schlueter and Contributors +All rights reserved. + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: abbrev - Version: 2.0.0 @@ -52691,7 +54968,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: acorn -- Version: 8.14.0 +- Version: 8.14.1 - License: MIT ------------------------------------- MIT License @@ -52897,7 +55174,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.-------------------------- ------------------------------------- - Package: agentkeepalive -- Version: 4.5.0 +- Version: 4.6.0 - License: MIT ------------------------------------- The MIT License @@ -52977,13 +55254,44 @@ SOFTWARE. ------------------------------------- -- Package: ajv -- Version: 8.17.1 +- Package: ajv +- Version: 8.17.1 +- License: MIT +------------------------------------- +The MIT License (MIT) + +Copyright (c) 2015-2021 Evgeny Poberezkin + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +------------------------------------- + + + +------------------------------------- +- Package: ajv-draft-04 +- Version: 1.0.0 - License: MIT ------------------------------------- -The MIT License (MIT) +MIT License -Copyright (c) 2015-2021 Evgeny Poberezkin +Copyright (c) 2021 Evgeny Poberezkin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -53002,19 +55310,18 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ------------------------------------- ------------------------------------- -- Package: ajv-draft-04 -- Version: 1.0.0 +- Package: ajv-errors +- Version: 3.0.0 - License: MIT ------------------------------------- MIT License -Copyright (c) 2021 Evgeny Poberezkin +Copyright (c) 2017 Evgeny Poberezkin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -53038,13 +55345,13 @@ SOFTWARE. ------------------------------------- -- Package: ajv-errors -- Version: 3.0.0 +- Package: ajv-formats +- Version: 2.1.1 - License: MIT ------------------------------------- MIT License -Copyright (c) 2017 Evgeny Poberezkin +Copyright (c) 2020 Evgeny Poberezkin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -53069,7 +55376,7 @@ SOFTWARE. ------------------------------------- - Package: ajv-formats -- Version: 2.1.1 +- Version: 3.0.1 - License: MIT ------------------------------------- MIT License @@ -53935,7 +56242,7 @@ SOFTWARE. ------------------------------------- - Package: archiver -- Version: 6.0.2 +- Version: 7.0.1 - License: MIT ------------------------------------- Copyright (c) 2012-2014 Chris Talkington, contributors. @@ -53965,7 +56272,7 @@ OTHER DEALINGS IN THE SOFTWARE.------------------------------------- ------------------------------------- - Package: archiver -- Version: 7.0.1 +- Version: 6.0.2 - License: MIT ------------------------------------- Copyright (c) 2012-2014 Chris Talkington, contributors. @@ -54858,7 +57165,7 @@ limitations under the License. ------------------------------------- - Package: array-buffer-byte-length -- Version: 1.0.1 +- Version: 1.0.2 - License: MIT ------------------------------------- MIT License @@ -54995,7 +57302,7 @@ SOFTWARE. ------------------------------------- - Package: array.prototype.findlastindex -- Version: 1.2.5 +- Version: 1.2.6 - License: MIT ------------------------------------- MIT License @@ -55025,7 +57332,7 @@ SOFTWARE. ------------------------------------- - Package: array.prototype.flat -- Version: 1.3.2 +- Version: 1.3.3 - License: MIT ------------------------------------- MIT License @@ -55055,7 +57362,7 @@ SOFTWARE. ------------------------------------- - Package: array.prototype.flatmap -- Version: 1.3.2 +- Version: 1.3.3 - License: MIT ------------------------------------- MIT License @@ -55115,7 +57422,7 @@ SOFTWARE. ------------------------------------- - Package: arraybuffer.prototype.slice -- Version: 1.0.3 +- Version: 1.0.4 - License: MIT ------------------------------------- MIT License @@ -55221,7 +57528,7 @@ THE SOFTWARE ------------------------------------- - Package: assert -- Version: 1.5.1 +- Version: 2.1.0 - License: MIT ------------------------------------- Copyright Joyent, Inc. and other Node contributors. All rights reserved. @@ -55361,11 +57668,13 @@ THE SOFTWARE. ------------------------------------- -- Package: async -- Version: 2.6.4 +- Package: async-function +- Version: 1.0.0 - License: MIT ------------------------------------- -Copyright (c) 2010-2018 Caolan McMahon +MIT License + +Copyright (c) 2016 EduardoRFS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -55374,16 +57683,16 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. ------------------------------------- @@ -55673,7 +57982,7 @@ THE SOFTWARE. ------------------------------------- - Package: axe-core -- Version: 4.10.2 +- Version: 4.10.3 - License: MPL-2.0 ------------------------------------- Mozilla Public License, version 2.0 @@ -56044,7 +58353,7 @@ Exhibit B - "Incompatible With Secondary Licenses" Notice ------------------------------------- - Package: axios -- Version: 1.8.2 +- Version: 1.9.0 - License: MIT ------------------------------------- # Copyright (c) 2014-present Matt Zabriskie & Collaborators @@ -56665,7 +58974,7 @@ SOFTWARE. ------------------------------------- - Package: babel-plugin-polyfill-corejs2 -- Version: 0.4.12 +- Version: 0.4.13 - License: MIT ------------------------------------- MIT License @@ -56696,7 +59005,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: babel-plugin-polyfill-corejs3 -- Version: 0.10.6 +- Version: 0.11.1 - License: MIT ------------------------------------- MIT License @@ -56727,7 +59036,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: babel-plugin-polyfill-regenerator -- Version: 0.6.3 +- Version: 0.6.4 - License: MIT ------------------------------------- MIT License @@ -56880,7 +59189,7 @@ SOFTWARE. ------------------------------------- - Package: bare-events -- Version: 2.5.0 +- Version: 2.5.4 - License: Apache-2.0 ------------------------------------- Apache License @@ -57556,7 +59865,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ------------------------------------- - Package: better-sqlite3 -- Version: 11.7.0 +- Version: 11.9.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -57753,6 +60062,36 @@ THE SOFTWARE. +------------------------------------- +- Package: bitbucket +- Version: 2.12.0 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2018 Munif Tanjim + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: bl - Version: 4.1.0 @@ -57807,7 +60146,7 @@ THE SOFTWARE. ------------------------------------- - Package: bn.js -- Version: 4.12.1 +- Version: 4.12.2 - License: MIT ------------------------------------- Copyright Fedor Indutny, 2015. @@ -57835,7 +60174,7 @@ SOFTWARE. ------------------------------------- - Package: bn.js -- Version: 5.2.1 +- Version: 5.2.2 - License: MIT ------------------------------------- Copyright Fedor Indutny, 2015. @@ -58319,6 +60658,36 @@ THE SOFTWARE. +------------------------------------- +- Package: browser-resolve +- Version: 2.0.0 +- License: MIT +------------------------------------- +The MIT License (MIT) + +Copyright (c) 2013-2015 Roman Shtylman + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: browserify-aes - Version: 1.2.0 @@ -58542,7 +60911,7 @@ IN THE SOFTWARE. ------------------------------------- - Package: browserslist -- Version: 4.24.2 +- Version: 4.24.4 - License: MIT ------------------------------------- The MIT License (MIT) @@ -58886,36 +61255,6 @@ THE SOFTWARE. -------------------------------------- -- Package: buffer -- Version: 4.9.2 -- License: MIT -------------------------------------- -The MIT License (MIT) - -Copyright (c) Feross Aboukhadijeh, and other contributors. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: buffer-crc32 - Version: 1.0.0 @@ -59155,6 +61494,33 @@ IN THE SOFTWARE.------------------------------------- +------------------------------------- +- Package: byline +- Version: 5.0.0 +- License: MIT +------------------------------------- +node-byline (C) 2011-2015 John Hewson + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE.------------------------------------- + + + ------------------------------------- - Package: bytes - Version: 3.1.2 @@ -59267,66 +61633,6 @@ SOFTWARE. -------------------------------------- -- Package: cacheable-lookup -- Version: 5.0.4 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) 2019 Szymon Marczak - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -------------------------------------- - - - -------------------------------------- -- Package: cacheable-request -- Version: 7.0.4 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) 2017 Luke Childs - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: call-bind - Version: 1.0.8 @@ -59357,36 +61663,6 @@ SOFTWARE. -------------------------------------- -- Package: call-bind-apply-helpers -- Version: 1.0.1 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) 2024 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: call-bind-apply-helpers - Version: 1.0.2 @@ -59612,7 +61888,7 @@ SOFTWARE. ------------------------------------- - Package: caniuse-lite -- Version: 1.0.30001687 +- Version: 1.0.30001716 - License: CC-BY-4.0 ------------------------------------- Attribution 4.0 International @@ -60340,6 +62616,36 @@ THE SOFTWARE. +------------------------------------- +- Package: chokidar +- Version: 4.0.3 +- License: MIT +------------------------------------- +The MIT License (MIT) + +Copyright (c) 2012 Paul Miller (https://paulmillr.com), Elan Shanker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the “Software”), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: chownr - Version: 3.0.0 @@ -60414,7 +62720,7 @@ software or this license, under any kind of legal claim.*** ------------------------------------- - Package: chownr -- Version: 1.1.4 +- Version: 2.0.0 - License: ISC ------------------------------------- The ISC License @@ -60438,7 +62744,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ------------------------------------- - Package: chownr -- Version: 2.0.0 +- Version: 1.1.4 - License: ISC ------------------------------------- The ISC License @@ -60585,7 +62891,7 @@ SOFTWARE. ------------------------------------- - Package: cjs-module-lexer -- Version: 1.4.1 +- Version: 1.4.3 - License: MIT ------------------------------------- MIT License @@ -60836,36 +63142,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- -- Package: clone-response -- Version: 1.0.3 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) 2017 Luke Childs - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: clsx - Version: 2.1.1 @@ -60924,6 +63200,28 @@ limitations under the License. +------------------------------------- +- Package: clz-buffer +- Version: 1.0.0 +- License: ISC +------------------------------------- +Copyright (c) 2017, Emil Bay + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: co - Version: 4.6.0 @@ -61018,7 +63316,7 @@ THE SOFTWARE. ------------------------------------- - Package: codemirror -- Version: 5.65.18 +- Version: 5.65.19 - License: MIT ------------------------------------- MIT License @@ -61048,7 +63346,7 @@ THE SOFTWARE. ------------------------------------- - Package: codemirror-graphql -- Version: 2.1.1 +- Version: 2.2.1 - License: MIT ------------------------------------- MIT License @@ -61708,39 +64006,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.-------------------------- -------------------------------------- -- Package: component-emitter -- Version: 1.3.1 -- License: MIT -------------------------------------- -(The MIT License) - -Copyright (c) 2014 Component contributors - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: compress-commons - Version: 5.0.3 @@ -61836,7 +64101,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: compression -- Version: 1.7.5 +- Version: 1.8.0 - License: MIT ------------------------------------- (The MIT License) @@ -61926,6 +64191,36 @@ SOFTWARE. +------------------------------------- +- Package: concat-buffers +- Version: 1.0.0 +- License: MIT +------------------------------------- +Copyright (c) 2015 Sergii Iefremov + +This software is released under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: concat-map - Version: 0.0.1 @@ -62412,24 +64707,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- -- Package: cookiejar -- Version: 2.1.4 -- License: MIT -------------------------------------- -The MIT License (MIT) -Copyright (c) 2013 Bradley Meck - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------------------------- - - - ------------------------------------- - Package: cookies - Version: 0.9.1 @@ -62494,10 +64771,10 @@ SOFTWARE. ------------------------------------- - Package: core-js -- Version: 3.39.0 +- Version: 3.42.0 - License: MIT ------------------------------------- -Copyright (c) 2014-2024 Denis Pushkarev +Copyright (c) 2014-2025 Denis Pushkarev Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -62550,10 +64827,10 @@ THE SOFTWARE. ------------------------------------- - Package: core-js-compat -- Version: 3.39.0 +- Version: 3.42.0 - License: MIT ------------------------------------- -Copyright (c) 2014-2024 Denis Pushkarev +Copyright (c) 2014-2025 Denis Pushkarev Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -62578,10 +64855,10 @@ THE SOFTWARE. ------------------------------------- - Package: core-js-pure -- Version: 3.39.0 +- Version: 3.42.0 - License: MIT ------------------------------------- -Copyright (c) 2014-2024 Denis Pushkarev +Copyright (c) 2014-2025 Denis Pushkarev Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -62813,6 +65090,37 @@ IN THE SOFTWARE.------------------------------------- +------------------------------------- +- Package: crc +- Version: 3.8.0 +- License: MIT +------------------------------------- +The MIT License (MIT) + +Copyright 2014 Alex Gorbatchev + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: crc-32 - Version: 1.2.2 @@ -63267,7 +65575,7 @@ THE SOFTWARE. ------------------------------------- - Package: cron -- Version: 3.3.0 +- Version: 3.5.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -63314,7 +65622,7 @@ SOFTWARE. ------------------------------------- - Package: cronstrue -- Version: 2.52.0 +- Version: 2.59.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -63373,7 +65681,7 @@ SOFTWARE. ------------------------------------- - Package: cross-fetch -- Version: 4.0.0 +- Version: 4.1.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -63403,7 +65711,7 @@ SOFTWARE. ------------------------------------- - Package: cross-fetch -- Version: 3.1.8 +- Version: 3.2.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -63579,7 +65887,7 @@ SOFTWARE. ------------------------------------- - Package: css-loader -- Version: 7.1.2 +- Version: 6.11.0 - License: MIT ------------------------------------- Copyright JS Foundation and other contributors @@ -63960,7 +66268,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: cssstyle -- Version: 4.1.0 +- Version: 4.3.1 - License: MIT ------------------------------------- Copyright (c) Chad Walker @@ -64426,7 +66734,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: data-view-buffer -- Version: 1.0.1 +- Version: 1.0.2 - License: MIT ------------------------------------- MIT License @@ -64456,7 +66764,7 @@ SOFTWARE. ------------------------------------- - Package: data-view-byte-length -- Version: 1.0.1 +- Version: 1.0.2 - License: MIT ------------------------------------- MIT License @@ -64486,7 +66794,7 @@ SOFTWARE. ------------------------------------- - Package: data-view-byte-offset -- Version: 1.0.0 +- Version: 1.0.1 - License: MIT ------------------------------------- MIT License @@ -64794,12 +67102,12 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: decode-named-character-reference -- Version: 1.0.2 +- Version: 1.1.0 - License: MIT ------------------------------------- (The MIT License) -Copyright (c) 2021 Titus Wormer +Copyright (c) Titus Wormer Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the @@ -64823,24 +67131,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- -- Package: decode-uri-component -- Version: 0.2.2 -- License: MIT -------------------------------------- -The MIT License (MIT) - -Copyright (c) 2017, Sam Verschueren (github.com/SamVerschueren) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: decompress-response - Version: 6.0.0 @@ -65102,36 +67392,6 @@ THE SOFTWARE. -------------------------------------- -- Package: defer-to-connect -- Version: 2.0.1 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) 2018 Szymon Marczak - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: define-data-property - Version: 1.1.4 @@ -65164,12 +67424,12 @@ SOFTWARE. ------------------------------------- - Package: define-lazy-prop -- Version: 2.0.0 +- Version: 3.0.0 - License: MIT ------------------------------------- MIT License -Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: @@ -65182,12 +67442,12 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: define-lazy-prop -- Version: 3.0.0 +- Version: 2.0.0 - License: MIT ------------------------------------- MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: @@ -65227,24 +67487,6 @@ THE SOFTWARE.------------------------------------- -------------------------------------- -- Package: delay -- Version: 5.0.0 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: delayed-stream - Version: 1.0.0 @@ -65689,7 +67931,7 @@ THE SOFTWARE. ------------------------------------- - Package: destroyable-server -- Version: 1.0.2 +- Version: 1.1.1 - License: Apache-2.0 ------------------------------------- Apache License @@ -65899,7 +68141,7 @@ THE SOFTWARE. ------------------------------------- - Package: detect-libc -- Version: 2.0.3 +- Version: 2.0.4 - License: Apache-2.0 ------------------------------------- Apache License @@ -66214,30 +68456,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- -- Package: dezalgo -- Version: 1.0.4 -- License: ISC -------------------------------------- -The ISC License - -Copyright (c) Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: diff - Version: 4.0.2 @@ -66451,9 +68669,39 @@ THE SOFTWARE. +------------------------------------- +- Package: docker-compose +- Version: 0.24.8 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2017 - 2021 PDMLab + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: docker-modem -- Version: 5.0.3 +- Version: 5.0.6 - License: Apache-2.0 ------------------------------------- Apache License @@ -66873,7 +69121,7 @@ THE SOFTWARE. ------------------------------------- - Package: dockerode -- Version: 4.0.2 +- Version: 4.0.6 - License: Apache-2.0 ------------------------------------- Apache License @@ -67803,7 +70051,7 @@ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: domain-browser -- Version: 1.2.0 +- Version: 4.22.0 - License: MIT ------------------------------------- @@ -67905,11 +70153,11 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------- - Package: dompurify -- Version: 3.2.3 +- Version: 3.2.5 - License: (MPL-2.0 OR Apache-2.0) ------------------------------------- DOMPurify -Copyright 2024 Dr.-Ing. Mario Heiderich, Cure53 +Copyright 2025 Dr.-Ing. Mario Heiderich, Cure53 DOMPurify is free software; you can redistribute it and/or modify it under the terms of either: @@ -68482,11 +70730,11 @@ Exhibit B - “Incompatible With Secondary Licenses” Notice ------------------------------------- - Package: dompurify -- Version: 3.1.6 +- Version: 3.2.4 - License: (MPL-2.0 OR Apache-2.0) ------------------------------------- DOMPurify -Copyright 2024 Dr.-Ing. Mario Heiderich, Cure53 +Copyright 2025 Dr.-Ing. Mario Heiderich, Cure53 DOMPurify is free software; you can redistribute it and/or modify it under the terms of either: @@ -69167,36 +71415,6 @@ THE SOFTWARE. -------------------------------------- -- Package: dunder-proto -- Version: 1.0.0 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) 2024 ECMAScript Shims - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: dunder-proto - Version: 1.0.1 @@ -69585,7 +71803,7 @@ THE SOFTWARE. ------------------------------------- - Package: electron-to-chromium -- Version: 1.5.72 +- Version: 1.5.145 - License: ISC ------------------------------------- Copyright 2018 Kilian Valkhof @@ -69838,7 +72056,7 @@ THE SOFTWARE.------------------------------------- ------------------------------------- - Package: enhanced-resolve -- Version: 5.17.1 +- Version: 5.18.1 - License: MIT ------------------------------------- Copyright JS Foundation and other contributors @@ -69925,6 +72143,26 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +------------------------------------- +- Package: entities +- Version: 6.0.0 +- License: BSD-2-Clause +------------------------------------- +Copyright (c) Felix Böhm +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +------------------------------------- + + + ------------------------------------- - Package: env-paths - Version: 2.2.1 @@ -70003,7 +72241,7 @@ SOFTWARE. ------------------------------------- - Package: es-abstract -- Version: 1.23.5 +- Version: 1.23.9 - License: MIT ------------------------------------- The MIT License (MIT) @@ -70153,7 +72391,7 @@ SOFTWARE. ------------------------------------- - Package: es-iterator-helpers -- Version: 1.2.0 +- Version: 1.2.1 - License: MIT ------------------------------------- MIT License @@ -70183,7 +72421,7 @@ SOFTWARE. ------------------------------------- - Package: es-module-lexer -- Version: 1.5.4 +- Version: 1.7.0 - License: MIT ------------------------------------- MIT License @@ -70230,39 +72468,9 @@ SOFTWARE. -------------------------------------- -- Package: es-object-atoms -- Version: 1.0.0 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) 2024 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: es-set-tostringtag -- Version: 2.0.3 +- Version: 2.1.0 - License: MIT ------------------------------------- MIT License @@ -70292,7 +72500,7 @@ SOFTWARE. ------------------------------------- - Package: es-shim-unscopables -- Version: 1.0.2 +- Version: 1.1.0 - License: MIT ------------------------------------- MIT License @@ -70411,7 +72619,7 @@ SOFTWARE. ------------------------------------- - Package: esbuild -- Version: 0.24.0 +- Version: 0.24.2 - License: MIT ------------------------------------- MIT License @@ -70441,7 +72649,7 @@ SOFTWARE. ------------------------------------- - Package: esbuild -- Version: 0.21.5 +- Version: 0.25.3 - License: MIT ------------------------------------- MIT License @@ -70471,7 +72679,7 @@ SOFTWARE. ------------------------------------- - Package: esbuild-loader -- Version: 4.2.2 +- Version: 4.3.0 - License: MIT ------------------------------------- MIT License @@ -70847,7 +73055,7 @@ SOFTWARE. ------------------------------------- - Package: eslint-plugin-deprecation -- Version: 2.0.0 +- Version: 3.0.0 - License: LGPL-3.0-or-later ------------------------------------- GNU LESSER GENERAL PUBLIC LICENSE @@ -71052,7 +73260,7 @@ SOFTWARE. ------------------------------------- - Package: eslint-plugin-jest -- Version: 28.9.0 +- Version: 28.11.0 - License: MIT ------------------------------------- MIT License @@ -71099,7 +73307,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: eslint-plugin-react -- Version: 7.37.2 +- Version: 7.37.5 - License: MIT ------------------------------------- The MIT License (MIT) @@ -71130,12 +73338,12 @@ SOFTWARE. ------------------------------------- - Package: eslint-plugin-react-hooks -- Version: 4.6.2 +- Version: 5.2.0 - License: MIT ------------------------------------- MIT License -Copyright (c) Facebook, Inc. and its affiliates. +Copyright (c) Meta Platforms, Inc. and affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -71160,7 +73368,7 @@ SOFTWARE. ------------------------------------- - Package: eslint-plugin-unused-imports -- Version: 3.2.0 +- Version: 4.1.4 - License: MIT ------------------------------------- MIT License @@ -71188,40 +73396,6 @@ SOFTWARE. -------------------------------------- -- Package: eslint-rule-composer -- Version: 0.3.0 -- License: MIT -------------------------------------- -The MIT License (MIT) -===================== - -Copyright © 2017 Teddy Katz - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the “Software”), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: eslint-scope - Version: 7.2.2 @@ -72282,27 +74456,9 @@ SOFTWARE. -------------------------------------- -- Package: expiry-map -- Version: 2.0.0 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) Sam Verschueren (github.com/SamVerschueren) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: exponential-backoff -- Version: 3.1.1 +- Version: 3.1.2 - License: Apache-2.0 ------------------------------------- @@ -72494,7 +74650,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2019 Coveo Solutions Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -72506,7 +74662,8 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License.------------------------------------- + limitations under the License. +------------------------------------- @@ -72574,7 +74731,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.----------------- ------------------------------------- - Package: express-openapi-validator -- Version: 5.3.9 +- Version: 5.4.9 - License: MIT ------------------------------------- MIT License @@ -72757,38 +74914,6 @@ SOFTWARE. -------------------------------------- -- Package: fast-decode-uri-component -- Version: 1.0.1 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) 2018 Tomas Della Vedova -Copyright (c) 2017 Justin Ridgewell -Copyright (c) 2008-2009 Bjoern Hoehrmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: fast-deep-equal - Version: 3.1.3 @@ -72851,7 +74976,7 @@ THE SOFTWARE. ------------------------------------- - Package: fast-glob -- Version: 3.3.2 +- Version: 3.3.3 - License: MIT ------------------------------------- The MIT License (MIT) @@ -73034,40 +75159,6 @@ SOFTWARE. -------------------------------------- -- Package: fast-querystring -- Version: 1.1.2 -- License: MIT -------------------------------------- -Copyright (c) 2022 Yagiz Nizipli - -Permission is hereby granted, free of charge, to any -person obtaining a copy of this software and associated -documentation files (the "Software"), to deal in the -Software without restriction, including without -limitation the rights to use, copy, modify, merge, -publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software -is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice -shall be included in all copies or substantial portions -of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED -TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT -SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR -IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: fast-redact - Version: 2.1.0 @@ -73162,9 +75253,219 @@ For more information, please refer to +------------------------------------- +- Package: fast-text-encoding +- Version: 1.0.6 +- License: Apache-2.0 +------------------------------------- + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +------------------------------------- + + + ------------------------------------- - Package: fast-uri -- Version: 3.0.3 +- Version: 3.0.6 - License: BSD-3-Clause ------------------------------------- Copyright (c) 2021 The Fastify Team @@ -73232,7 +75533,37 @@ SOFTWARE. ------------------------------------- - Package: fast-xml-parser -- Version: 4.5.0 +- Version: 5.2.1 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2017 Amit Kumar Gupta + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: fast-xml-parser +- Version: 4.5.3 - License: MIT ------------------------------------- MIT License @@ -73289,7 +75620,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: fastq -- Version: 1.17.1 +- Version: 1.19.1 - License: ISC ------------------------------------- Copyright (c) 2015-2020, Matteo Collina @@ -73363,7 +75694,7 @@ specific language governing permissions and limitations under the License. ------------------------------------- - Package: fdir -- Version: 6.4.2 +- Version: 6.4.4 - License: MIT ------------------------------------- Copyright 2023 Abdullah Atta @@ -73408,6 +75739,36 @@ SOFTWARE. +------------------------------------- +- Package: fetch-blob +- Version: 3.2.0 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2019 David Frank + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: figures - Version: 3.2.0 @@ -73597,36 +75958,6 @@ THE SOFTWARE. -------------------------------------- -- Package: filter-obj -- Version: 1.1.0 -- License: MIT -------------------------------------- -The MIT License (MIT) - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: finalhandler - Version: 1.1.2 @@ -73881,31 +76212,7 @@ SOFTWARE. ------------------------------------- - Package: flatted -- Version: 3.3.1 -- License: ISC -------------------------------------- -ISC License - -Copyright (c) 2018-2020, Andrea Giammarchi, @WebReflection - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. -------------------------------------- - - - -------------------------------------- -- Package: flatted -- Version: 3.3.2 +- Version: 3.3.3 - License: ISC ------------------------------------- ISC License @@ -73987,7 +76294,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: for-each -- Version: 0.3.3 +- Version: 0.3.5 - License: MIT ------------------------------------- The MIT License (MIT) @@ -74051,7 +76358,7 @@ OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: foreground-child -- Version: 3.3.0 +- Version: 3.3.1 - License: ISC ------------------------------------- The ISC License @@ -74075,7 +76382,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ------------------------------------- - Package: fork-ts-checker-webpack-plugin -- Version: 9.0.2 +- Version: 9.1.0 - License: MIT ------------------------------------- MIT License @@ -74135,7 +76442,7 @@ SOFTWARE. ------------------------------------- - Package: form-data -- Version: 2.5.2 +- Version: 2.5.3 - License: MIT ------------------------------------- Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors @@ -74163,7 +76470,7 @@ Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors ------------------------------------- - Package: form-data -- Version: 4.0.1 +- Version: 4.0.2 - License: MIT ------------------------------------- Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors @@ -74190,13 +76497,13 @@ Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors ------------------------------------- -- Package: formidable -- Version: 2.1.2 +- Package: formdata-polyfill +- Version: 4.0.10 - License: MIT ------------------------------------- -The MIT License (MIT) +MIT License -Copyright (c) 2011-present Felix Geisendörfer, and contributors. +Copyright (c) 2016 Jimmy Karl Roland Wärting Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -74475,12 +76782,12 @@ OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHE ------------------------------------- - Package: fs-extra -- Version: 11.2.0 +- Version: 11.3.0 - License: MIT ------------------------------------- (The MIT License) -Copyright (c) 2011-2017 JP Richardson +Copyright (c) 2011-2024 JP Richardson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, @@ -74723,7 +77030,7 @@ THE SOFTWARE. ------------------------------------- - Package: function.prototype.name -- Version: 1.1.6 +- Version: 1.1.8 - License: MIT ------------------------------------- The MIT License (MIT) @@ -75025,7 +77332,7 @@ SOFTWARE. ------------------------------------- - Package: gcp-metadata -- Version: 6.1.0 +- Version: 6.1.1 - License: Apache-2.0 ------------------------------------- @@ -75356,13 +77663,13 @@ SOFTWARE. ------------------------------------- -- Package: get-intrinsic -- Version: 1.2.5 +- Package: get-nonce +- Version: 1.0.1 - License: MIT ------------------------------------- MIT License -Copyright (c) 2020 Jordan Harband +Copyright (c) 2020 Anton Korzunov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -75386,13 +77693,13 @@ SOFTWARE. ------------------------------------- -- Package: get-nonce -- Version: 1.0.1 +- Package: get-package-type +- Version: 0.1.0 - License: MIT ------------------------------------- MIT License -Copyright (c) 2020 Anton Korzunov +Copyright (c) 2020 CFWare, LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -75416,43 +77723,31 @@ SOFTWARE. ------------------------------------- -- Package: get-package-type -- Version: 0.1.0 +- Package: get-port +- Version: 5.1.1 - License: MIT ------------------------------------- MIT License -Copyright (c) 2020 CFWare, LLC +Copyright (c) Sindre Sorhus (sindresorhus.com) -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- ------------------------------------- - Package: get-port -- Version: 5.1.1 +- Version: 7.1.0 - License: MIT ------------------------------------- MIT License -Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: @@ -75493,24 +77788,6 @@ SOFTWARE. -------------------------------------- -- Package: get-stream -- Version: 5.2.0 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: get-stream - Version: 6.0.1 @@ -75531,7 +77808,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: get-symbol-description -- Version: 1.0.2 +- Version: 1.1.0 - License: MIT ------------------------------------- MIT License @@ -75561,7 +77838,7 @@ SOFTWARE. ------------------------------------- - Package: get-tsconfig -- Version: 4.8.1 +- Version: 4.10.0 - License: MIT ------------------------------------- MIT License @@ -76115,7 +78392,218 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: google-auth-library -- Version: 9.15.0 +- Version: 9.15.1 +- License: Apache-2.0 +------------------------------------- + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +------------------------------------- + + + +------------------------------------- +- Package: google-logging-utils +- Version: 0.0.2 - License: Apache-2.0 ------------------------------------- @@ -76354,24 +78842,6 @@ SOFTWARE. -------------------------------------- -- Package: got -- Version: 11.8.6 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: graceful-fs - Version: 4.2.11 @@ -76483,7 +78953,7 @@ THE SOFTWARE. ------------------------------------- - Package: graphql -- Version: 16.9.0 +- Version: 16.11.0 - License: MIT ------------------------------------- MIT License @@ -76513,7 +78983,7 @@ SOFTWARE. ------------------------------------- - Package: graphql -- Version: 15.9.0 +- Version: 15.10.1 - License: MIT ------------------------------------- MIT License @@ -76543,7 +79013,7 @@ SOFTWARE. ------------------------------------- - Package: graphql-config -- Version: 5.1.3 +- Version: 5.1.5 - License: MIT ------------------------------------- The MIT License (MIT) @@ -76573,7 +79043,7 @@ SOFTWARE. ------------------------------------- - Package: graphql-http -- Version: 1.22.3 +- Version: 1.22.4 - License: MIT ------------------------------------- MIT License @@ -76603,7 +79073,7 @@ SOFTWARE. ------------------------------------- - Package: graphql-language-service -- Version: 5.3.0 +- Version: 5.3.1 - License: MIT ------------------------------------- MIT License @@ -76694,12 +79164,30 @@ SOFTWARE. ------------------------------------- - Package: graphql-ws -- Version: 5.16.0 +- Version: 5.16.2 - License: MIT ------------------------------------- MIT License -Copyright (c) 2020-2021 Denis Badurina +Copyright (c) 2020 Denis Badurina + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: graphql-ws +- Version: 6.0.4 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2020 Denis Badurina Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: @@ -76788,7 +79276,7 @@ THE SOFTWARE. ------------------------------------- - Package: has-bigints -- Version: 1.0.2 +- Version: 1.1.0 - License: MIT ------------------------------------- MIT License @@ -77233,24 +79721,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- -- Package: hexoid -- Version: 1.0.0 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) Luke Edwards (lukeed.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: hey-listen - Version: 1.0.8 @@ -77511,7 +79981,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: html-entities -- Version: 2.5.2 +- Version: 2.6.0 - License: MIT ------------------------------------- Copyright (c) 2021 Dulin Marat @@ -78008,7 +80478,7 @@ THE SOFTWARE. ------------------------------------- - Package: http-parser-js -- Version: 0.5.8 +- Version: 0.5.10 - License: MIT ------------------------------------- Copyright (c) 2015 Tim Caswell (https://github.com/creationix) and other @@ -78189,7 +80659,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: http-proxy-middleware -- Version: 3.0.3 +- Version: 3.0.5 - License: MIT ------------------------------------- The MIT License (MIT) @@ -78220,7 +80690,7 @@ SOFTWARE. ------------------------------------- - Package: http-proxy-middleware -- Version: 2.0.7 +- Version: 2.0.9 - License: MIT ------------------------------------- The MIT License (MIT) @@ -78249,36 +80719,6 @@ SOFTWARE. -------------------------------------- -- Package: http2-wrapper -- Version: 1.0.3 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) 2018 Szymon Marczak - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: http2-wrapper - Version: 2.2.1 @@ -79044,7 +81484,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: import-fresh -- Version: 3.3.0 +- Version: 3.3.1 - License: MIT ------------------------------------- MIT License @@ -79140,7 +81580,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ------------------------------------- - Package: inherits -- Version: 2.0.3 +- Version: 2.0.4 - License: ISC ------------------------------------- The ISC License @@ -79165,7 +81605,7 @@ PERFORMANCE OF THIS SOFTWARE. ------------------------------------- - Package: inherits -- Version: 2.0.4 +- Version: 2.0.3 - License: ISC ------------------------------------- The ISC License @@ -79276,7 +81716,7 @@ OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: internal-slot -- Version: 1.0.7 +- Version: 1.1.0 - License: MIT ------------------------------------- MIT License @@ -79367,7 +81807,7 @@ SOFTWARE. ------------------------------------- - Package: ioredis -- Version: 5.4.1 +- Version: 5.6.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -79561,7 +82001,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: is-arguments -- Version: 1.1.1 +- Version: 1.2.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -79590,7 +82030,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: is-array-buffer -- Version: 3.0.4 +- Version: 3.0.5 - License: MIT ------------------------------------- MIT License @@ -79680,7 +82120,7 @@ THE SOFTWARE. ------------------------------------- - Package: is-async-function -- Version: 2.0.0 +- Version: 2.1.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -79757,7 +82197,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: is-boolean-object -- Version: 1.2.0 +- Version: 1.2.2 - License: MIT ------------------------------------- The MIT License (MIT) @@ -79880,7 +82320,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------- - Package: is-core-module -- Version: 2.15.1 +- Version: 2.16.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -79908,7 +82348,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.------ ------------------------------------- - Package: is-data-view -- Version: 1.0.1 +- Version: 1.0.2 - License: MIT ------------------------------------- MIT License @@ -79938,7 +82378,7 @@ SOFTWARE. ------------------------------------- - Package: is-date-object -- Version: 1.0.5 +- Version: 1.1.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -80066,7 +82506,7 @@ THE SOFTWARE. ------------------------------------- - Package: is-finalizationregistry -- Version: 1.1.0 +- Version: 1.1.1 - License: MIT ------------------------------------- MIT License @@ -80132,7 +82572,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: is-generator-function -- Version: 1.0.10 +- Version: 1.1.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -80317,8 +82757,8 @@ SOFTWARE. ------------------------------------- -- Package: is-negative-zero -- Version: 2.0.3 +- Package: is-nan +- Version: 1.3.2 - License: MIT ------------------------------------- The MIT License (MIT) @@ -80395,7 +82835,7 @@ THE SOFTWARE. ------------------------------------- - Package: is-number-object -- Version: 1.1.0 +- Version: 1.1.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -80478,6 +82918,36 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI +------------------------------------- +- Package: is-plain-object +- Version: 3.0.1 +- License: MIT +------------------------------------- +The MIT License (MIT) + +Copyright (c) 2014-2017, Jon Schlinkert. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: is-plain-object - Version: 5.0.0 @@ -80657,7 +83127,7 @@ THE SOFTWARE. ------------------------------------- - Package: is-regex -- Version: 1.2.0 +- Version: 1.2.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -80734,7 +83204,7 @@ SOFTWARE. ------------------------------------- - Package: is-shared-array-buffer -- Version: 1.0.3 +- Version: 1.0.4 - License: MIT ------------------------------------- MIT License @@ -80764,12 +83234,12 @@ SOFTWARE. ------------------------------------- - Package: is-ssh -- Version: 1.4.0 +- Version: 1.4.1 - License: MIT ------------------------------------- The MIT License (MIT) -Copyright (c) 2015-22 Ionică Bizău (http://ionicabizau.net) +Copyright (c) 2015-25 Ionică Bizău (https://ionicabizau.net) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -80812,7 +83282,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: is-string -- Version: 1.1.0 +- Version: 1.1.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -80843,7 +83313,7 @@ SOFTWARE. ------------------------------------- - Package: is-symbol -- Version: 1.1.0 +- Version: 1.1.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -80874,7 +83344,7 @@ SOFTWARE. ------------------------------------- - Package: is-typed-array -- Version: 1.1.13 +- Version: 1.1.15 - License: MIT ------------------------------------- The MIT License (MIT) @@ -80953,7 +83423,7 @@ SOFTWARE. ------------------------------------- - Package: is-weakref -- Version: 1.0.2 +- Version: 1.1.1 - License: MIT ------------------------------------- MIT License @@ -80983,7 +83453,7 @@ SOFTWARE. ------------------------------------- - Package: is-weakset -- Version: 2.0.3 +- Version: 2.0.4 - License: MIT ------------------------------------- MIT License @@ -81043,12 +83513,12 @@ THE SOFTWARE. ------------------------------------- - Package: is-wsl -- Version: 2.2.0 +- Version: 3.1.0 - License: MIT ------------------------------------- MIT License -Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: @@ -81061,12 +83531,12 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: is-wsl -- Version: 3.1.0 +- Version: 2.2.0 - License: MIT ------------------------------------- MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: @@ -81217,7 +83687,7 @@ THE SOFTWARE.------------------------------------- ------------------------------------- - Package: isolated-vm -- Version: 5.0.2 +- Version: 5.0.4 - License: ISC ------------------------------------- Copyright 2017 Marcel Laverdet @@ -81239,7 +83709,7 @@ PERFORMANCE OF THIS SOFTWARE. ------------------------------------- - Package: isomorphic-dompurify -- Version: 2.19.0 +- Version: 2.24.0 - License: MIT ------------------------------------- MIT License @@ -81297,7 +83767,7 @@ Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors ------------------------------------- - Package: isomorphic-git -- Version: 1.27.2 +- Version: 1.30.1 - License: MIT ------------------------------------- Copyright 2017-2023 the 'isomorphic-git' authors @@ -81313,7 +83783,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: isomorphic-rslog -- Version: 0.0.6 +- Version: 0.0.7 - License: MIT ------------------------------------- MIT License @@ -81341,6 +83811,63 @@ SOFTWARE. +------------------------------------- +- Package: isomorphic-textencoder +- Version: 1.0.1 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2018 William Hilton + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: isomorphic-timers-promises +- Version: 1.0.1 +- License: MIT +------------------------------------- +Copyright (c) Ivan Nikolić + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: isomorphic-ws - Version: 4.0.1 @@ -81626,7 +84153,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: iterator.prototype -- Version: 1.1.3 +- Version: 1.1.5 - License: MIT ------------------------------------- MIT License @@ -82530,7 +85057,7 @@ SOFTWARE. ------------------------------------- - Package: jiti -- Version: 2.4.1 +- Version: 2.4.2 - License: MIT ------------------------------------- MIT License @@ -82582,7 +85109,37 @@ limitations under the License. ------------------------------------- - Package: jose -- Version: 5.9.6 +- Version: 6.0.10 +- License: MIT +------------------------------------- +The MIT License (MIT) + +Copyright (c) 2018 Filip Skokan + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: jose +- Version: 5.10.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -82922,7 +85479,7 @@ Address all questions regarding this license to: ------------------------------------- - Package: jsdom -- Version: 25.0.1 +- Version: 26.1.0 - License: MIT ------------------------------------- Copyright (c) 2010 Elijah Insua @@ -83011,6 +85568,35 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- +- Package: jsesc +- Version: 3.1.0 +- License: MIT +------------------------------------- +Copyright Mathias Bynens + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: jsesc - Version: 3.0.2 @@ -83808,7 +86394,7 @@ THE SOFTWARE. ------------------------------------- - Package: jsonschema -- Version: 1.4.1 +- Version: 1.5.0 - License: MIT ------------------------------------- jsonschema is licensed under MIT license. @@ -84183,6 +86769,37 @@ THE SOFTWARE. +------------------------------------- +- Package: keyv +- Version: 5.3.3 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2017-2021 Luke Childs +Copyright (c) 2021-2022 Jared Wray + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: kind-of - Version: 6.0.3 @@ -84414,7 +87031,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: launch-editor -- Version: 2.9.1 +- Version: 2.10.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -86228,7 +88845,7 @@ SOFTWARE. ------------------------------------- - Package: long -- Version: 5.2.3 +- Version: 5.3.2 - License: Apache-2.0 ------------------------------------- @@ -86528,24 +89145,6 @@ THE SOFTWARE. -------------------------------------- -- Package: lowercase-keys -- Version: 2.0.0 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: lowlight - Version: 1.20.0 @@ -86699,7 +89298,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ------------------------------------- - Package: lru.min -- Version: 1.1.1 +- Version: 1.1.2 - License: MIT ------------------------------------- MIT License @@ -86771,6 +89370,22 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI +------------------------------------- +- Package: luxon +- Version: 3.6.1 +- License: MIT +------------------------------------- +Copyright 2019 JS Foundation and other contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: lz-string - Version: 1.5.0 @@ -86803,7 +89418,7 @@ SOFTWARE. ------------------------------------- - Package: magic-string -- Version: 0.30.15 +- Version: 0.30.17 - License: MIT ------------------------------------- Copyright 2018 Rich Harris @@ -86936,24 +89551,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------- -- Package: map-age-cleaner -- Version: 0.2.0 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) Sam Verschueren (github.com/SamVerschueren) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: markdown-it - Version: 14.1.0 @@ -87049,7 +89646,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: markdown-to-jsx -- Version: 7.7.1 +- Version: 7.7.6 - License: MIT ------------------------------------- The MIT License (MIT) @@ -87960,7 +90557,7 @@ For more information, please refer to ------------------------------------- - Package: memfs -- Version: 4.15.0 +- Version: 4.17.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -88685,39 +91282,9 @@ THE SOFTWARE. -------------------------------------- -- Package: mime -- Version: 2.6.0 -- License: MIT -------------------------------------- -The MIT License (MIT) - -Copyright (c) 2010 Benjamin Thomas, Robert Kieffer - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: mime-db -- Version: 1.53.0 +- Version: 1.54.0 - License: MIT ------------------------------------- (The MIT License) @@ -88829,24 +91396,6 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI -------------------------------------- -- Package: mimic-response -- Version: 1.0.1 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: mimic-response - Version: 3.1.0 @@ -89047,30 +91596,6 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -------------------------------------- -- Package: minimatch -- Version: 9.0.3 -- License: ISC -------------------------------------- -The ISC License - -Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: minimatch - Version: 9.0.5 @@ -89244,7 +91769,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ------------------------------------- - Package: minipass-fetch -- Version: 4.0.0 +- Version: 4.0.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -89390,7 +91915,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ------------------------------------- - Package: minizlib -- Version: 3.0.1 +- Version: 3.0.2 - License: MIT ------------------------------------- Minizlib was created by Isaac Z. Schlueter. @@ -89490,12 +92015,12 @@ THE SOFTWARE. ------------------------------------- - Package: mkdirp -- Version: 0.5.6 +- Version: 1.0.4 - License: MIT ------------------------------------- -Copyright 2010 James Halliday (mail@substack.net) +Copyright James Halliday (mail@substack.net) and Isaac Z. Schlueter (i@izs.me) -This project is free software released under the MIT/X11 license: +This project is free software released under the MIT license: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -89520,12 +92045,12 @@ THE SOFTWARE. ------------------------------------- - Package: mkdirp -- Version: 1.0.4 +- Version: 0.5.6 - License: MIT ------------------------------------- -Copyright James Halliday (mail@substack.net) and Isaac Z. Schlueter (i@izs.me) +Copyright 2010 James Halliday (mail@substack.net) -This project is free software released under the MIT license: +This project is free software released under the MIT/X11 license: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -89580,7 +92105,7 @@ THE SOFTWARE. ------------------------------------- - Package: mockttp -- Version: 3.15.5 +- Version: 3.17.1 - License: Apache-2.0 ------------------------------------- Apache License @@ -90071,7 +92596,7 @@ SOFTWARE. ------------------------------------- - Package: multer -- Version: 1.4.5-lts.1 +- Version: 1.4.5-lts.2 - License: MIT ------------------------------------- Copyright (c) 2014 Hage Yaapa <[http://www.hacksparrow.com](http://www.hacksparrow.com)> @@ -90151,7 +92676,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ------------------------------------- - Package: mysql2 -- Version: 3.11.5 +- Version: 3.14.1 - License: MIT ------------------------------------- Copyright (c) 2016 Andrey Sidorov (sidorares@yandex.ru) and contributors @@ -90240,7 +92765,7 @@ SOFTWARE. ------------------------------------- - Package: nan -- Version: 2.22.0 +- Version: 2.22.2 - License: MIT ------------------------------------- The MIT License (MIT) @@ -90291,7 +92816,7 @@ For more information, please refer to ------------------------------------- - Package: nanoid -- Version: 3.3.8 +- Version: 3.3.11 - License: MIT ------------------------------------- The MIT License (MIT) @@ -90320,7 +92845,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: napi-build-utils -- Version: 1.0.2 +- Version: 2.0.0 - License: MIT ------------------------------------- MIT License @@ -90800,7 +93325,7 @@ THE SOFTWARE. ------------------------------------- - Package: node-abi -- Version: 3.71.0 +- Version: 3.74.0 - License: MIT ------------------------------------- MIT License @@ -90860,7 +93385,7 @@ SOFTWARE. ------------------------------------- - Package: node-addon-api -- Version: 8.3.0 +- Version: 8.3.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -90998,6 +93523,37 @@ SOFTWARE. +------------------------------------- +- Package: node-fetch +- Version: 3.3.2 +- License: MIT +------------------------------------- +The MIT License (MIT) + +Copyright (c) 2016 - 2020 Node Fetch Team + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +------------------------------------- + + + ------------------------------------- - Package: node-fetch-commonjs - Version: 3.3.2 @@ -91371,7 +93927,7 @@ POSSIBILITY OF SUCH DAMAGES. ------------------------------------- - Package: node-gyp -- Version: 11.0.0 +- Version: 11.2.0 - License: MIT ------------------------------------- (The MIT License) @@ -91493,37 +94049,6 @@ THE SOFTWARE. -------------------------------------- -- Package: node-libs-browser -- Version: 2.2.1 -- License: MIT -------------------------------------- -(The MIT License) - -Copyright (c) 2012 Tobias Koppers - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -'Software'), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: node-releases - Version: 2.0.19 @@ -91582,6 +94107,33 @@ THE SOFTWARE. +------------------------------------- +- Package: node-stdlib-browser +- Version: 1.3.1 +- License: MIT +------------------------------------- +Copyright (c) Ivan Nikolić Copyright (c) Tobias Koppers + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: nopt - Version: 7.2.1 @@ -91608,7 +94160,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ------------------------------------- - Package: nopt -- Version: 8.0.0 +- Version: 8.1.0 - License: ISC ------------------------------------- The ISC License @@ -91871,10 +94423,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.------------ ------------------------------------- - Package: nwsapi -- Version: 2.2.16 +- Version: 2.2.20 - License: MIT ------------------------------------- -Copyright (c) 2007-2024 Diego Perini (http://www.iport.it/) +Copyright (c) 2007-2025 Diego Perini (http://www.iport.it/) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation @@ -91902,7 +94454,7 @@ OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: oauth -- Version: 0.10.0 +- Version: 0.10.2 - License: MIT ------------------------------------- The MIT License (MIT) @@ -91934,6 +94486,36 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI +------------------------------------- +- Package: oauth4webapi +- Version: 3.5.0 +- License: MIT +------------------------------------- +The MIT License (MIT) + +Copyright (c) 2022 Filip Skokan + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: object-assign - Version: 4.1.1 @@ -92028,7 +94610,7 @@ SOFTWARE. ------------------------------------- - Package: object-inspect -- Version: 1.13.3 +- Version: 1.13.4 - License: MIT ------------------------------------- MIT License @@ -92116,7 +94698,7 @@ THE SOFTWARE.------------------------------------- ------------------------------------- - Package: object.assign -- Version: 4.1.5 +- Version: 4.1.7 - License: MIT ------------------------------------- The MIT License (MIT) @@ -92145,7 +94727,7 @@ SOFTWARE.------------------------------------- ------------------------------------- - Package: object.entries -- Version: 1.1.8 +- Version: 1.1.9 - License: MIT ------------------------------------- The MIT License (MIT) @@ -92236,7 +94818,7 @@ SOFTWARE. ------------------------------------- - Package: object.values -- Version: 1.2.0 +- Version: 1.2.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -92355,7 +94937,7 @@ SOFTWARE. ------------------------------------- - Package: oidc-token-hash -- Version: 5.0.3 +- Version: 5.1.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -92584,7 +95166,7 @@ THE SOFTWARE. ------------------------------------- - Package: open -- Version: 8.4.2 +- Version: 10.1.1 - License: MIT ------------------------------------- MIT License @@ -92602,7 +95184,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: open -- Version: 10.1.0 +- Version: 8.4.2 - License: MIT ------------------------------------- MIT License @@ -92620,7 +95202,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: openapi-path-templating -- Version: 1.6.0 +- Version: 2.2.1 - License: Apache-2.0 ------------------------------------- @@ -92861,7 +95443,7 @@ SOFTWARE. ------------------------------------- - Package: openapi-server-url-templating -- Version: 1.1.0 +- Version: 1.3.0 - License: Apache-2.0 ------------------------------------- @@ -93099,6 +95681,36 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- +- Package: openid-client +- Version: 6.4.2 +- License: MIT +------------------------------------- +The MIT License (MIT) + +Copyright (c) 2016 Filip Skokan + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: openid-client - Version: 5.7.1 @@ -93288,31 +95900,13 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- -- Package: p-cancelable -- Version: 2.1.1 +- Package: own-keys +- Version: 1.0.1 - License: MIT ------------------------------------- MIT License -Copyright (c) Sindre Sorhus (sindresorhus.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - -------------------------------------- -- Package: p-defer -- Version: 1.0.0 -- License: MIT -------------------------------------- -The MIT License (MIT) - -Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) 2024 Jordan Harband Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -93321,16 +95915,16 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. ------------------------------------- @@ -93527,6 +96121,24 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI +------------------------------------- +- Package: p-throttle +- Version: 4.1.1 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: p-timeout - Version: 3.2.0 @@ -93565,7 +96177,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: pac-proxy-agent -- Version: 7.1.0 +- Version: 7.2.0 - License: MIT ------------------------------------- (The MIT License) @@ -93877,12 +96489,12 @@ SOFTWARE. ------------------------------------- - Package: parse-path -- Version: 7.0.0 +- Version: 7.1.0 - License: MIT ------------------------------------- The MIT License (MIT) -Copyright (c) 2015-22 Ionică Bizău (https://ionicabizau.net) +Copyright (c) 2015-25 Ionică Bizău (https://ionicabizau.net) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -93937,7 +96549,7 @@ SOFTWARE. ------------------------------------- - Package: parse5 -- Version: 7.2.1 +- Version: 7.3.0 - License: MIT ------------------------------------- Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin) @@ -94389,33 +97001,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- -- Package: path-browserify -- Version: 0.0.1 -- License: MIT -------------------------------------- -This software is released under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: path-browserify - Version: 1.0.1 @@ -94667,7 +97252,7 @@ software or this license, under any kind of legal claim.*** ------------------------------------- - Package: path-to-regexp -- Version: 6.3.0 +- Version: 8.2.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -94697,7 +97282,7 @@ THE SOFTWARE. ------------------------------------- - Package: path-to-regexp -- Version: 0.1.12 +- Version: 6.3.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -94727,7 +97312,7 @@ THE SOFTWARE. ------------------------------------- - Package: path-to-regexp -- Version: 8.2.0 +- Version: 0.1.12 - License: MIT ------------------------------------- The MIT License (MIT) @@ -94773,6 +97358,85 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI +------------------------------------- +- Package: pathe +- Version: 2.0.3 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) Pooya Parsa - Daniel Roe + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +Copyright Joyent, Inc. and other Node contributors. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. + +--- + +Bundled zeptomatch (https://github.com/fabiospampinato/zeptomatch) + +The MIT License (MIT) + +Copyright (c) 2023-present Fabio Spampinato + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: pbkdf2 - Version: 3.1.2 @@ -94902,7 +97566,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: pg -- Version: 8.13.1 +- Version: 8.15.6 - License: MIT ------------------------------------- MIT License @@ -94932,7 +97596,7 @@ SOFTWARE. ------------------------------------- - Package: pg-cloudflare -- Version: 1.1.1 +- Version: 1.2.5 - License: MIT ------------------------------------- MIT License @@ -94991,7 +97655,7 @@ SOFTWARE.------------------------------------- ------------------------------------- - Package: pg-connection-string -- Version: 2.7.0 +- Version: 2.8.5 - License: MIT ------------------------------------- The MIT License (MIT) @@ -95071,7 +97735,7 @@ PERFORMANCE OF THIS SOFTWARE. ------------------------------------- - Package: pg-pool -- Version: 3.7.0 +- Version: 3.9.6 - License: MIT ------------------------------------- MIT License @@ -95101,7 +97765,7 @@ SOFTWARE. ------------------------------------- - Package: pg-protocol -- Version: 1.7.0 +- Version: 1.9.5 - License: MIT ------------------------------------- MIT License @@ -95374,11 +98038,59 @@ SOFTWARE. ------------------------------------- -- Package: pino-std-serializers -- Version: 2.5.0 +- Package: pino-std-serializers +- Version: 2.5.0 +- License: MIT +------------------------------------- +Copyright Mateo Collina, David Mark Clements, James Sumners + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: pirates +- Version: 4.0.7 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2016-2018 Ari Porad + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: pkg-dir +- Version: 4.2.0 - License: MIT ------------------------------------- -Copyright Mateo Collina, David Mark Clements, James Sumners +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: @@ -95389,44 +98101,14 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI -------------------------------------- -- Package: pirates -- Version: 4.0.6 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) 2016-2018 Ari Porad - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: pkg-dir -- Version: 4.2.0 +- Version: 5.0.0 - License: MIT ------------------------------------- MIT License -Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: @@ -95484,7 +98166,7 @@ THE SOFTWARE.------------------------------------- ------------------------------------- - Package: playwright -- Version: 1.49.1 +- Version: 1.52.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -95695,7 +98377,7 @@ THE SOFTWARE.------------------------------------- ------------------------------------- - Package: playwright-core -- Version: 1.49.1 +- Version: 1.52.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -95976,7 +98658,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: portfinder -- Version: 1.0.32 +- Version: 1.0.37 - License: MIT ------------------------------------- node-portfinder @@ -96006,7 +98688,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.----------------- ------------------------------------- - Package: possible-typed-array-names -- Version: 1.0.0 +- Version: 1.1.0 - License: MIT ------------------------------------- MIT License @@ -96036,7 +98718,7 @@ SOFTWARE. ------------------------------------- - Package: postcss -- Version: 8.4.49 +- Version: 8.5.3 - License: MIT ------------------------------------- The MIT License (MIT) @@ -96534,7 +99216,7 @@ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH RE ------------------------------------- - Package: postcss-modules-local-by-default -- Version: 4.1.0 +- Version: 4.2.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -96964,7 +99646,7 @@ OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: postcss-selector-parser -- Version: 7.0.0 +- Version: 7.1.0 - License: MIT ------------------------------------- Copyright (c) Ben Briggs (http://beneb.info) @@ -97239,7 +99921,7 @@ THE SOFTWARE. ------------------------------------- - Package: prebuild-install -- Version: 7.1.2 +- Version: 7.1.3 - License: MIT ------------------------------------- The MIT License (MIT) @@ -103399,7 +106081,7 @@ SOFTWARE. ------------------------------------- - Package: prismjs -- Version: 1.29.0 +- Version: 1.30.0 - License: MIT ------------------------------------- MIT LICENSE @@ -103892,6 +106574,65 @@ SOFTWARE. +------------------------------------- +- Package: proper-lockfile +- Version: 4.1.2 +- License: MIT +------------------------------------- +The MIT License (MIT) + +Copyright (c) 2018 Made With MOXY Lda + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: properties-reader +- Version: 2.3.0 +- License: MIT +------------------------------------- +The MIT License (MIT) + +Copyright (c) 2013 Steve King + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: property-expr - Version: 2.0.6 @@ -104196,7 +106937,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: protobufjs -- Version: 7.4.0 +- Version: 7.5.0 - License: BSD-3-Clause ------------------------------------- This license applies to all parts of protobuf.js except those files @@ -104244,12 +106985,12 @@ support library is itself covered by the above license. ------------------------------------- - Package: protocols -- Version: 2.0.1 +- Version: 2.0.2 - License: MIT ------------------------------------- The MIT License (MIT) -Copyright (c) 2015-22 Ionică Bizău (https://ionicabizau.net) +Copyright (c) 2015-25 Ionică Bizău (https://ionicabizau.net) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -104600,62 +107341,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------- -- Package: qs -- Version: 6.13.1 -- License: BSD-3-Clause -------------------------------------- -BSD 3-Clause License - -Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors) -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------- - - - -------------------------------------- -- Package: query-string -- Version: 7.1.3 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) Sindre Sorhus (http://sindresorhus.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: querystring-es3 - Version: 0.2.1 @@ -104744,36 +107429,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- -- Package: queue-tick -- Version: 1.0.1 -- License: MIT -------------------------------------- -The MIT License (MIT) - -Copyright (c) 2021 Mathias Buus - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: quick-format-unescaped - Version: 3.0.3 @@ -104854,7 +107509,7 @@ SOFTWARE. ------------------------------------- - Package: rambda -- Version: 9.4.0 +- Version: 9.4.2 - License: MIT ------------------------------------- MIT License @@ -105281,7 +107936,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: rc-util -- Version: 5.44.0 +- Version: 5.44.4 - License: MIT ------------------------------------- The MIT License (MIT) @@ -105786,7 +108441,7 @@ SOFTWARE. ------------------------------------- - Package: react-error-overlay -- Version: 6.0.11 +- Version: 6.1.0 - License: MIT ------------------------------------- MIT License @@ -105905,7 +108560,7 @@ SOFTWARE. ------------------------------------- - Package: react-hook-form -- Version: 7.54.0 +- Version: 7.56.1 - License: MIT ------------------------------------- MIT License @@ -106071,7 +108726,37 @@ SOFTWARE. ------------------------------------- - Package: react-is -- Version: 17.0.2 +- Version: 19.1.0 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) Meta Platforms, Inc. and affiliates. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: react-is +- Version: 18.3.1 - License: MIT ------------------------------------- MIT License @@ -106131,7 +108816,7 @@ SOFTWARE. ------------------------------------- - Package: react-is -- Version: 18.3.1 +- Version: 17.0.2 - License: MIT ------------------------------------- MIT License @@ -106221,7 +108906,7 @@ SOFTWARE. ------------------------------------- - Package: react-redux -- Version: 9.1.2 +- Version: 9.2.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -106281,7 +108966,7 @@ SOFTWARE. ------------------------------------- - Package: react-remove-scroll -- Version: 2.6.0 +- Version: 2.6.3 - License: MIT ------------------------------------- MIT License @@ -106341,7 +109026,7 @@ SOFTWARE. ------------------------------------- - Package: react-router -- Version: 6.28.0 +- Version: 6.30.0 - License: MIT ------------------------------------- MIT License @@ -106373,7 +109058,7 @@ SOFTWARE. ------------------------------------- - Package: react-router-dom -- Version: 6.28.0 +- Version: 6.30.0 - License: MIT ------------------------------------- MIT License @@ -106465,6 +109150,36 @@ SOFTWARE. +------------------------------------- +- Package: react-style-singleton +- Version: 2.2.3 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2017 Anton Korzunov + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: react-syntax-highlighter - Version: 15.6.1 @@ -106602,7 +109317,7 @@ For more information, please refer to ------------------------------------- - Package: react-virtualized-auto-sizer -- Version: 1.0.24 +- Version: 1.0.26 - License: MIT ------------------------------------- MIT License @@ -106632,7 +109347,7 @@ SOFTWARE. ------------------------------------- - Package: react-window -- Version: 1.8.10 +- Version: 1.8.11 - License: MIT ------------------------------------- The MIT License (MIT) @@ -106662,7 +109377,7 @@ SOFTWARE. ------------------------------------- - Package: read-tls-client-hello -- Version: 1.0.1 +- Version: 1.1.0 - License: Apache-2.0 ------------------------------------- Apache License @@ -106902,7 +109617,7 @@ SOFTWARE. ------------------------------------- - Package: readable-stream -- Version: 2.3.8 +- Version: 4.7.0 - License: MIT ------------------------------------- Node.js is licensed for use as follows: @@ -106958,7 +109673,7 @@ IN THE SOFTWARE. ------------------------------------- - Package: readable-stream -- Version: 4.5.2 +- Version: 2.3.8 - License: MIT ------------------------------------- Node.js is licensed for use as follows: @@ -107277,6 +109992,36 @@ IN THE SOFTWARE. +------------------------------------- +- Package: readdirp +- Version: 4.1.2 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: readdirp - Version: 3.6.0 @@ -107385,6 +110130,36 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI +------------------------------------- +- Package: redis +- Version: 4.7.0 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2022-2023, Redis, inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: redis-errors - Version: 1.2.0 @@ -107542,7 +110317,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------- - Package: reflect.getprototypeof -- Version: 1.0.8 +- Version: 1.0.10 - License: MIT ------------------------------------- MIT License @@ -107719,9 +110494,39 @@ SOFTWARE. +------------------------------------- +- Package: regex-parser +- Version: 2.3.1 +- License: MIT +------------------------------------- +The MIT License (MIT) + +Copyright (c) 2014-25 Ionică Bizău (https://ionicabizau.net) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: regexp.prototype.flags -- Version: 1.5.3 +- Version: 1.5.4 - License: MIT ------------------------------------- The MIT License (MIT) @@ -108216,6 +111021,36 @@ SOFTWARE. +------------------------------------- +- Package: resolve +- Version: 1.22.8 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2012 James Halliday + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: resolve - Version: 2.0.0-next.5 @@ -108248,7 +111083,7 @@ SOFTWARE. ------------------------------------- - Package: resolve -- Version: 1.22.8 +- Version: 1.22.10 - License: MIT ------------------------------------- MIT License @@ -108451,34 +111286,6 @@ THE SOFTWARE. -------------------------------------- -- Package: responselike -- Version: 2.0.1 -- License: MIT -------------------------------------- -Copyright (c) 2017 Luke Childs - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: restore-cursor - Version: 3.1.0 @@ -108557,7 +111364,7 @@ THE SOFTWARE. ------------------------------------- - Package: retry -- Version: 0.12.0 +- Version: 0.13.1 - License: MIT ------------------------------------- Copyright (c) 2011: @@ -108587,7 +111394,7 @@ Felix Geisendörfer (felix@debuggable.com) ------------------------------------- - Package: retry -- Version: 0.13.1 +- Version: 0.12.0 - License: MIT ------------------------------------- Copyright (c) 2011: @@ -108646,12 +111453,12 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: reusify -- Version: 1.0.4 +- Version: 1.1.0 - License: MIT ------------------------------------- The MIT License (MIT) -Copyright (c) 2015 Matteo Collina +Copyright (c) 2015-2024 Matteo Collina Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -108677,7 +111484,7 @@ SOFTWARE. ------------------------------------- - Package: rfc4648 -- Version: 1.5.3 +- Version: 1.5.4 - License: MIT ------------------------------------- The MIT License (MIT) @@ -108741,30 +111548,6 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -------------------------------------- -- Package: rimraf -- Version: 5.0.10 -- License: ISC -------------------------------------- -The ISC License - -Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: ripemd160 - Version: 2.0.2 @@ -108830,7 +111613,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------- - Package: rollup -- Version: 4.28.1 +- Version: 4.40.1 - License: MIT ------------------------------------- # Rollup core license @@ -109025,21 +111808,6 @@ Repository: git+https://github.com/paulmillr/chokidar.git --------------------------------------- -## colorette -License: MIT -By: Jorge Bucaran -Repository: jorgebucaran/colorette - -> Copyright © Jorge Bucaran <> -> -> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -> -> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -> -> THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ---------------------------------------- - ## date-time License: MIT By: Sindre Sorhus @@ -109201,55 +111969,101 @@ Repository: micromatch/is-glob --------------------------------------- -## is-number +## is-number +License: MIT +By: Jon Schlinkert, Olsten Larck, Rouven Weßling +Repository: jonschlinkert/is-number + +> The MIT License (MIT) +> +> Copyright (c) 2014-present, Jon Schlinkert. +> +> Permission is hereby granted, free of charge, to any person obtaining a copy +> of this software and associated documentation files (the "Software"), to deal +> in the Software without restriction, including without limitation the rights +> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +> copies of the Software, and to permit persons to whom the Software is +> furnished to do so, subject to the following conditions: +> +> The above copyright notice and this permission notice shall be included in +> all copies or substantial portions of the Software. +> +> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +> THE SOFTWARE. + +--------------------------------------- + +## is-reference +License: MIT +By: Rich Harris +Repository: git+https://github.com/Rich-Harris/is-reference.git + +--------------------------------------- + +## locate-character +License: MIT +By: Rich Harris +Repository: git+https://gitlab.com/Rich-Harris/locate-character.git + +--------------------------------------- + +## magic-string +License: MIT +By: Rich Harris +Repository: https://github.com/rich-harris/magic-string + +> Copyright 2018 Rich Harris +> +> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +> +> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +> +> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--------------------------------------- + +## normalize-path +License: MIT +By: Jon Schlinkert, Blaine Bublitz +Repository: jonschlinkert/normalize-path + +> The MIT License (MIT) +> +> Copyright (c) 2014-2018, Jon Schlinkert. +> +> Permission is hereby granted, free of charge, to any person obtaining a copy +> of this software and associated documentation files (the "Software"), to deal +> in the Software without restriction, including without limitation the rights +> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +> copies of the Software, and to permit persons to whom the Software is +> furnished to do so, subject to the following conditions: +> +> The above copyright notice and this permission notice shall be included in +> all copies or substantial portions of the Software. +> +> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +> THE SOFTWARE. + +--------------------------------------- + +## parse-ms License: MIT -By: Jon Schlinkert, Olsten Larck, Rouven Weßling -Repository: jonschlinkert/is-number +By: Sindre Sorhus +Repository: sindresorhus/parse-ms -> The MIT License (MIT) -> -> Copyright (c) 2014-present, Jon Schlinkert. -> -> Permission is hereby granted, free of charge, to any person obtaining a copy -> of this software and associated documentation files (the "Software"), to deal -> in the Software without restriction, including without limitation the rights -> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -> copies of the Software, and to permit persons to whom the Software is -> furnished to do so, subject to the following conditions: -> -> The above copyright notice and this permission notice shall be included in -> all copies or substantial portions of the Software. +> MIT License > -> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -> THE SOFTWARE. - ---------------------------------------- - -## is-reference -License: MIT -By: Rich Harris -Repository: git+https://github.com/Rich-Harris/is-reference.git - ---------------------------------------- - -## locate-character -License: MIT -By: Rich Harris -Repository: git+https://gitlab.com/Rich-Harris/locate-character.git - ---------------------------------------- - -## magic-string -License: MIT -By: Rich Harris -Repository: https://github.com/rich-harris/magic-string - -> Copyright 2018 Rich Harris +> Copyright (c) Sindre Sorhus (https://sindresorhus.com) > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: > @@ -109259,49 +112073,26 @@ Repository: https://github.com/rich-harris/magic-string --------------------------------------- -## normalize-path -License: MIT -By: Jon Schlinkert, Blaine Bublitz -Repository: jonschlinkert/normalize-path - -> The MIT License (MIT) -> -> Copyright (c) 2014-2018, Jon Schlinkert. -> -> Permission is hereby granted, free of charge, to any person obtaining a copy -> of this software and associated documentation files (the "Software"), to deal -> in the Software without restriction, including without limitation the rights -> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -> copies of the Software, and to permit persons to whom the Software is -> furnished to do so, subject to the following conditions: -> -> The above copyright notice and this permission notice shall be included in -> all copies or substantial portions of the Software. -> -> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -> THE SOFTWARE. - ---------------------------------------- - -## parse-ms -License: MIT -By: Sindre Sorhus -Repository: sindresorhus/parse-ms +## picocolors +License: ISC +By: Alexey Raspopov +Repository: alexeyraspopov/picocolors -> MIT License -> -> Copyright (c) Sindre Sorhus (https://sindresorhus.com) +> ISC License > -> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +> Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov > -> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +> Permission to use, copy, modify, and/or distribute this software for any +> purpose with or without fee is hereby granted, provided that the above +> copyright notice and this permission notice appear in all copies. > -> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +> THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +> WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +> MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +> ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +> WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +> ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +> OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------- @@ -109512,7 +112303,7 @@ Repository: https://github.com/yargs/yargs-parser.git ------------------------------------- - Package: rollup-plugin-dts -- Version: 6.1.1 +- Version: 6.2.1 - License: LGPL-3.0-only ------------------------------------- GNU GENERAL PUBLIC LICENSE @@ -110195,7 +112986,7 @@ Public License instead of this License. But first, please read ------------------------------------- - Package: rollup-plugin-esbuild -- Version: 6.1.1 +- Version: 6.2.1 - License: MIT ------------------------------------- MIT License @@ -110254,7 +113045,7 @@ THE SOFTWARE. ------------------------------------- - Package: rrweb-cssom -- Version: 0.7.1 +- Version: 0.8.0 - License: MIT ------------------------------------- Copyright (c) Nikita Vasilyev @@ -110389,7 +113180,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: rxjs -- Version: 7.8.1 +- Version: 7.8.2 - License: Apache-2.0 ------------------------------------- Apache License @@ -110841,7 +113632,7 @@ THE SOFTWARE. ------------------------------------- - Package: safe-array-concat -- Version: 1.1.2 +- Version: 1.1.3 - License: MIT ------------------------------------- MIT License @@ -110951,9 +113742,39 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +------------------------------------- +- Package: safe-push-apply +- Version: 1.0.0 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2024 Jordan Harband + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: safe-regex-test -- Version: 1.0.3 +- Version: 1.1.0 - License: MIT ------------------------------------- MIT License @@ -111211,7 +114032,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: schema-utils -- Version: 4.2.0 +- Version: 4.3.2 - License: MIT ------------------------------------- Copyright JS Foundation and other contributors @@ -111256,6 +114077,36 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI +------------------------------------- +- Package: select-case +- Version: 1.0.0 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2018 William Hilton + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: selfsigned - Version: 2.4.1 @@ -111697,6 +114548,36 @@ For more information, please refer to +------------------------------------- +- Package: set-proto +- Version: 1.0.0 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2024 Jordan Harband + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: set-value - Version: 4.1.0 @@ -111956,36 +114837,6 @@ SOFTWARE. -------------------------------------- -- Package: side-channel -- Version: 1.0.6 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) 2019 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: side-channel-list - Version: 1.0.0 @@ -112419,7 +115270,7 @@ All other code is released on MIT license, see LICENSE. ------------------------------------- - Package: socks -- Version: 2.8.3 +- Version: 2.8.4 - License: MIT ------------------------------------- The MIT License (MIT) @@ -112829,50 +115680,32 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- -- Package: space-separated-tokens -- Version: 2.0.2 -- License: MIT -------------------------------------- -(The MIT License) - -Copyright (c) 2016 Titus Wormer - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -'Software'), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - -------------------------------------- -- Package: split-on-first -- Version: 1.1.0 +- Package: space-separated-tokens +- Version: 2.0.2 - License: MIT ------------------------------------- -MIT License +(The MIT License) -Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) 2016 Titus Wormer -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- @@ -113015,6 +115848,35 @@ Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors +------------------------------------- +- Package: ssh-remote-port-forward +- Version: 1.0.4 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2019-2020 Cristian Greco + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.------------------------------------- + + + ------------------------------------- - Package: ssh2 - Version: 1.16.0 @@ -113386,7 +116248,7 @@ THE SOFTWARE. ------------------------------------- - Package: stop-iteration-iterator -- Version: 1.0.0 +- Version: 1.1.0 - License: MIT ------------------------------------- MIT License @@ -113473,35 +116335,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- -- Package: stream-browserify -- Version: 2.0.2 -- License: MIT -------------------------------------- -This software is released under the MIT license: - -Copyright (c) James Halliday - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: stream-buffers - Version: 3.0.3 @@ -113536,7 +116369,7 @@ For more information, please refer to ------------------- ------------------------------------- - Package: stream-http -- Version: 2.8.3 +- Version: 3.2.0 - License: MIT ------------------------------------- The MIT License @@ -113654,7 +116487,7 @@ IN THE SOFTWARE.------------------------------------- ------------------------------------- - Package: streamx -- Version: 2.21.0 +- Version: 2.22.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -113682,36 +116515,6 @@ THE SOFTWARE. -------------------------------------- -- Package: strict-uri-encode -- Version: 2.0.0 -- License: MIT -------------------------------------- -The MIT License (MIT) - -Copyright (c) Kevin Martensson (github.com/kevva) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: string-length - Version: 4.0.2 @@ -113797,7 +116600,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: string.prototype.matchall -- Version: 4.0.11 +- Version: 4.0.12 - License: MIT ------------------------------------- The MIT License (MIT) @@ -113857,7 +116660,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: string.prototype.trim -- Version: 1.2.9 +- Version: 1.2.10 - License: MIT ------------------------------------- The MIT License (MIT) @@ -113887,7 +116690,7 @@ SOFTWARE. ------------------------------------- - Package: string.prototype.trimend -- Version: 1.0.8 +- Version: 1.0.9 - License: MIT ------------------------------------- MIT License @@ -114247,7 +117050,37 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: strnum -- Version: 1.0.5 +- Version: 2.0.5 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2021 Natural Intelligence + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: strnum +- Version: 1.1.2 - License: MIT ------------------------------------- MIT License @@ -114464,7 +117297,7 @@ OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: stylis -- Version: 4.3.4 +- Version: 4.3.6 - License: MIT ------------------------------------- MIT License @@ -114552,68 +117385,6 @@ SOFTWARE. -------------------------------------- -- Package: superagent -- Version: 8.1.2 -- License: MIT -------------------------------------- -(The MIT License) - -Copyright (c) 2014-2016 TJ Holowaychuk - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -'Software'), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - -------------------------------------- -- Package: supertest -- Version: 6.3.4 -- License: MIT -------------------------------------- -(The MIT License) - -Copyright (c) 2014 TJ Holowaychuk - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -'Software'), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: supports-color - Version: 5.5.0 @@ -114730,7 +117501,7 @@ SOFTWARE. ------------------------------------- - Package: swagger-client -- Version: 3.32.2 +- Version: 3.35.0 - License: Apache-2.0 ------------------------------------- @@ -114941,7 +117712,7 @@ SOFTWARE. ------------------------------------- - Package: swagger-ui-react -- Version: 5.18.2 +- Version: 5.21.0 - License: Apache-2.0 ------------------------------------- @@ -115185,7 +117956,7 @@ DEALINGS IN THE SOFTWARE.------------------------------------- ------------------------------------- - Package: swr -- Version: 2.2.5 +- Version: 2.3.3 - License: MIT ------------------------------------- MIT License @@ -115274,6 +118045,36 @@ THE SOFTWARE. +------------------------------------- +- Package: sync-fetch +- Version: 0.6.0-2 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2019 Lars Willighagen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: tapable - Version: 1.1.3 @@ -115359,61 +118160,32 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ------------------------------------- -- Package: tar -- Version: 6.2.1 -- License: ISC -------------------------------------- -The ISC License - -Copyright (c) Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -------------------------------------- - - - -------------------------------------- -- Package: tar-fs -- Version: 2.1.1 -- License: MIT +- Package: tar +- Version: 6.2.1 +- License: ISC ------------------------------------- -The MIT License (MIT) - -Copyright (c) 2014 Mathias Buus +The ISC License -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Copyright (c) Isaac Z. Schlueter and Contributors -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE.------------------------------------- +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +------------------------------------- ------------------------------------- - Package: tar-fs -- Version: 2.0.1 +- Version: 2.1.2 - License: MIT ------------------------------------- The MIT License (MIT) @@ -115773,7 +118545,7 @@ SOFTWARE. ------------------------------------- - Package: terser -- Version: 5.37.0 +- Version: 5.39.0 - License: BSD-2-Clause ------------------------------------- Copyright 2012-2018 (c) Mihai Bazon @@ -115809,7 +118581,7 @@ SUCH DAMAGE. ------------------------------------- - Package: terser-webpack-plugin -- Version: 5.3.10 +- Version: 5.3.14 - License: MIT ------------------------------------- Copyright JS Foundation and other contributors @@ -115859,9 +118631,38 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +------------------------------------- +- Package: testcontainers +- Version: 10.24.2 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2018 - 2023 Cristian Greco + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.------------------------------------- + + + ------------------------------------- - Package: text-decoder -- Version: 1.2.2 +- Version: 1.2.3 - License: Apache-2.0 ------------------------------------- Apache License @@ -116126,6 +118927,38 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- +- Package: textextensions +- Version: 5.16.0 +- License: MIT +------------------------------------- + + +

License

+ +Unless stated otherwise all works are: + + + +and licensed under: + + + +

MIT License

+ +
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+ + +------------------------------------- + + + ------------------------------------- - Package: thenify - Version: 3.3.1 @@ -116651,6 +119484,36 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI +------------------------------------- +- Package: timeout-signal +- Version: 2.0.0 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) 2020, 2022 Richie Bendall + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: timers-browserify - Version: 2.0.12 @@ -116766,7 +119629,7 @@ SOFTWARE.------------------------------------- ------------------------------------- - Package: tinyglobby -- Version: 0.2.10 +- Version: 0.2.13 - License: MIT ------------------------------------- MIT License @@ -116796,7 +119659,7 @@ SOFTWARE. ------------------------------------- - Package: tldts -- Version: 6.1.66 +- Version: 6.1.86 - License: MIT ------------------------------------- Copyright (c) 2017 Thomas Parisot, 2018 Rémi Berson @@ -116818,7 +119681,7 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTH ------------------------------------- - Package: tldts-core -- Version: 6.1.66 +- Version: 6.1.86 - License: MIT ------------------------------------- Copyright (c) 2017 Thomas Parisot, 2018 Rémi Berson @@ -116935,38 +119798,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------- -- Package: to-arraybuffer -- Version: 1.0.1 -- License: MIT -------------------------------------- -The MIT License - -Copyright (c) 2016 John Hiesey - -Permission is hereby granted, free of charge, -to any person obtaining a copy of this software and -associated documentation files (the "Software"), to -deal in the Software without restriction, including -without limitation the rights to use, copy, modify, -merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom -the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice -shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR -ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.------------------------------------- - - - ------------------------------------- - Package: to-regex-range - Version: 5.0.1 @@ -117102,7 +119933,7 @@ freely, subject to the following restrictions: ------------------------------------- - Package: tough-cookie -- Version: 5.0.0 +- Version: 5.1.2 - License: BSD-3-Clause ------------------------------------- Copyright (c) 2015, Salesforce.com, Inc. @@ -117174,7 +120005,7 @@ SOFTWARE. ------------------------------------- - Package: tr46 -- Version: 5.0.0 +- Version: 5.1.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -117414,7 +120245,7 @@ SOFTWARE. ------------------------------------- - Package: tree-sitter -- Version: 0.21.1 +- Version: 0.22.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -117650,6 +120481,35 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- +- Package: ts-api-utils +- Version: 2.1.0 +- License: MIT +------------------------------------- +# MIT License + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: ts-easing - Version: 0.2.0 @@ -118292,39 +121152,9 @@ SOFTWARE. -------------------------------------- -- Package: tsutils -- Version: 3.21.0 -- License: MIT -------------------------------------- -The MIT License (MIT) - -Copyright (c) 2017 Klaus Meinhardt - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: tty-browserify -- Version: 0.0.0 +- Version: 0.0.1 - License: MIT ------------------------------------- This software is released under the MIT license: @@ -118653,7 +121483,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: typed-array-buffer -- Version: 1.0.2 +- Version: 1.0.3 - License: MIT ------------------------------------- MIT License @@ -118683,7 +121513,7 @@ SOFTWARE. ------------------------------------- - Package: typed-array-byte-length -- Version: 1.0.1 +- Version: 1.0.3 - License: MIT ------------------------------------- MIT License @@ -118713,7 +121543,7 @@ SOFTWARE. ------------------------------------- - Package: typed-array-byte-offset -- Version: 1.0.3 +- Version: 1.0.4 - License: MIT ------------------------------------- MIT License @@ -119466,7 +122296,7 @@ THE SOFTWARE.------------------------------------- ------------------------------------- - Package: unbox-primitive -- Version: 1.0.2 +- Version: 1.1.0 - License: MIT ------------------------------------- MIT License @@ -119559,7 +122389,37 @@ OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: undici -- Version: 7.3.0 +- Version: 5.29.0 +- License: MIT +------------------------------------- +MIT License + +Copyright (c) Matteo Collina and Undici contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------- + + + +------------------------------------- +- Package: undici +- Version: 7.8.0 - License: MIT ------------------------------------- MIT License @@ -119589,7 +122449,7 @@ SOFTWARE. ------------------------------------- - Package: undici-types -- Version: 6.20.0 +- Version: 6.21.0 - License: MIT ------------------------------------- MIT License @@ -120249,6 +123109,58 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- +- Package: unplugin-utils +- Version: 0.2.4 +- License: MIT +------------------------------------- +The MIT License (MIT) + +Copyright © 2024 三咲智子 Kevin Deng (https://github.com/sxzz) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +The MIT License (MIT) + +Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: unraw - Version: 3.0.0 @@ -120312,7 +123224,7 @@ OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: update-browserslist-db -- Version: 1.1.1 +- Version: 1.1.3 - License: MIT ------------------------------------- The MIT License (MIT) @@ -120477,6 +123389,40 @@ SOFTWARE. +------------------------------------- +- Package: url-template +- Version: 2.0.8 +- License: BSD +------------------------------------- +Copyright (c) 2012-2014, Bram Stein +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY +OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +------------------------------------- + + + ------------------------------------- - Package: urlpattern-polyfill - Version: 8.0.2 @@ -120533,7 +123479,7 @@ THE SOFTWARE.------------------------------------- ------------------------------------- - Package: use-callback-ref -- Version: 1.3.2 +- Version: 1.3.3 - License: MIT ------------------------------------- MIT License @@ -120652,7 +123598,7 @@ THE SOFTWARE. ------------------------------------- - Package: use-sidecar -- Version: 1.1.2 +- Version: 1.1.3 - License: MIT ------------------------------------- MIT License @@ -120682,7 +123628,7 @@ SOFTWARE. ------------------------------------- - Package: use-sync-external-store -- Version: 1.4.0 +- Version: 1.5.0 - License: MIT ------------------------------------- MIT License @@ -120710,60 +123656,6 @@ SOFTWARE. -------------------------------------- -- Package: util -- Version: 0.10.4 -- License: MIT -------------------------------------- -Copyright Joyent, Inc. and other Node contributors. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. -------------------------------------- - - - -------------------------------------- -- Package: util -- Version: 0.11.1 -- License: MIT -------------------------------------- -Copyright Joyent, Inc. and other Node contributors. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: util - Version: 0.12.5 @@ -120948,6 +123840,24 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI +------------------------------------- +- Package: uuid +- Version: 10.0.0 +- License: MIT +------------------------------------- +The MIT License (MIT) + +Copyright (c) 2010-2020 Robert Kieffer and other contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: uuid - Version: 3.4.0 @@ -120980,7 +123890,7 @@ SOFTWARE. ------------------------------------- - Package: uuid -- Version: 11.0.3 +- Version: 11.1.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -121284,36 +124194,6 @@ SOFTWARE. -------------------------------------- -- Package: value-or-promise -- Version: 1.0.12 -- License: MIT -------------------------------------- -MIT License - -Copyright (c) 2019 Yaacov Rydzinski - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: vary - Version: 1.1.2 @@ -121672,7 +124552,7 @@ SOFTWARE. ------------------------------------- - Package: web-tree-sitter -- Version: 0.24.3 +- Version: 0.24.5 - License: MIT ------------------------------------- The MIT License (MIT) @@ -121702,7 +124582,7 @@ SOFTWARE. ------------------------------------- - Package: webidl-conversions -- Version: 7.0.0 +- Version: 3.0.1 - License: BSD-2-Clause ------------------------------------- # The BSD 2-Clause License @@ -121723,7 +124603,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ------------------------------------- - Package: webidl-conversions -- Version: 3.0.1 +- Version: 7.0.0 - License: BSD-2-Clause ------------------------------------- # The BSD 2-Clause License @@ -121744,7 +124624,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ------------------------------------- - Package: webpack -- Version: 5.97.1 +- Version: 5.99.7 - License: MIT ------------------------------------- Copyright JS Foundation and other contributors @@ -121802,7 +124682,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: webpack-dev-server -- Version: 5.1.0 +- Version: 5.2.1 - License: MIT ------------------------------------- Copyright JS Foundation and other contributors @@ -121965,7 +124845,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: whatwg-mimetype -- Version: 4.0.0 +- Version: 3.0.0 - License: MIT ------------------------------------- Copyright © Domenic Denicola @@ -121981,7 +124861,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: whatwg-mimetype -- Version: 3.0.0 +- Version: 4.0.0 - License: MIT ------------------------------------- Copyright © Domenic Denicola @@ -121997,12 +124877,12 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: whatwg-url -- Version: 11.0.0 +- Version: 5.0.0 - License: MIT ------------------------------------- The MIT License (MIT) -Copyright (c) Sebastian Mayr +Copyright (c) 2015–2016 Sebastian Mayr Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -122027,7 +124907,7 @@ THE SOFTWARE. ------------------------------------- - Package: whatwg-url -- Version: 14.1.0 +- Version: 11.0.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -122057,12 +124937,12 @@ THE SOFTWARE. ------------------------------------- - Package: whatwg-url -- Version: 5.0.0 +- Version: 14.2.0 - License: MIT ------------------------------------- The MIT License (MIT) -Copyright (c) 2015–2016 Sebastian Mayr +Copyright (c) Sebastian Mayr Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -122183,7 +125063,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ------------------------------------- - Package: which-boxed-primitive -- Version: 1.1.0 +- Version: 1.1.1 - License: MIT ------------------------------------- MIT License @@ -122213,7 +125093,7 @@ SOFTWARE. ------------------------------------- - Package: which-builtin-type -- Version: 1.2.0 +- Version: 1.2.1 - License: MIT ------------------------------------- MIT License @@ -122273,7 +125153,7 @@ SOFTWARE. ------------------------------------- - Package: which-typed-array -- Version: 1.1.16 +- Version: 1.1.19 - License: MIT ------------------------------------- The MIT License (MIT) @@ -122570,6 +125450,35 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- +- Package: ws +- Version: 8.18.1 +- License: MIT +------------------------------------- +Copyright (c) 2011 Einar Otto Stangvik +Copyright (c) 2013 Arnout Kazemier and contributors +Copyright (c) 2016 Luigi Pinca and contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------- + + + ------------------------------------- - Package: xcase - Version: 2.0.1 @@ -122663,7 +125572,7 @@ SOFTWARE. ------------------------------------- - Package: xml-crypto -- Version: 6.0.1 +- Version: 6.1.2 - License: MIT ------------------------------------- (The MIT License) @@ -122694,7 +125603,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------- - Package: xml-encryption -- Version: 3.0.2 +- Version: 3.1.0 - License: MIT ------------------------------------- The MIT License (MIT) @@ -123557,28 +126466,6 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -------------------------------------- -- Package: yaml -- Version: 2.6.1 -- License: ISC -------------------------------------- -Copyright Eemeli Aro - -Permission to use, copy, modify, and/or distribute this software for any purpose -with or without fee is hereby granted, provided that the above copyright notice -and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF -THIS SOFTWARE. -------------------------------------- - - - ------------------------------------- - Package: yaml - Version: 1.10.2 @@ -123603,7 +126490,7 @@ THIS SOFTWARE. ------------------------------------- - Package: yaml -- Version: 2.7.0 +- Version: 2.7.1 - License: ISC ------------------------------------- Copyright Eemeli Aro @@ -123877,7 +126764,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ------------------------------------- - Package: yup -- Version: 1.5.0 +- Version: 1.6.1 - License: MIT ------------------------------------- The MIT License (MIT) @@ -124027,7 +126914,7 @@ OTHER DEALINGS IN THE SOFTWARE.------------------------------------- ------------------------------------- - Package: zod -- Version: 3.24.0 +- Version: 3.24.3 - License: MIT ------------------------------------- MIT License @@ -124057,7 +126944,7 @@ SOFTWARE. ------------------------------------- - Package: zod-to-json-schema -- Version: 3.23.5 +- Version: 3.24.5 - License: ISC ------------------------------------- ISC License diff --git a/package.json b/package.json index 9be532f..51ae089 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "root", - "version": "1.6.0", + "version": "1.7.0", "private": true, "engines": { "node": "20 || 22" diff --git a/packages/app/config.d.ts b/packages/app/config.d.ts index cc70a26..3d53af5 100644 --- a/packages/app/config.d.ts +++ b/packages/app/config.d.ts @@ -69,6 +69,38 @@ export interface Config { link: string; }[]; }; + /** + * Template groups configuration + * @visibility frontend + */ + templateGroups?: { + /** + * Name of the group + * @visibility frontend + */ + name: string; + /** + * Tags in array + * @visibility frontend + */ + tagFilters: string[]; + }[]; + /** + * Importflow groups configuration + * @visibility frontend + */ + importFlowGroups?: { + /** + * Name of the group + * @visibility frontend + */ + name: string; + /** + * Tags in array + * @visibility frontend + */ + tagFilters: string[]; + }[]; /** * Control plane link for the TIBCO® Developer Hub * @visibility frontend diff --git a/packages/app/package.json b/packages/app/package.json index c804276..746fd10 100644 --- a/packages/app/package.json +++ b/packages/app/package.json @@ -1,6 +1,6 @@ { "name": "app", - "version": "1.6.0", + "version": "1.7.0", "private": true, "bundled": true, "backstage": { @@ -17,7 +17,7 @@ "@backstage/catalog-model": "^1.7.3", "@backstage/cli": "^0.30.0", "@backstage/core-app-api": "^1.15.5", - "@backstage/core-components": "^0.16.4", + "@backstage/core-components": "^0.17.1", "@backstage/core-plugin-api": "^1.10.4", "@backstage/integration-react": "^1.2.4", "@backstage/plugin-api-docs": "^0.12.4", @@ -31,6 +31,7 @@ "@backstage/plugin-org": "^0.6.36", "@backstage/plugin-permission-react": "^0.4.31", "@backstage/plugin-scaffolder": "^1.28.0", + "@backstage/plugin-scaffolder-common": "^1.5.10", "@backstage/plugin-search": "^1.4.23", "@backstage/plugin-search-react": "^1.8.6", "@backstage/plugin-techdocs": "^1.12.3", @@ -39,8 +40,8 @@ "@backstage/plugin-user-settings": "^0.8.19", "@backstage/theme": "^0.6.4", "@fontsource/source-sans-pro": "^4.5.11", - "@internal/backstage-plugin-import-flow": "^1.6.0", - "@internal/plugin-tibco-platform-plugin": "^1.6.0", + "@internal/backstage-plugin-import-flow": "workspace:^", + "@internal/plugin-tibco-platform-plugin": "workspace:^", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", "@material-ui/lab": "^4.0.0-alpha.61", diff --git a/packages/app/src/App.test.tsx b/packages/app/src/App.test.tsx index 3b4ff88..c377eb9 100644 --- a/packages/app/src/App.test.tsx +++ b/packages/app/src/App.test.tsx @@ -13,11 +13,16 @@ describe('App', () => { APP_CONFIG: [ { data: { - app: { title: 'Test' }, + app: { title: 'Test', developerHubVersion: '1.7.0' }, backend: { baseUrl: 'http://localhost:7007' }, techdocs: { storageUrl: 'http://localhost:7007/api/techdocs/static/docs', }, + auth: { + enableAuthProviders: ['oauth2Proxy'], + }, + cpLink: 'https://ptdev.cp1-my.cp-platform.dataplanes.pro', + tibcoDeveloperHubCustomAppVersion: 'test', }, context: 'test', }, diff --git a/packages/app/src/App.tsx b/packages/app/src/App.tsx index 9502add..de42452 100644 --- a/packages/app/src/App.tsx +++ b/packages/app/src/App.tsx @@ -44,7 +44,6 @@ import { catalogEntityCreatePermission } from '@backstage/plugin-catalog-common/ import { HomepageCompositionRoot } from '@backstage/plugin-home'; import { HomePage } from './components/home/HomePage'; import LightIcon from '@material-ui/icons/WbSunny'; -import '@fontsource/source-sans-pro'; import { configApiRef, githubAuthApiRef, @@ -62,6 +61,12 @@ import { Button } from '@material-ui/core'; import { UnifiedThemeProvider } from '@backstage/theme'; import { ImportFlowPage } from '@internal/backstage-plugin-import-flow'; import { catalogMessages } from './translations/catalogIndex'; +import { TemplateEntityV1beta3 } from '@backstage/plugin-scaffolder-common'; +import { + TemplateGroups, + templateGroupsValue, +} from './components/scaffolder/CustomScaffolderComponent.tsx'; +import { CustomScaffolderPage } from './components/scaffolder/plugin.ts'; export const generateProviders = (providerConfig: string[]): any[] => { const providers: any[] = []; @@ -157,6 +162,53 @@ const app = createApp({ ], }); +const CustomImportflowPage = () => { + const config = useApi(configApiRef); + const importFlowGroups: undefined | TemplateGroups[] = templateGroupsValue( + config.getOptional('importFlowGroups'), + ); + let groups: any[] = [ + { + title: 'Import Flows', + filter: () => true, + }, + ]; + if (importFlowGroups) { + groups = []; + for (const importFlowGroup of importFlowGroups) { + groups.push({ + title: importFlowGroup.name, + filter: (entity: TemplateEntityV1beta3) => { + for (const tag of importFlowGroup.tagFilters) { + if (entity.metadata?.tags?.includes(tag)) { + return true; + } + } + return false; + }, + }); + } + } + return ( + + !!entity.metadata.tags + ?.map(v => v.toLowerCase()) + .includes('import-flow') + } + groups={groups} + components={{ + EXPERIMENTAL_TemplateListPageComponent: ImportFlowPage, + }} + headerOptions={{ + pageTitleOverride: 'Import Flow', + title: 'Import Flow', + subtitle: 'Import new software components using import flows', + }} + /> + ); +}; + const routes = ( {/* */} @@ -182,50 +234,8 @@ const routes = ( - - !!entity.metadata.tags - ?.map(v => v.toLowerCase()) - .includes('import-flow') - } - groups={[ - { - title: 'Import Flows', - filter: () => true, - }, - ]} - components={{ - EXPERIMENTAL_TemplateListPageComponent: ImportFlowPage, - }} - headerOptions={{ - pageTitleOverride: 'Import Flow', - title: 'Import Flow', - subtitle: 'Import new software components using import flows', - }} - /> - } - /> - - !entity.metadata.tags - ?.map(v => v.toLowerCase()) - .includes('import-flow') - } - headerOptions={{ - pageTitleOverride: 'Develop a new component', - title: 'Develop a new component', - subtitle: - 'Develop new software components using standard templates in your organization', - }} - /> - } - /> + } /> + } /> } /> { const classes = useSidebarStyles(); const { isOpen } = useSidebarOpenState(); const config = useApi(configApiRef); - const configApi = useApi(configApiRef); - const developerHubVersion = configApi.getOptional('app.developerHubVersion'); - const customDeveloperHubVersion = configApi.getOptional( + const developerHubVersion = config.getOptional('app.developerHubVersion'); + const customDeveloperHubVersion = config.getOptional( 'tibcoDeveloperHubCustomAppVersion', ); let cpLink = config.getOptionalString('cpLink') as string; diff --git a/packages/app/src/components/catalog-import/components/DefaultImportPage/DefaultImportPage.test.tsx b/packages/app/src/components/catalog-import/components/DefaultImportPage/DefaultImportPage.test.tsx new file mode 100644 index 0000000..ec13bca --- /dev/null +++ b/packages/app/src/components/catalog-import/components/DefaultImportPage/DefaultImportPage.test.tsx @@ -0,0 +1,56 @@ +/* + * Copyright (c) 2023-2025. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary + */ + +import { ApiProvider, ConfigReader } from '@backstage/core-app-api'; +import { configApiRef } from '@backstage/core-plugin-api'; +import { catalogApiRef } from '@backstage/plugin-catalog-react'; +import { catalogApiMock } from '@backstage/plugin-catalog-react/testUtils'; +import { renderInTestApp, TestApiRegistry } from '@backstage/test-utils'; +import { screen } from '@testing-library/react'; +import { + catalogImportApiRef, + CatalogImportClient, +} from '@backstage/plugin-catalog-import'; +import { DefaultImportPage } from './DefaultImportPage'; +import React from 'react'; + +describe('', () => { + const fetchApi = { + fetch: jest.fn(), + }; + + let apis: TestApiRegistry; + + beforeEach(() => { + apis = TestApiRegistry.from( + [configApiRef, new ConfigReader({ integrations: {} })], + [catalogApiRef, catalogApiMock()], + [ + catalogImportApiRef, + new CatalogImportClient({ + discoveryApi: {} as any, + scmAuthApi: { + getCredentials: async () => ({ token: 'token', headers: {} }), + }, + fetchApi, + scmIntegrationsApi: {} as any, + catalogApi: {} as any, + configApi: {} as any, + }), + ], + ); + }); + + it('renders without exploding', async () => { + await renderInTestApp( + + + , + ); + + expect( + screen.getByText('Start tracking your component in Backstage'), + ).toBeInTheDocument(); + }); +}); diff --git a/packages/app/src/components/catalog-import/components/ImportPage/ImportPage.test.tsx b/packages/app/src/components/catalog-import/components/ImportPage/ImportPage.test.tsx new file mode 100644 index 0000000..50e8481 --- /dev/null +++ b/packages/app/src/components/catalog-import/components/ImportPage/ImportPage.test.tsx @@ -0,0 +1,74 @@ +/* + * Copyright (c) 2023-2025. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary + */ + +import { ApiProvider, ConfigReader } from '@backstage/core-app-api'; +import { FetchApi, configApiRef } from '@backstage/core-plugin-api'; +import { catalogApiRef } from '@backstage/plugin-catalog-react'; +import { catalogApiMock } from '@backstage/plugin-catalog-react/testUtils'; +import { renderInTestApp, TestApiRegistry } from '@backstage/test-utils'; +import { screen } from '@testing-library/react'; +import { useOutlet } from 'react-router-dom'; +import { + catalogImportApiRef, + CatalogImportClient, +} from '@backstage/plugin-catalog-import'; +import { ImportPage } from './ImportPage'; +import React from 'react'; + +jest.mock('react-router-dom', () => ({ + ...jest.requireActual('react-router-dom'), + useOutlet: jest.fn(), +})); + +describe('', () => { + const fetchApi: FetchApi = { + fetch: jest.fn(), + }; + + let apis: TestApiRegistry; + + beforeEach(() => { + apis = TestApiRegistry.from( + [configApiRef, new ConfigReader({ integrations: {} })], + [catalogApiRef, catalogApiMock()], + [ + catalogImportApiRef, + new CatalogImportClient({ + discoveryApi: {} as any, + fetchApi, + scmAuthApi: {} as any, + scmIntegrationsApi: {} as any, + catalogApi: {} as any, + configApi: new ConfigReader({}), + }), + ], + ); + }); + + afterEach(() => jest.resetAllMocks()); + + it('renders without exploding', async () => { + await renderInTestApp( + + + , + ); + + expect( + screen.getByText('Start tracking your component in Backstage'), + ).toBeInTheDocument(); + }); + + it('renders with custom children', async () => { + (useOutlet as jest.Mock).mockReturnValue(
Hello World
); + + await renderInTestApp( + + + , + ); + + expect(screen.getByText('Hello World')).toBeInTheDocument(); + }); +}); diff --git a/packages/app/src/components/home/components/HomeCard/HomeCard.tsx b/packages/app/src/components/home/components/HomeCard/HomeCard.tsx index 7b32c00..9f04d37 100644 --- a/packages/app/src/components/home/components/HomeCard/HomeCard.tsx +++ b/packages/app/src/components/home/components/HomeCard/HomeCard.tsx @@ -85,6 +85,8 @@ export const HomeCard = (props: { cardData: HomeCardProps }) => { ? '/docs' : data.type === HomeCardType.API ? '/api-docs' + : data.type === HomeCardType.Template + ? '/create' : data.type === HomeCardType.ImportFlow ? '/import-flow' : '/catalog?filters[kind]=' + data.type.toLowerCase() @@ -126,12 +128,16 @@ export const HomeCard = (props: { cardData: HomeCardProps }) => { /* eslint-disable */ data.type === HomeCardType.WalkThrough ? element.link || '#' - : data.type === HomeCardType.Template || - data.type === HomeCardType.ImportFlow + : data.type === HomeCardType.Template ? '/create/templates/' + element.namespace + '/' + element.name + : data.type === HomeCardType.ImportFlow + ? '/import-flow/templates/' + + element.namespace + + '/' + + element.name : (data.type === HomeCardType.Document ? '/docs' : '/catalog') + diff --git a/packages/app/src/components/scaffolder/CustomScaffolderComponent.tsx b/packages/app/src/components/scaffolder/CustomScaffolderComponent.tsx new file mode 100644 index 0000000..3d95638 --- /dev/null +++ b/packages/app/src/components/scaffolder/CustomScaffolderComponent.tsx @@ -0,0 +1,74 @@ +/* + * Copyright (c) 2023-2025. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary + */ + +import { configApiRef, useApi } from '@backstage/core-plugin-api'; +import { TemplateEntityV1beta3 } from '@backstage/plugin-scaffolder-common'; +import React from 'react'; +import { ScaffolderPage } from '@backstage/plugin-scaffolder'; + +export interface TemplateGroups { + name: string; + tagFilters: string[]; +} +export const templateGroupsValue = ( + templateGroups: TemplateGroups[] | undefined, +) => { + if (!templateGroups || !Array.isArray(templateGroups)) { + return undefined; + } + for (const templateGroup of templateGroups) { + if ( + !templateGroup.name || + typeof templateGroup.name !== 'string' || + !templateGroup.tagFilters || + !Array.isArray(templateGroup.tagFilters) + ) { + return undefined; + } + for (const tagFilter of templateGroup.tagFilters) { + if (typeof tagFilter !== 'string') { + return undefined; + } + } + } + return templateGroups; +}; + +export const CustomScaffolderComponent = () => { + const config = useApi(configApiRef); + const templateGroups: undefined | TemplateGroups[] = templateGroupsValue( + config.getOptional('templateGroups'), + ); + let groups; + if (templateGroups) { + groups = []; + for (const templateGroup of templateGroups) { + groups.push({ + title: templateGroup.name, + filter: (entity: TemplateEntityV1beta3) => { + for (const tag of templateGroup.tagFilters) { + if (entity.metadata?.tags?.includes(tag)) { + return true; + } + } + return false; + }, + }); + } + } + return ( + + !entity.metadata.tags?.map(v => v.toLowerCase()).includes('import-flow') + } + groups={groups} + headerOptions={{ + pageTitleOverride: 'Develop a new component', + title: 'Develop a new component', + subtitle: + 'Develop new software components using standard templates in your organization', + }} + /> + ); +}; diff --git a/packages/app/src/components/scaffolder/plugin.ts b/packages/app/src/components/scaffolder/plugin.ts new file mode 100644 index 0000000..2cb5efc --- /dev/null +++ b/packages/app/src/components/scaffolder/plugin.ts @@ -0,0 +1,17 @@ +/* + * Copyright (c) 2023-2025. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary + */ + +import { scaffolderPlugin } from '@backstage/plugin-scaffolder'; +import { createRoutableExtension } from '@backstage/core-plugin-api'; + +export const CustomScaffolderPage = scaffolderPlugin.provide( + createRoutableExtension({ + name: 'CustomScaffolderPage', + component: () => + import('./CustomScaffolderComponent.tsx').then( + m => m.CustomScaffolderComponent, + ), + mountPoint: scaffolderPlugin.routes.root, + }), +); diff --git a/packages/backend/package.json b/packages/backend/package.json index 22d4431..a13cf1f 100644 --- a/packages/backend/package.json +++ b/packages/backend/package.json @@ -1,6 +1,6 @@ { "name": "backend", - "version": "1.6.0", + "version": "1.7.0", "main": "dist/index.cjs.js", "types": "src/index.ts", "private": true, @@ -34,7 +34,7 @@ "@backstage/plugin-catalog-backend-module-logs": "^0.1.7", "@backstage/plugin-catalog-backend-module-scaffolder-entity-model": "^0.2.5", "@backstage/plugin-kubernetes-backend": "^0.19.3", - "@backstage/plugin-permission-backend": "^0.5.54", + "@backstage/plugin-permission-backend": "^0.6.0", "@backstage/plugin-permission-backend-module-allow-all-policy": "^0.2.5", "@backstage/plugin-permission-common": "^0.8.4", "@backstage/plugin-permission-node": "^0.8.8", @@ -49,7 +49,8 @@ "@backstage/plugin-search-backend-module-techdocs": "^0.3.6", "@backstage/plugin-search-backend-node": "^1.3.8", "@backstage/plugin-techdocs-backend": "^1.11.6", - "@internal/backstage-plugin-scaffolder-backend-module-import-flow": "^1.6.0", + "@internal/backstage-plugin-scaffolder-backend-module-import-flow": "workspace:^", + "@internal/plugin-scaffolder-backend-module-tibco-git-repositories": "workspace:^", "app": "link:../app", "better-sqlite3": "^9.0.0", "dockerode": "^3.3.1", diff --git a/packages/backend/src/index.ts b/packages/backend/src/index.ts index 583194f..bd9f465 100644 --- a/packages/backend/src/index.ts +++ b/packages/backend/src/index.ts @@ -3,8 +3,6 @@ */ import { createBackend } from '@backstage/backend-defaults'; -import { scaffolderActionsExtensionPoint } from '@backstage/plugin-scaffolder-node/alpha'; -import { createBackendModule } from '@backstage/backend-plugin-api'; import proxy from 'express-http-proxy'; import { promises, existsSync } from 'fs'; import { DevHubConfig } from './config'; @@ -15,10 +13,6 @@ import { join } from 'path'; import DailyRotateFile from 'winston-daily-rotate-file'; import 'global-agent/bootstrap'; import { setGlobalDispatcher, EnvHttpProxyAgent } from 'undici'; -import { - ExtractParametersAction, - createYamlAction, -} from '@internal/backstage-plugin-scaffolder-backend-module-import-flow'; import { coreServices, createServiceFactory, @@ -146,26 +140,16 @@ backend.add( backend.add(import('@backstage/plugin-app-backend')); backend.add(import('@backstage/plugin-proxy-backend')); + +backend.add( + import('@internal/backstage-plugin-scaffolder-backend-module-import-flow'), +); +backend.add( + import('@internal/plugin-scaffolder-backend-module-tibco-git-repositories'), +); backend.add(import('@backstage/plugin-scaffolder-backend')); backend.add(import('@backstage/plugin-scaffolder-backend-module-github')); backend.add(import('@backstage/plugin-scaffolder-backend-module-gitlab')); - -const scaffolderModuleCustomExtensions = createBackendModule({ - pluginId: 'scaffolder', // name of the plugin that the module is targeting - moduleId: 'custom-extensions', - register(env) { - env.registerInit({ - deps: { - scaffolder: scaffolderActionsExtensionPoint, - }, - async init({ scaffolder }) { - scaffolder.addActions(new (ExtractParametersAction as any)()); - scaffolder.addActions(new (createYamlAction as any)()); - }, - }); - }, -}); -backend.add(scaffolderModuleCustomExtensions); backend.add(import('@backstage/plugin-techdocs-backend')); // auth plugin diff --git a/plugins/import-flow/package.json b/plugins/import-flow/package.json index d03227d..0e34d7b 100644 --- a/plugins/import-flow/package.json +++ b/plugins/import-flow/package.json @@ -1,6 +1,6 @@ { "name": "@internal/backstage-plugin-import-flow", - "version": "1.6.0", + "version": "1.7.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", diff --git a/plugins/import-flow/src/components/TemplateListPage/TemplateListPage.tsx b/plugins/import-flow/src/components/TemplateListPage/TemplateListPage.tsx index e714c1a..45c931f 100644 --- a/plugins/import-flow/src/components/TemplateListPage/TemplateListPage.tsx +++ b/plugins/import-flow/src/components/TemplateListPage/TemplateListPage.tsx @@ -65,7 +65,7 @@ const createGroupsWithOther = ( ): TemplateGroupFilter[] => [ ...groups, { - title: 'Other Templates', + title: 'Other Import Flows', filter: e => ![...groups].some(({ filter }) => filter(e)), }, ]; @@ -152,7 +152,7 @@ export const TemplateListPage = (props: TemplateListPageProps) => { - + { + it('should export plugin', () => { + expect(ImportFlowPlugin).toBeDefined(); + }); +}); diff --git a/plugins/import-flow/src/plugin.ts b/plugins/import-flow/src/plugin.ts index 05f5d8b..276a7c5 100644 --- a/plugins/import-flow/src/plugin.ts +++ b/plugins/import-flow/src/plugin.ts @@ -2,9 +2,19 @@ * Copyright (c) 2023-2025. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary */ -import { createRoutableExtension } from '@backstage/core-plugin-api'; +import { + createPlugin, + createRoutableExtension, +} from '@backstage/core-plugin-api'; import { scaffolderPlugin } from '@backstage/plugin-scaffolder'; +export const ImportFlowPlugin = createPlugin({ + id: 'import-flow-plugin', + routes: { + root: scaffolderPlugin.routes.root, + }, +}); + export const ImportFlowPage = scaffolderPlugin.provide( createRoutableExtension({ name: 'ImportFlowPage', diff --git a/plugins/scaffolder-backend-module-import-flow/package.json b/plugins/scaffolder-backend-module-import-flow/package.json index 2880bb9..8505866 100644 --- a/plugins/scaffolder-backend-module-import-flow/package.json +++ b/plugins/scaffolder-backend-module-import-flow/package.json @@ -1,7 +1,7 @@ { "name": "@internal/backstage-plugin-scaffolder-backend-module-import-flow", "description": "The import-flow module for @backstage/plugin-scaffolder-backend", - "version": "1.6.0", + "version": "1.7.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -36,6 +36,7 @@ "glob": "^10.4.2", "js-yaml": "^4.1.0", "jsonpath": "^1.1.1", + "regex-parser": "^2.3.1", "winston": "^3.13.0", "xpath": "^0.0.34", "yaml": "^2.7.0", diff --git a/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/create-yaml.ts b/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/create-yaml.ts index 39dad03..1f254d8 100644 --- a/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/create-yaml.ts +++ b/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/create-yaml.ts @@ -15,7 +15,7 @@ export function createYamlAction() { sourcePath?: string; failOnError?: boolean; outputFile?: string; - outputStructure: Entity; + outputStructure: Entity | Entity[]; }>({ id: 'tibco:create-yaml', description: @@ -41,9 +41,12 @@ export function createYamlAction() { .describe( 'The name of the output yaml file, optional, default is catalog-info.yaml', ), - outputStructure: z.record(z.union([z.string(), z.number(), z.any()]), { - description: 'Output structure', - }), + outputStructure: z + .union([ + z.union([z.string(), z.number(), z.any()]), + z.array(z.union([z.string(), z.number(), z.any()])), + ]) + .describe('Output structure'), }), }, async handler(ctx) { @@ -62,12 +65,20 @@ export function createYamlAction() { ); ctx.logger.info(`Final workspace path: ${relativeWorkspacePath}`); try { - const yamlData = dump(ctx.input.outputStructure); + const yamlData = []; + if (Array.isArray(ctx.input.outputStructure)) { + for (const str of ctx.input.outputStructure) { + yamlData.push(dump(str)); + } + } else { + yamlData.push(dump(ctx.input.outputStructure)); + } const filePath = resolveSafeChildPath( relativeWorkspacePath, outFileName, ); - await promises.writeFile(filePath, yamlData, 'utf8'); + const outYamlData = yamlData.join('\n---\n'); + await promises.writeFile(filePath, outYamlData, 'utf8'); ctx.logger.info(`Created Yaml file with name: ${outFileName}`); } catch (err) { ctx.logger.error(`Error while creating Yaml file`); diff --git a/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/custom-filters.ts b/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/custom-filters.ts new file mode 100644 index 0000000..8cf9fc2 --- /dev/null +++ b/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/custom-filters.ts @@ -0,0 +1,18 @@ +/* + * Copyright (c) 2023-2025. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary + */ + +import { JsonValue } from '@backstage/types'; + +function decodeBase64(...args: JsonValue[]): string { + return Buffer.from(args.join(''), 'base64').toString(); +} + +function encodeBase64(...args: JsonValue[]): string { + return Buffer.from(args.join('')).toString('base64'); +} + +export const customFilters = { + decodeBase64, + encodeBase64, +}; diff --git a/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/extract-parameters.ts b/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/extract-parameters.ts index 0a0d6e2..ce630bc 100644 --- a/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/extract-parameters.ts +++ b/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/extract-parameters.ts @@ -14,6 +14,7 @@ import { glob } from 'glob'; import { select } from 'xpath'; import { DOMParser } from '@xmldom/xmldom'; import { examples } from './extract-parameters.examples'; +import RegexParser from 'regex-parser'; type JsonValue = JsonObject | JsonArray | JsonPrimitive; @@ -39,17 +40,21 @@ type TibcoImportJson = { filePath: string; jsonPath: string; }; +type RegexStatement = { + regexPattern: string; + regexFlags?: string; +}; type TibcoImportFile = { type: TibcoImportType.file; filePath: string; - regex: string; + regex: string | RegexStatement; }; type TibcoImportWorkspace = { type: TibcoImportType.workspace; directoryPath?: string; glob?: string; onlyName?: boolean; - regex: string; + regex: string | RegexStatement; }; type TibcoImport = | TibcoImportXmlXpath @@ -94,7 +99,13 @@ const importSchemaFile = z .object({ type: z.literal(TibcoImportType.file), filePath: z.string(), - regex: z.string(), + regex: z.union([ + z.string(), + z.object({ + regexPattern: z.string(), + regexFlags: z.string().optional(), + }), + ]), }) .required(); @@ -103,7 +114,13 @@ const importSchemaWorkspace = z.object({ directoryPath: z.string().optional(), glob: z.string().optional(), onlyName: z.boolean().optional(), - regex: z.string(), + regex: z.union([ + z.string(), + z.object({ + regexPattern: z.string(), + regexFlags: z.string().optional(), + }), + ]), }); async function ExtractParameter( @@ -187,7 +204,16 @@ async function ExtractParameter( ); logger.info(`Workspace file path: ${filePath}`); const fileContent = await promises.readFile(filePath, 'utf8'); - out[key] = fileContent.match(param.regex) || []; + if (typeof param.regex === 'object' && param.regex.regexPattern) { + out[key] = + fileContent.match( + new RegExp(param.regex.regexPattern, param.regex.regexFlags), + ) || []; + } else if (typeof param.regex === 'string') { + out[key] = fileContent.match(RegexParser(param.regex)) || []; + } else { + out[key] = []; + } logger.info(`Successfully Extracted parameter: ${key}`); break; } @@ -211,7 +237,15 @@ async function ExtractParameter( } const workspaceOut: string[] = []; for (const p of allPaths) { - if (p.match(param.regex)) { + let match = false; + if (typeof param.regex === 'object' && param.regex.regexPattern) { + match = p.match( + new RegExp(param.regex.regexPattern, param.regex.regexFlags), + ); + } else if (typeof param.regex === 'string') { + match = p.match(RegexParser(param.regex)); + } + if (match) { workspaceOut.push(p); } } diff --git a/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/index.ts b/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/index.ts index cbeaeb7..62d9d71 100644 --- a/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/index.ts +++ b/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/index.ts @@ -4,3 +4,4 @@ export { ExtractParametersAction } from './extract-parameters'; export { createYamlAction } from './create-yaml'; +export { customFilters } from './custom-filters.ts'; diff --git a/plugins/scaffolder-backend-module-import-flow/src/index.ts b/plugins/scaffolder-backend-module-import-flow/src/index.ts index 5bebdda..dcd2f04 100644 --- a/plugins/scaffolder-backend-module-import-flow/src/index.ts +++ b/plugins/scaffolder-backend-module-import-flow/src/index.ts @@ -8,4 +8,5 @@ * * @packageDocumentation */ -export * from './actions'; + +export { scaffolderModule as default } from './module'; diff --git a/plugins/scaffolder-backend-module-import-flow/src/module.ts b/plugins/scaffolder-backend-module-import-flow/src/module.ts new file mode 100644 index 0000000..db9e9db --- /dev/null +++ b/plugins/scaffolder-backend-module-import-flow/src/module.ts @@ -0,0 +1,37 @@ +/* + * Copyright (c) 2023-2025. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary + */ + +import { createBackendModule } from '@backstage/backend-plugin-api'; +import { + scaffolderActionsExtensionPoint, + scaffolderTemplatingExtensionPoint, +} from '@backstage/plugin-scaffolder-node/alpha'; +import { + createYamlAction, + customFilters, + ExtractParametersAction, +} from './actions'; + +/** + * A backend module that registers the action into the scaffolder + */ +export const scaffolderModule = createBackendModule({ + moduleId: 'tibco-import-flow', + pluginId: 'scaffolder', + register({ registerInit }) { + registerInit({ + deps: { + scaffolderActions: scaffolderActionsExtensionPoint, + scaffolder: scaffolderTemplatingExtensionPoint, + }, + async init({ scaffolderActions, scaffolder }) { + scaffolderActions.addActions( + createYamlAction(), + ExtractParametersAction(), + ); + scaffolder.addTemplateFilters(customFilters); + }, + }); + }, +}); diff --git a/plugins/scaffolder-backend-module-tibco-git-repositories/.eslintrc.js b/plugins/scaffolder-backend-module-tibco-git-repositories/.eslintrc.js new file mode 100644 index 0000000..9a15a20 --- /dev/null +++ b/plugins/scaffolder-backend-module-tibco-git-repositories/.eslintrc.js @@ -0,0 +1,5 @@ +/* + * Copyright (c) 2023-2025. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary + */ + +module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); diff --git a/plugins/scaffolder-backend-module-tibco-git-repositories/README.md b/plugins/scaffolder-backend-module-tibco-git-repositories/README.md new file mode 100644 index 0000000..04850a9 --- /dev/null +++ b/plugins/scaffolder-backend-module-tibco-git-repositories/README.md @@ -0,0 +1,5 @@ +# @internal/plugin-scaffolder-backend-module-tibco-git-repositories + +The tibco-git-repositories module for [@backstage/plugin-scaffolder-backend](https://www.npmjs.com/package/@backstage/plugin-scaffolder-backend). + +_This plugin was created through the Backstage CLI_ diff --git a/plugins/scaffolder-backend-module-tibco-git-repositories/package.json b/plugins/scaffolder-backend-module-tibco-git-repositories/package.json new file mode 100644 index 0000000..5daf107 --- /dev/null +++ b/plugins/scaffolder-backend-module-tibco-git-repositories/package.json @@ -0,0 +1,40 @@ +{ + "name": "@internal/plugin-scaffolder-backend-module-tibco-git-repositories", + "version": "1.7.0", + "license": "Apache-2.0", + "private": true, + "description": "The tibco-git-repositories module for @backstage/plugin-scaffolder-backend", + "main": "src/index.ts", + "types": "src/index.ts", + "publishConfig": { + "access": "public", + "main": "dist/index.cjs.js", + "types": "dist/index.d.ts" + }, + "backstage": { + "role": "backend-plugin-module" + }, + "scripts": { + "start": "backstage-cli package start", + "build": "backstage-cli package build", + "lint": "backstage-cli package lint", + "test": "backstage-cli package test", + "clean": "backstage-cli package clean", + "prepack": "backstage-cli package prepack", + "postpack": "backstage-cli package postpack" + }, + "dependencies": { + "@backstage/backend-plugin-api": "^1.2.0", + "@backstage/integration": "^1.16.2", + "@backstage/plugin-scaffolder-node": "^0.7.0", + "simple-git": "^3.27.0", + "zod": "^3.24.2" + }, + "devDependencies": { + "@backstage/cli": "^0.30.0", + "@backstage/plugin-scaffolder-node-test-utils": "^0.1.19" + }, + "files": [ + "dist" + ] +} diff --git a/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-clone.ts b/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-clone.ts new file mode 100644 index 0000000..2c50832 --- /dev/null +++ b/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-clone.ts @@ -0,0 +1,107 @@ +/* + * Copyright (c) 2023-2025. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary + */ + +import { createTemplateAction } from '@backstage/plugin-scaffolder-node'; +import { z } from 'zod'; +import { simpleGit } from 'simple-git'; +import { + resolveSafeChildPath, + RootConfigService, +} from '@backstage/backend-plugin-api'; +import { existsSync, mkdirSync } from 'fs'; +import { + DefaultGithubCredentialsProvider, + ScmIntegrations, +} from '@backstage/integration'; + +export function gitCloneAction(config: RootConfigService) { + return createTemplateAction<{ + sourcePath?: string; + failOnError?: boolean; + branch?: string; + repoUrl: string; + token?: string; + }>({ + id: 'tibco:git:clone', + schema: { + input: z.object({ + sourcePath: z + .string() + .optional() + .describe( + 'Source path relative to workspace, optional, path within the workspace that will be used as the repository root', + ), + failOnError: z + .boolean() + .optional() + .describe( + 'Boolean flag to stop the task when there is an error, optional, default is false, when true task execution will be stopped in this step when there is an error', + ), + branch: z + .string() + .optional() + .describe('The name of the branch to clone'), + repoUrl: z.string().describe('The HTTPS repository web URL to clone'), + token: z.string().optional().describe('Authentication token'), + }), + }, + async handler(ctx) { + try { + ctx.logger.info( + `Source path relative to workspace: ${ctx.input.sourcePath || ''}`, + ); + ctx.logger.info( + `Fail on error: ${ctx.input.failOnError ? 'True' : 'False'}`, + ); + ctx.logger.info(`Branch: ${ctx.input.branch || ''}`); + ctx.logger.info(`repoUrl: ${ctx.input.repoUrl}`); + + const { repoUrl, token, branch } = ctx.input; + let authToken: string | undefined = token; + if (!token) { + const integrations = ScmIntegrations.fromConfig(config); + const provider = + DefaultGithubCredentialsProvider.fromIntegrations(integrations); + const credentials = await provider.getCredentials({ url: repoUrl }); + if (credentials?.token) { + authToken = credentials.token; + } + } + if (!authToken) { + throw new Error( + `No token credentials provided for git repository ${repoUrl}`, + ); + } + const repoUrlObj = new URL(repoUrl); + if (repoUrlObj.protocol !== 'https:') { + throw new Error('Not a valid HTTPS repository web URL'); + } + const relativeWorkspacePath = resolveSafeChildPath( + ctx.workspacePath, + ctx.input.sourcePath || '', + ); + if (!existsSync(relativeWorkspacePath)) { + mkdirSync(relativeWorkspacePath, { recursive: true }); + } + ctx.logger.info(`Final workspace path: ${relativeWorkspacePath}`); + const git = simpleGit(); + repoUrlObj.username = authToken; + const cloneUrl = repoUrlObj.toString(); + const options = ['--single-branch']; + if (branch) { + options.push('--branch'); + options.push(branch); + } + await git.clone(cloneUrl, relativeWorkspacePath, options); + ctx.logger.info(`Finished cloning ${repoUrl}`); + } catch (err) { + ctx.logger.error(`Error while cloning the git repository`); + ctx.logger.error(err); + if (ctx.input.failOnError) { + throw err; + } + } + }, + }); +} diff --git a/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-push.ts b/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-push.ts new file mode 100644 index 0000000..a9a1905 --- /dev/null +++ b/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-push.ts @@ -0,0 +1,131 @@ +/* + * Copyright (c) 2023-2025. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary + */ + +import { createTemplateAction } from '@backstage/plugin-scaffolder-node'; +import { z } from 'zod'; +import { simpleGit } from 'simple-git'; +import { + resolveSafeChildPath, + RootConfigService, +} from '@backstage/backend-plugin-api'; +import { existsSync } from 'fs'; + +export function gitPushAction(config: RootConfigService) { + return createTemplateAction<{ + sourcePath?: string; + failOnError?: boolean; + commitMessage?: string; + gitAuthorName?: string; + gitAuthorEmail?: string; + branch?: string; + }>({ + id: 'tibco:git:push', + schema: { + input: z.object({ + sourcePath: z + .string() + .optional() + .describe( + 'Source path relative to workspace, optional, path within the workspace that will be used as the repository root', + ), + failOnError: z + .boolean() + .optional() + .describe( + 'Boolean flag to stop the task when there is an error, optional, default is false, when true task execution will be stopped in this step when there is an error', + ), + commitMessage: z.string().optional().describe('Git commit message'), + gitAuthorName: z.string().optional().describe('Default author name'), + gitAuthorEmail: z.string().optional().describe('Default author email'), + branch: z + .string() + .optional() + .describe('The name of the branch to push'), + }), + }, + async handler(ctx) { + try { + ctx.logger.info( + `Source path relative to workspace: ${ctx.input.sourcePath || ''}`, + ); + ctx.logger.info( + `Fail on error: ${ctx.input.failOnError ? 'True' : 'False'}`, + ); + ctx.logger.info(`Commit message: ${ctx.input.commitMessage || ''}`); + ctx.logger.info(`Git author name: ${ctx.input.gitAuthorName || ''}`); + ctx.logger.info(`Git author email: ${ctx.input.gitAuthorEmail || ''}`); + ctx.logger.info(`Branch: ${ctx.input.branch || ''}`); + const relativeWorkspacePath = resolveSafeChildPath( + ctx.workspacePath, + ctx.input.sourcePath || '', + ); + if (!existsSync(relativeWorkspacePath)) { + throw new Error('Source path relative to workspace do not exist'); + } + ctx.logger.info(`Final workspace path: ${relativeWorkspacePath}`); + const git = simpleGit(); + await git.cwd(relativeWorkspacePath); + let pushToBranch = false; + if (ctx.input.branch) { + const currentBranch = await git.branchLocal(); + if (currentBranch?.current !== ctx.input.branch) { + pushToBranch = true; + let branchExist = false; + try { + await git.fetch( + 'origin', + `${ctx.input.branch}:${ctx.input.branch}`, + ); + branchExist = true; + } catch (err) { + ctx.logger.info( + `Branch provided as ${ctx.input.branch} to push does not exist in remote, creating and pushing`, + ); + // ignore this, means branch does not exist in remote + } + if (branchExist) { + await git.checkout(ctx.input.branch); + } else { + await git.checkoutBranch( + ctx.input.branch, + currentBranch?.current, + ); + } + } + } + await git.add('.'); + const scafFolderConfig = config.getOptionalConfig( + 'scaffolder.defaultAuthor', + ); + git.addConfig( + 'user.email', + ctx.input.gitAuthorEmail ?? + scafFolderConfig?.getString('email') ?? + 'test@test.com', + ); + git.addConfig( + 'user.name', + ctx.input.gitAuthorName ?? + scafFolderConfig?.getString('name') ?? + 'TIBCO® Developer Hub', + ); + await git.commit( + ctx.input.commitMessage || 'Committed by TIBCO Developer Hub', + ); + if (pushToBranch) { + await git.push('origin', ctx.input.branch); + } else { + await git.push(); + } + ctx.logger.info('Finished push to git repository'); + } catch (err) { + ctx.logger.error('Error while pushing to the git repository'); + ctx.logger.error(err); + if (ctx.input.failOnError) { + throw err; + } + } + }, + }); +} diff --git a/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/index.ts b/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/index.ts new file mode 100644 index 0000000..647a603 --- /dev/null +++ b/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/index.ts @@ -0,0 +1,6 @@ +/* + * Copyright (c) 2023-2025. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary + */ + +export { gitPushAction } from './git-push'; +export { gitCloneAction } from './git-clone'; diff --git a/plugins/scaffolder-backend-module-tibco-git-repositories/src/index.ts b/plugins/scaffolder-backend-module-tibco-git-repositories/src/index.ts new file mode 100644 index 0000000..07dc6ac --- /dev/null +++ b/plugins/scaffolder-backend-module-tibco-git-repositories/src/index.ts @@ -0,0 +1,12 @@ +/* + * Copyright (c) 2023-2025. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary + */ + +/***/ +/** + * The tibco-git-repositories module for @backstage/plugin-scaffolder-backend. + * + * @packageDocumentation + */ + +export { scaffolderModule as default } from './module'; diff --git a/plugins/scaffolder-backend-module-tibco-git-repositories/src/module.ts b/plugins/scaffolder-backend-module-tibco-git-repositories/src/module.ts new file mode 100644 index 0000000..2fa44a6 --- /dev/null +++ b/plugins/scaffolder-backend-module-tibco-git-repositories/src/module.ts @@ -0,0 +1,33 @@ +/* + * Copyright (c) 2023-2025. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary + */ + +import { + coreServices, + createBackendModule, +} from '@backstage/backend-plugin-api'; +import { scaffolderActionsExtensionPoint } from '@backstage/plugin-scaffolder-node/alpha'; +import { gitCloneAction } from './actions/tibco-git'; +import { gitPushAction } from './actions/tibco-git'; + +/** + * A backend module that registers the action into the scaffolder + */ +export const scaffolderModule = createBackendModule({ + moduleId: 'tibco-git-repos', + pluginId: 'scaffolder', + register({ registerInit }) { + registerInit({ + deps: { + scaffolderActions: scaffolderActionsExtensionPoint, + config: coreServices.rootConfig, + }, + async init({ config, scaffolderActions }) { + scaffolderActions.addActions( + gitCloneAction(config), + gitPushAction(config), + ); + }, + }); + }, +}); diff --git a/plugins/scaffolder-backend-module-trigger-jenkins-job/package.json b/plugins/scaffolder-backend-module-trigger-jenkins-job/package.json index f386a23..199981f 100644 --- a/plugins/scaffolder-backend-module-trigger-jenkins-job/package.json +++ b/plugins/scaffolder-backend-module-trigger-jenkins-job/package.json @@ -1,6 +1,6 @@ { "name": "@internal/plugin-scaffolder-backend-module-trigger-jenkins-job", - "version": "1.5.0", + "version": "1.7.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", diff --git a/plugins/tibco-platform-plugin/package.json b/plugins/tibco-platform-plugin/package.json index c69b103..d7a3bcc 100644 --- a/plugins/tibco-platform-plugin/package.json +++ b/plugins/tibco-platform-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@internal/plugin-tibco-platform-plugin", - "version": "1.6.0", + "version": "1.7.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -40,6 +40,8 @@ "@backstage/cli": "^0.30.0", "@backstage/core-app-api": "^1.15.5", "@backstage/dev-utils": "^1.1.7", + "@backstage/integration-react": "^1.2.6", + "@backstage/plugin-permission-react": "^0.4.33", "@backstage/test-utils": "^1.7.5", "@testing-library/jest-dom": "^6.0.0", "@testing-library/react": "^14.0.0", diff --git a/plugins/tibco-platform-plugin/src/components/ApplicationDeploymentsCard/ApplicationDeploymentsCard.test.tsx b/plugins/tibco-platform-plugin/src/components/ApplicationDeploymentsCard/ApplicationDeploymentsCard.test.tsx new file mode 100644 index 0000000..e2ea822 --- /dev/null +++ b/plugins/tibco-platform-plugin/src/components/ApplicationDeploymentsCard/ApplicationDeploymentsCard.test.tsx @@ -0,0 +1,123 @@ +/* + * Copyright (c) 2023-2025. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary + */ + +import { + EntityProvider, + catalogApiRef, + entityRouteRef, +} from '@backstage/plugin-catalog-react'; +import { catalogApiMock } from '@backstage/plugin-catalog-react/testUtils'; +import { + ScmIntegrationsApi, + scmIntegrationsApiRef, +} from '@backstage/integration-react'; +import { TestApiProvider, renderInTestApp } from '@backstage/test-utils'; +import { ConfigReader } from '@backstage/core-app-api'; +import { screen } from '@testing-library/react'; +import { permissionApiRef } from '@backstage/plugin-permission-react'; +import React from 'react'; +import { ApplicationDeploymentsCard } from './ApplicationDeploymentsCard.tsx'; +import { configApiRef } from '@backstage/core-plugin-api'; + +describe('', () => { + const catalogApi = catalogApiMock.mock(); + + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('renders info', async () => { + const entity = { + apiVersion: 'v1', + kind: 'Component', + metadata: { + name: 'software', + description: 'This is the description', + }, + spec: { + owner: 'guest', + type: 'service', + lifecycle: 'production', + }, + tibcoPlatformApps: [ + { + appType: 'BWCE', + appName: 'BWCE-app', + dataPlaneName: 'DP-dev', + dpId: 'demodpid1', + capabilityInstanceId: 'democapabilityInstanceid1', + appId: 'demoappid1', + controlPlaneName: 'cp1 name', + controlPlaneUrl: 'https://google.com', + }, + { + appType: 'BWCE', + appName: 'BWCE-app3', + dataPlaneName: 'DP-prod', + dpId: 'demodpid3', + capabilityInstanceId: 'democapabilityInstanceid3', + appId: 'demoappid3', + controlPlaneId: 'cp255', + }, + { + appType: 'BWCE', + appName: 'BWCE-app4', + dataPlaneName: 'DP-prody', + dpId: 'demodpid3', + capabilityInstanceId: 'democapabilityInstanceid3', + appId: 'demoappid3', + controlPlaneId: 'cp2557', + }, + { + appType: 'BWCE', + appName: 'BWCE-app1', + dataPlaneName: 'DP-prod', + dpId: 'demodpid2', + capabilityInstanceId: 'democapabilityInstanceid2', + appId: 'demoappid2', + controlPlaneId: 'cp1', + }, + ], + }; + + await renderInTestApp( + + + + + , + { + mountedRoutes: { + '/catalog/:namespace/:kind/:name': entityRouteRef, + }, + }, + ); + + expect(screen.getByText('BWCE-app')).toBeInTheDocument(); + expect(screen.getByText('DP-dev')).toBeInTheDocument(); + }); +}); diff --git a/yarn.lock b/yarn.lock index 7cf039a..659afd5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -33,7 +33,7 @@ __metadata: languageName: node linkType: hard -"@apidevtools/json-schema-ref-parser@npm:^11.7.2": +"@apidevtools/json-schema-ref-parser@npm:^11.9.3": version: 11.9.3 resolution: "@apidevtools/json-schema-ref-parser@npm:11.9.3" dependencies: @@ -75,16 +75,16 @@ __metadata: languageName: node linkType: hard -"@asamuzakjp/css-color@npm:^3.1.1": - version: 3.1.1 - resolution: "@asamuzakjp/css-color@npm:3.1.1" +"@asamuzakjp/css-color@npm:^3.1.2": + version: 3.1.5 + resolution: "@asamuzakjp/css-color@npm:3.1.5" dependencies: - "@csstools/css-calc": "npm:^2.1.2" - "@csstools/css-color-parser": "npm:^3.0.8" + "@csstools/css-calc": "npm:^2.1.3" + "@csstools/css-color-parser": "npm:^3.0.9" "@csstools/css-parser-algorithms": "npm:^3.0.4" "@csstools/css-tokenizer": "npm:^3.0.3" lru-cache: "npm:^10.4.3" - checksum: 10c0/4abb010fd29de8acae8571eba738468c22cb45a1f77647df3c59a80f1c83d83d728cae3ebbf99e5c73f2517761abaaffbe5e4176fc46b5f9bf60f1478463b51e + checksum: 10c0/040ede3b4fea5a40e619ffd43400c8e1f21a9fb387ca4bffcf51931a447477a462209e4929b95265c5346b0c5226911c61330025da17cb6ba98ed25736e823b9 languageName: node linkType: hard @@ -295,43 +295,43 @@ __metadata: linkType: hard "@aws-sdk/client-codecommit@npm:^3.350.0": - version: 3.777.0 - resolution: "@aws-sdk/client-codecommit@npm:3.777.0" + version: 3.799.0 + resolution: "@aws-sdk/client-codecommit@npm:3.799.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.775.0" - "@aws-sdk/credential-provider-node": "npm:3.777.0" + "@aws-sdk/core": "npm:3.799.0" + "@aws-sdk/credential-provider-node": "npm:3.799.0" "@aws-sdk/middleware-host-header": "npm:3.775.0" "@aws-sdk/middleware-logger": "npm:3.775.0" "@aws-sdk/middleware-recursion-detection": "npm:3.775.0" - "@aws-sdk/middleware-user-agent": "npm:3.775.0" + "@aws-sdk/middleware-user-agent": "npm:3.799.0" "@aws-sdk/region-config-resolver": "npm:3.775.0" "@aws-sdk/types": "npm:3.775.0" - "@aws-sdk/util-endpoints": "npm:3.775.0" + "@aws-sdk/util-endpoints": "npm:3.787.0" "@aws-sdk/util-user-agent-browser": "npm:3.775.0" - "@aws-sdk/util-user-agent-node": "npm:3.775.0" + "@aws-sdk/util-user-agent-node": "npm:3.799.0" "@smithy/config-resolver": "npm:^4.1.0" - "@smithy/core": "npm:^3.2.0" + "@smithy/core": "npm:^3.3.0" "@smithy/fetch-http-handler": "npm:^5.0.2" "@smithy/hash-node": "npm:^4.0.2" "@smithy/invalid-dependency": "npm:^4.0.2" "@smithy/middleware-content-length": "npm:^4.0.2" - "@smithy/middleware-endpoint": "npm:^4.1.0" - "@smithy/middleware-retry": "npm:^4.1.0" + "@smithy/middleware-endpoint": "npm:^4.1.1" + "@smithy/middleware-retry": "npm:^4.1.1" "@smithy/middleware-serde": "npm:^4.0.3" "@smithy/middleware-stack": "npm:^4.0.2" "@smithy/node-config-provider": "npm:^4.0.2" "@smithy/node-http-handler": "npm:^4.0.4" "@smithy/protocol-http": "npm:^5.1.0" - "@smithy/smithy-client": "npm:^4.2.0" + "@smithy/smithy-client": "npm:^4.2.1" "@smithy/types": "npm:^4.2.0" "@smithy/url-parser": "npm:^4.0.2" "@smithy/util-base64": "npm:^4.0.0" "@smithy/util-body-length-browser": "npm:^4.0.0" "@smithy/util-body-length-node": "npm:^4.0.0" - "@smithy/util-defaults-mode-browser": "npm:^4.0.8" - "@smithy/util-defaults-mode-node": "npm:^4.0.8" + "@smithy/util-defaults-mode-browser": "npm:^4.0.9" + "@smithy/util-defaults-mode-node": "npm:^4.0.9" "@smithy/util-endpoints": "npm:^3.0.2" "@smithy/util-middleware": "npm:^4.0.2" "@smithy/util-retry": "npm:^4.0.2" @@ -339,85 +339,85 @@ __metadata: "@types/uuid": "npm:^9.0.1" tslib: "npm:^2.6.2" uuid: "npm:^9.0.1" - checksum: 10c0/d80dd0c2e4ffcc70186ca86b612c518073d2c1703825a02474a0b07b016f33dcda88ea90baed6c01673edb0fd2f9cb8933d14da24797738060092e0345bfb578 + checksum: 10c0/7fe5c57fb14c8aaa67231143cc614ff168656d4fb68cc3f53765715de3882e483280e7c207274af2c0a8534132a6aeed736f7a6d5468ee8104d8b8e53df4f9cd languageName: node linkType: hard -"@aws-sdk/client-cognito-identity@npm:3.777.0": - version: 3.777.0 - resolution: "@aws-sdk/client-cognito-identity@npm:3.777.0" +"@aws-sdk/client-cognito-identity@npm:3.799.0": + version: 3.799.0 + resolution: "@aws-sdk/client-cognito-identity@npm:3.799.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.775.0" - "@aws-sdk/credential-provider-node": "npm:3.777.0" + "@aws-sdk/core": "npm:3.799.0" + "@aws-sdk/credential-provider-node": "npm:3.799.0" "@aws-sdk/middleware-host-header": "npm:3.775.0" "@aws-sdk/middleware-logger": "npm:3.775.0" "@aws-sdk/middleware-recursion-detection": "npm:3.775.0" - "@aws-sdk/middleware-user-agent": "npm:3.775.0" + "@aws-sdk/middleware-user-agent": "npm:3.799.0" "@aws-sdk/region-config-resolver": "npm:3.775.0" "@aws-sdk/types": "npm:3.775.0" - "@aws-sdk/util-endpoints": "npm:3.775.0" + "@aws-sdk/util-endpoints": "npm:3.787.0" "@aws-sdk/util-user-agent-browser": "npm:3.775.0" - "@aws-sdk/util-user-agent-node": "npm:3.775.0" + "@aws-sdk/util-user-agent-node": "npm:3.799.0" "@smithy/config-resolver": "npm:^4.1.0" - "@smithy/core": "npm:^3.2.0" + "@smithy/core": "npm:^3.3.0" "@smithy/fetch-http-handler": "npm:^5.0.2" "@smithy/hash-node": "npm:^4.0.2" "@smithy/invalid-dependency": "npm:^4.0.2" "@smithy/middleware-content-length": "npm:^4.0.2" - "@smithy/middleware-endpoint": "npm:^4.1.0" - "@smithy/middleware-retry": "npm:^4.1.0" + "@smithy/middleware-endpoint": "npm:^4.1.1" + "@smithy/middleware-retry": "npm:^4.1.1" "@smithy/middleware-serde": "npm:^4.0.3" "@smithy/middleware-stack": "npm:^4.0.2" "@smithy/node-config-provider": "npm:^4.0.2" "@smithy/node-http-handler": "npm:^4.0.4" "@smithy/protocol-http": "npm:^5.1.0" - "@smithy/smithy-client": "npm:^4.2.0" + "@smithy/smithy-client": "npm:^4.2.1" "@smithy/types": "npm:^4.2.0" "@smithy/url-parser": "npm:^4.0.2" "@smithy/util-base64": "npm:^4.0.0" "@smithy/util-body-length-browser": "npm:^4.0.0" "@smithy/util-body-length-node": "npm:^4.0.0" - "@smithy/util-defaults-mode-browser": "npm:^4.0.8" - "@smithy/util-defaults-mode-node": "npm:^4.0.8" + "@smithy/util-defaults-mode-browser": "npm:^4.0.9" + "@smithy/util-defaults-mode-node": "npm:^4.0.9" "@smithy/util-endpoints": "npm:^3.0.2" "@smithy/util-middleware": "npm:^4.0.2" "@smithy/util-retry": "npm:^4.0.2" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/0ff84fc2f7c206c977110d9c1bcb73854dd95a7855eb12b5dc8ffa9f0da2f7cd3b269970f4f9c55e5989a32c833427eea1931ee7537ea2ad1603d58cb3db3a75 + checksum: 10c0/bebd172217c4eec1424ec82fbc9ad69453fb523cb6641059933a91d9c0d62083a934feb514a053770f66ab0360b2c89a6cabccdbd2dea6d2b688171de3785570 languageName: node linkType: hard "@aws-sdk/client-s3@npm:^3.350.0": - version: 3.779.0 - resolution: "@aws-sdk/client-s3@npm:3.779.0" + version: 3.799.0 + resolution: "@aws-sdk/client-s3@npm:3.799.0" dependencies: "@aws-crypto/sha1-browser": "npm:5.2.0" "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.775.0" - "@aws-sdk/credential-provider-node": "npm:3.777.0" + "@aws-sdk/core": "npm:3.799.0" + "@aws-sdk/credential-provider-node": "npm:3.799.0" "@aws-sdk/middleware-bucket-endpoint": "npm:3.775.0" "@aws-sdk/middleware-expect-continue": "npm:3.775.0" - "@aws-sdk/middleware-flexible-checksums": "npm:3.775.0" + "@aws-sdk/middleware-flexible-checksums": "npm:3.799.0" "@aws-sdk/middleware-host-header": "npm:3.775.0" "@aws-sdk/middleware-location-constraint": "npm:3.775.0" "@aws-sdk/middleware-logger": "npm:3.775.0" "@aws-sdk/middleware-recursion-detection": "npm:3.775.0" - "@aws-sdk/middleware-sdk-s3": "npm:3.775.0" + "@aws-sdk/middleware-sdk-s3": "npm:3.799.0" "@aws-sdk/middleware-ssec": "npm:3.775.0" - "@aws-sdk/middleware-user-agent": "npm:3.775.0" + "@aws-sdk/middleware-user-agent": "npm:3.799.0" "@aws-sdk/region-config-resolver": "npm:3.775.0" - "@aws-sdk/signature-v4-multi-region": "npm:3.775.0" + "@aws-sdk/signature-v4-multi-region": "npm:3.799.0" "@aws-sdk/types": "npm:3.775.0" - "@aws-sdk/util-endpoints": "npm:3.775.0" + "@aws-sdk/util-endpoints": "npm:3.787.0" "@aws-sdk/util-user-agent-browser": "npm:3.775.0" - "@aws-sdk/util-user-agent-node": "npm:3.775.0" + "@aws-sdk/util-user-agent-node": "npm:3.799.0" "@aws-sdk/xml-builder": "npm:3.775.0" "@smithy/config-resolver": "npm:^4.1.0" - "@smithy/core": "npm:^3.2.0" + "@smithy/core": "npm:^3.3.0" "@smithy/eventstream-serde-browser": "npm:^4.0.2" "@smithy/eventstream-serde-config-resolver": "npm:^4.1.0" "@smithy/eventstream-serde-node": "npm:^4.0.2" @@ -428,21 +428,21 @@ __metadata: "@smithy/invalid-dependency": "npm:^4.0.2" "@smithy/md5-js": "npm:^4.0.2" "@smithy/middleware-content-length": "npm:^4.0.2" - "@smithy/middleware-endpoint": "npm:^4.1.0" - "@smithy/middleware-retry": "npm:^4.1.0" + "@smithy/middleware-endpoint": "npm:^4.1.1" + "@smithy/middleware-retry": "npm:^4.1.1" "@smithy/middleware-serde": "npm:^4.0.3" "@smithy/middleware-stack": "npm:^4.0.2" "@smithy/node-config-provider": "npm:^4.0.2" "@smithy/node-http-handler": "npm:^4.0.4" "@smithy/protocol-http": "npm:^5.1.0" - "@smithy/smithy-client": "npm:^4.2.0" + "@smithy/smithy-client": "npm:^4.2.1" "@smithy/types": "npm:^4.2.0" "@smithy/url-parser": "npm:^4.0.2" "@smithy/util-base64": "npm:^4.0.0" "@smithy/util-body-length-browser": "npm:^4.0.0" "@smithy/util-body-length-node": "npm:^4.0.0" - "@smithy/util-defaults-mode-browser": "npm:^4.0.8" - "@smithy/util-defaults-mode-node": "npm:^4.0.8" + "@smithy/util-defaults-mode-browser": "npm:^4.0.9" + "@smithy/util-defaults-mode-node": "npm:^4.0.9" "@smithy/util-endpoints": "npm:^3.0.2" "@smithy/util-middleware": "npm:^4.0.2" "@smithy/util-retry": "npm:^4.0.2" @@ -450,275 +450,275 @@ __metadata: "@smithy/util-utf8": "npm:^4.0.0" "@smithy/util-waiter": "npm:^4.0.3" tslib: "npm:^2.6.2" - checksum: 10c0/7b6f60e81a127208e37f3a79c903b2d92343eab0b952b9138469e3baef00f82f99b7221d9af8e0f1ea75fa7a2c2de4817375be5e8fb2e036ae54d1b2b4b010c0 + checksum: 10c0/6ff255d4a063b1f9616c2277aaaa44dc1345a23c1e79ac8fa88a92018a0f3952e7d73a039f1ec4d629b2f889edecfed9d5ae9f4418eaa19ca15ca6b9e359d571 languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.777.0": - version: 3.777.0 - resolution: "@aws-sdk/client-sso@npm:3.777.0" +"@aws-sdk/client-sso@npm:3.799.0": + version: 3.799.0 + resolution: "@aws-sdk/client-sso@npm:3.799.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.775.0" + "@aws-sdk/core": "npm:3.799.0" "@aws-sdk/middleware-host-header": "npm:3.775.0" "@aws-sdk/middleware-logger": "npm:3.775.0" "@aws-sdk/middleware-recursion-detection": "npm:3.775.0" - "@aws-sdk/middleware-user-agent": "npm:3.775.0" + "@aws-sdk/middleware-user-agent": "npm:3.799.0" "@aws-sdk/region-config-resolver": "npm:3.775.0" "@aws-sdk/types": "npm:3.775.0" - "@aws-sdk/util-endpoints": "npm:3.775.0" + "@aws-sdk/util-endpoints": "npm:3.787.0" "@aws-sdk/util-user-agent-browser": "npm:3.775.0" - "@aws-sdk/util-user-agent-node": "npm:3.775.0" + "@aws-sdk/util-user-agent-node": "npm:3.799.0" "@smithy/config-resolver": "npm:^4.1.0" - "@smithy/core": "npm:^3.2.0" + "@smithy/core": "npm:^3.3.0" "@smithy/fetch-http-handler": "npm:^5.0.2" "@smithy/hash-node": "npm:^4.0.2" "@smithy/invalid-dependency": "npm:^4.0.2" "@smithy/middleware-content-length": "npm:^4.0.2" - "@smithy/middleware-endpoint": "npm:^4.1.0" - "@smithy/middleware-retry": "npm:^4.1.0" + "@smithy/middleware-endpoint": "npm:^4.1.1" + "@smithy/middleware-retry": "npm:^4.1.1" "@smithy/middleware-serde": "npm:^4.0.3" "@smithy/middleware-stack": "npm:^4.0.2" "@smithy/node-config-provider": "npm:^4.0.2" "@smithy/node-http-handler": "npm:^4.0.4" "@smithy/protocol-http": "npm:^5.1.0" - "@smithy/smithy-client": "npm:^4.2.0" + "@smithy/smithy-client": "npm:^4.2.1" "@smithy/types": "npm:^4.2.0" "@smithy/url-parser": "npm:^4.0.2" "@smithy/util-base64": "npm:^4.0.0" "@smithy/util-body-length-browser": "npm:^4.0.0" "@smithy/util-body-length-node": "npm:^4.0.0" - "@smithy/util-defaults-mode-browser": "npm:^4.0.8" - "@smithy/util-defaults-mode-node": "npm:^4.0.8" + "@smithy/util-defaults-mode-browser": "npm:^4.0.9" + "@smithy/util-defaults-mode-node": "npm:^4.0.9" "@smithy/util-endpoints": "npm:^3.0.2" "@smithy/util-middleware": "npm:^4.0.2" "@smithy/util-retry": "npm:^4.0.2" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/0a14dd828ef7c46621ea564811c9055866b9775f6a13724a6dad9e195dc818367fcd182d43c92980997be6bd004b0e23e012746c1f32e5af8fca9f402582f40f + checksum: 10c0/beeb479e860c20149dd7efbb5a312f208071eb5e9bd344fb5c5040a58f5ac66457f7e21ca8465855d7978d98b0f69c6adb1d638d8a83feb068a1d006eb5be83f languageName: node linkType: hard "@aws-sdk/client-sts@npm:^3.350.0": - version: 3.777.0 - resolution: "@aws-sdk/client-sts@npm:3.777.0" + version: 3.799.0 + resolution: "@aws-sdk/client-sts@npm:3.799.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.775.0" - "@aws-sdk/credential-provider-node": "npm:3.777.0" + "@aws-sdk/core": "npm:3.799.0" + "@aws-sdk/credential-provider-node": "npm:3.799.0" "@aws-sdk/middleware-host-header": "npm:3.775.0" "@aws-sdk/middleware-logger": "npm:3.775.0" "@aws-sdk/middleware-recursion-detection": "npm:3.775.0" - "@aws-sdk/middleware-user-agent": "npm:3.775.0" + "@aws-sdk/middleware-user-agent": "npm:3.799.0" "@aws-sdk/region-config-resolver": "npm:3.775.0" "@aws-sdk/types": "npm:3.775.0" - "@aws-sdk/util-endpoints": "npm:3.775.0" + "@aws-sdk/util-endpoints": "npm:3.787.0" "@aws-sdk/util-user-agent-browser": "npm:3.775.0" - "@aws-sdk/util-user-agent-node": "npm:3.775.0" + "@aws-sdk/util-user-agent-node": "npm:3.799.0" "@smithy/config-resolver": "npm:^4.1.0" - "@smithy/core": "npm:^3.2.0" + "@smithy/core": "npm:^3.3.0" "@smithy/fetch-http-handler": "npm:^5.0.2" "@smithy/hash-node": "npm:^4.0.2" "@smithy/invalid-dependency": "npm:^4.0.2" "@smithy/middleware-content-length": "npm:^4.0.2" - "@smithy/middleware-endpoint": "npm:^4.1.0" - "@smithy/middleware-retry": "npm:^4.1.0" + "@smithy/middleware-endpoint": "npm:^4.1.1" + "@smithy/middleware-retry": "npm:^4.1.1" "@smithy/middleware-serde": "npm:^4.0.3" "@smithy/middleware-stack": "npm:^4.0.2" "@smithy/node-config-provider": "npm:^4.0.2" "@smithy/node-http-handler": "npm:^4.0.4" "@smithy/protocol-http": "npm:^5.1.0" - "@smithy/smithy-client": "npm:^4.2.0" + "@smithy/smithy-client": "npm:^4.2.1" "@smithy/types": "npm:^4.2.0" "@smithy/url-parser": "npm:^4.0.2" "@smithy/util-base64": "npm:^4.0.0" "@smithy/util-body-length-browser": "npm:^4.0.0" "@smithy/util-body-length-node": "npm:^4.0.0" - "@smithy/util-defaults-mode-browser": "npm:^4.0.8" - "@smithy/util-defaults-mode-node": "npm:^4.0.8" + "@smithy/util-defaults-mode-browser": "npm:^4.0.9" + "@smithy/util-defaults-mode-node": "npm:^4.0.9" "@smithy/util-endpoints": "npm:^3.0.2" "@smithy/util-middleware": "npm:^4.0.2" "@smithy/util-retry": "npm:^4.0.2" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/fbbf0077ca3e2c48ba1bfd97fa884490c6c11f4259719765160a3fd983ac66d136d5c294c1a11c5d68f5ce784e689e4665852b0f4010ced59d0bf0c2f4a79853 + checksum: 10c0/b8684b7cb037e6da3fca3ae1ae0f4b5f451495a21a4c4478802d9cbb843d0a2a18af03262e5ff466868cde34e8a8482487c9863aa553bf8ef8e9780079b63bd9 languageName: node linkType: hard -"@aws-sdk/core@npm:3.775.0": - version: 3.775.0 - resolution: "@aws-sdk/core@npm:3.775.0" +"@aws-sdk/core@npm:3.799.0": + version: 3.799.0 + resolution: "@aws-sdk/core@npm:3.799.0" dependencies: "@aws-sdk/types": "npm:3.775.0" - "@smithy/core": "npm:^3.2.0" + "@smithy/core": "npm:^3.3.0" "@smithy/node-config-provider": "npm:^4.0.2" "@smithy/property-provider": "npm:^4.0.2" "@smithy/protocol-http": "npm:^5.1.0" - "@smithy/signature-v4": "npm:^5.0.2" - "@smithy/smithy-client": "npm:^4.2.0" + "@smithy/signature-v4": "npm:^5.1.0" + "@smithy/smithy-client": "npm:^4.2.1" "@smithy/types": "npm:^4.2.0" "@smithy/util-middleware": "npm:^4.0.2" fast-xml-parser: "npm:4.4.1" tslib: "npm:^2.6.2" - checksum: 10c0/14fb2fb46c191d4409a1f35fc4276ec77c446e81f22d6dc5355d3d7a28575ab26253fc646e4a0deed05c2fe89e4850547096191a4ef3ec6bb775a1a4c30171d1 + checksum: 10c0/9d041d18e077d16b26aa9b25d2c831823be0ddc5487d11aaca282b0913f752c7fe762ecd11c0cc128bcf0b1f2773410500e94b463760ec2c7577dce37558b9a4 languageName: node linkType: hard -"@aws-sdk/credential-provider-cognito-identity@npm:3.777.0": - version: 3.777.0 - resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.777.0" +"@aws-sdk/credential-provider-cognito-identity@npm:3.799.0": + version: 3.799.0 + resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.799.0" dependencies: - "@aws-sdk/client-cognito-identity": "npm:3.777.0" + "@aws-sdk/client-cognito-identity": "npm:3.799.0" "@aws-sdk/types": "npm:3.775.0" "@smithy/property-provider": "npm:^4.0.2" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/3b59602b34df255648ffc0c54517a0f4d87ee15b5f2c9caacb04650a875460f6c945882e00c651273671404ca89d83a84a0249ab055ea9348bfd77ffcadd0263 + checksum: 10c0/6eb8b18c3d75e22f0c4282b94a0a0710a1f7bfa50803913fbcc945ff75cd1d7f9069da25b80b226026e02c25ead7cdbffcda64c691276cc7e5e3d9da5b8db90c languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.775.0": - version: 3.775.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.775.0" +"@aws-sdk/credential-provider-env@npm:3.799.0": + version: 3.799.0 + resolution: "@aws-sdk/credential-provider-env@npm:3.799.0" dependencies: - "@aws-sdk/core": "npm:3.775.0" + "@aws-sdk/core": "npm:3.799.0" "@aws-sdk/types": "npm:3.775.0" "@smithy/property-provider": "npm:^4.0.2" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/461d2dba7d8dde9720b99e9d34d6b9e4e115335d3d184d15011e36124fc73d182e9c9f33fcf77682428abc7849a1b248371758be46c23fc312521f51d08054e2 + checksum: 10c0/88eff1231351ac8d244bab4f05b948cd75309a10c4b39e574a8720ed2d5ba83a875e2522ee4bb420d69c66e30446e4d6f1fc2951ff6dbd4efc88020ff30d32c7 languageName: node linkType: hard -"@aws-sdk/credential-provider-http@npm:3.775.0": - version: 3.775.0 - resolution: "@aws-sdk/credential-provider-http@npm:3.775.0" +"@aws-sdk/credential-provider-http@npm:3.799.0": + version: 3.799.0 + resolution: "@aws-sdk/credential-provider-http@npm:3.799.0" dependencies: - "@aws-sdk/core": "npm:3.775.0" + "@aws-sdk/core": "npm:3.799.0" "@aws-sdk/types": "npm:3.775.0" "@smithy/fetch-http-handler": "npm:^5.0.2" "@smithy/node-http-handler": "npm:^4.0.4" "@smithy/property-provider": "npm:^4.0.2" "@smithy/protocol-http": "npm:^5.1.0" - "@smithy/smithy-client": "npm:^4.2.0" + "@smithy/smithy-client": "npm:^4.2.1" "@smithy/types": "npm:^4.2.0" "@smithy/util-stream": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/f2a5939108ecdb330610b60fab61c01f0b98e972df2abaa5ac6e46102e4a2a7e877c934e28bacb32a855a431c33af53a169568ee2df6b1c4bcf6e32ed69c721a + checksum: 10c0/f78783621453d95ed97411f382ff943565db308ba60330e6d54ae973cb05c9a79c290f33a473e2294b5c5cd5af7fbe940a7f43200f7fc867ae278a7d1584b324 languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.777.0": - version: 3.777.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.777.0" +"@aws-sdk/credential-provider-ini@npm:3.799.0": + version: 3.799.0 + resolution: "@aws-sdk/credential-provider-ini@npm:3.799.0" dependencies: - "@aws-sdk/core": "npm:3.775.0" - "@aws-sdk/credential-provider-env": "npm:3.775.0" - "@aws-sdk/credential-provider-http": "npm:3.775.0" - "@aws-sdk/credential-provider-process": "npm:3.775.0" - "@aws-sdk/credential-provider-sso": "npm:3.777.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.777.0" - "@aws-sdk/nested-clients": "npm:3.777.0" + "@aws-sdk/core": "npm:3.799.0" + "@aws-sdk/credential-provider-env": "npm:3.799.0" + "@aws-sdk/credential-provider-http": "npm:3.799.0" + "@aws-sdk/credential-provider-process": "npm:3.799.0" + "@aws-sdk/credential-provider-sso": "npm:3.799.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.799.0" + "@aws-sdk/nested-clients": "npm:3.799.0" "@aws-sdk/types": "npm:3.775.0" "@smithy/credential-provider-imds": "npm:^4.0.2" "@smithy/property-provider": "npm:^4.0.2" "@smithy/shared-ini-file-loader": "npm:^4.0.2" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/b905820d6591010f73bc1af5e0185d2a38590fa0722e979f9d85de46853516c353b6ccee641311e413231425b59ad9ddeb87b93a9e0ff3c301741fa79d099aef + checksum: 10c0/5113b9db9d58dd2479f19bb059631e0c04931fd49f26ce1bbc9f1c5285cfde530f7a2a92e67bd44cf7f11c69d80c24f664757bbd8ed4573d3d72f3a35e648853 languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.777.0, @aws-sdk/credential-provider-node@npm:^3.350.0": - version: 3.777.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.777.0" +"@aws-sdk/credential-provider-node@npm:3.799.0, @aws-sdk/credential-provider-node@npm:^3.350.0": + version: 3.799.0 + resolution: "@aws-sdk/credential-provider-node@npm:3.799.0" dependencies: - "@aws-sdk/credential-provider-env": "npm:3.775.0" - "@aws-sdk/credential-provider-http": "npm:3.775.0" - "@aws-sdk/credential-provider-ini": "npm:3.777.0" - "@aws-sdk/credential-provider-process": "npm:3.775.0" - "@aws-sdk/credential-provider-sso": "npm:3.777.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.777.0" + "@aws-sdk/credential-provider-env": "npm:3.799.0" + "@aws-sdk/credential-provider-http": "npm:3.799.0" + "@aws-sdk/credential-provider-ini": "npm:3.799.0" + "@aws-sdk/credential-provider-process": "npm:3.799.0" + "@aws-sdk/credential-provider-sso": "npm:3.799.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.799.0" "@aws-sdk/types": "npm:3.775.0" "@smithy/credential-provider-imds": "npm:^4.0.2" "@smithy/property-provider": "npm:^4.0.2" "@smithy/shared-ini-file-loader": "npm:^4.0.2" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/4d2b3b69e24f4e64a07450caa4965cf524d3a4cd0a568c7911639230b544cfc467ed3067b84f177e6550f6b2395895346c9b393c69945fa0a56b5f2a33476294 + checksum: 10c0/2ff525b3862b69d86750fe6847fe51e9eb5f9bd128835a8a952eec27f787f25ae105e8af6709ac20b39b6ff907558ff03edce2bd11400a218d59a34c07baecd2 languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.775.0": - version: 3.775.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.775.0" +"@aws-sdk/credential-provider-process@npm:3.799.0": + version: 3.799.0 + resolution: "@aws-sdk/credential-provider-process@npm:3.799.0" dependencies: - "@aws-sdk/core": "npm:3.775.0" + "@aws-sdk/core": "npm:3.799.0" "@aws-sdk/types": "npm:3.775.0" "@smithy/property-provider": "npm:^4.0.2" "@smithy/shared-ini-file-loader": "npm:^4.0.2" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/5e8fc389ddf91694a590adb0ee2dadf148b7279759c1a0a8b3a055a78af0b75773f9f50f6a769be1d3284c639ad037a2a8951a463020e692c5f911c8e5062402 + checksum: 10c0/152ca90bbffa2d9853c4b188edd319e7ac8f2d21bd62f3f6024b96e41b03f735af9a7e5018e5633264e7597fd42e8ef38e56c25ffd618cd1bea00e3f74c8afb3 languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.777.0": - version: 3.777.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.777.0" +"@aws-sdk/credential-provider-sso@npm:3.799.0": + version: 3.799.0 + resolution: "@aws-sdk/credential-provider-sso@npm:3.799.0" dependencies: - "@aws-sdk/client-sso": "npm:3.777.0" - "@aws-sdk/core": "npm:3.775.0" - "@aws-sdk/token-providers": "npm:3.777.0" + "@aws-sdk/client-sso": "npm:3.799.0" + "@aws-sdk/core": "npm:3.799.0" + "@aws-sdk/token-providers": "npm:3.799.0" "@aws-sdk/types": "npm:3.775.0" "@smithy/property-provider": "npm:^4.0.2" "@smithy/shared-ini-file-loader": "npm:^4.0.2" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/3df1ae333b74e9aa5ecf4e7d6dc87f778f2de11433e87e4383f46d33cacca8249dbd1b6f46ffdf720a7dd8bea25ab528cb3d4514d98bce7aa8cc30a09620ba19 + checksum: 10c0/083751e73c68b4ed0a14289e917b8aa2fcc96c7ba15f8c37a2382912ea6daadc11a701508073b0d11e70df47c42715ecfb0ab7119208dea3afea3a161e619d26 languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.777.0": - version: 3.777.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.777.0" +"@aws-sdk/credential-provider-web-identity@npm:3.799.0": + version: 3.799.0 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.799.0" dependencies: - "@aws-sdk/core": "npm:3.775.0" - "@aws-sdk/nested-clients": "npm:3.777.0" + "@aws-sdk/core": "npm:3.799.0" + "@aws-sdk/nested-clients": "npm:3.799.0" "@aws-sdk/types": "npm:3.775.0" "@smithy/property-provider": "npm:^4.0.2" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/5d7fdf7d6911f06255f9d03540c1d7bdec1a74c529f91b6fb1960e473ffefcf8750d8aa8826b3e49d6bc7ec27e22b10e04888e8a9d2f6796cb262299af664e2d + checksum: 10c0/3e34611ee691ffc24483f7d80eeb84c4726580290c8788e2235b41229b37819f943215c4f83d34f74ad5a21d2c0706d7c62b7653dcea6b7da5aec8b6bff12b75 languageName: node linkType: hard "@aws-sdk/credential-providers@npm:^3.350.0": - version: 3.778.0 - resolution: "@aws-sdk/credential-providers@npm:3.778.0" - dependencies: - "@aws-sdk/client-cognito-identity": "npm:3.777.0" - "@aws-sdk/core": "npm:3.775.0" - "@aws-sdk/credential-provider-cognito-identity": "npm:3.777.0" - "@aws-sdk/credential-provider-env": "npm:3.775.0" - "@aws-sdk/credential-provider-http": "npm:3.775.0" - "@aws-sdk/credential-provider-ini": "npm:3.777.0" - "@aws-sdk/credential-provider-node": "npm:3.777.0" - "@aws-sdk/credential-provider-process": "npm:3.775.0" - "@aws-sdk/credential-provider-sso": "npm:3.777.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.777.0" - "@aws-sdk/nested-clients": "npm:3.777.0" + version: 3.799.0 + resolution: "@aws-sdk/credential-providers@npm:3.799.0" + dependencies: + "@aws-sdk/client-cognito-identity": "npm:3.799.0" + "@aws-sdk/core": "npm:3.799.0" + "@aws-sdk/credential-provider-cognito-identity": "npm:3.799.0" + "@aws-sdk/credential-provider-env": "npm:3.799.0" + "@aws-sdk/credential-provider-http": "npm:3.799.0" + "@aws-sdk/credential-provider-ini": "npm:3.799.0" + "@aws-sdk/credential-provider-node": "npm:3.799.0" + "@aws-sdk/credential-provider-process": "npm:3.799.0" + "@aws-sdk/credential-provider-sso": "npm:3.799.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.799.0" + "@aws-sdk/nested-clients": "npm:3.799.0" "@aws-sdk/types": "npm:3.775.0" "@smithy/config-resolver": "npm:^4.1.0" - "@smithy/core": "npm:^3.2.0" + "@smithy/core": "npm:^3.3.0" "@smithy/credential-provider-imds": "npm:^4.0.2" "@smithy/node-config-provider": "npm:^4.0.2" "@smithy/property-provider": "npm:^4.0.2" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/1865bb9262d21e8b3d3b2f69853d345e4b5b39b115095a897af2aee6e3d13e7959b45de668ca498a55d99bc8dedf370448234ba2e984349a9768dfafb817cfdc + checksum: 10c0/5ad09cb017deca50b75e60fdd86f4fedb30a217eee5baf473d4f3590c8ea568e77d98d8e863762ba5fdad9a301d2f19b854c4aab48a6bc587746c8d0f5bfd512 languageName: node linkType: hard @@ -744,19 +744,19 @@ __metadata: linkType: hard "@aws-sdk/lib-storage@npm:^3.350.0": - version: 3.779.0 - resolution: "@aws-sdk/lib-storage@npm:3.779.0" + version: 3.799.0 + resolution: "@aws-sdk/lib-storage@npm:3.799.0" dependencies: "@smithy/abort-controller": "npm:^4.0.2" - "@smithy/middleware-endpoint": "npm:^4.1.0" - "@smithy/smithy-client": "npm:^4.2.0" + "@smithy/middleware-endpoint": "npm:^4.1.1" + "@smithy/smithy-client": "npm:^4.2.1" buffer: "npm:5.6.0" events: "npm:3.3.0" stream-browserify: "npm:3.0.0" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-s3": ^3.779.0 - checksum: 10c0/73c6ab95726f229714ef3235b6956062ff8d681965b0f37101bc3e21d3a014c881682db3daa0a07fb311e0f27840771d31ba9da9de099a5fcb11b641de00c427 + "@aws-sdk/client-s3": ^3.799.0 + checksum: 10c0/8a5e7a817571872bdebdd3975b8a46872696d40f75b7527703775ff364b0952e7e6c2e956154f747278ae6cfd8acca6b6fb0b77dbd53fc9e830b515a56cf0dc4 languageName: node linkType: hard @@ -787,14 +787,14 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-flexible-checksums@npm:3.775.0": - version: 3.775.0 - resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.775.0" +"@aws-sdk/middleware-flexible-checksums@npm:3.799.0": + version: 3.799.0 + resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.799.0" dependencies: "@aws-crypto/crc32": "npm:5.2.0" "@aws-crypto/crc32c": "npm:5.2.0" "@aws-crypto/util": "npm:5.2.0" - "@aws-sdk/core": "npm:3.775.0" + "@aws-sdk/core": "npm:3.799.0" "@aws-sdk/types": "npm:3.775.0" "@smithy/is-array-buffer": "npm:^4.0.0" "@smithy/node-config-provider": "npm:^4.0.2" @@ -804,7 +804,7 @@ __metadata: "@smithy/util-stream": "npm:^4.2.0" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/c6afcb70aae0afa2880af0df09a5bd87ccb5139de74557d70d58c55aedf24bfd93a426d9ea4bedbe162ceca3b16c54eb900f1877d7a1cabab2a8e97eb0b37f63 + checksum: 10c0/2a16cf7492501f55aa12785e8d18d3ac352afdba6febd94ab5a8c9468c27840ae5494e176c7082a9232002720bb6565b01100ad1d58708b93e9dc9848860f78e languageName: node linkType: hard @@ -854,25 +854,25 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-sdk-s3@npm:3.775.0": - version: 3.775.0 - resolution: "@aws-sdk/middleware-sdk-s3@npm:3.775.0" +"@aws-sdk/middleware-sdk-s3@npm:3.799.0": + version: 3.799.0 + resolution: "@aws-sdk/middleware-sdk-s3@npm:3.799.0" dependencies: - "@aws-sdk/core": "npm:3.775.0" + "@aws-sdk/core": "npm:3.799.0" "@aws-sdk/types": "npm:3.775.0" "@aws-sdk/util-arn-parser": "npm:3.723.0" - "@smithy/core": "npm:^3.2.0" + "@smithy/core": "npm:^3.3.0" "@smithy/node-config-provider": "npm:^4.0.2" "@smithy/protocol-http": "npm:^5.1.0" - "@smithy/signature-v4": "npm:^5.0.2" - "@smithy/smithy-client": "npm:^4.2.0" + "@smithy/signature-v4": "npm:^5.1.0" + "@smithy/smithy-client": "npm:^4.2.1" "@smithy/types": "npm:^4.2.0" "@smithy/util-config-provider": "npm:^4.0.0" "@smithy/util-middleware": "npm:^4.0.2" "@smithy/util-stream": "npm:^4.2.0" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/4d7c47b4168f2b8f35d2bdf9aa964b8e31c6e4b2a243555265effa1aeae688629b7c8605ea34644d21b9b20850d53d7e7493c2ff44aa85f8ee9529cede7c7dcb + checksum: 10c0/9bb25e5fd7f8314e0e366791122eb1ca8b238f2ef9288d418212954a643d097ab01dab5da9b35ac244123069e4d03f1facbc2fc6cf8f6eb1d8f76d3d36a0c55a languageName: node linkType: hard @@ -887,64 +887,64 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.775.0": - version: 3.775.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.775.0" +"@aws-sdk/middleware-user-agent@npm:3.799.0": + version: 3.799.0 + resolution: "@aws-sdk/middleware-user-agent@npm:3.799.0" dependencies: - "@aws-sdk/core": "npm:3.775.0" + "@aws-sdk/core": "npm:3.799.0" "@aws-sdk/types": "npm:3.775.0" - "@aws-sdk/util-endpoints": "npm:3.775.0" - "@smithy/core": "npm:^3.2.0" + "@aws-sdk/util-endpoints": "npm:3.787.0" + "@smithy/core": "npm:^3.3.0" "@smithy/protocol-http": "npm:^5.1.0" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/dd782955a6482df9935faec08a64b674913e8be8c58347dae32d1b5ddb2196e49c328605d864d9d85c725f92ad6eb6454d3aef8433d7ff599ad2a94545b0c2e1 + checksum: 10c0/3a38e18563633b5a3d5bc5cda191c8ef6f985692a151231e4f2b476da12031246c5781a7c383ca8c5ff58aed46a4c445aba1960ce86bc0133dc8d42dc771eddc languageName: node linkType: hard -"@aws-sdk/nested-clients@npm:3.777.0": - version: 3.777.0 - resolution: "@aws-sdk/nested-clients@npm:3.777.0" +"@aws-sdk/nested-clients@npm:3.799.0": + version: 3.799.0 + resolution: "@aws-sdk/nested-clients@npm:3.799.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.775.0" + "@aws-sdk/core": "npm:3.799.0" "@aws-sdk/middleware-host-header": "npm:3.775.0" "@aws-sdk/middleware-logger": "npm:3.775.0" "@aws-sdk/middleware-recursion-detection": "npm:3.775.0" - "@aws-sdk/middleware-user-agent": "npm:3.775.0" + "@aws-sdk/middleware-user-agent": "npm:3.799.0" "@aws-sdk/region-config-resolver": "npm:3.775.0" "@aws-sdk/types": "npm:3.775.0" - "@aws-sdk/util-endpoints": "npm:3.775.0" + "@aws-sdk/util-endpoints": "npm:3.787.0" "@aws-sdk/util-user-agent-browser": "npm:3.775.0" - "@aws-sdk/util-user-agent-node": "npm:3.775.0" + "@aws-sdk/util-user-agent-node": "npm:3.799.0" "@smithy/config-resolver": "npm:^4.1.0" - "@smithy/core": "npm:^3.2.0" + "@smithy/core": "npm:^3.3.0" "@smithy/fetch-http-handler": "npm:^5.0.2" "@smithy/hash-node": "npm:^4.0.2" "@smithy/invalid-dependency": "npm:^4.0.2" "@smithy/middleware-content-length": "npm:^4.0.2" - "@smithy/middleware-endpoint": "npm:^4.1.0" - "@smithy/middleware-retry": "npm:^4.1.0" + "@smithy/middleware-endpoint": "npm:^4.1.1" + "@smithy/middleware-retry": "npm:^4.1.1" "@smithy/middleware-serde": "npm:^4.0.3" "@smithy/middleware-stack": "npm:^4.0.2" "@smithy/node-config-provider": "npm:^4.0.2" "@smithy/node-http-handler": "npm:^4.0.4" "@smithy/protocol-http": "npm:^5.1.0" - "@smithy/smithy-client": "npm:^4.2.0" + "@smithy/smithy-client": "npm:^4.2.1" "@smithy/types": "npm:^4.2.0" "@smithy/url-parser": "npm:^4.0.2" "@smithy/util-base64": "npm:^4.0.0" "@smithy/util-body-length-browser": "npm:^4.0.0" "@smithy/util-body-length-node": "npm:^4.0.0" - "@smithy/util-defaults-mode-browser": "npm:^4.0.8" - "@smithy/util-defaults-mode-node": "npm:^4.0.8" + "@smithy/util-defaults-mode-browser": "npm:^4.0.9" + "@smithy/util-defaults-mode-node": "npm:^4.0.9" "@smithy/util-endpoints": "npm:^3.0.2" "@smithy/util-middleware": "npm:^4.0.2" "@smithy/util-retry": "npm:^4.0.2" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/e7fe77cc30d09ba423b518e6a4dec71402ef8b01c959c15e1c61dbbed80c997213643dc14e347e8a5a463a2020038ca0b01078ec04761f331b1359fa8acc8599 + checksum: 10c0/bb3f8680114db88dc93bc674f4a8e38b2ba4115901e84ba39e6a41e2ad04c0a89571fab7c6912ea8067a0aa564a1bc2f467fb655ccb69f2a603873d132fcb840 languageName: node linkType: hard @@ -962,17 +962,17 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/signature-v4-multi-region@npm:3.775.0": - version: 3.775.0 - resolution: "@aws-sdk/signature-v4-multi-region@npm:3.775.0" +"@aws-sdk/signature-v4-multi-region@npm:3.799.0": + version: 3.799.0 + resolution: "@aws-sdk/signature-v4-multi-region@npm:3.799.0" dependencies: - "@aws-sdk/middleware-sdk-s3": "npm:3.775.0" + "@aws-sdk/middleware-sdk-s3": "npm:3.799.0" "@aws-sdk/types": "npm:3.775.0" "@smithy/protocol-http": "npm:^5.1.0" - "@smithy/signature-v4": "npm:^5.0.2" + "@smithy/signature-v4": "npm:^5.1.0" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/1e13b2382bdc4a8b917466c01388575b7139f9207410a19d99d39db6546f1e56b99fe043276136fbdad05133ca3e6e92c84a2c0fcf6cea573f12db9bc3d8079f + checksum: 10c0/14eb4b9a9d0c5eeb274bc803d26f92ff9860056c99cbe0f10989cc245cc348cc27091242df52ecddfcc4c429d02aa2d521be2dbdb2e0c4f03f26626d10809af4 languageName: node linkType: hard @@ -992,17 +992,17 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.777.0": - version: 3.777.0 - resolution: "@aws-sdk/token-providers@npm:3.777.0" +"@aws-sdk/token-providers@npm:3.799.0": + version: 3.799.0 + resolution: "@aws-sdk/token-providers@npm:3.799.0" dependencies: - "@aws-sdk/nested-clients": "npm:3.777.0" + "@aws-sdk/nested-clients": "npm:3.799.0" "@aws-sdk/types": "npm:3.775.0" "@smithy/property-provider": "npm:^4.0.2" "@smithy/shared-ini-file-loader": "npm:^4.0.2" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/744cf95c4bcda2909ff49b7fbfb784a8d8de0f0072b13acbd8706c9cf35243aecc6f0cc40cd1fd819092893a4121964d9d6194751e30bc06278be7d0e2d95d5d + checksum: 10c0/d1a44ffa95cf898543aee68c6e8969861d274c8ebb56d32dd0fa10af4b99f048183c3b3b2210ac51f9b143d231055a3f1b30073d83f432562a2c60b2826d0e4d languageName: node linkType: hard @@ -1045,15 +1045,15 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.775.0": - version: 3.775.0 - resolution: "@aws-sdk/util-endpoints@npm:3.775.0" +"@aws-sdk/util-endpoints@npm:3.787.0": + version: 3.787.0 + resolution: "@aws-sdk/util-endpoints@npm:3.787.0" dependencies: "@aws-sdk/types": "npm:3.775.0" "@smithy/types": "npm:^4.2.0" "@smithy/util-endpoints": "npm:^3.0.2" tslib: "npm:^2.6.2" - checksum: 10c0/d85fbe8a1e213ac4925c9572ded852b3a26e688aa2be15918c02b3340f7493de4254fe5a2a5a4e21955a5b5b919c69004a9bfcefae834c15476dfa4ac4cb7b2d + checksum: 10c0/b9645d56e60817b323c85ed363ee9c0c3a8196aa81e364acfcd2b14ab05f3df7457b6543487bc0a2e55ee8e64be22b1b84f119614a4235a92d72dec7168ccdb7 languageName: node linkType: hard @@ -1105,11 +1105,11 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.775.0": - version: 3.775.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.775.0" +"@aws-sdk/util-user-agent-node@npm:3.799.0": + version: 3.799.0 + resolution: "@aws-sdk/util-user-agent-node@npm:3.799.0" dependencies: - "@aws-sdk/middleware-user-agent": "npm:3.775.0" + "@aws-sdk/middleware-user-agent": "npm:3.799.0" "@aws-sdk/types": "npm:3.775.0" "@smithy/node-config-provider": "npm:^4.0.2" "@smithy/types": "npm:^4.2.0" @@ -1119,7 +1119,7 @@ __metadata: peerDependenciesMeta: aws-crt: optional: true - checksum: 10c0/d9dfbf657b598e673aa9d6eb793868d801bd3a0935a66f0991b3afdc790bc9a78723ed9a400a28168b61d99ae5eeb81dd644751e85ea43fda74fa093d70260d9 + checksum: 10c0/eb8716c3b5fc53dff31fed0e610d5cc76329ebb062a3e23e1ab6877739953b268505c3b1c91c25cf588a3b8cabc4c6de02f83cb7791c58f736705f543b18def5 languageName: node linkType: hard @@ -1265,8 +1265,8 @@ __metadata: linkType: hard "@azure/identity@npm:^4.0.0": - version: 4.8.0 - resolution: "@azure/identity@npm:4.8.0" + version: 4.9.1 + resolution: "@azure/identity@npm:4.9.1" dependencies: "@azure/abort-controller": "npm:^2.0.0" "@azure/core-auth": "npm:^1.9.0" @@ -1276,13 +1276,10 @@ __metadata: "@azure/core-util": "npm:^1.11.0" "@azure/logger": "npm:^1.0.0" "@azure/msal-browser": "npm:^4.2.0" - "@azure/msal-node": "npm:^3.2.3" - events: "npm:^3.0.0" - jws: "npm:^4.0.0" + "@azure/msal-node": "npm:^3.5.0" open: "npm:^10.1.0" - stoppable: "npm:^1.1.0" tslib: "npm:^2.2.0" - checksum: 10c0/171a2172bd819cf6ff4384761454ebed0053d8038d526f92498889cb601d32d479bc50a4332108fef71dca716d77cf40f3b598c8a0f7af2accec36dff52ac229 + checksum: 10c0/c60221d5e8fcaa70ce431f239492db6f62038a9e61fd356a15faf76670cead4718fad680fa12a80140b09da230688379485fe3a427070588252ab126f42a5362 languageName: node linkType: hard @@ -1296,36 +1293,29 @@ __metadata: linkType: hard "@azure/msal-browser@npm:^4.2.0": - version: 4.8.0 - resolution: "@azure/msal-browser@npm:4.8.0" + version: 4.11.1 + resolution: "@azure/msal-browser@npm:4.11.1" dependencies: - "@azure/msal-common": "npm:15.3.0" - checksum: 10c0/d53f9f60114219436b8ddcd04108216f490666fdac0bf1e8f8025886338772660a0aae887d3908f37f96540e50a5c8fe7d47eac3a8b6fcda53a357fb5d491c5e + "@azure/msal-common": "npm:15.5.2" + checksum: 10c0/0bc9e094196f0855b0cdf184df316fb917f9d4de677826481af9b109833dc8f088332b38d171ba596c105a30ad30a0e20f284b91f26893fca013c2d166c55d35 languageName: node linkType: hard -"@azure/msal-common@npm:15.3.0": - version: 15.3.0 - resolution: "@azure/msal-common@npm:15.3.0" - checksum: 10c0/d035e52244c189ea850741290f6f702dae9d5640315daa78ba036aefb463661e56ea93d8a86556ef7351f690a121687054d0ca89afc0be4707c8974bac9858fc +"@azure/msal-common@npm:15.5.2": + version: 15.5.2 + resolution: "@azure/msal-common@npm:15.5.2" + checksum: 10c0/45513b26f5b5967e12ca43c4c978205c0d3d2b1b5df5e854e6c0af0afe9788fd85946abf319ef2f1b03377cf51e1f5631633d7655e5bc0b11eaaa772e8525ef6 languageName: node linkType: hard -"@azure/msal-common@npm:15.4.0": - version: 15.4.0 - resolution: "@azure/msal-common@npm:15.4.0" - checksum: 10c0/3039af0b3db4a2b4b09120e446def7e95dced7ef94a029effd5f21f990d75eb123217f8fcadfdc599e2429e01fda3558cb7a697734882266f30d2a8c73a8151f - languageName: node - linkType: hard - -"@azure/msal-node@npm:^3.2.3": - version: 3.4.1 - resolution: "@azure/msal-node@npm:3.4.1" +"@azure/msal-node@npm:^3.5.0": + version: 3.5.2 + resolution: "@azure/msal-node@npm:3.5.2" dependencies: - "@azure/msal-common": "npm:15.4.0" + "@azure/msal-common": "npm:15.5.2" jsonwebtoken: "npm:^9.0.0" uuid: "npm:^8.3.0" - checksum: 10c0/b57410c8b2f46f03f59bccfd4ab27b32417dcee653791422a1b540124c6f403e92df844a71fc2d84581e0b636ace8e13ce9f0a09bf09d5a3cc7057fe8c2ac02e + checksum: 10c0/0ad10467f464fe448e4e30f979695b896d812ae3c68c0064956cbc2985a0272c0920560502389d9a26ca234ad3801f724bb61933b9e94681f31e9e497051198b languageName: node linkType: hard @@ -2776,15 +2766,15 @@ __metadata: languageName: node linkType: hard -"@backstage/app-defaults@npm:^1.5.17, @backstage/app-defaults@npm:^1.6.0": - version: 1.6.0 - resolution: "@backstage/app-defaults@npm:1.6.0" +"@backstage/app-defaults@npm:^1.5.17, @backstage/app-defaults@npm:^1.6.1": + version: 1.6.1 + resolution: "@backstage/app-defaults@npm:1.6.1" dependencies: - "@backstage/core-app-api": "npm:^1.16.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/plugin-permission-react": "npm:^0.4.32" - "@backstage/theme": "npm:^0.6.4" + "@backstage/core-app-api": "npm:^1.16.1" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" + "@backstage/plugin-permission-react": "npm:^0.4.33" + "@backstage/theme": "npm:^0.6.5" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" peerDependencies: @@ -2795,18 +2785,18 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/f1b749330fd72a19e4510c0479fe501d07669d8fc2d1f9cb7852e5d65595af7b0091facc3e7700e505284de90b2bcd891eb33b90c4491f9ac3c8d61388de99fe + checksum: 10c0/8320c4cd6722ef6f8d1e856f8e444f6ed0db947ffb1f26671cda13c71a6202b124dd4663b0a3950e4f6bd17364e9b507a85692a88cd45202da81201e9eddd6a6 languageName: node linkType: hard -"@backstage/backend-app-api@npm:^1.2.0, @backstage/backend-app-api@npm:^1.2.1": - version: 1.2.1 - resolution: "@backstage/backend-app-api@npm:1.2.1" +"@backstage/backend-app-api@npm:^1.2.0, @backstage/backend-app-api@npm:^1.2.1, @backstage/backend-app-api@npm:^1.2.2": + version: 1.2.2 + resolution: "@backstage/backend-app-api@npm:1.2.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - checksum: 10c0/0a570cf01688d1218af67a0dd6d1c59ff3ff32cd25dcd924c2f2e9a016c8036be08760353552800535163dd3ff26c442b3c2e323388bdec7faa7e800390f65d2 + checksum: 10c0/0cf3e8ee0ee68c55f325200442f076c682a566e9277f510f5757977cbf477528da9daffcfc768c7dac9bb9b07e98fed376e2e46c59e38ad5e53e290606acfc8c languageName: node linkType: hard @@ -2964,7 +2954,7 @@ __metadata: languageName: node linkType: hard -"@backstage/backend-defaults@npm:^0.8.0, @backstage/backend-defaults@npm:^0.8.1, @backstage/backend-defaults@npm:^0.8.2": +"@backstage/backend-defaults@npm:^0.8.0, @backstage/backend-defaults@npm:^0.8.1": version: 0.8.2 resolution: "@backstage/backend-defaults@npm:0.8.2" dependencies: @@ -3043,6 +3033,84 @@ __metadata: languageName: node linkType: hard +"@backstage/backend-defaults@npm:^0.9.0": + version: 0.9.0 + resolution: "@backstage/backend-defaults@npm:0.9.0" + dependencies: + "@aws-sdk/abort-controller": "npm:^3.347.0" + "@aws-sdk/client-codecommit": "npm:^3.350.0" + "@aws-sdk/client-s3": "npm:^3.350.0" + "@aws-sdk/credential-providers": "npm:^3.350.0" + "@aws-sdk/types": "npm:^3.347.0" + "@azure/storage-blob": "npm:^12.5.0" + "@backstage/backend-app-api": "npm:^1.2.2" + "@backstage/backend-dev-utils": "npm:^0.1.5" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/cli-node": "npm:^0.2.13" + "@backstage/config": "npm:^1.3.2" + "@backstage/config-loader": "npm:^1.10.0" + "@backstage/errors": "npm:^1.2.7" + "@backstage/integration": "npm:^1.16.3" + "@backstage/integration-aws-node": "npm:^0.1.15" + "@backstage/plugin-auth-node": "npm:^0.6.2" + "@backstage/plugin-events-node": "npm:^0.4.10" + "@backstage/plugin-permission-node": "npm:^0.9.1" + "@backstage/types": "npm:^1.2.1" + "@google-cloud/storage": "npm:^7.0.0" + "@keyv/memcache": "npm:^2.0.1" + "@keyv/redis": "npm:^4.0.1" + "@manypkg/get-packages": "npm:^1.1.3" + "@octokit/rest": "npm:^19.0.3" + "@opentelemetry/api": "npm:^1.9.0" + "@types/cors": "npm:^2.8.6" + "@types/express": "npm:^4.17.6" + archiver: "npm:^7.0.0" + base64-stream: "npm:^1.0.0" + better-sqlite3: "npm:^11.0.0" + compression: "npm:^1.7.4" + concat-stream: "npm:^2.0.0" + cookie: "npm:^0.7.0" + cors: "npm:^2.8.5" + cron: "npm:^3.0.0" + express: "npm:^4.17.1" + express-promise-router: "npm:^4.1.0" + fs-extra: "npm:^11.2.0" + git-url-parse: "npm:^15.0.0" + helmet: "npm:^6.0.0" + jose: "npm:^5.0.0" + keyv: "npm:^5.2.1" + knex: "npm:^3.0.0" + lodash: "npm:^4.17.21" + logform: "npm:^2.3.2" + luxon: "npm:^3.0.0" + minimatch: "npm:^9.0.0" + mysql2: "npm:^3.0.0" + node-fetch: "npm:^2.7.0" + node-forge: "npm:^1.3.1" + p-limit: "npm:^3.1.0" + path-to-regexp: "npm:^8.0.0" + pg: "npm:^8.11.3" + pg-connection-string: "npm:^2.3.0" + pg-format: "npm:^1.0.4" + raw-body: "npm:^2.4.1" + selfsigned: "npm:^2.0.0" + tar: "npm:^6.1.12" + triple-beam: "npm:^1.4.1" + uuid: "npm:^11.0.0" + winston: "npm:^3.2.1" + winston-transport: "npm:^4.5.0" + yauzl: "npm:^3.0.0" + yn: "npm:^4.0.0" + zod: "npm:^3.22.4" + peerDependencies: + "@google-cloud/cloud-sql-connector": ^1.4.0 + peerDependenciesMeta: + "@google-cloud/cloud-sql-connector": + optional: true + checksum: 10c0/159808b5956974cd58add8302086a01685be6441ae56a8779cdbe8671b03eb1c9506deaa2dc0b5cc7926b66f8ab773057efb8b47369f18781f055b8cb0df1b83 + languageName: node + linkType: hard + "@backstage/backend-dev-utils@npm:^0.1.5": version: 0.1.5 resolution: "@backstage/backend-dev-utils@npm:0.1.5" @@ -3050,12 +3118,12 @@ __metadata: languageName: node linkType: hard -"@backstage/backend-openapi-utils@npm:^0.5.0, @backstage/backend-openapi-utils@npm:^0.5.1": - version: 0.5.1 - resolution: "@backstage/backend-openapi-utils@npm:0.5.1" +"@backstage/backend-openapi-utils@npm:^0.5.0, @backstage/backend-openapi-utils@npm:^0.5.2": + version: 0.5.2 + resolution: "@backstage/backend-openapi-utils@npm:0.5.2" dependencies: "@apidevtools/swagger-parser": "npm:^10.1.0" - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/errors": "npm:^1.2.7" "@backstage/types": "npm:^1.2.1" "@types/express": "npm:^4.17.6" @@ -3070,7 +3138,7 @@ __metadata: mockttp: "npm:^3.13.0" openapi-merge: "npm:^1.3.2" openapi3-ts: "npm:^3.1.2" - checksum: 10c0/cb34d3686cd0118b1bc6e8b2fde4d0022bb8880ee9bf1783f3de81cc713b93bf51338a8d760999e23d800ce55536e592b424516227ac38a927194bfa1fda94ec + checksum: 10c0/cb46533e53b3cbd091dc020aef6da60da7eb664b4a06ed72dc3c1cf006a9432cc77d6d2c97bb30abcba8b79480838a9c6cf7ec58b5f8a95d4ae541b13d021f51 languageName: node linkType: hard @@ -3093,22 +3161,22 @@ __metadata: languageName: node linkType: hard -"@backstage/backend-plugin-api@npm:^1.0.0, @backstage/backend-plugin-api@npm:^1.1.1, @backstage/backend-plugin-api@npm:^1.2.0, @backstage/backend-plugin-api@npm:^1.2.1": - version: 1.2.1 - resolution: "@backstage/backend-plugin-api@npm:1.2.1" +"@backstage/backend-plugin-api@npm:^1.0.0, @backstage/backend-plugin-api@npm:^1.1.1, @backstage/backend-plugin-api@npm:^1.2.0, @backstage/backend-plugin-api@npm:^1.2.1, @backstage/backend-plugin-api@npm:^1.3.0": + version: 1.3.0 + resolution: "@backstage/backend-plugin-api@npm:1.3.0" dependencies: "@backstage/cli-common": "npm:^0.1.15" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/plugin-auth-node": "npm:^0.6.2" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-permission-node": "npm:^0.9.0" + "@backstage/plugin-permission-node": "npm:^0.9.1" "@backstage/types": "npm:^1.2.1" "@types/express": "npm:^4.17.6" "@types/luxon": "npm:^3.0.0" knex: "npm:^3.0.0" luxon: "npm:^3.0.0" - checksum: 10c0/9976304bee14f39c7052febca15a92b969f28c6cf6bde97ccaf93db3bcd80f83a1066800234852500982462bca833760f215be8580b35dab18529803b839ec9e + checksum: 10c0/9e31dd759e0e6f34ec5fd677981ebc4a74a1c8ca9e6091da07bace84e5054daae80d903f399bea09c9dc4b52fb3739b7913ed5a9b357c626b048537cbce96fd0 languageName: node linkType: hard @@ -3133,6 +3201,41 @@ __metadata: languageName: node linkType: hard +"@backstage/backend-test-utils@npm:^1.3.0": + version: 1.4.0 + resolution: "@backstage/backend-test-utils@npm:1.4.0" + dependencies: + "@backstage/backend-app-api": "npm:^1.2.2" + "@backstage/backend-defaults": "npm:^0.9.0" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/config": "npm:^1.3.2" + "@backstage/errors": "npm:^1.2.7" + "@backstage/plugin-auth-node": "npm:^0.6.2" + "@backstage/plugin-events-node": "npm:^0.4.10" + "@backstage/types": "npm:^1.2.1" + "@keyv/memcache": "npm:^2.0.1" + "@keyv/redis": "npm:^4.0.1" + "@types/express": "npm:^4.17.6" + "@types/express-serve-static-core": "npm:^4.17.5" + "@types/keyv": "npm:^4.2.0" + "@types/qs": "npm:^6.9.6" + better-sqlite3: "npm:^11.0.0" + cookie: "npm:^0.7.0" + express: "npm:^4.17.1" + fs-extra: "npm:^11.0.0" + keyv: "npm:^5.2.1" + knex: "npm:^3.0.0" + mysql2: "npm:^3.0.0" + pg: "npm:^8.11.3" + pg-connection-string: "npm:^2.3.0" + testcontainers: "npm:^10.0.0" + textextensions: "npm:^5.16.0" + uuid: "npm:^11.0.0" + yn: "npm:^4.0.0" + checksum: 10c0/cb492c24b3cad1eee3e88cd33f7c0bae4a31ebbfa2142d12f0c6a628f072dd6591ce6c2847e80702f64d390d515b18cbaac473a7dad2ef70dcbdd790c4802b7f + languageName: node + linkType: hard + "@backstage/catalog-client@npm:^1.9.1": version: 1.9.1 resolution: "@backstage/catalog-client@npm:1.9.1" @@ -3483,12 +3586,12 @@ __metadata: languageName: node linkType: hard -"@backstage/core-app-api@npm:^1.15.5, @backstage/core-app-api@npm:^1.16.0": - version: 1.16.0 - resolution: "@backstage/core-app-api@npm:1.16.0" +"@backstage/core-app-api@npm:^1.15.5, @backstage/core-app-api@npm:^1.16.1": + version: 1.16.1 + resolution: "@backstage/core-app-api@npm:1.16.1" dependencies: "@backstage/config": "npm:^1.3.2" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/types": "npm:^1.2.1" "@backstage/version-bridge": "npm:^1.0.11" "@types/prop-types": "npm:^15.7.3" @@ -3507,7 +3610,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/01297add7455b8581594dea3f931bf0c9d16c754634ad6f2f2f934f47e8aaf6db3a11ff12d1479e9cff2bc7797e028697ec2ec5c32e696146f04d678dc737491 + checksum: 10c0/afb35d9812d8a7147a8af91fdb1b06d6976aa6a2b7e372acf9806c90d5f2e5e8756840fa7aea5cf0c1ff7833f09c937650cbf3cc674cc77758a2cc95e86cdd2f languageName: node linkType: hard @@ -3531,13 +3634,13 @@ __metadata: languageName: node linkType: hard -"@backstage/core-compat-api@npm:^0.4.0": - version: 0.4.0 - resolution: "@backstage/core-compat-api@npm:0.4.0" +"@backstage/core-compat-api@npm:^0.4.1": + version: 0.4.1 + resolution: "@backstage/core-compat-api@npm:0.4.1" dependencies: - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/plugin-catalog-react": "npm:^1.16.0" + "@backstage/core-plugin-api": "npm:^1.10.6" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/plugin-catalog-react": "npm:^1.17.0" "@backstage/version-bridge": "npm:^1.0.11" lodash: "npm:^4.17.21" peerDependencies: @@ -3548,7 +3651,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/5013ae9bba9d41d612f4cbb6319b72b122028f01c4e2192cc87865c2cdaaa2b2a7f788106b1f46783396c2c338c4f7e47be62c37355e5b03f992221128d3e328 + checksum: 10c0/ba63763bc889455a3e52243e2ea1f0696fcab723f9c97480dfd6f41dbab64ac44746002118ead4cab7d217a195aee0bd3c31704189af7ffd3439c29c255aa100 languageName: node linkType: hard @@ -3658,14 +3761,14 @@ __metadata: languageName: node linkType: hard -"@backstage/core-components@npm:^0.17.0": - version: 0.17.0 - resolution: "@backstage/core-components@npm:0.17.0" +"@backstage/core-components@npm:^0.17.1": + version: 0.17.1 + resolution: "@backstage/core-components@npm:0.17.1" dependencies: "@backstage/config": "npm:^1.3.2" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/errors": "npm:^1.2.7" - "@backstage/theme": "npm:^0.6.4" + "@backstage/theme": "npm:^0.6.5" "@backstage/version-bridge": "npm:^1.0.11" "@dagrejs/dagre": "npm:^1.1.4" "@date-io/core": "npm:^1.3.13" @@ -3708,13 +3811,13 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/23a58049b3476c624c3a1dc2faf05e7f86557b447dc445dadce674dc59bf68dc976597c3232d09a3efb1fc70a546adf40782cf9203c1a40af97a0832c314cd06 + checksum: 10c0/b7e2105e394c3c8ef63a2f70094448361d99a2c629d349caf58679778793ab487a291a0eabbf925d34f0bf3b559ffb8e9f26408097cc56d568b015f07c7d96a5 languageName: node linkType: hard -"@backstage/core-plugin-api@npm:^1.10.0, @backstage/core-plugin-api@npm:^1.10.4, @backstage/core-plugin-api@npm:^1.10.5": - version: 1.10.5 - resolution: "@backstage/core-plugin-api@npm:1.10.5" +"@backstage/core-plugin-api@npm:^1.10.0, @backstage/core-plugin-api@npm:^1.10.4, @backstage/core-plugin-api@npm:^1.10.6": + version: 1.10.6 + resolution: "@backstage/core-plugin-api@npm:1.10.6" dependencies: "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" @@ -3729,22 +3832,22 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/739ff2bd1210ca5b31546743eb4edb36e22ace5b48000d71c5c3a95a47661c794f55aff09644ab72c029aa68b887db6043e0bf94005f72639da26510163f15de + checksum: 10c0/6d16f1e9fa4d42f656d6e84bb2b923a6dfc25be7c6478127aec4f11654a32c65ccc4fade5598a02ef3cf6af5a8c391e1860824cdc0643ef3ba438b4a6f84952d languageName: node linkType: hard "@backstage/dev-utils@npm:^1.1.7": - version: 1.1.8 - resolution: "@backstage/dev-utils@npm:1.1.8" + version: 1.1.9 + resolution: "@backstage/dev-utils@npm:1.1.9" dependencies: - "@backstage/app-defaults": "npm:^1.6.0" + "@backstage/app-defaults": "npm:^1.6.1" "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-app-api": "npm:^1.16.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/integration-react": "npm:^1.2.5" - "@backstage/plugin-catalog-react": "npm:^1.16.0" - "@backstage/theme": "npm:^0.6.4" + "@backstage/core-app-api": "npm:^1.16.1" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" + "@backstage/integration-react": "npm:^1.2.6" + "@backstage/plugin-catalog-react": "npm:^1.17.0" + "@backstage/theme": "npm:^0.6.5" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" react-use: "npm:^17.2.4" @@ -3756,7 +3859,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/9d5d2fb3d4ec76077f0e3f802e7fbc7b9ebde7b8f7e0f10098990ca18259f402837d82c8440502facca4be720fdf8f65a04966f8aff604660d82e15bcff88a7a + checksum: 10c0/3f7fddd9dd321f12f2f9454d491f4ab3ced371fd2549fd8a1dc16ecdb2c7254aaf991c751c2d3e94b80ffc9a4c5ef992d77f316ea4c74562bdbd6b2d15987d5b languageName: node linkType: hard @@ -3795,16 +3898,16 @@ __metadata: languageName: node linkType: hard -"@backstage/frontend-app-api@npm:^0.11.0": - version: 0.11.0 - resolution: "@backstage/frontend-app-api@npm:0.11.0" +"@backstage/frontend-app-api@npm:^0.11.1": + version: 0.11.1 + resolution: "@backstage/frontend-app-api@npm:0.11.1" dependencies: "@backstage/config": "npm:^1.3.2" - "@backstage/core-app-api": "npm:^1.16.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-app-api": "npm:^1.16.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/errors": "npm:^1.2.7" - "@backstage/frontend-defaults": "npm:^0.2.0" - "@backstage/frontend-plugin-api": "npm:^0.10.0" + "@backstage/frontend-defaults": "npm:^0.2.1" + "@backstage/frontend-plugin-api": "npm:^0.10.1" "@backstage/types": "npm:^1.2.1" "@backstage/version-bridge": "npm:^1.0.11" lodash: "npm:^4.17.21" @@ -3817,19 +3920,19 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/e8482e3bfca08b25a85c05565275f50ed06010b151d997a3dc1d8719e683e146742a5e32f453959d7e1c28dea7afddd661abbafa1ed97ac68967605bb3ba4925 + checksum: 10c0/988c5d1b2ddc9d83f9e73d6536aacd67f5426cecc67784b102b457f61b32b97d12bea0b2d59262527e08ae308a9f82302b539919890421447416da8228cb5fe7 languageName: node linkType: hard -"@backstage/frontend-defaults@npm:^0.2.0": - version: 0.2.0 - resolution: "@backstage/frontend-defaults@npm:0.2.0" +"@backstage/frontend-defaults@npm:^0.2.1": + version: 0.2.1 + resolution: "@backstage/frontend-defaults@npm:0.2.1" dependencies: "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/frontend-app-api": "npm:^0.11.0" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/plugin-app": "npm:^0.1.7" + "@backstage/frontend-app-api": "npm:^0.11.1" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/plugin-app": "npm:^0.1.8" "@react-hookz/web": "npm:^24.0.0" peerDependencies: "@types/react": ^17.0.0 || ^18.0.0 @@ -3839,16 +3942,16 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/32abed90cf507095048f42accd485f4a79658818c926a1e83593a15e750d948b8e958c0961551a5c49e983658694e318fb7f7988e42855c25e7316f5baed42b4 + checksum: 10c0/8b8f85ccbefdbd200be3d6174ee183909b424a54b4addc3b47de83aa17042ed1dde3008a5b0e140c0e193a975456d38d52885c57f3bc0e2534ee081f8ede0b43 languageName: node linkType: hard -"@backstage/frontend-plugin-api@npm:^0.10.0": - version: 0.10.0 - resolution: "@backstage/frontend-plugin-api@npm:0.10.0" +"@backstage/frontend-plugin-api@npm:^0.10.1": + version: 0.10.1 + resolution: "@backstage/frontend-plugin-api@npm:0.10.1" dependencies: - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/types": "npm:^1.2.1" "@backstage/version-bridge": "npm:^1.0.11" "@material-ui/core": "npm:^4.12.4" @@ -3863,7 +3966,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/a1026603613b60af577f5fe23723deb6c1283dc6060f18a0ebfea5f92a22b73d410420f25abea159038541770f9b5c43f0668d6999b3b9e65bf0539b518c2156 + checksum: 10c0/d892c94c2feed43b6e65e3faf5fe898ee46bcbd046b92a5eaeacfb49e2d676193cd6f31d6fbb99bc6f7c2805780abe7e094218968f9fdb9cbe1604b4cf104233 languageName: node linkType: hard @@ -3891,15 +3994,15 @@ __metadata: languageName: node linkType: hard -"@backstage/frontend-test-utils@npm:^0.3.0": - version: 0.3.0 - resolution: "@backstage/frontend-test-utils@npm:0.3.0" +"@backstage/frontend-test-utils@npm:^0.3.1": + version: 0.3.1 + resolution: "@backstage/frontend-test-utils@npm:0.3.1" dependencies: "@backstage/config": "npm:^1.3.2" - "@backstage/frontend-app-api": "npm:^0.11.0" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/plugin-app": "npm:^0.1.7" - "@backstage/test-utils": "npm:^1.7.6" + "@backstage/frontend-app-api": "npm:^0.11.1" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/plugin-app": "npm:^0.1.8" + "@backstage/test-utils": "npm:^1.7.7" "@backstage/types": "npm:^1.2.1" "@backstage/version-bridge": "npm:^1.0.11" zod: "npm:^3.22.4" @@ -3912,7 +4015,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/497d26602d44547757661141f9d9602cd0b9902f23f79e74515b70d90b9fea281787743bb717120c6a7423dd516a433229fd8fc7f378030747cc087c88dbd09f + checksum: 10c0/c3c5a8596dced3645df7f6e1dbbfa863dfed485e69b173bb73e8299adefdfa5898a264266bcf1887c7a978ddfd30e8322ac0bb2e5c95950901e65042ee1b24f0 languageName: node linkType: hard @@ -3931,13 +4034,13 @@ __metadata: languageName: node linkType: hard -"@backstage/integration-react@npm:^1.2.0, @backstage/integration-react@npm:^1.2.4, @backstage/integration-react@npm:^1.2.5": - version: 1.2.5 - resolution: "@backstage/integration-react@npm:1.2.5" +"@backstage/integration-react@npm:^1.2.0, @backstage/integration-react@npm:^1.2.4, @backstage/integration-react@npm:^1.2.6": + version: 1.2.6 + resolution: "@backstage/integration-react@npm:1.2.6" dependencies: "@backstage/config": "npm:^1.3.2" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/integration": "npm:^1.16.2" + "@backstage/core-plugin-api": "npm:^1.10.6" + "@backstage/integration": "npm:^1.16.3" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" peerDependencies: @@ -3948,13 +4051,13 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/cf9ce44784b0344238a113014bd632a5aca59f4c12c46150b699cfa98beece55a9df6ea464a60fba2f2071b3f766ad9d3a1576c795dd383fa268b5e687122156 + checksum: 10c0/f0a3edf4fc82ddc9061da8d6b6af6fb1abf2c111cccca1a488ad97add1e16c46be227a55637af27c05927bd2037bbe588a801a49485f84b0e696b28aff09ba64 languageName: node linkType: hard -"@backstage/integration@npm:^1.14.0, @backstage/integration@npm:^1.15.0, @backstage/integration@npm:^1.15.1, @backstage/integration@npm:^1.16.1, @backstage/integration@npm:^1.16.2": - version: 1.16.2 - resolution: "@backstage/integration@npm:1.16.2" +"@backstage/integration@npm:^1.14.0, @backstage/integration@npm:^1.15.0, @backstage/integration@npm:^1.15.1, @backstage/integration@npm:^1.16.1, @backstage/integration@npm:^1.16.2, @backstage/integration@npm:^1.16.3": + version: 1.16.3 + resolution: "@backstage/integration@npm:1.16.3" dependencies: "@azure/identity": "npm:^4.0.0" "@azure/storage-blob": "npm:^12.5.0" @@ -3966,24 +4069,24 @@ __metadata: git-url-parse: "npm:^15.0.0" lodash: "npm:^4.17.21" luxon: "npm:^3.0.0" - checksum: 10c0/ed3abdd44d8a6047147fee74dc9792a6bfc77ef18bef19946282bcbd295fa28636b39d0642a6fa37909b117d5dbfe8896b2c068cd101fa9bf77179e16f0b328b + checksum: 10c0/da312cabb565f56a8a79866a2f19e226dee9740cd75cfa9d6ae17f6d532abb9657f6149fb578c11d2449ecfdf525846c7f49090dc31d6822e3795898df4da8a6 languageName: node linkType: hard "@backstage/plugin-api-docs@npm:^0.12.4": - version: 0.12.5 - resolution: "@backstage/plugin-api-docs@npm:0.12.5" + version: 0.12.6 + resolution: "@backstage/plugin-api-docs@npm:0.12.6" dependencies: "@asyncapi/react-component": "npm:^2.3.3" "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-compat-api": "npm:^0.4.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/plugin-catalog": "npm:^1.28.0" + "@backstage/core-compat-api": "npm:^0.4.1" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/plugin-catalog": "npm:^1.29.0" "@backstage/plugin-catalog-common": "npm:^1.1.3" - "@backstage/plugin-catalog-react": "npm:^1.16.0" - "@backstage/plugin-permission-react": "npm:^0.4.32" + "@backstage/plugin-catalog-react": "npm:^1.17.0" + "@backstage/plugin-permission-react": "npm:^0.4.33" "@graphiql/react": "npm:^0.23.0" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" @@ -4002,7 +4105,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/b1b48af92a0317b7bb5be0beeb1fd4eaa76858bce8e285c630b4a4675769ab6b81baa27cfd350e2d47d9f0418bdb1ef684022293f7e7d1ea477b123a6f942eb2 + checksum: 10c0/cde37e868967afdd3b4a1af5a0886320ea395532c406159f76d5d308b9eee21d2e3db39c7565a7a9253aa7dbb0f0def8ec8461da8cb6a4189a75e8485135b28a languageName: node linkType: hard @@ -4032,28 +4135,28 @@ __metadata: linkType: hard "@backstage/plugin-app-node@npm:^0.1.30": - version: 0.1.31 - resolution: "@backstage/plugin-app-node@npm:0.1.31" + version: 0.1.32 + resolution: "@backstage/plugin-app-node@npm:0.1.32" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config-loader": "npm:^1.10.0" "@types/express": "npm:^4.17.6" express: "npm:^4.17.1" fs-extra: "npm:^11.2.0" - checksum: 10c0/d9c009ae0ba170979f2f75af80126448c108c801751d998e9d96dd044616340906f961878e50c4cea8fac3b7411f0138f170d8c5116473f28644151605e2f886 + checksum: 10c0/5964325ebcfc5f88825c9b0fa8535792597f80d1454a68f907ee16303a4da4062d1fe990ff5c773e9eb8894612dc8012bb2aa550503012842d056e34d3e5f304 languageName: node linkType: hard -"@backstage/plugin-app@npm:^0.1.7": - version: 0.1.7 - resolution: "@backstage/plugin-app@npm:0.1.7" - dependencies: - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/integration-react": "npm:^1.2.5" - "@backstage/plugin-permission-react": "npm:^0.4.32" - "@backstage/theme": "npm:^0.6.4" +"@backstage/plugin-app@npm:^0.1.8": + version: 0.1.8 + resolution: "@backstage/plugin-app@npm:0.1.8" + dependencies: + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/integration-react": "npm:^1.2.6" + "@backstage/plugin-permission-react": "npm:^0.4.33" + "@backstage/theme": "npm:^0.6.5" "@backstage/types": "npm:^1.2.1" "@material-ui/core": "npm:^4.9.13" "@material-ui/icons": "npm:^4.9.1" @@ -4067,273 +4170,275 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/ecef3da648dcc170a4a744d3e2ad593d0e1722a63931f6ab27e3f7fb6e5afc8f5d03a960e3f31c56b304a4f218bec48ca18e124b7b614ce485fa2e77046dee75 + checksum: 10c0/169256a4ac8261ef3d241bc4323dcb5b7cfbd869692f27fab0f32d56d1f1d4a9629d9a9ed947e8de2270ba6d5ce614e5c5151a9c9fccfd40228b13ea99dca086 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-atlassian-provider@npm:^0.4.1": - version: 0.4.1 - resolution: "@backstage/plugin-auth-backend-module-atlassian-provider@npm:0.4.1" +"@backstage/plugin-auth-backend-module-atlassian-provider@npm:^0.4.2": + version: 0.4.2 + resolution: "@backstage/plugin-auth-backend-module-atlassian-provider@npm:0.4.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" express: "npm:^4.18.2" passport: "npm:^0.7.0" passport-atlassian-oauth2: "npm:^2.1.0" - checksum: 10c0/f96ce9c6e2711b8950ca96c9da3a57bac9324914f09e1d384a919c081303d5e346b57a9cec3e897306051251d47ba869b2fda562042f4740eec35c014247ff82 + checksum: 10c0/dfc338f72c071a54c071b5f9719838cbe3ab2a9a561893e524cfe084ad91ffb926d7e8a22633d59b3392220c396209d55795e3c47fd8f75315e7b9081e37d563 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-auth0-provider@npm:^0.2.1": - version: 0.2.1 - resolution: "@backstage/plugin-auth-backend-module-auth0-provider@npm:0.2.1" +"@backstage/plugin-auth-backend-module-auth0-provider@npm:^0.2.2": + version: 0.2.2 + resolution: "@backstage/plugin-auth-backend-module-auth0-provider@npm:0.2.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" express: "npm:^4.17.1" passport-auth0: "npm:^1.4.3" passport-oauth2: "npm:^1.6.1" - checksum: 10c0/c9babc7005c3d70219152be5fa26002d3cc7d9c80a7db87de074d41001e6e51b5145318cf1a6cb88a5e011b08a2e35a59cff91a010c23ae5103d2a82ac5078d0 + checksum: 10c0/11aa6337287c43a91a45419e1fc5cbc18f7be73a67141dae8a91131a0f2bb9b4276e45e029215b49680e17daf5808c542c73891b1934934a03528f13341b89af languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-aws-alb-provider@npm:^0.4.1": - version: 0.4.1 - resolution: "@backstage/plugin-auth-backend-module-aws-alb-provider@npm:0.4.1" +"@backstage/plugin-auth-backend-module-aws-alb-provider@npm:^0.4.2": + version: 0.4.2 + resolution: "@backstage/plugin-auth-backend-module-aws-alb-provider@npm:0.4.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-backend": "npm:^0.24.4" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/plugin-auth-backend": "npm:^0.24.5" + "@backstage/plugin-auth-node": "npm:^0.6.2" jose: "npm:^5.0.0" node-cache: "npm:^5.1.2" - checksum: 10c0/3c8b8afbafb4d0026dc35995f8a506f9fc2d93dde822ebdf15f027cdc4657943910baf0b6404fb88965268a10ee618a1b73b3245d8a50d0847a8ebff8173a708 + checksum: 10c0/fa6dec858606cb413f2deb7add2218787b6a82731c3cafa20c7868491e70a7c57e305889400237f6c4d36c409973e3fd6a324cb92586ad9e36ff84924e3dc368 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-azure-easyauth-provider@npm:^0.2.6": - version: 0.2.6 - resolution: "@backstage/plugin-auth-backend-module-azure-easyauth-provider@npm:0.2.6" +"@backstage/plugin-auth-backend-module-azure-easyauth-provider@npm:^0.2.7": + version: 0.2.7 + resolution: "@backstage/plugin-auth-backend-module-azure-easyauth-provider@npm:0.2.7" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/plugin-auth-node": "npm:^0.6.2" "@types/passport": "npm:^1.0.16" express: "npm:^4.19.2" jose: "npm:^5.0.0" passport: "npm:^0.7.0" - checksum: 10c0/02cdc261a071a9cabb8023797fd53fdc2b0706356749a6fac4b3ff2852b76952b199f7b7abc113cbe05c1d2970947178e3517bf4054c7880fdac5c18d65cc201 + checksum: 10c0/6d4ae8a356ea4bebbef48eafb13c5a50271708ee0bba83ea943a5561f1a7fc3379864f2e0fdb3f0924671b573192f5818268a080d9b0eb0a04b85eb7040c37ac languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-bitbucket-provider@npm:^0.3.1": - version: 0.3.1 - resolution: "@backstage/plugin-auth-backend-module-bitbucket-provider@npm:0.3.1" +"@backstage/plugin-auth-backend-module-bitbucket-provider@npm:^0.3.2": + version: 0.3.2 + resolution: "@backstage/plugin-auth-backend-module-bitbucket-provider@npm:0.3.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" express: "npm:^4.18.2" passport: "npm:^0.7.0" passport-bitbucket-oauth2: "npm:^0.1.2" - checksum: 10c0/d3ae649313d8a8af146dd1b82a14909d619d737e4a8973bc6f33233101263c8ff80dbf156b1c66fe8ceb836c82e717d5820b79e388b27fa5732ac6f0375373b2 + checksum: 10c0/6b7b09645ffda760db2fb9f8d84a34e28741e0a6986174a77c6ea3b7339790656f63a9d03605e320379549e0d2cbffd3b192689db32c7e648b5cd70ff5f21a2e languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-bitbucket-server-provider@npm:^0.2.1": - version: 0.2.1 - resolution: "@backstage/plugin-auth-backend-module-bitbucket-server-provider@npm:0.2.1" +"@backstage/plugin-auth-backend-module-bitbucket-server-provider@npm:^0.2.2": + version: 0.2.2 + resolution: "@backstage/plugin-auth-backend-module-bitbucket-server-provider@npm:0.2.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" passport: "npm:^0.7.0" passport-oauth2: "npm:^1.6.1" - checksum: 10c0/d20a5122060a522a00469ef8bd961186ddcaeb047192b5864d3b4d99c9ab749918ad256cd55f45ec99c90b408fed4cac960cec229b19b1d4cdac3c708b32c65b + checksum: 10c0/8acb9222a2ab89cf809a2d4c5876a520b9bd84420c1d4d1fe5554b87b5d75d3848a0eda3c158e9efe72c6e02517da1e0a3f656ecc1d05d4f4b4851935e88f1a4 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-cloudflare-access-provider@npm:^0.4.1": - version: 0.4.1 - resolution: "@backstage/plugin-auth-backend-module-cloudflare-access-provider@npm:0.4.1" +"@backstage/plugin-auth-backend-module-cloudflare-access-provider@npm:^0.4.2": + version: 0.4.2 + resolution: "@backstage/plugin-auth-backend-module-cloudflare-access-provider@npm:0.4.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/plugin-auth-node": "npm:^0.6.2" express: "npm:^4.18.2" jose: "npm:^5.0.0" - checksum: 10c0/0cfedc7e4bad52a455988378c251125c1198eb6da948c57c3596b98e2125d664645148c6844c637ef5b817c4eaf4887ec95b94dd5c8c946a34b893292a3c2248 + checksum: 10c0/40883590972704ee283eed7b07f83e66970341983d767f6b56f893c36ba98cc13078db38f03119deb498886868da016513bedfaafc3b8ab87bb4593ecc4966c4 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-gcp-iap-provider@npm:^0.4.1": - version: 0.4.1 - resolution: "@backstage/plugin-auth-backend-module-gcp-iap-provider@npm:0.4.1" +"@backstage/plugin-auth-backend-module-gcp-iap-provider@npm:^0.4.2": + version: 0.4.2 + resolution: "@backstage/plugin-auth-backend-module-gcp-iap-provider@npm:0.4.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/plugin-auth-node": "npm:^0.6.2" "@backstage/types": "npm:^1.2.1" google-auth-library: "npm:^9.0.0" - checksum: 10c0/249c57d29b91a6f4a0b1a8370e2f0b6054d66ae7a52fc031162a66c196a7e1e4fb33dbc495d3eb765379bc8f74239e35cc46fa38129c7782d24e13723beaaeb6 + checksum: 10c0/9f6f11e6c51ef43c6c9fbb6af2ee7e87a0011a70b21673a6d8dace3cc0427353c5e04f94c116258bcd8f4f907c1b6eaa8e404da06ec828392bd08743753ff093 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-github-provider@npm:^0.3.0, @backstage/plugin-auth-backend-module-github-provider@npm:^0.3.1": - version: 0.3.1 - resolution: "@backstage/plugin-auth-backend-module-github-provider@npm:0.3.1" +"@backstage/plugin-auth-backend-module-github-provider@npm:^0.3.0, @backstage/plugin-auth-backend-module-github-provider@npm:^0.3.2": + version: 0.3.2 + resolution: "@backstage/plugin-auth-backend-module-github-provider@npm:0.3.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" passport-github2: "npm:^0.1.12" - checksum: 10c0/700e18407549023ba92054a74015c29ccd1b3f9b7ec44efa1112c63123440e8144003f1c61bbe666ced0cd4cb788e757bd40d310432d1c5a8499ed37c6637a63 + checksum: 10c0/ee4a208d872831890f52ccc32dad9a142f6758861187e496f5964f00189b65698735505916ba7d8f0a8822721958caa8fd0ab00ab390c372b934dec9cf0b7b95 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-gitlab-provider@npm:^0.3.1": - version: 0.3.1 - resolution: "@backstage/plugin-auth-backend-module-gitlab-provider@npm:0.3.1" +"@backstage/plugin-auth-backend-module-gitlab-provider@npm:^0.3.2": + version: 0.3.2 + resolution: "@backstage/plugin-auth-backend-module-gitlab-provider@npm:0.3.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" express: "npm:^4.18.2" passport: "npm:^0.7.0" passport-gitlab2: "npm:^5.0.0" - checksum: 10c0/4369472a57f6c232e1fd7dcffb11619fe123a1f6c1eae9b254713839c3231f6b92b598f76501f038107996ad2c56470dcd4e60bf28e92711016c50c72b72b614 + checksum: 10c0/6780952f4c95d4471669f06ffc11a3b34b3cc4cd7475e5439f1b82838747a766474bb3f45da25ddea4823f1959b1a8661cf76706183993aea3dd383faff3a8de languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-google-provider@npm:^0.3.1": - version: 0.3.1 - resolution: "@backstage/plugin-auth-backend-module-google-provider@npm:0.3.1" +"@backstage/plugin-auth-backend-module-google-provider@npm:^0.3.2": + version: 0.3.2 + resolution: "@backstage/plugin-auth-backend-module-google-provider@npm:0.3.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" google-auth-library: "npm:^9.0.0" passport-google-oauth20: "npm:^2.0.0" - checksum: 10c0/9b711f5b665c44d77514641612457a6e2819bf70b2e2f856833c000b73c8421cc772324cedda1052b2626e706d51c1b17f17feb03068a98f26bae377b46d259e + checksum: 10c0/278f4ce54fd3c550830bbed7707644379bce45d7e86c2188391bd16e17ea8a0d288403d3441160d711f516f6a525e8bdeed822365b8568fb46a375a31d15a1af languageName: node linkType: hard "@backstage/plugin-auth-backend-module-guest-provider@npm:^0.2.5": - version: 0.2.6 - resolution: "@backstage/plugin-auth-backend-module-guest-provider@npm:0.2.6" + version: 0.2.7 + resolution: "@backstage/plugin-auth-backend-module-guest-provider@npm:0.2.7" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/plugin-auth-node": "npm:^0.6.2" passport-oauth2: "npm:^1.7.0" - checksum: 10c0/415397ed5f33b42c5219aa86fd18c1b7b1d6b0792aab90d81c5095c6f00aeb426a5b7c5809d91932f183db4ae56e59bcdb0cf7a438c97e209950458f0d8f3e70 + checksum: 10c0/c914bbbf7598c24fd4b788eda1f5752d3454e9af5f6ccf0f2b352b80950f4332c0f5d91be11069f3f5af4be10a87a3fbf35d01b1dd630c7e6b766b9cf1055d2d languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-microsoft-provider@npm:^0.3.1": - version: 0.3.1 - resolution: "@backstage/plugin-auth-backend-module-microsoft-provider@npm:0.3.1" +"@backstage/plugin-auth-backend-module-microsoft-provider@npm:^0.3.2": + version: 0.3.2 + resolution: "@backstage/plugin-auth-backend-module-microsoft-provider@npm:0.3.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" express: "npm:^4.18.2" jose: "npm:^5.0.0" passport-microsoft: "npm:^1.0.0" - checksum: 10c0/1d10dc7849db4a2df169245117d94c14bfe98b307fba679af0fcec493c8e147fc8e1d4fbc29468e9641f09629bef9556b52165f6a0100c619df778a947b854f8 + checksum: 10c0/415931cd91330a985b4338b6839e5c6803c7f19272d348787cad52b08ef7d7f853e22763ceec488f4e3172c5009be315009217545d48df93395fa06782799c57 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-oauth2-provider@npm:^0.4.1": - version: 0.4.1 - resolution: "@backstage/plugin-auth-backend-module-oauth2-provider@npm:0.4.1" +"@backstage/plugin-auth-backend-module-oauth2-provider@npm:^0.4.2": + version: 0.4.2 + resolution: "@backstage/plugin-auth-backend-module-oauth2-provider@npm:0.4.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" passport: "npm:^0.7.0" passport-oauth2: "npm:^1.6.1" - checksum: 10c0/997bee0823240eb05bfecb04ecdbe5eed3e55f19befcf6f9103c733012b07625a7c5fe3fd135ea8eb92aa458adea0cd3f16eeadfa2ccdc2f5eff08e9a356452e + checksum: 10c0/3dbd4b6170b43083357fb869c7c5654c7ed643af86ff750a0e4ec4d9479309bf4e9b9672eef4f16494bd4276132dace268eec75d72e2dd23fd3af0722ca6877d languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-oauth2-proxy-provider@npm:^0.2.5, @backstage/plugin-auth-backend-module-oauth2-proxy-provider@npm:^0.2.6": - version: 0.2.6 - resolution: "@backstage/plugin-auth-backend-module-oauth2-proxy-provider@npm:0.2.6" +"@backstage/plugin-auth-backend-module-oauth2-proxy-provider@npm:^0.2.5, @backstage/plugin-auth-backend-module-oauth2-proxy-provider@npm:^0.2.7": + version: 0.2.7 + resolution: "@backstage/plugin-auth-backend-module-oauth2-proxy-provider@npm:0.2.7" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/plugin-auth-node": "npm:^0.6.2" jose: "npm:^5.0.0" - checksum: 10c0/8bb4a0da3283ad5482042116dcb3b29851755868e76d14ddca95f610c4081860b829643b0df443d9522b0fb8d4fb653e51231a98d66ca65ef48a631c5acb0922 + checksum: 10c0/8f7f4e0bb1296baa2689b6fb0a5d77ccb909bd8f767cc0991649c37ee2eaea1222b1899079bc81c17a75c41928597d13961d43ac2bb570bf3b88970fed0d11be languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-oidc-provider@npm:^0.4.1": - version: 0.4.1 - resolution: "@backstage/plugin-auth-backend-module-oidc-provider@npm:0.4.1" +"@backstage/plugin-auth-backend-module-oidc-provider@npm:^0.4.2": + version: 0.4.2 + resolution: "@backstage/plugin-auth-backend-module-oidc-provider@npm:0.4.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-backend": "npm:^0.24.4" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/config": "npm:^1.3.2" + "@backstage/plugin-auth-backend": "npm:^0.24.5" + "@backstage/plugin-auth-node": "npm:^0.6.2" + "@backstage/types": "npm:^1.2.1" express: "npm:^4.18.2" openid-client: "npm:^5.5.0" passport: "npm:^0.7.0" - checksum: 10c0/95b37da14feb22344b69f1e482ef930f7553ae76a591469d176eaaac6e070cd628fbd91bdb8c38efff49ac5dda0c9d8374fe3efe6a5b559ce363b84c10666995 + checksum: 10c0/6bb7b506b4850274a79eeffb3c0e7ea986c03c10776c09858fc5c07c9b1bdaeb896f5264660b9355b0325dfbb4f1568217db468bde9476229bf84f168ee31800 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-okta-provider@npm:^0.2.1": - version: 0.2.1 - resolution: "@backstage/plugin-auth-backend-module-okta-provider@npm:0.2.1" +"@backstage/plugin-auth-backend-module-okta-provider@npm:^0.2.2": + version: 0.2.2 + resolution: "@backstage/plugin-auth-backend-module-okta-provider@npm:0.2.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" "@davidzemon/passport-okta-oauth": "npm:^0.0.5" express: "npm:^4.18.2" passport: "npm:^0.7.0" - checksum: 10c0/673fcce57b9a90625ad51e67c694246e823e696f821302ca9180b5c40d77aa90fc818b97eef3781f3851817ad6f71ff542d05b70328d61a7173584b7335dffa0 + checksum: 10c0/5c99873a9821961cea41cd800bbbd242458bfdad471da33823a4e6b0ceaaf56f4e8f133b3a3c4a9c98092d4e5de402cbe62fca06e492e48530ae02a12b300042 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-onelogin-provider@npm:^0.3.1": - version: 0.3.1 - resolution: "@backstage/plugin-auth-backend-module-onelogin-provider@npm:0.3.1" +"@backstage/plugin-auth-backend-module-onelogin-provider@npm:^0.3.2": + version: 0.3.2 + resolution: "@backstage/plugin-auth-backend-module-onelogin-provider@npm:0.3.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" express: "npm:^4.18.2" passport: "npm:^0.7.0" passport-onelogin-oauth: "npm:^0.0.1" - checksum: 10c0/0fcdda4a9ad447105b2ebc208701d33ac7f9028ce24c6369ad56fbd2fdfbec99acc643e4d00604f7db5b5666f80448f8da53d595a6aebad5ec0b664c75db6397 + checksum: 10c0/0b089a1ff74a6bdca0b81caa84557bfb314286a78da81c922c4023e4f5545634a28b0cb9949f669677e08813365459513d4f88b7f7a57b672c2a418b3277b01e languageName: node linkType: hard -"@backstage/plugin-auth-backend@npm:^0.24.3, @backstage/plugin-auth-backend@npm:^0.24.4": - version: 0.24.4 - resolution: "@backstage/plugin-auth-backend@npm:0.24.4" +"@backstage/plugin-auth-backend@npm:^0.24.3, @backstage/plugin-auth-backend@npm:^0.24.5": + version: 0.24.5 + resolution: "@backstage/plugin-auth-backend@npm:0.24.5" dependencies: "@backstage/backend-common": "npm:^0.25.0" - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-backend-module-atlassian-provider": "npm:^0.4.1" - "@backstage/plugin-auth-backend-module-auth0-provider": "npm:^0.2.1" - "@backstage/plugin-auth-backend-module-aws-alb-provider": "npm:^0.4.1" - "@backstage/plugin-auth-backend-module-azure-easyauth-provider": "npm:^0.2.6" - "@backstage/plugin-auth-backend-module-bitbucket-provider": "npm:^0.3.1" - "@backstage/plugin-auth-backend-module-bitbucket-server-provider": "npm:^0.2.1" - "@backstage/plugin-auth-backend-module-cloudflare-access-provider": "npm:^0.4.1" - "@backstage/plugin-auth-backend-module-gcp-iap-provider": "npm:^0.4.1" - "@backstage/plugin-auth-backend-module-github-provider": "npm:^0.3.1" - "@backstage/plugin-auth-backend-module-gitlab-provider": "npm:^0.3.1" - "@backstage/plugin-auth-backend-module-google-provider": "npm:^0.3.1" - "@backstage/plugin-auth-backend-module-microsoft-provider": "npm:^0.3.1" - "@backstage/plugin-auth-backend-module-oauth2-provider": "npm:^0.4.1" - "@backstage/plugin-auth-backend-module-oauth2-proxy-provider": "npm:^0.2.6" - "@backstage/plugin-auth-backend-module-oidc-provider": "npm:^0.4.1" - "@backstage/plugin-auth-backend-module-okta-provider": "npm:^0.2.1" - "@backstage/plugin-auth-backend-module-onelogin-provider": "npm:^0.3.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" - "@backstage/plugin-catalog-node": "npm:^1.16.1" + "@backstage/plugin-auth-backend-module-atlassian-provider": "npm:^0.4.2" + "@backstage/plugin-auth-backend-module-auth0-provider": "npm:^0.2.2" + "@backstage/plugin-auth-backend-module-aws-alb-provider": "npm:^0.4.2" + "@backstage/plugin-auth-backend-module-azure-easyauth-provider": "npm:^0.2.7" + "@backstage/plugin-auth-backend-module-bitbucket-provider": "npm:^0.3.2" + "@backstage/plugin-auth-backend-module-bitbucket-server-provider": "npm:^0.2.2" + "@backstage/plugin-auth-backend-module-cloudflare-access-provider": "npm:^0.4.2" + "@backstage/plugin-auth-backend-module-gcp-iap-provider": "npm:^0.4.2" + "@backstage/plugin-auth-backend-module-github-provider": "npm:^0.3.2" + "@backstage/plugin-auth-backend-module-gitlab-provider": "npm:^0.3.2" + "@backstage/plugin-auth-backend-module-google-provider": "npm:^0.3.2" + "@backstage/plugin-auth-backend-module-microsoft-provider": "npm:^0.3.2" + "@backstage/plugin-auth-backend-module-oauth2-provider": "npm:^0.4.2" + "@backstage/plugin-auth-backend-module-oauth2-proxy-provider": "npm:^0.2.7" + "@backstage/plugin-auth-backend-module-oidc-provider": "npm:^0.4.2" + "@backstage/plugin-auth-backend-module-okta-provider": "npm:^0.2.2" + "@backstage/plugin-auth-backend-module-onelogin-provider": "npm:^0.3.2" + "@backstage/plugin-auth-node": "npm:^0.6.2" + "@backstage/plugin-catalog-node": "npm:^1.16.3" "@backstage/types": "npm:^1.2.1" "@google-cloud/firestore": "npm:^7.0.0" "@node-saml/passport-saml": "npm:^5.0.0" @@ -4366,7 +4471,7 @@ __metadata: uuid: "npm:^11.0.0" winston: "npm:^3.2.1" yn: "npm:^4.0.0" - checksum: 10c0/2217232cd89766e56c71c09a37f3aaf24b36602b14c2484204c559ac70528c5d4ce901d5bb50b495b9232bd6eab4cd2d509a61c78dba50c1f0850e076f0b19de + checksum: 10c0/b213fd77bfc7ae61f27edb05610ba5078cffed5ed1a902a0e4baf060d3fedf3aeb5edea568a43b714b830893b18b4ddb8bc2446479f9f6aff0cd2305957b4a7f languageName: node linkType: hard @@ -4395,11 +4500,11 @@ __metadata: languageName: node linkType: hard -"@backstage/plugin-auth-node@npm:^0.6.0, @backstage/plugin-auth-node@npm:^0.6.1": - version: 0.6.1 - resolution: "@backstage/plugin-auth-node@npm:0.6.1" +"@backstage/plugin-auth-node@npm:^0.6.0, @backstage/plugin-auth-node@npm:^0.6.1, @backstage/plugin-auth-node@npm:^0.6.2": + version: 0.6.2 + resolution: "@backstage/plugin-auth-node@npm:0.6.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" @@ -4414,16 +4519,16 @@ __metadata: zod: "npm:^3.22.4" zod-to-json-schema: "npm:^3.21.4" zod-validation-error: "npm:^3.4.0" - checksum: 10c0/3b42bdb4e47ec9feb01b3c26af8659672a5ba1c71084f26ac952c3cfa90cbf199234eaee4024454ee19fd4a4ac88b841bbc2988c4a3d4afe6794c98238ce6943 + checksum: 10c0/cb49d6f2160cbfc85aa48ef54c9b4b6eeedee320aa7aaf3d41375443be259e9eb28298a18dc62dbc62d59e4a9397fb2827ea7191d2e902d697780dc3d0db6363 languageName: node linkType: hard -"@backstage/plugin-auth-react@npm:^0.1.13": - version: 0.1.13 - resolution: "@backstage/plugin-auth-react@npm:0.1.13" +"@backstage/plugin-auth-react@npm:^0.1.14": + version: 0.1.14 + resolution: "@backstage/plugin-auth-react@npm:0.1.14" dependencies: - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/errors": "npm:^1.2.7" "@material-ui/core": "npm:^4.9.13" "@react-hookz/web": "npm:^24.0.0" @@ -4435,34 +4540,34 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/eb10a2f30b430807e66b0a7afbaa683bdbad4d20f7ac918831852a82501d5a5401ad65abce657a04feea109082ffeb3f9ba87fc90dbdae11b2f2a2433834e865 + checksum: 10c0/5e99a473ee965c35bc220e92648b535a407bfe3cb840f9a690d52f46b5841f6bef34a28aedb8640c972ddbba8a937aba464db40cade546edfcc9e01ed1b855ef languageName: node linkType: hard -"@backstage/plugin-bitbucket-cloud-common@npm:^0.2.28": - version: 0.2.28 - resolution: "@backstage/plugin-bitbucket-cloud-common@npm:0.2.28" +"@backstage/plugin-bitbucket-cloud-common@npm:^0.2.29": + version: 0.2.29 + resolution: "@backstage/plugin-bitbucket-cloud-common@npm:0.2.29" dependencies: - "@backstage/integration": "npm:^1.16.2" + "@backstage/integration": "npm:^1.16.3" cross-fetch: "npm:^4.0.0" - checksum: 10c0/65045e5d4ed62cdf314e535da9a84aafdabe78ee8d2eb13fb7e79ac9b415c0b38e0c9a752f22eb0b0c900818eef21128942f2480154db593f34e8e0ee8a0a2fc + checksum: 10c0/57eb382bb94304275363f90f3d1b3f64878c7a7baf7a7aa2899f5ea6a90a5cad5ee7a382a0372c5214543c0804e259d14991908a03f25b5d903a61529e6bfa62 languageName: node linkType: hard "@backstage/plugin-catalog-backend-module-github-org@npm:^0.3.7": - version: 0.3.8 - resolution: "@backstage/plugin-catalog-backend-module-github-org@npm:0.3.8" + version: 0.3.9 + resolution: "@backstage/plugin-catalog-backend-module-github-org@npm:0.3.9" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" - "@backstage/plugin-catalog-backend-module-github": "npm:^0.7.11" - "@backstage/plugin-catalog-node": "npm:^1.16.1" - "@backstage/plugin-events-node": "npm:^0.4.9" - checksum: 10c0/6a1feaba9cc8c8fd060f7f76574fd46d23fd199c948e5f149719f51b8db04c2b6449bbc7dc4cab5dac9ace27f086e5b75f53b857278784601e789914bf8d6a05 + "@backstage/plugin-catalog-backend-module-github": "npm:^0.8.0" + "@backstage/plugin-catalog-node": "npm:^1.16.3" + "@backstage/plugin-events-node": "npm:^0.4.10" + checksum: 10c0/affcb3824af5c243f4f4a755c121efeaa18c8561976dbb26648f7e86734ba41d77e1d579f968c054683e08518252b665cc208466fded7cc990bd508f65665fd7 languageName: node linkType: hard -"@backstage/plugin-catalog-backend-module-github@npm:^0.7.10, @backstage/plugin-catalog-backend-module-github@npm:^0.7.11": +"@backstage/plugin-catalog-backend-module-github@npm:^0.7.10": version: 0.7.11 resolution: "@backstage/plugin-catalog-backend-module-github@npm:0.7.11" dependencies: @@ -4488,48 +4593,74 @@ __metadata: languageName: node linkType: hard +"@backstage/plugin-catalog-backend-module-github@npm:^0.8.0": + version: 0.8.0 + resolution: "@backstage/plugin-catalog-backend-module-github@npm:0.8.0" + dependencies: + "@backstage/backend-common": "npm:^0.25.0" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/catalog-client": "npm:^1.9.1" + "@backstage/catalog-model": "npm:^1.7.3" + "@backstage/config": "npm:^1.3.2" + "@backstage/integration": "npm:^1.16.3" + "@backstage/plugin-catalog-backend": "npm:^1.32.1" + "@backstage/plugin-catalog-common": "npm:^1.1.3" + "@backstage/plugin-catalog-node": "npm:^1.16.3" + "@backstage/plugin-events-node": "npm:^0.4.10" + "@octokit/core": "npm:^5.2.0" + "@octokit/graphql": "npm:^7.0.2" + "@octokit/plugin-throttling": "npm:^8.1.3" + "@octokit/rest": "npm:^19.0.3" + git-url-parse: "npm:^15.0.0" + lodash: "npm:^4.17.21" + minimatch: "npm:^9.0.0" + uuid: "npm:^11.0.0" + checksum: 10c0/475e6ce2bc2d896cb8d749f2c008d0f76281d2170d5c668932b2365cacbac4641becb058f88a759034a58a8c87b7d1ba2ff06934752b2b6614aaa11c2da6aee2 + languageName: node + linkType: hard + "@backstage/plugin-catalog-backend-module-logs@npm:^0.1.7": - version: 0.1.8 - resolution: "@backstage/plugin-catalog-backend-module-logs@npm:0.1.8" + version: 0.1.9 + resolution: "@backstage/plugin-catalog-backend-module-logs@npm:0.1.9" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-catalog-backend": "npm:^1.32.0" - "@backstage/plugin-events-node": "npm:^0.4.9" - checksum: 10c0/3f959e91459f182e41656ef56b5e36662dca0a11b53bc8fb4a9d67550c36c1ed577a7767447c9243dfbe22e2301f0872fbc0ec369caa4d2522e79da59ea55c72 + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-catalog-backend": "npm:^1.32.1" + "@backstage/plugin-events-node": "npm:^0.4.10" + checksum: 10c0/29e9c27e2351386577d7ee01ed71161e93213555a3b70bb8252d7736b71fbf3420ade85b4ddf1997d7babda45c2aba72c9abdd9cf32385b294c36466f07d836f languageName: node linkType: hard -"@backstage/plugin-catalog-backend-module-scaffolder-entity-model@npm:^0.2.5, @backstage/plugin-catalog-backend-module-scaffolder-entity-model@npm:^0.2.6": - version: 0.2.6 - resolution: "@backstage/plugin-catalog-backend-module-scaffolder-entity-model@npm:0.2.6" +"@backstage/plugin-catalog-backend-module-scaffolder-entity-model@npm:^0.2.5, @backstage/plugin-catalog-backend-module-scaffolder-entity-model@npm:^0.2.7": + version: 0.2.7 + resolution: "@backstage/plugin-catalog-backend-module-scaffolder-entity-model@npm:0.2.7" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/plugin-catalog-common": "npm:^1.1.3" - "@backstage/plugin-catalog-node": "npm:^1.16.1" + "@backstage/plugin-catalog-node": "npm:^1.16.3" "@backstage/plugin-scaffolder-common": "npm:^1.5.10" - checksum: 10c0/2fa65857a19b876d6c89ad13e9502a4d938cfe2ecdd18ce242dad61c0ad89b70ab386299f83e81c79a821123a7698b50db48de7732219c783f64ad58987aa97d + checksum: 10c0/98c0341852cce8151b4512fadb4d965819f51cb68726b1b46e28a577b97077149f89d986840a138626507a7f6fb62a6898a798acc5ab185a5c01fa7d9f9760d8 languageName: node linkType: hard -"@backstage/plugin-catalog-backend@npm:^1.31.0, @backstage/plugin-catalog-backend@npm:^1.32.0": - version: 1.32.0 - resolution: "@backstage/plugin-catalog-backend@npm:1.32.0" +"@backstage/plugin-catalog-backend@npm:^1.31.0, @backstage/plugin-catalog-backend@npm:^1.32.0, @backstage/plugin-catalog-backend@npm:^1.32.1": + version: 1.32.1 + resolution: "@backstage/plugin-catalog-backend@npm:1.32.1" dependencies: "@backstage/backend-common": "npm:^0.25.0" - "@backstage/backend-openapi-utils": "npm:^0.5.1" - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-openapi-utils": "npm:^0.5.2" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/integration": "npm:^1.16.2" + "@backstage/integration": "npm:^1.16.3" "@backstage/plugin-catalog-common": "npm:^1.1.3" - "@backstage/plugin-catalog-node": "npm:^1.16.1" - "@backstage/plugin-events-node": "npm:^0.4.9" + "@backstage/plugin-catalog-node": "npm:^1.16.3" + "@backstage/plugin-events-node": "npm:^0.4.10" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-permission-node": "npm:^0.9.0" - "@backstage/plugin-search-backend-module-catalog": "npm:^0.3.2" + "@backstage/plugin-permission-node": "npm:^0.9.1" + "@backstage/plugin-search-backend-module-catalog": "npm:^0.3.3" "@backstage/plugin-search-common": "npm:^1.2.17" "@backstage/types": "npm:^1.2.1" "@opentelemetry/api": "npm:^1.9.0" @@ -4551,7 +4682,7 @@ __metadata: yaml: "npm:^2.0.0" yn: "npm:^4.0.0" zod: "npm:^3.22.4" - checksum: 10c0/50e1663063fec35c0b909c4db7154b40950cfd92fb65e54f6861387a37007c4dd432dd5767f2f5d8184cb7a802bdf30ef2bf11e8aea07542707f0ad2b73bfc51 + checksum: 10c0/99b6cee7b0a7ff6c4badddc77d0dc32d9d129887c1bdcbc9804e3a96ff453edd1fc8c8c1e0680cc415e7ab0dce448b1bb37e961968fdc213b76624f5fc477752 languageName: node linkType: hard @@ -4567,16 +4698,16 @@ __metadata: linkType: hard "@backstage/plugin-catalog-graph@npm:^0.4.16": - version: 0.4.17 - resolution: "@backstage/plugin-catalog-graph@npm:0.4.17" + version: 0.4.18 + resolution: "@backstage/plugin-catalog-graph@npm:0.4.18" dependencies: "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-compat-api": "npm:^0.4.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/plugin-catalog-react": "npm:^1.16.0" + "@backstage/core-compat-api": "npm:^0.4.1" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/plugin-catalog-react": "npm:^1.17.0" "@backstage/types": "npm:^1.2.1" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" @@ -4594,26 +4725,26 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/bf391d8124e15c2937f22dc4bd8b32ba3e51851f5c763a39ef46ec59ec53dd06b54daa3b0ec2f39bf992f013ebbadd85b9cfd414b09b2e5ad8b50fce462dac36 + checksum: 10c0/80f5b787f9ccc660d87735d561f4b61d81e4a8908833ca4a4606a5260606c1f3fba4fa8367f046e284d9bc4c16c37fe41dfca0999c960c02e053c159fd27813c languageName: node linkType: hard "@backstage/plugin-catalog-import@npm:^0.12.10": - version: 0.12.11 - resolution: "@backstage/plugin-catalog-import@npm:0.12.11" + version: 0.12.13 + resolution: "@backstage/plugin-catalog-import@npm:0.12.13" dependencies: "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" - "@backstage/core-compat-api": "npm:^0.4.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-compat-api": "npm:^0.4.1" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/errors": "npm:^1.2.7" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/integration": "npm:^1.16.2" - "@backstage/integration-react": "npm:^1.2.5" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/integration": "npm:^1.16.3" + "@backstage/integration-react": "npm:^1.2.6" "@backstage/plugin-catalog-common": "npm:^1.1.3" - "@backstage/plugin-catalog-react": "npm:^1.16.0" + "@backstage/plugin-catalog-react": "npm:^1.17.0" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" "@material-ui/lab": "npm:4.0.0-alpha.61" @@ -4632,42 +4763,42 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/55989b6860fb354d7a765dad2cd7d4a29b2013a81e3d1e0bdd3dad47479bdb5273034f95c87f884494445c244a868ca4a764e5ce92f64578922abd87512cf06b + checksum: 10c0/02fa8088c5be1a8d14651db1bb69c0e0f5428d0f7dcb983fe1fa228ba0ffdeeaaf152266a90ebf81bf3cded7307a4f04bd645df3485fc681f13d064b75e7f1c7 languageName: node linkType: hard -"@backstage/plugin-catalog-node@npm:^1.16.0, @backstage/plugin-catalog-node@npm:^1.16.1": - version: 1.16.1 - resolution: "@backstage/plugin-catalog-node@npm:1.16.1" +"@backstage/plugin-catalog-node@npm:^1.16.0, @backstage/plugin-catalog-node@npm:^1.16.1, @backstage/plugin-catalog-node@npm:^1.16.3": + version: 1.16.3 + resolution: "@backstage/plugin-catalog-node@npm:1.16.3" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/errors": "npm:^1.2.7" "@backstage/plugin-catalog-common": "npm:^1.1.3" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-permission-node": "npm:^0.9.0" + "@backstage/plugin-permission-node": "npm:^0.9.1" "@backstage/types": "npm:^1.2.1" - checksum: 10c0/13d6eb1a8503cdc343f549cc4375b836a00155a17cac7e78f6fce76c16918cbcddee1a293a5df72f7b6e4f3374171ac974c89d06ddb481fc6be99ddb012f989f + checksum: 10c0/d3ded2956504216896e15fe375ae1abb2f11140d02a5cc0ac4c9cc8ca386c8dd5a3c79efb683bc60cd3bdf7e488892de67141a9ec6c6fff124a266b7efcf56a3 languageName: node linkType: hard -"@backstage/plugin-catalog-react@npm:^1.14.0, @backstage/plugin-catalog-react@npm:^1.15.2, @backstage/plugin-catalog-react@npm:^1.16.0": - version: 1.16.0 - resolution: "@backstage/plugin-catalog-react@npm:1.16.0" +"@backstage/plugin-catalog-react@npm:^1.14.0, @backstage/plugin-catalog-react@npm:^1.15.2, @backstage/plugin-catalog-react@npm:^1.17.0": + version: 1.17.0 + resolution: "@backstage/plugin-catalog-react@npm:1.17.0" dependencies: "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-compat-api": "npm:^0.4.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-compat-api": "npm:^0.4.1" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/errors": "npm:^1.2.7" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/frontend-test-utils": "npm:^0.3.0" - "@backstage/integration-react": "npm:^1.2.5" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/frontend-test-utils": "npm:^0.3.1" + "@backstage/integration-react": "npm:^1.2.6" "@backstage/plugin-catalog-common": "npm:^1.1.3" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-permission-react": "npm:^0.4.32" + "@backstage/plugin-permission-react": "npm:^0.4.33" "@backstage/types": "npm:^1.2.1" "@backstage/version-bridge": "npm:^1.0.11" "@material-ui/core": "npm:^4.12.2" @@ -4689,29 +4820,30 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/e42be3c4403226efefab5adf047592b9b15797f45dc5b5adbf4c46533dd0b3a16067101f8dc34c922d6354656d8df4cb71b7ff5abcf05ecb9af49f3a26040474 + checksum: 10c0/7107b6bad528559cc9ddc3dd01a2e2d7ca324a871fe23c6d5a8c31bee621c599a7cc699c595b409624e631063b13052a63be3410a95234a0d7671ca3f30fb4f1 languageName: node linkType: hard -"@backstage/plugin-catalog@npm:^1.27.0, @backstage/plugin-catalog@npm:^1.28.0": - version: 1.28.0 - resolution: "@backstage/plugin-catalog@npm:1.28.0" +"@backstage/plugin-catalog@npm:^1.27.0, @backstage/plugin-catalog@npm:^1.29.0": + version: 1.29.0 + resolution: "@backstage/plugin-catalog@npm:1.29.0" dependencies: "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-compat-api": "npm:^0.4.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-compat-api": "npm:^0.4.1" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/errors": "npm:^1.2.7" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/integration-react": "npm:^1.2.5" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/integration-react": "npm:^1.2.6" "@backstage/plugin-catalog-common": "npm:^1.1.3" - "@backstage/plugin-catalog-react": "npm:^1.16.0" - "@backstage/plugin-permission-react": "npm:^0.4.32" + "@backstage/plugin-catalog-react": "npm:^1.17.0" + "@backstage/plugin-permission-react": "npm:^0.4.33" "@backstage/plugin-scaffolder-common": "npm:^1.5.10" "@backstage/plugin-search-common": "npm:^1.2.17" - "@backstage/plugin-search-react": "npm:^1.8.7" + "@backstage/plugin-search-react": "npm:^1.8.8" "@backstage/types": "npm:^1.2.1" + "@backstage/version-bridge": "npm:^1.0.11" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" "@material-ui/lab": "npm:4.0.0-alpha.61" @@ -4732,15 +4864,15 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/840993956f8ad6cb35cc36fbbcf72370dca96752aeb451c7dfebea754d5e1d578e89614c185db1ee40ea3d4cbce93114248d21f43a9d98e065bda779f9a3b7b3 + checksum: 10c0/376c8b68e1aeb52b55bb4538ef92cc2087558d86a5e6acb6d30fa35abc982df69f9c0543e20707e77fe6698f69680ba8c1b9657bd9e7cc40412adad33084144d languageName: node linkType: hard -"@backstage/plugin-events-node@npm:^0.4.9": - version: 0.4.9 - resolution: "@backstage/plugin-events-node@npm:0.4.9" +"@backstage/plugin-events-node@npm:^0.4.10, @backstage/plugin-events-node@npm:^0.4.9": + version: 0.4.10 + resolution: "@backstage/plugin-events-node@npm:0.4.10" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/errors": "npm:^1.2.7" "@backstage/types": "npm:^1.2.1" "@types/content-type": "npm:^1.1.8" @@ -4749,16 +4881,16 @@ __metadata: cross-fetch: "npm:^4.0.0" express: "npm:^4.17.1" uri-template: "npm:^2.0.0" - checksum: 10c0/111fb7223b76794d95eb73c393755cc9a1d2d1c0cfbd8411f679c32e7c4c0fdc76f313298feca7a209b52a104efc1dacbc071877aba11db0c509f52691a6f073 + checksum: 10c0/e6014659a9619e3db397168810b75f660b5d370aa729b90d0e3436fb3928a33ed9fdf0c855c74c1ca722ec5fe4fab72ed7cd00a328099d0778bcb0a9b2bf840e languageName: node linkType: hard -"@backstage/plugin-home-react@npm:^0.1.24": - version: 0.1.24 - resolution: "@backstage/plugin-home-react@npm:0.1.24" +"@backstage/plugin-home-react@npm:^0.1.25": + version: 0.1.25 + resolution: "@backstage/plugin-home-react@npm:0.1.25" dependencies: - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" "@rjsf/utils": "npm:5.23.2" @@ -4770,25 +4902,25 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/bfb69074f9f3a6e679c0f1196909855a48ae4cc59b72deeb4c98c9631540d009f9c940e9cf02f72eccadb85a29a984cb222ea7ff5df0446989e81cc57ef418dd + checksum: 10c0/e1842cba5ad24440a918f4a01ebfe68ba6449103470327ea1dd77d85e8b0a22e2b7e932a7fd90bdf2e395475c17835530d2c625c221bcadbaf6679bd4a34c3aa languageName: node linkType: hard "@backstage/plugin-home@npm:^0.8.5": - version: 0.8.6 - resolution: "@backstage/plugin-home@npm:0.8.6" + version: 0.8.7 + resolution: "@backstage/plugin-home@npm:0.8.7" dependencies: "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" - "@backstage/core-app-api": "npm:^1.16.0" - "@backstage/core-compat-api": "npm:^0.4.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/plugin-catalog-react": "npm:^1.16.0" - "@backstage/plugin-home-react": "npm:^0.1.24" - "@backstage/theme": "npm:^0.6.4" + "@backstage/core-app-api": "npm:^1.16.1" + "@backstage/core-compat-api": "npm:^0.4.1" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/plugin-catalog-react": "npm:^1.17.0" + "@backstage/plugin-home-react": "npm:^0.1.25" + "@backstage/theme": "npm:^0.6.5" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" "@material-ui/lab": "npm:4.0.0-alpha.61" @@ -4810,31 +4942,31 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/1259c909db100d07d94e69af8562ceeacb521a762624934be3716c66c6e8e3f42ae2b00726da4219187e4a964e145771bcdb8575d3c717eb16760700deaa90fb + checksum: 10c0/f64855c11ede8241a8f9bb307ba2f2cb04e0d99ca34701e9573d972bcf6763c61cf94351740aa84cc1d5038ecdf85e07320398db55551151c2e46919ff0aa497 languageName: node linkType: hard "@backstage/plugin-kubernetes-backend@npm:^0.19.3": - version: 0.19.4 - resolution: "@backstage/plugin-kubernetes-backend@npm:0.19.4" + version: 0.19.5 + resolution: "@backstage/plugin-kubernetes-backend@npm:0.19.5" dependencies: "@aws-crypto/sha256-js": "npm:^5.0.0" "@aws-sdk/credential-providers": "npm:^3.350.0" "@aws-sdk/signature-v4": "npm:^3.347.0" "@azure/identity": "npm:^4.0.0" "@backstage/backend-common": "npm:^0.25.0" - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" "@backstage/integration-aws-node": "npm:^0.1.15" - "@backstage/plugin-auth-node": "npm:^0.6.1" - "@backstage/plugin-catalog-node": "npm:^1.16.1" + "@backstage/plugin-auth-node": "npm:^0.6.2" + "@backstage/plugin-catalog-node": "npm:^1.16.3" "@backstage/plugin-kubernetes-common": "npm:^0.9.4" - "@backstage/plugin-kubernetes-node": "npm:^0.2.4" + "@backstage/plugin-kubernetes-node": "npm:^0.2.5" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-permission-node": "npm:^0.9.0" + "@backstage/plugin-permission-node": "npm:^0.9.1" "@backstage/types": "npm:^1.2.1" "@google-cloud/container": "npm:^5.0.0" "@jest-mock/express": "npm:^2.0.1" @@ -4856,7 +4988,7 @@ __metadata: stream-buffers: "npm:^3.0.2" winston: "npm:^3.2.1" yn: "npm:^4.0.0" - checksum: 10c0/05851c541e7b924927614549bca678b82508fb8c8b497d127b22bb75de889ea53174caf6081d2346737be25981050560a2d8f5e78c236c947878c89521f8f177 + checksum: 10c0/53fc62edef0ac13fb910bdb8b85c1ce34ee5ad49ad42d1c6fe04d3510d572520e7a88bceb5141b9ce29e62a229bfd95476b653cfd65066f9e8efb6ec1e8b9e74 languageName: node linkType: hard @@ -4875,28 +5007,28 @@ __metadata: languageName: node linkType: hard -"@backstage/plugin-kubernetes-node@npm:^0.2.4": - version: 0.2.4 - resolution: "@backstage/plugin-kubernetes-node@npm:0.2.4" +"@backstage/plugin-kubernetes-node@npm:^0.2.5": + version: 0.2.5 + resolution: "@backstage/plugin-kubernetes-node@npm:0.2.5" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/plugin-kubernetes-common": "npm:^0.9.4" "@backstage/types": "npm:^1.2.1" "@kubernetes/client-node": "npm:1.0.0-rc7" node-fetch: "npm:^2.7.0" winston: "npm:^3.2.1" - checksum: 10c0/1f2d1504af2d7ec638209ed4f21aa0da507344560e6de7676aedfc57b49105145fd3ebecd5ff6ff5d693bb595ebfd114b8408089aa685868a64a93e0016d23b4 + checksum: 10c0/db777973a0097b3b2281d63280feddfa4d62bdad8dd5d6460d147278cccf230f74f1e21a9d3fc537d9cbe3b5316c632557abea974b56d930e415a8cc6daa2de0 languageName: node linkType: hard -"@backstage/plugin-kubernetes-react@npm:^0.5.5": - version: 0.5.5 - resolution: "@backstage/plugin-kubernetes-react@npm:0.5.5" +"@backstage/plugin-kubernetes-react@npm:^0.5.6": + version: 0.5.6 + resolution: "@backstage/plugin-kubernetes-react@npm:0.5.6" dependencies: "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/errors": "npm:^1.2.7" "@backstage/plugin-kubernetes-common": "npm:^0.9.4" "@backstage/types": "npm:^1.2.1" @@ -4923,23 +5055,23 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/807b29115c169cf1d77ac1d7b582ec2c1037f11aff7fb88471d6437f96ab853693a8343fcc03054b880d74237005c743825230d925abe04ff43b0f3ee64d2a01 + checksum: 10c0/204f4eb89563e3aadd81515204f88a94e24a23e4af63410573c61e3427f7563c391b5cc0dfcc69f19c820033a5f1157bf206a48e4a7cb798c7b8aff65e85b3bb languageName: node linkType: hard "@backstage/plugin-kubernetes@npm:^0.12.4": - version: 0.12.5 - resolution: "@backstage/plugin-kubernetes@npm:0.12.5" + version: 0.12.6 + resolution: "@backstage/plugin-kubernetes@npm:0.12.6" dependencies: "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-compat-api": "npm:^0.4.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/plugin-catalog-react": "npm:^1.16.0" + "@backstage/core-compat-api": "npm:^0.4.1" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/plugin-catalog-react": "npm:^1.17.0" "@backstage/plugin-kubernetes-common": "npm:^0.9.4" - "@backstage/plugin-kubernetes-react": "npm:^0.5.5" - "@backstage/plugin-permission-react": "npm:^0.4.32" + "@backstage/plugin-kubernetes-react": "npm:^0.5.6" + "@backstage/plugin-permission-react": "npm:^0.4.33" "@kubernetes-models/apimachinery": "npm:^2.0.0" "@kubernetes-models/base": "npm:^5.0.0" "@kubernetes/client-node": "npm:1.0.0-rc7" @@ -4960,21 +5092,21 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/2e8856bac01698cee2c680c93b3f042e7e7f2bcb141f9cc941cb9a44e8cefc798e31312570ae2713ffd2bba891b07cd8bc97c176a884dcd0074c5d3d178978c8 + checksum: 10c0/214585b744374dce389c213e676ae42723fdb714a2fbc98b1a84ad06c711582a9642f38cae3b6782516a4a09cffbcf2cd05ec4fc39ec29bd719fe8df613baedd languageName: node linkType: hard "@backstage/plugin-org@npm:^0.6.36": - version: 0.6.37 - resolution: "@backstage/plugin-org@npm:0.6.37" + version: 0.6.38 + resolution: "@backstage/plugin-org@npm:0.6.38" dependencies: "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-compat-api": "npm:^0.4.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/frontend-plugin-api": "npm:^0.10.0" + "@backstage/core-compat-api": "npm:^0.4.1" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" + "@backstage/frontend-plugin-api": "npm:^0.10.1" "@backstage/plugin-catalog-common": "npm:^1.1.3" - "@backstage/plugin-catalog-react": "npm:^1.16.0" + "@backstage/plugin-catalog-react": "npm:^1.17.0" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" "@material-ui/lab": "npm:4.0.0-alpha.61" @@ -4991,33 +5123,33 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/3000faf69d1eb6711a78fc6f3140a468f9c9cd15da8df37fbac904403f4ba42d2e48c55264b40bee2f1f118ecb341d535d3259be37b29a8f25d2d60fbfdea083 + checksum: 10c0/340c78ef578f992cbe06634bad18f5af011ef23cb0ae0da838f7b9109bfca9a0639c1e7691f3dcd08e3020e36c1ee2c89c4e6f858b8f38e5eca4765bebde3d31 languageName: node linkType: hard "@backstage/plugin-permission-backend-module-allow-all-policy@npm:^0.2.5": - version: 0.2.6 - resolution: "@backstage/plugin-permission-backend-module-allow-all-policy@npm:0.2.6" + version: 0.2.7 + resolution: "@backstage/plugin-permission-backend-module-allow-all-policy@npm:0.2.7" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-permission-node": "npm:^0.9.0" - checksum: 10c0/c6c06bd43f04e94840fa1b430407ead8645356cdfd988009aba0c0e20283d8fce6ba234635102a96770903e590a9940e5801502cd1f6d12e0409a45582cf149f + "@backstage/plugin-permission-node": "npm:^0.9.1" + checksum: 10c0/0324dfe07310a062b7a09c6fe46ae4eef2be2a405256670b2e28e02350eac15dd39fccf5b9a2cd57ec0e88d0e8d08aaa6eaa8f325872769f85486e98b84679e7 languageName: node linkType: hard -"@backstage/plugin-permission-backend@npm:^0.5.54": - version: 0.5.55 - resolution: "@backstage/plugin-permission-backend@npm:0.5.55" +"@backstage/plugin-permission-backend@npm:^0.6.0": + version: 0.6.0 + resolution: "@backstage/plugin-permission-backend@npm:0.6.0" dependencies: "@backstage/backend-common": "npm:^0.25.0" - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/plugin-auth-node": "npm:^0.6.2" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-permission-node": "npm:^0.9.0" + "@backstage/plugin-permission-node": "npm:^0.9.1" "@types/express": "npm:^4.17.6" dataloader: "npm:^2.0.0" express: "npm:^4.17.1" @@ -5025,7 +5157,7 @@ __metadata: lodash: "npm:^4.17.21" yn: "npm:^4.0.0" zod: "npm:^3.22.4" - checksum: 10c0/e3ca593fba72286af2be7e656a7ce3a6f2b0a0a627f6155b07491aaf49972f934042d0c0bde5f6691ae33eb1c5eeb43403f8cdf40f76cd1143b443d1598ef039 + checksum: 10c0/01ac3dc818d327dee615f3d42020d186029b45edc489c9511f55cbc4e89d3f5c2c7f9854a665ec614b1563b26c818315a7e59eccec735b566201f9d8d888b0f8 languageName: node linkType: hard @@ -5063,30 +5195,30 @@ __metadata: languageName: node linkType: hard -"@backstage/plugin-permission-node@npm:^0.9.0": - version: 0.9.0 - resolution: "@backstage/plugin-permission-node@npm:0.9.0" +"@backstage/plugin-permission-node@npm:^0.9.0, @backstage/plugin-permission-node@npm:^0.9.1": + version: 0.9.1 + resolution: "@backstage/plugin-permission-node@npm:0.9.1" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/plugin-auth-node": "npm:^0.6.2" "@backstage/plugin-permission-common": "npm:^0.8.4" "@types/express": "npm:^4.17.6" express: "npm:^4.17.1" express-promise-router: "npm:^4.1.0" zod: "npm:^3.22.4" zod-to-json-schema: "npm:^3.20.4" - checksum: 10c0/9e42de157ec6c09447a81adb76b249eec451a4d00934c77a98ce38cf51a69b2aa2aa0c7615ac32685262896ffaf648be8afee5ed93a1acf0636437df5e3de96b + checksum: 10c0/29fcbffc61f5466e5b2babe0a7aca0bea1dd920009518ceab76ada99fa953a44e2ce4cd820411e990df9da402c3b5b725173b92643f0dcac306d050deef8a648 languageName: node linkType: hard -"@backstage/plugin-permission-react@npm:^0.4.31, @backstage/plugin-permission-react@npm:^0.4.32": - version: 0.4.32 - resolution: "@backstage/plugin-permission-react@npm:0.4.32" +"@backstage/plugin-permission-react@npm:^0.4.31, @backstage/plugin-permission-react@npm:^0.4.33": + version: 0.4.33 + resolution: "@backstage/plugin-permission-react@npm:0.4.33" dependencies: "@backstage/config": "npm:^1.3.2" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/plugin-permission-common": "npm:^0.8.4" swr: "npm:^2.0.0" peerDependencies: @@ -5097,7 +5229,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/d4aae3a9a13bd5f5870e0e34affb3c97b7866224ca743909c3e579789244c105a676587b3e64e20bcf4b2fd2f5e1fff6ba016cf9d4ee2ad5e6447d51c9b5e7e2 + checksum: 10c0/262a09bb962d296e6f9bd967b735b5ba69a97ac8ba8170367aa1e94f09843acdbd02c5c6d096b15e70f33445f0b4898863ab777ce548b3a146d840066436d490 languageName: node linkType: hard @@ -5125,108 +5257,108 @@ __metadata: linkType: hard "@backstage/plugin-proxy-node@npm:^0.1.1": - version: 0.1.2 - resolution: "@backstage/plugin-proxy-node@npm:0.1.2" + version: 0.1.3 + resolution: "@backstage/plugin-proxy-node@npm:0.1.3" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" http-proxy-middleware: "npm:^2.0.0" - checksum: 10c0/7f18129374f1b6739a0c904b7df56547fe725b8b8a7bedab09e5dd1de3974094f1bd672a2c9eb6968879a1378e7184d0a967c1dd9c181416383cc685213ac6e3 + checksum: 10c0/2f069e2148466cf2e34f629ae2d02d6be761b84330ff4513e765bed0ec1e6f8305e1df3691a01271858656c3302c968d792fb5d8fd68cddbfa85cfb0cdb37d65 languageName: node linkType: hard -"@backstage/plugin-scaffolder-backend-module-azure@npm:^0.2.7": - version: 0.2.7 - resolution: "@backstage/plugin-scaffolder-backend-module-azure@npm:0.2.7" +"@backstage/plugin-scaffolder-backend-module-azure@npm:^0.2.8": + version: 0.2.8 + resolution: "@backstage/plugin-scaffolder-backend-module-azure@npm:0.2.8" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/integration": "npm:^1.16.2" - "@backstage/plugin-scaffolder-node": "npm:^0.8.0" + "@backstage/integration": "npm:^1.16.3" + "@backstage/plugin-scaffolder-node": "npm:^0.8.1" azure-devops-node-api: "npm:^14.0.0" yaml: "npm:^2.0.0" - checksum: 10c0/344ccc8915cc0266a9d9496fbca4454e7dfb67e5d92757eff2da091d5dd17c4581edc3808a34de562dfe005adfa9ab6f981f69b05d6572230b254a77e4703f97 + checksum: 10c0/c1e6154ee4660fd247f952d49b20e08cc6944ee22b45c8429e23d8af9fc1dbe865c6c02b0640d4f7e62937a449d91540b75789da656e47b39efd5c0ca8935d5f languageName: node linkType: hard -"@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@npm:^0.2.7": - version: 0.2.7 - resolution: "@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@npm:0.2.7" +"@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@npm:^0.2.8": + version: 0.2.8 + resolution: "@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@npm:0.2.8" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/integration": "npm:^1.16.2" - "@backstage/plugin-bitbucket-cloud-common": "npm:^0.2.28" - "@backstage/plugin-scaffolder-node": "npm:^0.8.0" + "@backstage/integration": "npm:^1.16.3" + "@backstage/plugin-bitbucket-cloud-common": "npm:^0.2.29" + "@backstage/plugin-scaffolder-node": "npm:^0.8.1" bitbucket: "npm:^2.12.0" fs-extra: "npm:^11.2.0" yaml: "npm:^2.0.0" - checksum: 10c0/86689c46520c3ace938895fbf136771fadfdc0c9cba5bf19c65d6bbc942f18c82917ff067132886d185b7d27982ec3b22a067486625e377e26cbd3aa4c6a0ef9 + checksum: 10c0/70d9eefdef16718aa7cf2b54dc2caf097207788c5f3fa5789685b53abdfeab930dbb596569091abe68ad756e7812306ed1176ac910f612dfd0155cbfc1a734de languageName: node linkType: hard -"@backstage/plugin-scaffolder-backend-module-bitbucket-server@npm:^0.2.7": - version: 0.2.7 - resolution: "@backstage/plugin-scaffolder-backend-module-bitbucket-server@npm:0.2.7" +"@backstage/plugin-scaffolder-backend-module-bitbucket-server@npm:^0.2.8": + version: 0.2.8 + resolution: "@backstage/plugin-scaffolder-backend-module-bitbucket-server@npm:0.2.8" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/integration": "npm:^1.16.2" - "@backstage/plugin-scaffolder-node": "npm:^0.8.0" + "@backstage/integration": "npm:^1.16.3" + "@backstage/plugin-scaffolder-node": "npm:^0.8.1" fs-extra: "npm:^11.2.0" yaml: "npm:^2.0.0" - checksum: 10c0/4e3fca5dda15a94dcd00886126c95a072067bdd8495bea56aae8a89885a2a2c69a4a64f633c2a8ecb61c9464cf14e4d44a1475fe9b6d3cc842d8b0fa263af228 + checksum: 10c0/348e0ac9d1bdb2ed7366e0172b0f6c5a1f6673fef09e1e8b7b243152c831b041e0c0173190f9503d72bbdf14356257e13afb9f5f655aefa422cd31b1144e298b languageName: node linkType: hard -"@backstage/plugin-scaffolder-backend-module-bitbucket@npm:^0.3.8": - version: 0.3.8 - resolution: "@backstage/plugin-scaffolder-backend-module-bitbucket@npm:0.3.8" +"@backstage/plugin-scaffolder-backend-module-bitbucket@npm:^0.3.9": + version: 0.3.9 + resolution: "@backstage/plugin-scaffolder-backend-module-bitbucket@npm:0.3.9" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/integration": "npm:^1.16.2" - "@backstage/plugin-scaffolder-backend-module-bitbucket-cloud": "npm:^0.2.7" - "@backstage/plugin-scaffolder-backend-module-bitbucket-server": "npm:^0.2.7" - "@backstage/plugin-scaffolder-node": "npm:^0.8.0" + "@backstage/integration": "npm:^1.16.3" + "@backstage/plugin-scaffolder-backend-module-bitbucket-cloud": "npm:^0.2.8" + "@backstage/plugin-scaffolder-backend-module-bitbucket-server": "npm:^0.2.8" + "@backstage/plugin-scaffolder-node": "npm:^0.8.1" fs-extra: "npm:^11.2.0" yaml: "npm:^2.0.0" - checksum: 10c0/ecc12b4a52eb05fef0086a98dcfd92cf4e10409ede2c59440787b4df6227ea1d2e2619b1e5ceba07b3ac34b2559bc724c5eb03f25378f533ca61a4080b4f9678 + checksum: 10c0/b1ad9536f25ac7a086b2cc097da4c0b90a3dc790e94a1aa6fae621129ca44cb7ad8e50900d845943cc3c5566310b3bea44b0da1e0ed4fb1b0b58fad5e06be341 languageName: node linkType: hard -"@backstage/plugin-scaffolder-backend-module-gerrit@npm:^0.2.7": - version: 0.2.7 - resolution: "@backstage/plugin-scaffolder-backend-module-gerrit@npm:0.2.7" +"@backstage/plugin-scaffolder-backend-module-gerrit@npm:^0.2.8": + version: 0.2.8 + resolution: "@backstage/plugin-scaffolder-backend-module-gerrit@npm:0.2.8" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/integration": "npm:^1.16.2" - "@backstage/plugin-scaffolder-node": "npm:^0.8.0" + "@backstage/integration": "npm:^1.16.3" + "@backstage/plugin-scaffolder-node": "npm:^0.8.1" yaml: "npm:^2.0.0" - checksum: 10c0/afca250f892960aca3bc73264b086b79ee560e1dc00764c66ed454a43e5734dbd8c7d300d772baada47cad8fcdaaf71f38875f42d19c50346faecf59f013a73b + checksum: 10c0/ced69d33665e10c3649cd684628fb6d944dc0c6817e501a06b1c4334ce5d16f3bf892f0e5331d9e9ecdafcd3839d0ed44c1a04c7a98373bd2ef5bd433c7099c3 languageName: node linkType: hard -"@backstage/plugin-scaffolder-backend-module-gitea@npm:^0.2.7": - version: 0.2.7 - resolution: "@backstage/plugin-scaffolder-backend-module-gitea@npm:0.2.7" +"@backstage/plugin-scaffolder-backend-module-gitea@npm:^0.2.8": + version: 0.2.8 + resolution: "@backstage/plugin-scaffolder-backend-module-gitea@npm:0.2.8" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/integration": "npm:^1.16.2" - "@backstage/plugin-scaffolder-node": "npm:^0.8.0" + "@backstage/integration": "npm:^1.16.3" + "@backstage/plugin-scaffolder-node": "npm:^0.8.1" yaml: "npm:^2.0.0" - checksum: 10c0/8c5f0693c4423f271af84abc49c72acc0998d3e653ffc3939af594ae8ee4ec1af3e0f1f054bab80ff5f386a43f33bec2249c285706bf8d5403a476aee155b07f + checksum: 10c0/f2eb1577567e7e5b09909fa0b333dada41f77b7db3b65e1a79c764b68d7fb4d537bb67081a6c113eaab94a4accfc7c064333c69d683923b9a2cbd8be042e6434 languageName: node linkType: hard -"@backstage/plugin-scaffolder-backend-module-github@npm:^0.6.0, @backstage/plugin-scaffolder-backend-module-github@npm:^0.6.1": +"@backstage/plugin-scaffolder-backend-module-github@npm:^0.6.0": version: 0.6.1 resolution: "@backstage/plugin-scaffolder-backend-module-github@npm:0.6.1" dependencies: @@ -5247,7 +5379,28 @@ __metadata: languageName: node linkType: hard -"@backstage/plugin-scaffolder-backend-module-gitlab@npm:^0.8.0, @backstage/plugin-scaffolder-backend-module-gitlab@npm:^0.8.1": +"@backstage/plugin-scaffolder-backend-module-github@npm:^0.7.0": + version: 0.7.0 + resolution: "@backstage/plugin-scaffolder-backend-module-github@npm:0.7.0" + dependencies: + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/catalog-client": "npm:^1.9.1" + "@backstage/catalog-model": "npm:^1.7.3" + "@backstage/config": "npm:^1.3.2" + "@backstage/errors": "npm:^1.2.7" + "@backstage/integration": "npm:^1.16.3" + "@backstage/plugin-scaffolder-node": "npm:^0.8.1" + "@backstage/types": "npm:^1.2.1" + "@octokit/webhooks": "npm:^10.9.2" + libsodium-wrappers: "npm:^0.7.11" + octokit: "npm:^3.0.0" + octokit-plugin-create-pull-request: "npm:^5.0.0" + yaml: "npm:^2.0.0" + checksum: 10c0/17bbf2139b0a86e351a1cdd83b2a101b175cba65faa976fd6c6e0e8a83423701f7e6d4654fffe0108593c4b617e3920c8b2399a01b2ce9d091b4daee2e874222 + languageName: node + linkType: hard + +"@backstage/plugin-scaffolder-backend-module-gitlab@npm:^0.8.0": version: 0.8.1 resolution: "@backstage/plugin-scaffolder-backend-module-gitlab@npm:0.8.1" dependencies: @@ -5265,35 +5418,53 @@ __metadata: languageName: node linkType: hard +"@backstage/plugin-scaffolder-backend-module-gitlab@npm:^0.9.0": + version: 0.9.0 + resolution: "@backstage/plugin-scaffolder-backend-module-gitlab@npm:0.9.0" + dependencies: + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/config": "npm:^1.3.2" + "@backstage/errors": "npm:^1.2.7" + "@backstage/integration": "npm:^1.16.3" + "@backstage/plugin-scaffolder-node": "npm:^0.8.1" + "@gitbeaker/rest": "npm:^41.2.0" + luxon: "npm:^3.0.0" + winston: "npm:^3.2.1" + yaml: "npm:^2.0.0" + zod: "npm:^3.22.4" + checksum: 10c0/92f78a40509c2d1291c6b6086e9e1d54833872dcc4eb60dfbef9029805bda0f433e4413393b8fd34625c9589e4338e25728859f4f73991e6f15d9c8cd0d80181 + languageName: node + linkType: hard + "@backstage/plugin-scaffolder-backend@npm:^1.30.0": - version: 1.31.0 - resolution: "@backstage/plugin-scaffolder-backend@npm:1.31.0" + version: 1.32.1 + resolution: "@backstage/plugin-scaffolder-backend@npm:1.32.1" dependencies: "@backstage/backend-common": "npm:^0.25.0" - "@backstage/backend-defaults": "npm:^0.8.2" - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-defaults": "npm:^0.9.0" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/integration": "npm:^1.16.2" - "@backstage/plugin-auth-node": "npm:^0.6.1" - "@backstage/plugin-bitbucket-cloud-common": "npm:^0.2.28" - "@backstage/plugin-catalog-backend-module-scaffolder-entity-model": "npm:^0.2.6" - "@backstage/plugin-catalog-node": "npm:^1.16.1" - "@backstage/plugin-events-node": "npm:^0.4.9" + "@backstage/integration": "npm:^1.16.3" + "@backstage/plugin-auth-node": "npm:^0.6.2" + "@backstage/plugin-bitbucket-cloud-common": "npm:^0.2.29" + "@backstage/plugin-catalog-backend-module-scaffolder-entity-model": "npm:^0.2.7" + "@backstage/plugin-catalog-node": "npm:^1.16.3" + "@backstage/plugin-events-node": "npm:^0.4.10" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-permission-node": "npm:^0.9.0" - "@backstage/plugin-scaffolder-backend-module-azure": "npm:^0.2.7" - "@backstage/plugin-scaffolder-backend-module-bitbucket": "npm:^0.3.8" - "@backstage/plugin-scaffolder-backend-module-bitbucket-cloud": "npm:^0.2.7" - "@backstage/plugin-scaffolder-backend-module-bitbucket-server": "npm:^0.2.7" - "@backstage/plugin-scaffolder-backend-module-gerrit": "npm:^0.2.7" - "@backstage/plugin-scaffolder-backend-module-gitea": "npm:^0.2.7" - "@backstage/plugin-scaffolder-backend-module-github": "npm:^0.6.1" - "@backstage/plugin-scaffolder-backend-module-gitlab": "npm:^0.8.1" + "@backstage/plugin-permission-node": "npm:^0.9.1" + "@backstage/plugin-scaffolder-backend-module-azure": "npm:^0.2.8" + "@backstage/plugin-scaffolder-backend-module-bitbucket": "npm:^0.3.9" + "@backstage/plugin-scaffolder-backend-module-bitbucket-cloud": "npm:^0.2.8" + "@backstage/plugin-scaffolder-backend-module-bitbucket-server": "npm:^0.2.8" + "@backstage/plugin-scaffolder-backend-module-gerrit": "npm:^0.2.8" + "@backstage/plugin-scaffolder-backend-module-gitea": "npm:^0.2.8" + "@backstage/plugin-scaffolder-backend-module-github": "npm:^0.7.0" + "@backstage/plugin-scaffolder-backend-module-gitlab": "npm:^0.9.0" "@backstage/plugin-scaffolder-common": "npm:^1.5.10" - "@backstage/plugin-scaffolder-node": "npm:^0.8.0" + "@backstage/plugin-scaffolder-node": "npm:^0.8.1" "@backstage/types": "npm:^1.2.1" "@opentelemetry/api": "npm:^1.9.0" "@types/express": "npm:^4.17.6" @@ -5323,7 +5494,7 @@ __metadata: zen-observable: "npm:^0.10.0" zod: "npm:^3.22.4" zod-to-json-schema: "npm:^3.20.4" - checksum: 10c0/34994804b001665a7e290c8840b274da752b6d83ae41ecf554199b1a629bcf8c3b3836afba0bd05acda64cddf5c72ca4dc48b6ee4661f3813cae193f310c8b1d + checksum: 10c0/a6cd26e18120b8fb6c337e4db7698f8f91308a158dc87aa67eb32dff4d0c1383cc5c14a65d6486a51092cde6af466007824c1911d5c415c32aaef20ae7f94b28 languageName: node linkType: hard @@ -5338,6 +5509,26 @@ __metadata: languageName: node linkType: hard +"@backstage/plugin-scaffolder-node-test-utils@npm:^0.1.19": + version: 0.1.19 + resolution: "@backstage/plugin-scaffolder-node-test-utils@npm:0.1.19" + dependencies: + "@backstage/backend-common": "npm:^0.25.0" + "@backstage/backend-test-utils": "npm:^1.3.0" + "@backstage/plugin-scaffolder-node": "npm:^0.7.0" + "@backstage/types": "npm:^1.2.1" + peerDependencies: + "@types/react": ^17.0.0 || ^18.0.0 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + react-router-dom: ^6.3.0 + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/23916545eac3a9aedd231951c876e40e14aba97d56c8a94a1b5431f571ad4eaa6c068fa9e83ba497fb214f6f1dcd426c7ec480eeacd3ee25ab7e90f2092d9257 + languageName: node + linkType: hard + "@backstage/plugin-scaffolder-node@npm:^0.6.1": version: 0.6.3 resolution: "@backstage/plugin-scaffolder-node@npm:0.6.3" @@ -5388,14 +5579,14 @@ __metadata: languageName: node linkType: hard -"@backstage/plugin-scaffolder-node@npm:^0.8.0": - version: 0.8.0 - resolution: "@backstage/plugin-scaffolder-node@npm:0.8.0" +"@backstage/plugin-scaffolder-node@npm:^0.8.0, @backstage/plugin-scaffolder-node@npm:^0.8.1": + version: 0.8.1 + resolution: "@backstage/plugin-scaffolder-node@npm:0.8.1" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/errors": "npm:^1.2.7" - "@backstage/integration": "npm:^1.16.2" + "@backstage/integration": "npm:^1.16.3" "@backstage/plugin-scaffolder-common": "npm:^1.5.10" "@backstage/types": "npm:^1.2.1" "@isomorphic-git/pgp-plugin": "npm:^0.0.7" @@ -5410,23 +5601,23 @@ __metadata: winston-transport: "npm:^4.7.0" zod: "npm:^3.22.4" zod-to-json-schema: "npm:^3.20.4" - checksum: 10c0/fc5f0779a342b6e76aae4e662514d650e83e800168585981f953047c5b31d3015b004c73aa9bfbe732b559b9c840e9fc2c533194ee7d3c4d50f86251e107886d + checksum: 10c0/89a0549421927186efc5a40d4b6b3d05bc3589d9d849ec869a157efae6f18b08b6dc31c95a56bb6a1ed15de554973dc40ded9f60b2bc18ce1383b763503a3492 languageName: node linkType: hard -"@backstage/plugin-scaffolder-react@npm:^1.14.5, @backstage/plugin-scaffolder-react@npm:^1.14.6": - version: 1.14.6 - resolution: "@backstage/plugin-scaffolder-react@npm:1.14.6" +"@backstage/plugin-scaffolder-react@npm:^1.14.5, @backstage/plugin-scaffolder-react@npm:^1.15.1": + version: 1.15.1 + resolution: "@backstage/plugin-scaffolder-react@npm:1.15.1" dependencies: "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/plugin-catalog-react": "npm:^1.16.0" - "@backstage/plugin-permission-react": "npm:^0.4.32" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/plugin-catalog-react": "npm:^1.17.0" + "@backstage/plugin-permission-react": "npm:^0.4.33" "@backstage/plugin-scaffolder-common": "npm:^1.5.10" - "@backstage/theme": "npm:^0.6.4" + "@backstage/theme": "npm:^0.6.5" "@backstage/types": "npm:^1.2.1" "@backstage/version-bridge": "npm:^1.0.11" "@material-ui/core": "npm:^4.12.2" @@ -5462,28 +5653,28 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/9dfcc194e72e5bee9be4125e154a377304160c7ab7e9fed132c91eedd89faa0dad67805c9287c3d9b20448bb04f7b730b51ec639a2329e90e1225c9f5d56c2f0 + checksum: 10c0/6d1b9b9d6cd73e0a433f66d289c38809b1827bf87e5c97f169c54c2c970cff0fc15a7fcca8016cd036651b00910e50b32aa55071292e9c9ddb47ba048bc53c26 languageName: node linkType: hard "@backstage/plugin-scaffolder@npm:^1.28.0": - version: 1.29.0 - resolution: "@backstage/plugin-scaffolder@npm:1.29.0" + version: 1.30.1 + resolution: "@backstage/plugin-scaffolder@npm:1.30.1" dependencies: "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-compat-api": "npm:^0.4.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-compat-api": "npm:^0.4.1" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/errors": "npm:^1.2.7" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/integration": "npm:^1.16.2" - "@backstage/integration-react": "npm:^1.2.5" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/integration": "npm:^1.16.3" + "@backstage/integration-react": "npm:^1.2.6" "@backstage/plugin-catalog-common": "npm:^1.1.3" - "@backstage/plugin-catalog-react": "npm:^1.16.0" - "@backstage/plugin-permission-react": "npm:^0.4.32" + "@backstage/plugin-catalog-react": "npm:^1.17.0" + "@backstage/plugin-permission-react": "npm:^0.4.33" "@backstage/plugin-scaffolder-common": "npm:^1.5.10" - "@backstage/plugin-scaffolder-react": "npm:^1.14.6" + "@backstage/plugin-scaffolder-react": "npm:^1.15.1" "@backstage/types": "npm:^1.2.1" "@codemirror/language": "npm:^6.0.0" "@codemirror/legacy-modes": "npm:^6.1.0" @@ -5523,40 +5714,40 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/7e1b90f753c074a65514c157263739be8d2f1d5b76b20039766acc3d77eac357d80273108f8a656dd2294f888870ae93d55ae675efde428d016537134db4ba6c + checksum: 10c0/09b9abbc5f6a79fdee160db64989b7d135e526a3843836b853dc0ad406cbc4320782377dd2a06e458312f8a4f127a4fd2112f70fb5b09e1435861a69eaf639c3 languageName: node linkType: hard -"@backstage/plugin-search-backend-module-catalog@npm:^0.3.1, @backstage/plugin-search-backend-module-catalog@npm:^0.3.2": - version: 0.3.2 - resolution: "@backstage/plugin-search-backend-module-catalog@npm:0.3.2" +"@backstage/plugin-search-backend-module-catalog@npm:^0.3.1, @backstage/plugin-search-backend-module-catalog@npm:^0.3.3": + version: 0.3.3 + resolution: "@backstage/plugin-search-backend-module-catalog@npm:0.3.3" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" "@backstage/plugin-catalog-common": "npm:^1.1.3" - "@backstage/plugin-catalog-node": "npm:^1.16.1" + "@backstage/plugin-catalog-node": "npm:^1.16.3" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-search-backend-node": "npm:^1.3.9" + "@backstage/plugin-search-backend-node": "npm:^1.3.10" "@backstage/plugin-search-common": "npm:^1.2.17" - checksum: 10c0/751b3b3d6cd434e850090ff0382af106afa7f2398a3efc17946b4947e568f9956b26119bde555f350847e74aa9c949fc223450518dfd6ca1b2c87559938cf1b6 + checksum: 10c0/50875cc7d03ea6f53e79cb29f6330d47d56df401c2684da63818638150e48c18f56fb66611e19ba5357d1c88556be9f1f19de1192d1cc139452daa1ddcd2f487 languageName: node linkType: hard "@backstage/plugin-search-backend-module-pg@npm:^0.5.41": - version: 0.5.42 - resolution: "@backstage/plugin-search-backend-module-pg@npm:0.5.42" + version: 0.5.43 + resolution: "@backstage/plugin-search-backend-module-pg@npm:0.5.43" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" - "@backstage/plugin-search-backend-node": "npm:^1.3.9" + "@backstage/plugin-search-backend-node": "npm:^1.3.10" "@backstage/plugin-search-common": "npm:^1.2.17" knex: "npm:^3.0.0" lodash: "npm:^4.17.21" uuid: "npm:^11.0.0" - checksum: 10c0/20ebecb9b85dcaad510666ad60fdd92ca443ddde26c47a3096aad8ee710807c40cef6294611c664ef4334cd636bae27599d25d3cbad6193b6cfbea2a087c15b2 + checksum: 10c0/4460b02d693daceb8a2bad2d0725f00b88f8535204ee97293e4fc0d02f87cc4865055bb1a7c2ed9819f787796df7b69bdcc28c46ba10f2e645182de7c29c2069 languageName: node linkType: hard @@ -5581,11 +5772,11 @@ __metadata: languageName: node linkType: hard -"@backstage/plugin-search-backend-node@npm:^1.3.8, @backstage/plugin-search-backend-node@npm:^1.3.9": - version: 1.3.9 - resolution: "@backstage/plugin-search-backend-node@npm:1.3.9" +"@backstage/plugin-search-backend-node@npm:^1.3.10, @backstage/plugin-search-backend-node@npm:^1.3.8": + version: 1.3.10 + resolution: "@backstage/plugin-search-backend-node@npm:1.3.10" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" "@backstage/plugin-permission-common": "npm:^0.8.4" @@ -5595,7 +5786,7 @@ __metadata: lunr: "npm:^2.3.9" ndjson: "npm:^2.0.0" uuid: "npm:^11.0.0" - checksum: 10c0/d9be53bedd9a533d8f3923f2d17ca890be2bf094aea3a0224432f8226e08d65c42fd3e0a91b5f3b3764dc5b161eee6a83ada77fd20ed5bc00c402b7fa41dbb62 + checksum: 10c0/467135066f2d23076caaa922ae7f62a625894875c3504ab32abf5cbcedfeab866049d39b245df3dc75818b356daf2544981f61899f1e149d21e7419f3a1b892a languageName: node linkType: hard @@ -5635,15 +5826,15 @@ __metadata: languageName: node linkType: hard -"@backstage/plugin-search-react@npm:^1.8.6, @backstage/plugin-search-react@npm:^1.8.7": - version: 1.8.7 - resolution: "@backstage/plugin-search-react@npm:1.8.7" +"@backstage/plugin-search-react@npm:^1.8.6, @backstage/plugin-search-react@npm:^1.8.8": + version: 1.8.8 + resolution: "@backstage/plugin-search-react@npm:1.8.8" dependencies: - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/frontend-plugin-api": "npm:^0.10.0" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" + "@backstage/frontend-plugin-api": "npm:^0.10.1" "@backstage/plugin-search-common": "npm:^1.2.17" - "@backstage/theme": "npm:^0.6.4" + "@backstage/theme": "npm:^0.6.5" "@backstage/types": "npm:^1.2.1" "@backstage/version-bridge": "npm:^1.0.11" "@material-ui/core": "npm:^4.12.2" @@ -5661,22 +5852,22 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/d71e6a6ca6156a6ab3899569156b98826f9b11e7b791c88a12f3c1a6e91e620debecf0b03d5c641d1a4578bd1b7653e51d07fb0aa4d15dd3ec4f11cf3ba61bb6 + checksum: 10c0/87f9aa532b2517847d8d44cccde0c693fbafd4842e0282646cd591a531b628153d1102551d9c6ad06a106802e049c8bc4bcb1779129ed9f277989e96610cc710 languageName: node linkType: hard "@backstage/plugin-search@npm:^1.4.23": - version: 1.4.24 - resolution: "@backstage/plugin-search@npm:1.4.24" + version: 1.4.25 + resolution: "@backstage/plugin-search@npm:1.4.25" dependencies: - "@backstage/core-compat-api": "npm:^0.4.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-compat-api": "npm:^0.4.1" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/errors": "npm:^1.2.7" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/plugin-catalog-react": "npm:^1.16.0" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/plugin-catalog-react": "npm:^1.17.0" "@backstage/plugin-search-common": "npm:^1.2.17" - "@backstage/plugin-search-react": "npm:^1.8.7" + "@backstage/plugin-search-react": "npm:^1.8.8" "@backstage/types": "npm:^1.2.1" "@backstage/version-bridge": "npm:^1.0.11" "@material-ui/core": "npm:^4.12.2" @@ -5691,15 +5882,15 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/e34906bfebc1a47152096aeca05c49f9c2c9594c74e93a3d0090e2f341178ce1238ba84c71b2382263b4d9fc78c8dd7762117c8523c25265b5ad268e9e887b6b + checksum: 10c0/b56b8e3e9bf1aca55fa4e85bef8710a36b93cf55583cf4328a8be3c026748d9af0ef38cf27bc92ce8c03fcb3ff80cc962a96a60206417366f8ee457efd8cc7ee languageName: node linkType: hard -"@backstage/plugin-signals-react@npm:^0.0.11": - version: 0.0.11 - resolution: "@backstage/plugin-signals-react@npm:0.0.11" +"@backstage/plugin-signals-react@npm:^0.0.12": + version: 0.0.12 + resolution: "@backstage/plugin-signals-react@npm:0.0.12" dependencies: - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/types": "npm:^1.2.1" "@material-ui/core": "npm:^4.12.4" peerDependencies: @@ -5710,7 +5901,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/a0bbc779c2fbd4a1f1a4e16f6d21a9615a34745c84d32b44876526cc7aa4039eecd8d3db4bc58c42d5aebaf26a3e7a76ef114a4d634a4a168572c3bfc3853070 + checksum: 10c0/2d86292f89ddc537a8fc0db6c63d2beab01b285a9cb8e68d546e9b321dbc7dcba4c91aee2b49a62fc4e4c7a7eb541b20fd5a063a36a0f6cb1467f70e9b424a3f languageName: node linkType: hard @@ -5751,15 +5942,15 @@ __metadata: linkType: hard "@backstage/plugin-techdocs-module-addons-contrib@npm:^1.1.21": - version: 1.1.22 - resolution: "@backstage/plugin-techdocs-module-addons-contrib@npm:1.1.22" - dependencies: - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/integration": "npm:^1.16.2" - "@backstage/integration-react": "npm:^1.2.5" - "@backstage/plugin-techdocs-react": "npm:^1.2.15" + version: 1.1.23 + resolution: "@backstage/plugin-techdocs-module-addons-contrib@npm:1.1.23" + dependencies: + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/integration": "npm:^1.16.3" + "@backstage/integration-react": "npm:^1.2.6" + "@backstage/plugin-techdocs-react": "npm:^1.2.16" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" "@react-hookz/web": "npm:^24.0.0" @@ -5773,13 +5964,13 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/b91140b0fbaa9cd141ff2fe054e4adfb6674ae44fa1c68c5dcb974ec17f19523bfb136e4183fe0fed30c6e5de69aa8a4cfe8f2721c67f8a08fcacd8c2a39129f + checksum: 10c0/11d94269d59b613338cec0f9f534db6fbbfface906d92d3c5a4e0f3556dbb0e0fe5aae35d3d913ac708583826545a4389946646f6156f754f2e6f1fd80b0a841 languageName: node linkType: hard "@backstage/plugin-techdocs-node@npm:^1.13.0": - version: 1.13.1 - resolution: "@backstage/plugin-techdocs-node@npm:1.13.1" + version: 1.13.2 + resolution: "@backstage/plugin-techdocs-node@npm:1.13.2" dependencies: "@aws-sdk/client-s3": "npm:^3.350.0" "@aws-sdk/credential-providers": "npm:^3.350.0" @@ -5787,11 +5978,11 @@ __metadata: "@aws-sdk/types": "npm:^3.347.0" "@azure/identity": "npm:^4.0.0" "@azure/storage-blob": "npm:^12.5.0" - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/integration": "npm:^1.16.2" + "@backstage/integration": "npm:^1.16.3" "@backstage/integration-aws-node": "npm:^0.1.15" "@backstage/plugin-search-common": "npm:^1.2.17" "@backstage/plugin-techdocs-common": "npm:^0.1.0" @@ -5810,19 +6001,19 @@ __metadata: p-limit: "npm:^3.1.0" recursive-readdir: "npm:^2.2.2" winston: "npm:^3.2.1" - checksum: 10c0/1884cb594eba26b81184adbe682e2e0c98e27abb7482c24c4fcc70a13a72a86491bc004a95c4c741bba3a6c80b1ce7029bb04740554ca0d8616bc545d138acd1 + checksum: 10c0/492f0d73786873c4e934d6d8c3f63349d38172b31f914f648dcc4b896c1a898a24e4e00e1d46fb8a00bc4747e3df4f586c83dd5dd08849006a5ba5660a8ffa9e languageName: node linkType: hard -"@backstage/plugin-techdocs-react@npm:^1.2.14, @backstage/plugin-techdocs-react@npm:^1.2.15": - version: 1.2.15 - resolution: "@backstage/plugin-techdocs-react@npm:1.2.15" +"@backstage/plugin-techdocs-react@npm:^1.2.14, @backstage/plugin-techdocs-react@npm:^1.2.16": + version: 1.2.16 + resolution: "@backstage/plugin-techdocs-react@npm:1.2.16" dependencies: "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/frontend-plugin-api": "npm:^0.10.0" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" + "@backstage/frontend-plugin-api": "npm:^0.10.1" "@backstage/version-bridge": "npm:^1.0.11" "@material-ui/core": "npm:^4.12.2" "@material-ui/styles": "npm:^4.11.0" @@ -5838,31 +6029,31 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/59fbf9ca2d4ad9df9b36134afa5b757fbfc41eb3b845b9337d6ca0992d95f479712e75e80048e935ac525f4f243c98eeafbad3a0e28e799b943281c777b26752 + checksum: 10c0/fb1a369369957fb1390cc48360596739c29d6274630209098a48836147f386c829d8b7b693369116d9b2d822916e9ccb3127de0df073ac54486fd408c7438cd7 languageName: node linkType: hard "@backstage/plugin-techdocs@npm:^1.12.3": - version: 1.12.4 - resolution: "@backstage/plugin-techdocs@npm:1.12.4" + version: 1.12.5 + resolution: "@backstage/plugin-techdocs@npm:1.12.5" dependencies: "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" - "@backstage/core-compat-api": "npm:^0.4.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-compat-api": "npm:^0.4.1" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/errors": "npm:^1.2.7" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/integration": "npm:^1.16.2" - "@backstage/integration-react": "npm:^1.2.5" - "@backstage/plugin-auth-react": "npm:^0.1.13" - "@backstage/plugin-catalog-react": "npm:^1.16.0" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/integration": "npm:^1.16.3" + "@backstage/integration-react": "npm:^1.2.6" + "@backstage/plugin-auth-react": "npm:^0.1.14" + "@backstage/plugin-catalog-react": "npm:^1.17.0" "@backstage/plugin-search-common": "npm:^1.2.17" - "@backstage/plugin-search-react": "npm:^1.8.7" + "@backstage/plugin-search-react": "npm:^1.8.8" "@backstage/plugin-techdocs-common": "npm:^0.1.0" - "@backstage/plugin-techdocs-react": "npm:^1.2.15" - "@backstage/theme": "npm:^0.6.4" + "@backstage/plugin-techdocs-react": "npm:^1.2.16" + "@backstage/theme": "npm:^0.6.5" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" "@material-ui/lab": "npm:4.0.0-alpha.61" @@ -5882,7 +6073,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/580d066ef779d5adfc28e10b6a73784f648ea727b3b9fc596839fd92900a92d0c3dc046bb37faef67cdfb2a088a431731a8f4ff06a93972f9e6587b8f304bf1e + checksum: 10c0/e0604e59f9f02ddeef06c77471c7ad4b9942d4061e2246ca4d92a2a2d96bd8a604fdf444dc9f557b1e9e4a805ba3610ecc66177c9072730c83fb832168d73614 languageName: node linkType: hard @@ -5894,20 +6085,20 @@ __metadata: linkType: hard "@backstage/plugin-user-settings@npm:^0.8.19": - version: 0.8.20 - resolution: "@backstage/plugin-user-settings@npm:0.8.20" + version: 0.8.21 + resolution: "@backstage/plugin-user-settings@npm:0.8.21" dependencies: "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-app-api": "npm:^1.16.0" - "@backstage/core-compat-api": "npm:^0.4.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-app-api": "npm:^1.16.1" + "@backstage/core-compat-api": "npm:^0.4.1" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/errors": "npm:^1.2.7" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/plugin-catalog-react": "npm:^1.16.0" - "@backstage/plugin-signals-react": "npm:^0.0.11" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/plugin-catalog-react": "npm:^1.17.0" + "@backstage/plugin-signals-react": "npm:^0.0.12" "@backstage/plugin-user-settings-common": "npm:^0.0.1" - "@backstage/theme": "npm:^0.6.4" + "@backstage/theme": "npm:^0.6.5" "@backstage/types": "npm:^1.2.1" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" @@ -5922,7 +6113,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/ee8968cee47bb7150147363cfd9c129f9c4e91f0cd9ec3476d6baa604dc1379f7e4daa3ce43f0943d79c6694910fa6bd353521e96ba0c6e9e79a63086c2f2104 + checksum: 10c0/8a14a3c7d59e390f06b0b1234e78481b8cd4a935180fd3da12a9d3528526508bece9937948a740564d51774395a5f49400cb7798797581a527f69b11ce35ea9b languageName: node linkType: hard @@ -5933,16 +6124,16 @@ __metadata: languageName: node linkType: hard -"@backstage/test-utils@npm:^1.7.5, @backstage/test-utils@npm:^1.7.6": - version: 1.7.6 - resolution: "@backstage/test-utils@npm:1.7.6" +"@backstage/test-utils@npm:^1.7.5, @backstage/test-utils@npm:^1.7.7": + version: 1.7.7 + resolution: "@backstage/test-utils@npm:1.7.7" dependencies: "@backstage/config": "npm:^1.3.2" - "@backstage/core-app-api": "npm:^1.16.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-app-api": "npm:^1.16.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-permission-react": "npm:^0.4.32" - "@backstage/theme": "npm:^0.6.4" + "@backstage/plugin-permission-react": "npm:^0.4.33" + "@backstage/theme": "npm:^0.6.5" "@backstage/types": "npm:^1.2.1" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" @@ -5958,13 +6149,13 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/45d7c996cc18044b1c0c1c723183022dba4e0737c2972b8b581bf1d4e59fd432847076525ebd739455e92971774d9a1b6afbbd9410c276777817d2f7ffd9aa2b + checksum: 10c0/927cec9d3255bc680dd291b23cbd68285daa6749f7650a35d30e38f1320c073f0e6c464790cd3d12b46058160b5ebf96b925570bec9d6f9e8b927299fd52c054 languageName: node linkType: hard -"@backstage/theme@npm:^0.6.0, @backstage/theme@npm:^0.6.4": - version: 0.6.4 - resolution: "@backstage/theme@npm:0.6.4" +"@backstage/theme@npm:^0.6.0, @backstage/theme@npm:^0.6.4, @backstage/theme@npm:^0.6.5": + version: 0.6.5 + resolution: "@backstage/theme@npm:0.6.5" dependencies: "@emotion/react": "npm:^11.10.5" "@emotion/styled": "npm:^11.10.5" @@ -5978,7 +6169,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/e80c6d41b79ad4d4a6dea7c2481b78e6888f5925bcdec27a6eb23a9baa890510c5205d8f55502f1ae509e414269dd640d8659d2b51d2640a0b579944009a19b2 + checksum: 10c0/14f52dcc893f64b735894ea469711dd41ded12dd7472ea3442b870b388a8298722a015cf1912c047bb57956392a224d25f66633c3567ec173198536d4c623dee languageName: node linkType: hard @@ -6064,11 +6255,11 @@ __metadata: linkType: hard "@codemirror/legacy-modes@npm:^6.1.0": - version: 6.5.0 - resolution: "@codemirror/legacy-modes@npm:6.5.0" + version: 6.5.1 + resolution: "@codemirror/legacy-modes@npm:6.5.1" dependencies: "@codemirror/language": "npm:^6.0.0" - checksum: 10c0/f1d8432e96a0647a22901a065cd074391ca8daf879e92cf87d9fbae15a40777a77fe4fc2076591319d32c47f5793b203a64c1e941de088c317e7ece5d14aa1b8 + checksum: 10c0/a5fc0c76112f1fe4add414c65876932c24d77126ee4504049fd188abc4e44c5da611beaa46cfe45d5269d6d7b49aefc10c410d457785a39ba3c233f799802cf0 languageName: node linkType: hard @@ -6116,13 +6307,13 @@ __metadata: linkType: hard "@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.17.0, @codemirror/view@npm:^6.23.0, @codemirror/view@npm:^6.27.0, @codemirror/view@npm:^6.35.0": - version: 6.36.5 - resolution: "@codemirror/view@npm:6.36.5" + version: 6.36.6 + resolution: "@codemirror/view@npm:6.36.6" dependencies: "@codemirror/state": "npm:^6.5.0" style-mod: "npm:^4.1.0" w3c-keyname: "npm:^2.2.4" - checksum: 10c0/013dc47cb4dde111f4f0818f7c3ee5e4f505359f26d891ca5bbc839a674da8ac201b4d091c5ad73a889f950d4aeb402f2b4c7fcf1e075cc15a3138792dd9e3f0 + checksum: 10c0/c9fe37517683ca04bb1590b8ab7adf6101f8970dda3dda457b9b2922cd5291e46f6b82be8d431b4247974d4cd8d1886aead30848707005f1d186b2b146a357b0 languageName: node linkType: hard @@ -6149,26 +6340,26 @@ __metadata: languageName: node linkType: hard -"@csstools/css-calc@npm:^2.1.2": - version: 2.1.2 - resolution: "@csstools/css-calc@npm:2.1.2" +"@csstools/css-calc@npm:^2.1.3": + version: 2.1.3 + resolution: "@csstools/css-calc@npm:2.1.3" peerDependencies: "@csstools/css-parser-algorithms": ^3.0.4 "@csstools/css-tokenizer": ^3.0.3 - checksum: 10c0/34ced30553968ef5d5f9e00e3b90b48c47480cf130e282e99d57ec9b09f803aab8bc06325683e72a1518b5e7180a3da8b533f1b462062757c21989a53b482e1a + checksum: 10c0/85f5b4f96d60f395d5f0108056b0ddee037b22d6deba448d74324b50f1c554de284f84715ebfac7b2888b78e09d20d02a7cd213ee7bdaa71011ea9b4eee3a251 languageName: node linkType: hard -"@csstools/css-color-parser@npm:^3.0.8": - version: 3.0.8 - resolution: "@csstools/css-color-parser@npm:3.0.8" +"@csstools/css-color-parser@npm:^3.0.9": + version: 3.0.9 + resolution: "@csstools/css-color-parser@npm:3.0.9" dependencies: "@csstools/color-helpers": "npm:^5.0.2" - "@csstools/css-calc": "npm:^2.1.2" + "@csstools/css-calc": "npm:^2.1.3" peerDependencies: "@csstools/css-parser-algorithms": ^3.0.4 "@csstools/css-tokenizer": ^3.0.3 - checksum: 10c0/90722c5a62ca94e9d578ddf59be604a76400b932bd3d4bd23cb1ae9b7ace8fcf83c06995d2b31f96f4afef24a7cefba79beb11ed7ee4999d7ecfec3869368359 + checksum: 10c0/acc026a6bd6d8c4c641fa5f9b4d77cd5dfa54c57c3278ae52329d96b5837723428dcb93c34db4062bbea2f45a98451119df06eaf39fd196aaf6368c59d799f20 languageName: node linkType: hard @@ -6453,9 +6644,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/aix-ppc64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/aix-ppc64@npm:0.25.2" +"@esbuild/aix-ppc64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/aix-ppc64@npm:0.25.3" conditions: os=aix & cpu=ppc64 languageName: node linkType: hard @@ -6467,9 +6658,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/android-arm64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/android-arm64@npm:0.25.2" +"@esbuild/android-arm64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/android-arm64@npm:0.25.3" conditions: os=android & cpu=arm64 languageName: node linkType: hard @@ -6481,9 +6672,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/android-arm@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/android-arm@npm:0.25.2" +"@esbuild/android-arm@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/android-arm@npm:0.25.3" conditions: os=android & cpu=arm languageName: node linkType: hard @@ -6495,9 +6686,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/android-x64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/android-x64@npm:0.25.2" +"@esbuild/android-x64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/android-x64@npm:0.25.3" conditions: os=android & cpu=x64 languageName: node linkType: hard @@ -6509,9 +6700,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/darwin-arm64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/darwin-arm64@npm:0.25.2" +"@esbuild/darwin-arm64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/darwin-arm64@npm:0.25.3" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard @@ -6523,9 +6714,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/darwin-x64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/darwin-x64@npm:0.25.2" +"@esbuild/darwin-x64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/darwin-x64@npm:0.25.3" conditions: os=darwin & cpu=x64 languageName: node linkType: hard @@ -6537,9 +6728,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/freebsd-arm64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/freebsd-arm64@npm:0.25.2" +"@esbuild/freebsd-arm64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/freebsd-arm64@npm:0.25.3" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard @@ -6551,9 +6742,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/freebsd-x64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/freebsd-x64@npm:0.25.2" +"@esbuild/freebsd-x64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/freebsd-x64@npm:0.25.3" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard @@ -6565,9 +6756,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-arm64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/linux-arm64@npm:0.25.2" +"@esbuild/linux-arm64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/linux-arm64@npm:0.25.3" conditions: os=linux & cpu=arm64 languageName: node linkType: hard @@ -6579,9 +6770,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-arm@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/linux-arm@npm:0.25.2" +"@esbuild/linux-arm@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/linux-arm@npm:0.25.3" conditions: os=linux & cpu=arm languageName: node linkType: hard @@ -6593,9 +6784,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-ia32@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/linux-ia32@npm:0.25.2" +"@esbuild/linux-ia32@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/linux-ia32@npm:0.25.3" conditions: os=linux & cpu=ia32 languageName: node linkType: hard @@ -6607,9 +6798,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-loong64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/linux-loong64@npm:0.25.2" +"@esbuild/linux-loong64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/linux-loong64@npm:0.25.3" conditions: os=linux & cpu=loong64 languageName: node linkType: hard @@ -6621,9 +6812,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-mips64el@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/linux-mips64el@npm:0.25.2" +"@esbuild/linux-mips64el@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/linux-mips64el@npm:0.25.3" conditions: os=linux & cpu=mips64el languageName: node linkType: hard @@ -6635,9 +6826,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-ppc64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/linux-ppc64@npm:0.25.2" +"@esbuild/linux-ppc64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/linux-ppc64@npm:0.25.3" conditions: os=linux & cpu=ppc64 languageName: node linkType: hard @@ -6649,9 +6840,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-riscv64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/linux-riscv64@npm:0.25.2" +"@esbuild/linux-riscv64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/linux-riscv64@npm:0.25.3" conditions: os=linux & cpu=riscv64 languageName: node linkType: hard @@ -6663,9 +6854,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-s390x@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/linux-s390x@npm:0.25.2" +"@esbuild/linux-s390x@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/linux-s390x@npm:0.25.3" conditions: os=linux & cpu=s390x languageName: node linkType: hard @@ -6677,9 +6868,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-x64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/linux-x64@npm:0.25.2" +"@esbuild/linux-x64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/linux-x64@npm:0.25.3" conditions: os=linux & cpu=x64 languageName: node linkType: hard @@ -6691,9 +6882,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/netbsd-arm64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/netbsd-arm64@npm:0.25.2" +"@esbuild/netbsd-arm64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/netbsd-arm64@npm:0.25.3" conditions: os=netbsd & cpu=arm64 languageName: node linkType: hard @@ -6705,9 +6896,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/netbsd-x64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/netbsd-x64@npm:0.25.2" +"@esbuild/netbsd-x64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/netbsd-x64@npm:0.25.3" conditions: os=netbsd & cpu=x64 languageName: node linkType: hard @@ -6719,9 +6910,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/openbsd-arm64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/openbsd-arm64@npm:0.25.2" +"@esbuild/openbsd-arm64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/openbsd-arm64@npm:0.25.3" conditions: os=openbsd & cpu=arm64 languageName: node linkType: hard @@ -6733,9 +6924,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/openbsd-x64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/openbsd-x64@npm:0.25.2" +"@esbuild/openbsd-x64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/openbsd-x64@npm:0.25.3" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard @@ -6747,9 +6938,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/sunos-x64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/sunos-x64@npm:0.25.2" +"@esbuild/sunos-x64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/sunos-x64@npm:0.25.3" conditions: os=sunos & cpu=x64 languageName: node linkType: hard @@ -6761,9 +6952,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/win32-arm64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/win32-arm64@npm:0.25.2" +"@esbuild/win32-arm64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/win32-arm64@npm:0.25.3" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard @@ -6775,9 +6966,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/win32-ia32@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/win32-ia32@npm:0.25.2" +"@esbuild/win32-ia32@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/win32-ia32@npm:0.25.3" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard @@ -6789,21 +6980,21 @@ __metadata: languageName: node linkType: hard -"@esbuild/win32-x64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/win32-x64@npm:0.25.2" +"@esbuild/win32-x64@npm:0.25.3": + version: 0.25.3 + resolution: "@esbuild/win32-x64@npm:0.25.3" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0": - version: 4.5.1 - resolution: "@eslint-community/eslint-utils@npm:4.5.1" + version: 4.6.1 + resolution: "@eslint-community/eslint-utils@npm:4.6.1" dependencies: eslint-visitor-keys: "npm:^3.4.3" peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - checksum: 10c0/b520ae1b7bd04531a5c5da2021071815df4717a9f7d13720e3a5ddccf5c9c619532039830811fcbae1c2f1c9d133e63af2435ee69e0fc0fabbd6d928c6800fb2 + checksum: 10c0/cdeb6f8fc33a83726357d7f736075cdbd6e79dc7ac4b00b15680f1111d0f33bda583e7fafa5937245a058cc66302dc47568bba57b251302dc74964d8e87f56d7 languageName: node linkType: hard @@ -6838,6 +7029,20 @@ __metadata: languageName: node linkType: hard +"@fastify/busboy@npm:^2.0.0": + version: 2.1.1 + resolution: "@fastify/busboy@npm:2.1.1" + checksum: 10c0/6f8027a8cba7f8f7b736718b013f5a38c0476eea67034c94a0d3c375e2b114366ad4419e6a6fa7ffc2ef9c6d3e0435d76dd584a7a1cbac23962fda7650b579e3 + languageName: node + linkType: hard + +"@fastify/busboy@npm:^3.1.1": + version: 3.1.1 + resolution: "@fastify/busboy@npm:3.1.1" + checksum: 10c0/d34b3640bc331f9951e27426769bdf90b1a5c238a22e4df39f9b18ec4cf793100a929ac0339f6643a4086f780f49177a528936d918dfd6c9dfe5a12566303215 + languageName: node + linkType: hard + "@floating-ui/core@npm:^1.6.0": version: 1.6.9 resolution: "@floating-ui/core@npm:1.6.9" @@ -7076,12 +7281,12 @@ __metadata: languageName: node linkType: hard -"@graphql-tools/delegate@npm:^10.2.16": - version: 10.2.16 - resolution: "@graphql-tools/delegate@npm:10.2.16" +"@graphql-tools/delegate@npm:^10.2.17": + version: 10.2.17 + resolution: "@graphql-tools/delegate@npm:10.2.17" dependencies: "@graphql-tools/batch-execute": "npm:^9.0.15" - "@graphql-tools/executor": "npm:^1.3.10" + "@graphql-tools/executor": "npm:^1.4.7" "@graphql-tools/schema": "npm:^10.0.11" "@graphql-tools/utils": "npm:^10.8.1" "@repeaterjs/repeater": "npm:^3.0.6" @@ -7091,7 +7296,7 @@ __metadata: tslib: "npm:^2.8.1" peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - checksum: 10c0/eae1cb8b73e9f076398279e59b95d8372d7fd11892f965879874acb87725438c1562d3da052bccc7ee614682410ca14586f607bbe568e946e61fe62c888d9b8f + checksum: 10c0/909489964c337deb821e21b10ed42971d6aff5187a31a6be918041703d89797175382c857f67495001a1a0ccf47c5fe61285dd57b6cedb237ff01fea6950c362 languageName: node linkType: hard @@ -7125,8 +7330,8 @@ __metadata: linkType: hard "@graphql-tools/executor-http@npm:^1.1.9": - version: 1.3.2 - resolution: "@graphql-tools/executor-http@npm:1.3.2" + version: 1.3.3 + resolution: "@graphql-tools/executor-http@npm:1.3.3" dependencies: "@graphql-hive/signal": "npm:^1.0.0" "@graphql-tools/executor-common": "npm:^0.0.4" @@ -7139,7 +7344,7 @@ __metadata: tslib: "npm:^2.8.1" peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - checksum: 10c0/b3b0a7ac513ea92c8d10c65c634920641a78b4907bc28e099987655423894f84a473cbdd7e96862c947bda0d94287af692bfdbf4c60dedaa622c15ae151f05a0 + checksum: 10c0/317259d5e4e08baea728aecdfcce56cac77fd4f68b34975befca94d74d9d989d168230a735e51426a94740335ece9a93ab6fce280196ecf993a4ea1c0097c083 languageName: node linkType: hard @@ -7158,7 +7363,7 @@ __metadata: languageName: node linkType: hard -"@graphql-tools/executor@npm:^1.3.10": +"@graphql-tools/executor@npm:^1.4.7": version: 1.4.7 resolution: "@graphql-tools/executor@npm:1.4.7" dependencies: @@ -7216,9 +7421,9 @@ __metadata: languageName: node linkType: hard -"@graphql-tools/load@npm:^8.0.0": - version: 8.0.19 - resolution: "@graphql-tools/load@npm:8.0.19" +"@graphql-tools/load@npm:^8.1.0": + version: 8.1.0 + resolution: "@graphql-tools/load@npm:8.1.0" dependencies: "@graphql-tools/schema": "npm:^10.0.23" "@graphql-tools/utils": "npm:^10.8.6" @@ -7226,7 +7431,7 @@ __metadata: tslib: "npm:^2.4.0" peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - checksum: 10c0/c83dbd3a6cff3784ce3d2e2c4b2381f9af7469d0ff474d175d180fa9b7d14a25e61d1d75134f8049501523ac1e79261e4d07c6d96c0afab1e5023391df522cc3 + checksum: 10c0/4653e50ba45cc940400853fcff7bb77f63b133018f114ebc355e4f3033d28c788579277d9be45223de89fe8a25509fe9f99bfcc74508439065577be65fa34eac languageName: node linkType: hard @@ -7341,17 +7546,17 @@ __metadata: linkType: hard "@graphql-tools/wrap@npm:^10.0.16": - version: 10.0.34 - resolution: "@graphql-tools/wrap@npm:10.0.34" + version: 10.0.35 + resolution: "@graphql-tools/wrap@npm:10.0.35" dependencies: - "@graphql-tools/delegate": "npm:^10.2.16" + "@graphql-tools/delegate": "npm:^10.2.17" "@graphql-tools/schema": "npm:^10.0.11" "@graphql-tools/utils": "npm:^10.8.1" "@whatwg-node/promise-helpers": "npm:^1.3.0" tslib: "npm:^2.8.1" peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - checksum: 10c0/9da6a3fe63e6a756534d14c5f62477f8ca7f48e40cc48f1ad6b59db049b2d587a5dc919dc2661a538c764052b89cea7833ab244916b6571d5c2f2adec61eafa5 + checksum: 10c0/2b0cace7949102558497928cca8139ceb0fccd86ec510b505f21c9b6cd073ffff7df0bf900e411db717a53d36b0368ea09697490e00f2d3c926e7b74fd90ec25 languageName: node linkType: hard @@ -7365,18 +7570,18 @@ __metadata: linkType: hard "@grpc/grpc-js@npm:^1.10.9, @grpc/grpc-js@npm:^1.11.1": - version: 1.13.2 - resolution: "@grpc/grpc-js@npm:1.13.2" + version: 1.13.3 + resolution: "@grpc/grpc-js@npm:1.13.3" dependencies: "@grpc/proto-loader": "npm:^0.7.13" "@js-sdsl/ordered-map": "npm:^4.4.2" - checksum: 10c0/16ce2c4207e73f91a1e4ace146bf36b63461f4d7b1271ede002bf118f474d5a9051ca325d52ed80eb7154445a881a23407fed2624080a1c2ea36aa306d6ba05e + checksum: 10c0/1d4e5504a62c5d65be783f6edce24d5fdd101b1d204813e07e6f512e5ca3485138c57caffe4c3cd237e4ed107168ad29237c2629a52e4639b0b2d2947c02bf01 languageName: node linkType: hard "@grpc/proto-loader@npm:^0.7.13": - version: 0.7.13 - resolution: "@grpc/proto-loader@npm:0.7.13" + version: 0.7.15 + resolution: "@grpc/proto-loader@npm:0.7.15" dependencies: lodash.camelcase: "npm:^4.3.0" long: "npm:^5.0.0" @@ -7384,7 +7589,7 @@ __metadata: yargs: "npm:^17.7.2" bin: proto-loader-gen-types: build/bin/proto-loader-gen-types.js - checksum: 10c0/dc8ed7aa1454c15e224707cc53d84a166b98d76f33606a9f334c7a6fb1aedd3e3614dcd2c2b02a6ffaf140587d19494f93b3a56346c6c2e26bc564f6deddbbf3 + checksum: 10c0/514a134a724b56d73d0a202b7e02c84479da21e364547bacb2f4995ebc0d52412a1a21653add9f004ebd146c1e6eb4bcb0b8846fdfe1bfa8a98ed8f3d203da4a languageName: node linkType: hard @@ -7466,7 +7671,7 @@ __metadata: languageName: node linkType: hard -"@internal/backstage-plugin-import-flow@npm:^1.6.0, @internal/backstage-plugin-import-flow@workspace:plugins/import-flow": +"@internal/backstage-plugin-import-flow@workspace:^, @internal/backstage-plugin-import-flow@workspace:plugins/import-flow": version: 0.0.0-use.local resolution: "@internal/backstage-plugin-import-flow@workspace:plugins/import-flow" dependencies: @@ -7500,7 +7705,7 @@ __metadata: languageName: unknown linkType: soft -"@internal/backstage-plugin-scaffolder-backend-module-import-flow@npm:^1.6.0, @internal/backstage-plugin-scaffolder-backend-module-import-flow@workspace:plugins/scaffolder-backend-module-import-flow": +"@internal/backstage-plugin-scaffolder-backend-module-import-flow@workspace:^, @internal/backstage-plugin-scaffolder-backend-module-import-flow@workspace:plugins/scaffolder-backend-module-import-flow": version: 0.0.0-use.local resolution: "@internal/backstage-plugin-scaffolder-backend-module-import-flow@workspace:plugins/scaffolder-backend-module-import-flow" dependencies: @@ -7515,6 +7720,7 @@ __metadata: glob: "npm:^10.4.2" js-yaml: "npm:^4.1.0" jsonpath: "npm:^1.1.1" + regex-parser: "npm:^2.3.1" winston: "npm:^3.13.0" xpath: "npm:^0.0.34" yaml: "npm:^2.7.0" @@ -7522,6 +7728,20 @@ __metadata: languageName: unknown linkType: soft +"@internal/plugin-scaffolder-backend-module-tibco-git-repositories@workspace:^, @internal/plugin-scaffolder-backend-module-tibco-git-repositories@workspace:plugins/scaffolder-backend-module-tibco-git-repositories": + version: 0.0.0-use.local + resolution: "@internal/plugin-scaffolder-backend-module-tibco-git-repositories@workspace:plugins/scaffolder-backend-module-tibco-git-repositories" + dependencies: + "@backstage/backend-plugin-api": "npm:^1.2.0" + "@backstage/cli": "npm:^0.30.0" + "@backstage/integration": "npm:^1.16.2" + "@backstage/plugin-scaffolder-node": "npm:^0.7.0" + "@backstage/plugin-scaffolder-node-test-utils": "npm:^0.1.19" + simple-git: "npm:^3.27.0" + zod: "npm:^3.24.2" + languageName: unknown + linkType: soft + "@internal/plugin-scaffolder-backend-module-trigger-jenkins-job@workspace:plugins/scaffolder-backend-module-trigger-jenkins-job": version: 0.0.0-use.local resolution: "@internal/plugin-scaffolder-backend-module-trigger-jenkins-job@workspace:plugins/scaffolder-backend-module-trigger-jenkins-job" @@ -7536,7 +7756,7 @@ __metadata: languageName: unknown linkType: soft -"@internal/plugin-tibco-platform-plugin@npm:^1.6.0, @internal/plugin-tibco-platform-plugin@workspace:plugins/tibco-platform-plugin": +"@internal/plugin-tibco-platform-plugin@workspace:^, @internal/plugin-tibco-platform-plugin@workspace:plugins/tibco-platform-plugin": version: 0.0.0-use.local resolution: "@internal/plugin-tibco-platform-plugin@workspace:plugins/tibco-platform-plugin" dependencies: @@ -7545,7 +7765,9 @@ __metadata: "@backstage/core-components": "npm:^0.16.4" "@backstage/core-plugin-api": "npm:^1.10.4" "@backstage/dev-utils": "npm:^1.1.7" + "@backstage/integration-react": "npm:^1.2.6" "@backstage/plugin-catalog-react": "npm:^1.15.2" + "@backstage/plugin-permission-react": "npm:^0.4.33" "@backstage/test-utils": "npm:^1.7.5" "@backstage/theme": "npm:^0.6.4" "@material-ui/core": "npm:^4.9.13" @@ -8085,13 +8307,14 @@ __metadata: linkType: hard "@keyv/redis@npm:^4.0.1": - version: 4.3.2 - resolution: "@keyv/redis@npm:4.3.2" + version: 4.3.4 + resolution: "@keyv/redis@npm:4.3.4" dependencies: cluster-key-slot: "npm:^1.1.2" - keyv: "npm:^5.3.1" redis: "npm:^4.7.0" - checksum: 10c0/6a10de10be9dbe17b915bbdf78ea6aff1e363284e4e7fd64129a37380e555ec6255453ca349edc31647b74534dc3556e3f6c6c40e6e7a32fbb4c5ceddfed6773 + peerDependencies: + keyv: ^5.3.3 + checksum: 10c0/f8a00994984ba4816e5fa1bc4d194dcbade2245d432b311c8ac531ae505799b38249593a5e0bbde8d344ee5a9ffa2bf462c69ba711cfe8164f70b43116d38e31 languageName: node linkType: hard @@ -8145,8 +8368,8 @@ __metadata: linkType: hard "@kubernetes/client-node@npm:^1.0.0-rc7": - version: 1.1.0 - resolution: "@kubernetes/client-node@npm:1.1.0" + version: 1.1.2 + resolution: "@kubernetes/client-node@npm:1.1.2" dependencies: "@types/js-yaml": "npm:^4.0.1" "@types/node": "npm:^22.0.0" @@ -8167,7 +8390,23 @@ __metadata: tar: "npm:^7.0.0" tmp-promise: "npm:^3.0.2" ws: "npm:^8.18.0" - checksum: 10c0/f2dbc9b2f23387a7c0a62748e893c8b34e264def5dd02e51a981fa4c9cf24c7b5da5a4a56f6ecefde18fd00704528a00fb0be7fdd2f64881e1ca983d497ffe09 + checksum: 10c0/8fc57c9598decdb17c20cc7d3196e5d16049cfdc581b0fbf73446525681b6e0d1e1ce76d00863b400870cd137ddc6a41ff5cdf139578e0fe9418264c132ef6dc + languageName: node + linkType: hard + +"@kwsites/file-exists@npm:^1.1.1": + version: 1.1.1 + resolution: "@kwsites/file-exists@npm:1.1.1" + dependencies: + debug: "npm:^4.1.1" + checksum: 10c0/39e693239a72ccd8408bb618a0200e4a8d61682057ca7ae2c87668d7e69196e8d7e2c9cde73db6b23b3b0230169a15e5f1bfe086539f4be43e767b2db68e8ee4 + languageName: node + linkType: hard + +"@kwsites/promise-deferred@npm:^1.1.1": + version: 1.1.1 + resolution: "@kwsites/promise-deferred@npm:1.1.1" + checksum: 10c0/ef1ad3f1f50991e3bed352b175986d8b4bc684521698514a2ed63c1d1fc9848843da4f2bc2df961c9b148c94e1c34bf33f0da8a90ba2234e452481f2cc9937b1 languageName: node linkType: hard @@ -8888,6 +9127,13 @@ __metadata: languageName: node linkType: hard +"@noble/hashes@npm:^1.1.5": + version: 1.8.0 + resolution: "@noble/hashes@npm:1.8.0" + checksum: 10c0/06a0b52c81a6fa7f04d67762e08b2c476a00285858150caeaaff4037356dd5e119f45b2a530f638b77a5eeca013168ec1b655db41bae3236cb2e9d511484fc77 + languageName: node + linkType: hard + "@node-saml/node-saml@npm:^5.0.1": version: 5.0.1 resolution: "@node-saml/node-saml@npm:5.0.1" @@ -9562,6 +9808,15 @@ __metadata: languageName: node linkType: hard +"@paralleldrive/cuid2@npm:^2.2.2": + version: 2.2.2 + resolution: "@paralleldrive/cuid2@npm:2.2.2" + dependencies: + "@noble/hashes": "npm:^1.1.5" + checksum: 10c0/af5826df93de437121308f4f4ce0b2eeb89b60bb57a1a6592fb89c0d40d311ad1d9f3f6a4db2cce6f2bcf572de1aa3f85704254e89b18ce61c41ebb06564c4ee + languageName: node + linkType: hard + "@pkgjs/parseargs@npm:^0.11.0": version: 0.11.0 resolution: "@pkgjs/parseargs@npm:0.11.0" @@ -9570,13 +9825,13 @@ __metadata: linkType: hard "@playwright/test@npm:^1.32.3": - version: 1.51.1 - resolution: "@playwright/test@npm:1.51.1" + version: 1.52.0 + resolution: "@playwright/test@npm:1.52.0" dependencies: - playwright: "npm:1.51.1" + playwright: "npm:1.52.0" bin: playwright: cli.js - checksum: 10c0/bdb98f3df58f60b5c62e6d5c79c30910404d1855afea0803af0efd6dc63f90c473dbf92ff7dc212f1459f1d32c85dc44a60f70c2e0ea604f975b953d59523234 + checksum: 10c0/1c428b421593eb4f79b7c99783a389c3ab3526c9051ec772749f4fca61414dfa9f2344eba846faac5f238084aa96c836364a91d81d3034ac54924f239a93e247 languageName: node linkType: hard @@ -9697,18 +9952,18 @@ __metadata: languageName: node linkType: hard -"@radix-ui/primitive@npm:1.1.1": - version: 1.1.1 - resolution: "@radix-ui/primitive@npm:1.1.1" - checksum: 10c0/6457bd8d1aa4ecb948e5d2a2484fc570698b2ab472db6d915a8f1eec04823f80423efa60b5ba840f0693bec2ca380333cc5f3b52586b40f407d9f572f9261f8d +"@radix-ui/primitive@npm:1.1.2": + version: 1.1.2 + resolution: "@radix-ui/primitive@npm:1.1.2" + checksum: 10c0/5e2d2528d2fe37c16865e77b0beaac2b415a817ad13d8178db6e8187b2a092672568a64ee0041510abfde3034490a5cadd3057049bb15789020c06892047597c languageName: node linkType: hard -"@radix-ui/react-arrow@npm:1.1.2": - version: 1.1.2 - resolution: "@radix-ui/react-arrow@npm:1.1.2" +"@radix-ui/react-arrow@npm:1.1.4": + version: 1.1.4 + resolution: "@radix-ui/react-arrow@npm:1.1.4" dependencies: - "@radix-ui/react-primitive": "npm:2.0.2" + "@radix-ui/react-primitive": "npm:2.1.0" peerDependencies: "@types/react": "*" "@types/react-dom": "*" @@ -9719,18 +9974,18 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/38e1a338da1131f325e417ac456b1b6c16c76aa9da0635916262b4682d4e648226fd37b23348964a8e909c98b4d2293c7c5789be8f243cfe03856e6f0765cf5d + checksum: 10c0/ce93c35e6c85661d9ba90d235164dcbe9a1bd477dd9096763526c71348378d959f3642a017eb32fb4e72952043fddd8e100b17c67d5552250d60c8fc11551323 languageName: node linkType: hard -"@radix-ui/react-collection@npm:1.1.2": - version: 1.1.2 - resolution: "@radix-ui/react-collection@npm:1.1.2" +"@radix-ui/react-collection@npm:1.1.4": + version: 1.1.4 + resolution: "@radix-ui/react-collection@npm:1.1.4" dependencies: - "@radix-ui/react-compose-refs": "npm:1.1.1" - "@radix-ui/react-context": "npm:1.1.1" - "@radix-ui/react-primitive": "npm:2.0.2" - "@radix-ui/react-slot": "npm:1.1.2" + "@radix-ui/react-compose-refs": "npm:1.1.2" + "@radix-ui/react-context": "npm:1.1.2" + "@radix-ui/react-primitive": "npm:2.1.0" + "@radix-ui/react-slot": "npm:1.2.0" peerDependencies: "@types/react": "*" "@types/react-dom": "*" @@ -9741,52 +9996,52 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/8376aa0c0f38efbb45e5c0a2e8724b0ca2ccdab511f5aee4c3eb62a89959b20be0d4dd410b7068bc13d722751cbc88e916e10573784fb26b084c43f930818715 + checksum: 10c0/fc03f1964789226161f2cea2a97c909feaf0e09ba5bb849a9471fb19c1e161e4d8c64588d14fba80ac869eb06c752538c0eaa328c3608ef5dddb033a2ad87770 languageName: node linkType: hard -"@radix-ui/react-compose-refs@npm:1.1.1": - version: 1.1.1 - resolution: "@radix-ui/react-compose-refs@npm:1.1.1" +"@radix-ui/react-compose-refs@npm:1.1.2": + version: 1.1.2 + resolution: "@radix-ui/react-compose-refs@npm:1.1.2" peerDependencies: "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/3e84580024e66e3cc5b9ae79355e787815c1d2a3c7d46e7f47900a29c33751ca24cf4ac8903314957ab1f7788aebe1687e2258641c188cf94653f7ddf8f70627 + checksum: 10c0/d36a9c589eb75d634b9b139c80f916aadaf8a68a7c1c4b8c6c6b88755af1a92f2e343457042089f04cc3f23073619d08bb65419ced1402e9d4e299576d970771 languageName: node linkType: hard -"@radix-ui/react-context@npm:1.1.1": - version: 1.1.1 - resolution: "@radix-ui/react-context@npm:1.1.1" +"@radix-ui/react-context@npm:1.1.2": + version: 1.1.2 + resolution: "@radix-ui/react-context@npm:1.1.2" peerDependencies: "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/fc4ace9d79d7954c715ade765e06c95d7e1b12a63a536bcbe842fb904f03f88fc5bd6e38d44bd23243d37a270b4c44380fedddaeeae2d274f0b898a20665aba2 + checksum: 10c0/cece731f8cc25d494c6589cc681e5c01a93867d895c75889973afa1a255f163c286e390baa7bc028858eaabe9f6b57270d0ca6377356f652c5557c1c7a41ccce languageName: node linkType: hard "@radix-ui/react-dialog@npm:^1.0.4": - version: 1.1.6 - resolution: "@radix-ui/react-dialog@npm:1.1.6" - dependencies: - "@radix-ui/primitive": "npm:1.1.1" - "@radix-ui/react-compose-refs": "npm:1.1.1" - "@radix-ui/react-context": "npm:1.1.1" - "@radix-ui/react-dismissable-layer": "npm:1.1.5" - "@radix-ui/react-focus-guards": "npm:1.1.1" - "@radix-ui/react-focus-scope": "npm:1.1.2" - "@radix-ui/react-id": "npm:1.1.0" - "@radix-ui/react-portal": "npm:1.1.4" - "@radix-ui/react-presence": "npm:1.1.2" - "@radix-ui/react-primitive": "npm:2.0.2" - "@radix-ui/react-slot": "npm:1.1.2" - "@radix-ui/react-use-controllable-state": "npm:1.1.0" + version: 1.1.11 + resolution: "@radix-ui/react-dialog@npm:1.1.11" + dependencies: + "@radix-ui/primitive": "npm:1.1.2" + "@radix-ui/react-compose-refs": "npm:1.1.2" + "@radix-ui/react-context": "npm:1.1.2" + "@radix-ui/react-dismissable-layer": "npm:1.1.7" + "@radix-ui/react-focus-guards": "npm:1.1.2" + "@radix-ui/react-focus-scope": "npm:1.1.4" + "@radix-ui/react-id": "npm:1.1.1" + "@radix-ui/react-portal": "npm:1.1.6" + "@radix-ui/react-presence": "npm:1.1.4" + "@radix-ui/react-primitive": "npm:2.1.0" + "@radix-ui/react-slot": "npm:1.2.0" + "@radix-ui/react-use-controllable-state": "npm:1.2.2" aria-hidden: "npm:^1.2.4" react-remove-scroll: "npm:^2.6.3" peerDependencies: @@ -9799,32 +10054,32 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/98e425549573c5d6fb0fee94ecd40427a8b8897bb2d9bb2a44fe64e484754376ff23b64fcf64e061d42fc774b9627a28cb5b1bb5652e567908dac9a8d8618705 + checksum: 10c0/04c5193c5527e78e28beb08014259e10cf82124f6d054876372aa7fb17227da7ef7547668eb45dd5ea6e62a7453272396dc0a4557f3e58c837fd91cf47778812 languageName: node linkType: hard -"@radix-ui/react-direction@npm:1.1.0": - version: 1.1.0 - resolution: "@radix-ui/react-direction@npm:1.1.0" +"@radix-ui/react-direction@npm:1.1.1": + version: 1.1.1 + resolution: "@radix-ui/react-direction@npm:1.1.1" peerDependencies: "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/eb07d8cc3ae2388b824e0a11ae0e3b71fb0c49972b506e249cec9f27a5b7ef4305ee668c98b674833c92e842163549a83beb0a197dec1ec65774bdeeb61f932c + checksum: 10c0/7a89d9291f846a3105e45f4df98d6b7a08f8d7b30acdcd253005dc9db107ee83cbbebc9e47a9af1e400bcd47697f1511ceab23a399b0da854488fc7220482ac9 languageName: node linkType: hard -"@radix-ui/react-dismissable-layer@npm:1.1.5": - version: 1.1.5 - resolution: "@radix-ui/react-dismissable-layer@npm:1.1.5" +"@radix-ui/react-dismissable-layer@npm:1.1.7": + version: 1.1.7 + resolution: "@radix-ui/react-dismissable-layer@npm:1.1.7" dependencies: - "@radix-ui/primitive": "npm:1.1.1" - "@radix-ui/react-compose-refs": "npm:1.1.1" - "@radix-ui/react-primitive": "npm:2.0.2" - "@radix-ui/react-use-callback-ref": "npm:1.1.0" - "@radix-ui/react-use-escape-keydown": "npm:1.1.0" + "@radix-ui/primitive": "npm:1.1.2" + "@radix-ui/react-compose-refs": "npm:1.1.2" + "@radix-ui/react-primitive": "npm:2.1.0" + "@radix-ui/react-use-callback-ref": "npm:1.1.1" + "@radix-ui/react-use-escape-keydown": "npm:1.1.1" peerDependencies: "@types/react": "*" "@types/react-dom": "*" @@ -9835,21 +10090,21 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/05c5adfcd42a736c456f50bdca25bf7f6b25eef7328e4c05de535fea128328666433a89d68cb1445e039c188d7f1397df6a4a02e2da0970762f2a80fd29b48ea + checksum: 10c0/bb93b821ab1e24da86f4a4e74e251d9bc53c021a8a2cb4be5273af6cfe94fcd95807058a789b74bd5ca256bcb8be6dfaec3a0768f8323009dd2b2a9161964d7a languageName: node linkType: hard "@radix-ui/react-dropdown-menu@npm:^2.0.5": - version: 2.1.6 - resolution: "@radix-ui/react-dropdown-menu@npm:2.1.6" + version: 2.1.12 + resolution: "@radix-ui/react-dropdown-menu@npm:2.1.12" dependencies: - "@radix-ui/primitive": "npm:1.1.1" - "@radix-ui/react-compose-refs": "npm:1.1.1" - "@radix-ui/react-context": "npm:1.1.1" - "@radix-ui/react-id": "npm:1.1.0" - "@radix-ui/react-menu": "npm:2.1.6" - "@radix-ui/react-primitive": "npm:2.0.2" - "@radix-ui/react-use-controllable-state": "npm:1.1.0" + "@radix-ui/primitive": "npm:1.1.2" + "@radix-ui/react-compose-refs": "npm:1.1.2" + "@radix-ui/react-context": "npm:1.1.2" + "@radix-ui/react-id": "npm:1.1.1" + "@radix-ui/react-menu": "npm:2.1.12" + "@radix-ui/react-primitive": "npm:2.1.0" + "@radix-ui/react-use-controllable-state": "npm:1.2.2" peerDependencies: "@types/react": "*" "@types/react-dom": "*" @@ -9860,30 +10115,30 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/1165cc6a7c914b4491f83b7ff2bd84e5c52016f5ee48ae9b841482ed09b349adb294a8269cc69ba5a20fee75400b521843130a490da7e81c39361f63092266ba + checksum: 10c0/1a02ff19d580672c815d4e682211be42fe86aad4fb7ca44d4d093232f2436e9e80a127a6ead7f469655bf36d68b3dfa915c45dbb833f783dfe7fcc0502ac05d0 languageName: node linkType: hard -"@radix-ui/react-focus-guards@npm:1.1.1": - version: 1.1.1 - resolution: "@radix-ui/react-focus-guards@npm:1.1.1" +"@radix-ui/react-focus-guards@npm:1.1.2": + version: 1.1.2 + resolution: "@radix-ui/react-focus-guards@npm:1.1.2" peerDependencies: "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/2e99750ca593083a530542a185d656b45b100752353a7a193a67566e3c256414a76fa9171d152f8c0167b8d6c1fdf62b2e07750d7af2974bf8ef39eb204aa537 + checksum: 10c0/8d6fa55752b9b6e55d1eebb643178e38a824e8ba418eb29031b2979077a12c4e3922892de9f984dd326f77071a14960cd81e99a960beea07598b8c80da618dc5 languageName: node linkType: hard -"@radix-ui/react-focus-scope@npm:1.1.2": - version: 1.1.2 - resolution: "@radix-ui/react-focus-scope@npm:1.1.2" +"@radix-ui/react-focus-scope@npm:1.1.4": + version: 1.1.4 + resolution: "@radix-ui/react-focus-scope@npm:1.1.4" dependencies: - "@radix-ui/react-compose-refs": "npm:1.1.1" - "@radix-ui/react-primitive": "npm:2.0.2" - "@radix-ui/react-use-callback-ref": "npm:1.1.0" + "@radix-ui/react-compose-refs": "npm:1.1.2" + "@radix-ui/react-primitive": "npm:2.1.0" + "@radix-ui/react-use-callback-ref": "npm:1.1.1" peerDependencies: "@types/react": "*" "@types/react-dom": "*" @@ -9894,45 +10149,45 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/7b93866a9980bc938fc3fcfacfc49467c13144931c9b7a3b5423c0c3817685dc421499d73f58335f6c3c1c0f4fea9c9b7c16aa06a1d30571620787086082bea0 + checksum: 10c0/daa28ea0bfe19b5b8ca2ffd7ca482e1ee7762f243882a0fe411831d3a4cdeaca4f55bd40226cfd465590f27ef010e3b5b0f7dff725aa45f25735ab4f889c8999 languageName: node linkType: hard -"@radix-ui/react-id@npm:1.1.0": - version: 1.1.0 - resolution: "@radix-ui/react-id@npm:1.1.0" +"@radix-ui/react-id@npm:1.1.1": + version: 1.1.1 + resolution: "@radix-ui/react-id@npm:1.1.1" dependencies: - "@radix-ui/react-use-layout-effect": "npm:1.1.0" + "@radix-ui/react-use-layout-effect": "npm:1.1.1" peerDependencies: "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/acf13e29e51ee96336837fc0cfecc306328b20b0e0070f6f0f7aa7a621ded4a1ee5537cfad58456f64bae76caa7f8769231e88dc7dc106197347ee433c275a79 - languageName: node - linkType: hard - -"@radix-ui/react-menu@npm:2.1.6": - version: 2.1.6 - resolution: "@radix-ui/react-menu@npm:2.1.6" - dependencies: - "@radix-ui/primitive": "npm:1.1.1" - "@radix-ui/react-collection": "npm:1.1.2" - "@radix-ui/react-compose-refs": "npm:1.1.1" - "@radix-ui/react-context": "npm:1.1.1" - "@radix-ui/react-direction": "npm:1.1.0" - "@radix-ui/react-dismissable-layer": "npm:1.1.5" - "@radix-ui/react-focus-guards": "npm:1.1.1" - "@radix-ui/react-focus-scope": "npm:1.1.2" - "@radix-ui/react-id": "npm:1.1.0" - "@radix-ui/react-popper": "npm:1.2.2" - "@radix-ui/react-portal": "npm:1.1.4" - "@radix-ui/react-presence": "npm:1.1.2" - "@radix-ui/react-primitive": "npm:2.0.2" - "@radix-ui/react-roving-focus": "npm:1.1.2" - "@radix-ui/react-slot": "npm:1.1.2" - "@radix-ui/react-use-callback-ref": "npm:1.1.0" + checksum: 10c0/7d12e76818763d592c331277ef62b197e2e64945307e650bd058f0090e5ae48bbd07691b23b7e9e977901ef4eadcb3e2d5eaeb17a13859083384be83fc1292c7 + languageName: node + linkType: hard + +"@radix-ui/react-menu@npm:2.1.12": + version: 2.1.12 + resolution: "@radix-ui/react-menu@npm:2.1.12" + dependencies: + "@radix-ui/primitive": "npm:1.1.2" + "@radix-ui/react-collection": "npm:1.1.4" + "@radix-ui/react-compose-refs": "npm:1.1.2" + "@radix-ui/react-context": "npm:1.1.2" + "@radix-ui/react-direction": "npm:1.1.1" + "@radix-ui/react-dismissable-layer": "npm:1.1.7" + "@radix-ui/react-focus-guards": "npm:1.1.2" + "@radix-ui/react-focus-scope": "npm:1.1.4" + "@radix-ui/react-id": "npm:1.1.1" + "@radix-ui/react-popper": "npm:1.2.4" + "@radix-ui/react-portal": "npm:1.1.6" + "@radix-ui/react-presence": "npm:1.1.4" + "@radix-ui/react-primitive": "npm:2.1.0" + "@radix-ui/react-roving-focus": "npm:1.1.7" + "@radix-ui/react-slot": "npm:1.2.0" + "@radix-ui/react-use-callback-ref": "npm:1.1.1" aria-hidden: "npm:^1.2.4" react-remove-scroll: "npm:^2.6.3" peerDependencies: @@ -9945,24 +10200,24 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/0b5420f181e38ec146572f56ebe51a4e7f28663939f8149a246f5d319b79633574fa35a3f3c7c85deb44a6fe31d94af62a34407b1a8e97c1eae99cfca5db40ed + checksum: 10c0/fad42d6b999954b655878c78ea401e7f06d36d22f0213cd9f66e91bca31c8891447ca66021a5a7bce36f45dfa4100aaa3e8be74715338849dd9cae3c000d2546 languageName: node linkType: hard -"@radix-ui/react-popper@npm:1.2.2": - version: 1.2.2 - resolution: "@radix-ui/react-popper@npm:1.2.2" +"@radix-ui/react-popper@npm:1.2.4": + version: 1.2.4 + resolution: "@radix-ui/react-popper@npm:1.2.4" dependencies: "@floating-ui/react-dom": "npm:^2.0.0" - "@radix-ui/react-arrow": "npm:1.1.2" - "@radix-ui/react-compose-refs": "npm:1.1.1" - "@radix-ui/react-context": "npm:1.1.1" - "@radix-ui/react-primitive": "npm:2.0.2" - "@radix-ui/react-use-callback-ref": "npm:1.1.0" - "@radix-ui/react-use-layout-effect": "npm:1.1.0" - "@radix-ui/react-use-rect": "npm:1.1.0" - "@radix-ui/react-use-size": "npm:1.1.0" - "@radix-ui/rect": "npm:1.1.0" + "@radix-ui/react-arrow": "npm:1.1.4" + "@radix-ui/react-compose-refs": "npm:1.1.2" + "@radix-ui/react-context": "npm:1.1.2" + "@radix-ui/react-primitive": "npm:2.1.0" + "@radix-ui/react-use-callback-ref": "npm:1.1.1" + "@radix-ui/react-use-layout-effect": "npm:1.1.1" + "@radix-ui/react-use-rect": "npm:1.1.1" + "@radix-ui/react-use-size": "npm:1.1.1" + "@radix-ui/rect": "npm:1.1.1" peerDependencies: "@types/react": "*" "@types/react-dom": "*" @@ -9973,16 +10228,16 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/556cef98c0fe50bcfaaa4ae2e85af737755c884b78a04b6bdac3682829051ea0a4cf1163fc8bde782e33280613424e2ebb10b8af507da53e1aea08966c13cc86 + checksum: 10c0/3c0b1dac6f3e25700604424c11f0e3a29aacb430f4cf5ed78ea3acb059481c7dc6907fbb9538f068415583c03b2ba7ebb2a270e5dfd156421e4112b42ae70168 languageName: node linkType: hard -"@radix-ui/react-portal@npm:1.1.4": - version: 1.1.4 - resolution: "@radix-ui/react-portal@npm:1.1.4" +"@radix-ui/react-portal@npm:1.1.6": + version: 1.1.6 + resolution: "@radix-ui/react-portal@npm:1.1.6" dependencies: - "@radix-ui/react-primitive": "npm:2.0.2" - "@radix-ui/react-use-layout-effect": "npm:1.1.0" + "@radix-ui/react-primitive": "npm:2.1.0" + "@radix-ui/react-use-layout-effect": "npm:1.1.1" peerDependencies: "@types/react": "*" "@types/react-dom": "*" @@ -9993,16 +10248,16 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/e4038eb2f20be10d9754d099d00620f429711919d20c4c630946d9c4941f1c83ef1a3f4110c221c70486e65bc565ebba4ada22a0e7e2d179c039f2a014300793 + checksum: 10c0/46bc998794848289665fc5a31c14827a56406bc5ad104fc1ba829cc52506b38989301fe5405e3960d4ac504f5176549cf5ef42e80a5e3844ce53148b4f86f31b languageName: node linkType: hard -"@radix-ui/react-presence@npm:1.1.2": - version: 1.1.2 - resolution: "@radix-ui/react-presence@npm:1.1.2" +"@radix-ui/react-presence@npm:1.1.4": + version: 1.1.4 + resolution: "@radix-ui/react-presence@npm:1.1.4" dependencies: - "@radix-ui/react-compose-refs": "npm:1.1.1" - "@radix-ui/react-use-layout-effect": "npm:1.1.0" + "@radix-ui/react-compose-refs": "npm:1.1.2" + "@radix-ui/react-use-layout-effect": "npm:1.1.1" peerDependencies: "@types/react": "*" "@types/react-dom": "*" @@ -10013,15 +10268,15 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/0c6fa281368636308044df3be4c1f02733094b5e35ba04f26e610dd1c4315a245ffc758e0e176c444742a7a46f4328af1a9d8181e860175ec39338d06525a78d + checksum: 10c0/8202647139d6f5097b0abcc43dfba471c00b69da95ca336afe3ea23a165e05ca21992f40fc801760fe442f3e064e54e2f2cbcb9ad758c4b07ef6c69a5b6777bd languageName: node linkType: hard -"@radix-ui/react-primitive@npm:2.0.2": - version: 2.0.2 - resolution: "@radix-ui/react-primitive@npm:2.0.2" +"@radix-ui/react-primitive@npm:2.1.0": + version: 2.1.0 + resolution: "@radix-ui/react-primitive@npm:2.1.0" dependencies: - "@radix-ui/react-slot": "npm:1.1.2" + "@radix-ui/react-slot": "npm:1.2.0" peerDependencies: "@types/react": "*" "@types/react-dom": "*" @@ -10032,23 +10287,23 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/1af7a33a86f8bd2467f2300b1bb6ca9af67cae3950953ba543d2a625c17f341dff05d19056ece7b03e5ced8b9f8de99c74f806710ce0da6b9a000f2af063fffe + checksum: 10c0/b436280dbd705b8b32f66b2a36a6432d90db579191fd283697d5d6a4b661ac4ee86b0f6a05e223806ce0802b2652dd8d95c6f7e0ce3c0a5567b2b1e2c3a3fcfe languageName: node linkType: hard -"@radix-ui/react-roving-focus@npm:1.1.2": - version: 1.1.2 - resolution: "@radix-ui/react-roving-focus@npm:1.1.2" - dependencies: - "@radix-ui/primitive": "npm:1.1.1" - "@radix-ui/react-collection": "npm:1.1.2" - "@radix-ui/react-compose-refs": "npm:1.1.1" - "@radix-ui/react-context": "npm:1.1.1" - "@radix-ui/react-direction": "npm:1.1.0" - "@radix-ui/react-id": "npm:1.1.0" - "@radix-ui/react-primitive": "npm:2.0.2" - "@radix-ui/react-use-callback-ref": "npm:1.1.0" - "@radix-ui/react-use-controllable-state": "npm:1.1.0" +"@radix-ui/react-roving-focus@npm:1.1.7": + version: 1.1.7 + resolution: "@radix-ui/react-roving-focus@npm:1.1.7" + dependencies: + "@radix-ui/primitive": "npm:1.1.2" + "@radix-ui/react-collection": "npm:1.1.4" + "@radix-ui/react-compose-refs": "npm:1.1.2" + "@radix-ui/react-context": "npm:1.1.2" + "@radix-ui/react-direction": "npm:1.1.1" + "@radix-ui/react-id": "npm:1.1.1" + "@radix-ui/react-primitive": "npm:2.1.0" + "@radix-ui/react-use-callback-ref": "npm:1.1.1" + "@radix-ui/react-use-controllable-state": "npm:1.2.2" peerDependencies: "@types/react": "*" "@types/react-dom": "*" @@ -10059,41 +10314,41 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/80e378e1156d5b8af14995e908fe2358c8f4757fbf274e30d2ee3c1cedc3a0c7192524df7e3bb1d5011ee9ab8ab7445b60eff06617370e58abcd1ae97e0e40f6 + checksum: 10c0/ac5d50146f1fb04ad5b53c9a632b9b95ca4698aae994e93b94e169c59268960a4c50f8c6894edb9c8c75bfd643081e07b6d0c6f4e7a0b80a5258d7471c0db22e languageName: node linkType: hard -"@radix-ui/react-slot@npm:1.1.2": - version: 1.1.2 - resolution: "@radix-ui/react-slot@npm:1.1.2" +"@radix-ui/react-slot@npm:1.2.0": + version: 1.2.0 + resolution: "@radix-ui/react-slot@npm:1.2.0" dependencies: - "@radix-ui/react-compose-refs": "npm:1.1.1" + "@radix-ui/react-compose-refs": "npm:1.1.2" peerDependencies: "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/81d45091806c52b507cec80b4477e4f31189d76ffcd7845b382eb3a034e6cf1faef71b881612028d5893f7580bf9ab59daa18fbf2792042dccd755c99a18df67 + checksum: 10c0/f1455f36479e87a0a2254fc2e2b2aba6740d1fbcada949071210bf2a009a031ad508ac01b544bce96337bcca82f49531b46c71615141a5985aaa11ae69b967b1 languageName: node linkType: hard "@radix-ui/react-tooltip@npm:^1.0.6": - version: 1.1.8 - resolution: "@radix-ui/react-tooltip@npm:1.1.8" - dependencies: - "@radix-ui/primitive": "npm:1.1.1" - "@radix-ui/react-compose-refs": "npm:1.1.1" - "@radix-ui/react-context": "npm:1.1.1" - "@radix-ui/react-dismissable-layer": "npm:1.1.5" - "@radix-ui/react-id": "npm:1.1.0" - "@radix-ui/react-popper": "npm:1.2.2" - "@radix-ui/react-portal": "npm:1.1.4" - "@radix-ui/react-presence": "npm:1.1.2" - "@radix-ui/react-primitive": "npm:2.0.2" - "@radix-ui/react-slot": "npm:1.1.2" - "@radix-ui/react-use-controllable-state": "npm:1.1.0" - "@radix-ui/react-visually-hidden": "npm:1.1.2" + version: 1.2.4 + resolution: "@radix-ui/react-tooltip@npm:1.2.4" + dependencies: + "@radix-ui/primitive": "npm:1.1.2" + "@radix-ui/react-compose-refs": "npm:1.1.2" + "@radix-ui/react-context": "npm:1.1.2" + "@radix-ui/react-dismissable-layer": "npm:1.1.7" + "@radix-ui/react-id": "npm:1.1.1" + "@radix-ui/react-popper": "npm:1.2.4" + "@radix-ui/react-portal": "npm:1.1.6" + "@radix-ui/react-presence": "npm:1.1.4" + "@radix-ui/react-primitive": "npm:2.1.0" + "@radix-ui/react-slot": "npm:1.2.0" + "@radix-ui/react-use-controllable-state": "npm:1.2.2" + "@radix-ui/react-visually-hidden": "npm:1.2.0" peerDependencies: "@types/react": "*" "@types/react-dom": "*" @@ -10104,101 +10359,117 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/696486eb472686e3fa7af1efa7ba10b177543c60b9f3caa7365b4527a11e3d6019b655cf820b3aa23d931b4bd2100b68f9d4125fee542abf0d44e401896615a1 + checksum: 10c0/da07e538f26a309edac954bf6bd04835209e96ec79c6812cebd656f94513b4b6667501a610aeb85f3858310be2d6c4acb3a279857bafd2578be36f30962ebee6 languageName: node linkType: hard -"@radix-ui/react-use-callback-ref@npm:1.1.0": - version: 1.1.0 - resolution: "@radix-ui/react-use-callback-ref@npm:1.1.0" +"@radix-ui/react-use-callback-ref@npm:1.1.1": + version: 1.1.1 + resolution: "@radix-ui/react-use-callback-ref@npm:1.1.1" peerDependencies: "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/e954863f3baa151faf89ac052a5468b42650efca924417470efd1bd254b411a94c69c30de2fdbb90187b38cb984795978e12e30423dc41e4309d93d53b66d819 + checksum: 10c0/5f6aff8592dea6a7e46589808912aba3fb3b626cf6edd2b14f01638b61dbbe49eeb9f67cd5601f4c15b2fb547b9a7e825f7c4961acd4dd70176c969ae405f8d8 languageName: node linkType: hard -"@radix-ui/react-use-controllable-state@npm:1.1.0": - version: 1.1.0 - resolution: "@radix-ui/react-use-controllable-state@npm:1.1.0" +"@radix-ui/react-use-controllable-state@npm:1.2.2": + version: 1.2.2 + resolution: "@radix-ui/react-use-controllable-state@npm:1.2.2" dependencies: - "@radix-ui/react-use-callback-ref": "npm:1.1.0" + "@radix-ui/react-use-effect-event": "npm:0.0.2" + "@radix-ui/react-use-layout-effect": "npm:1.1.1" peerDependencies: "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/2af883b5b25822ac226e60a6bfde647c0123a76345052a90219026059b3f7225844b2c13a9a16fba859c1cda5fb3d057f2a04503f71780e607516492db4eb3a1 + checksum: 10c0/f55c4b06e895293aed4b44c9ef26fb24432539f5346fcd6519c7745800535b571058685314e83486a45bf61dc83887e24826490d3068acc317fb0a9010516e63 languageName: node linkType: hard -"@radix-ui/react-use-escape-keydown@npm:1.1.0": - version: 1.1.0 - resolution: "@radix-ui/react-use-escape-keydown@npm:1.1.0" +"@radix-ui/react-use-effect-event@npm:0.0.2": + version: 0.0.2 + resolution: "@radix-ui/react-use-effect-event@npm:0.0.2" dependencies: - "@radix-ui/react-use-callback-ref": "npm:1.1.0" + "@radix-ui/react-use-layout-effect": "npm:1.1.1" peerDependencies: "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/910fd696e5a0994b0e06b9cb68def8a865f47951a013ec240c77db2a9e1e726105602700ef5e5f01af49f2f18fe0e73164f9a9651021f28538ef8a30d91f3fbb + checksum: 10c0/e84ff72a3e76c5ae9c94941028bb4b6472f17d4104481b9eab773deab3da640ecea035e54da9d6f4df8d84c18ef6913baf92b7511bee06930dc58bd0c0add417 languageName: node linkType: hard -"@radix-ui/react-use-layout-effect@npm:1.1.0": - version: 1.1.0 - resolution: "@radix-ui/react-use-layout-effect@npm:1.1.0" +"@radix-ui/react-use-escape-keydown@npm:1.1.1": + version: 1.1.1 + resolution: "@radix-ui/react-use-escape-keydown@npm:1.1.1" + dependencies: + "@radix-ui/react-use-callback-ref": "npm:1.1.1" peerDependencies: "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/9bf87ece1845c038ed95863cfccf9d75f557c2400d606343bab0ab3192b9806b9840e6aa0a0333fdf3e83cf9982632852192f3e68d7d8367bc8c788dfdf8e62b + checksum: 10c0/bff53be99e940fef1d3c4df7d560e1d9133182e5a98336255d3063327d1d3dd4ec54a95dc5afe15cca4fb6c184f0a956c70de2815578c318cf995a7f9beabaa1 languageName: node linkType: hard -"@radix-ui/react-use-rect@npm:1.1.0": - version: 1.1.0 - resolution: "@radix-ui/react-use-rect@npm:1.1.0" +"@radix-ui/react-use-layout-effect@npm:1.1.1": + version: 1.1.1 + resolution: "@radix-ui/react-use-layout-effect@npm:1.1.1" + peerDependencies: + "@types/react": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/9f98fdaba008dfc58050de60a77670b885792df473cf82c1cef8daee919a5dd5a77d270209f5f0b0abfaac78cb1627396e3ff56c81b735be550409426fe8b040 + languageName: node + linkType: hard + +"@radix-ui/react-use-rect@npm:1.1.1": + version: 1.1.1 + resolution: "@radix-ui/react-use-rect@npm:1.1.1" dependencies: - "@radix-ui/rect": "npm:1.1.0" + "@radix-ui/rect": "npm:1.1.1" peerDependencies: "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/c2e30150ab49e2cec238cda306fd748c3d47fb96dcff69a3b08e1d19108d80bac239d48f1747a25dadca614e3e967267d43b91e60ea59db2befbc7bea913ff84 + checksum: 10c0/271711404c05c589c8dbdaa748749e7daf44bcc6bffc9ecd910821c3ebca0ee245616cf5b39653ce690f53f875c3836fd3f36f51ab1c628273b6db599eee4864 languageName: node linkType: hard -"@radix-ui/react-use-size@npm:1.1.0": - version: 1.1.0 - resolution: "@radix-ui/react-use-size@npm:1.1.0" +"@radix-ui/react-use-size@npm:1.1.1": + version: 1.1.1 + resolution: "@radix-ui/react-use-size@npm:1.1.1" dependencies: - "@radix-ui/react-use-layout-effect": "npm:1.1.0" + "@radix-ui/react-use-layout-effect": "npm:1.1.1" peerDependencies: "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/4c8b89037597fdc1824d009e0c941b510c7c6c30f83024cc02c934edd748886786e7d9f36f57323b02ad29833e7fa7e8974d81969b4ab33d8f41661afa4f30a6 + checksum: 10c0/851d09a816f44282e0e9e2147b1b571410174cc048703a50c4fa54d672de994fd1dfff1da9d480ecfd12c77ae8f48d74f01adaf668f074156b8cd0043c6c21d8 languageName: node linkType: hard -"@radix-ui/react-visually-hidden@npm:1.1.2, @radix-ui/react-visually-hidden@npm:^1.0.3": - version: 1.1.2 - resolution: "@radix-ui/react-visually-hidden@npm:1.1.2" +"@radix-ui/react-visually-hidden@npm:1.2.0, @radix-ui/react-visually-hidden@npm:^1.0.3": + version: 1.2.0 + resolution: "@radix-ui/react-visually-hidden@npm:1.2.0" dependencies: - "@radix-ui/react-primitive": "npm:2.0.2" + "@radix-ui/react-primitive": "npm:2.1.0" peerDependencies: "@types/react": "*" "@types/react-dom": "*" @@ -10209,14 +10480,14 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/ea6dc8ec284b32bca6f24809db257394802e14af7c95e4a237af51009fa222c42e3b7a55b3bfc94d753f509086636555058ae8e535be25956c46529abf41b448 + checksum: 10c0/58d9dc7b39078b3da609e51d0cb0f5fa80b547ba94f8794d20616e34d5c1724b8908d6cc253797f78983eed7e29d04a092e4810161658c0d890389743cdd34c1 languageName: node linkType: hard -"@radix-ui/rect@npm:1.1.0": - version: 1.1.0 - resolution: "@radix-ui/rect@npm:1.1.0" - checksum: 10c0/a26ff7f8708fb5f2f7949baad70a6b2a597d761ee4dd4aadaf1c1a33ea82ea23dfef6ce6366a08310c5d008cdd60b2e626e4ee03fa342bd5f246ddd9d427f6be +"@radix-ui/rect@npm:1.1.1": + version: 1.1.1 + resolution: "@radix-ui/rect@npm:1.1.1" + checksum: 10c0/0dac4f0f15691199abe6a0e067821ddd9d0349c0c05f39834e4eafc8403caf724106884035ae91bbc826e10367e6a5672e7bec4d4243860fa7649de246b1f60b languageName: node linkType: hard @@ -10464,142 +10735,142 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-android-arm-eabi@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-android-arm-eabi@npm:4.39.0" +"@rollup/rollup-android-arm-eabi@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.40.1" conditions: os=android & cpu=arm languageName: node linkType: hard -"@rollup/rollup-android-arm64@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-android-arm64@npm:4.39.0" +"@rollup/rollup-android-arm64@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-android-arm64@npm:4.40.1" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-arm64@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-darwin-arm64@npm:4.39.0" +"@rollup/rollup-darwin-arm64@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-darwin-arm64@npm:4.40.1" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-x64@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-darwin-x64@npm:4.39.0" +"@rollup/rollup-darwin-x64@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-darwin-x64@npm:4.40.1" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-freebsd-arm64@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-freebsd-arm64@npm:4.39.0" +"@rollup/rollup-freebsd-arm64@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-freebsd-arm64@npm:4.40.1" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-freebsd-x64@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-freebsd-x64@npm:4.39.0" +"@rollup/rollup-freebsd-x64@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-freebsd-x64@npm:4.40.1" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-linux-arm-gnueabihf@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.39.0" +"@rollup/rollup-linux-arm-gnueabihf@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.40.1" conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm-musleabihf@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.39.0" +"@rollup/rollup-linux-arm-musleabihf@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.40.1" conditions: os=linux & cpu=arm & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-arm64-gnu@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.39.0" +"@rollup/rollup-linux-arm64-gnu@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.40.1" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm64-musl@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-linux-arm64-musl@npm:4.39.0" +"@rollup/rollup-linux-arm64-musl@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.40.1" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-loongarch64-gnu@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.39.0" +"@rollup/rollup-linux-loongarch64-gnu@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.40.1" conditions: os=linux & cpu=loong64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-powerpc64le-gnu@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.39.0" +"@rollup/rollup-linux-powerpc64le-gnu@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.40.1" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-gnu@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.39.0" +"@rollup/rollup-linux-riscv64-gnu@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.40.1" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-musl@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.39.0" +"@rollup/rollup-linux-riscv64-musl@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.40.1" conditions: os=linux & cpu=riscv64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-s390x-gnu@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.39.0" +"@rollup/rollup-linux-s390x-gnu@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.40.1" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-gnu@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-linux-x64-gnu@npm:4.39.0" +"@rollup/rollup-linux-x64-gnu@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.40.1" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-musl@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-linux-x64-musl@npm:4.39.0" +"@rollup/rollup-linux-x64-musl@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.40.1" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-win32-arm64-msvc@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.39.0" +"@rollup/rollup-win32-arm64-msvc@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.40.1" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-win32-ia32-msvc@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.39.0" +"@rollup/rollup-win32-ia32-msvc@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.40.1" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@rollup/rollup-win32-x64-msvc@npm:4.39.0": - version: 4.39.0 - resolution: "@rollup/rollup-win32-x64-msvc@npm:4.39.0" +"@rollup/rollup-win32-x64-msvc@npm:4.40.1": + version: 4.40.1 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.40.1" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -10712,9 +10983,9 @@ __metadata: languageName: node linkType: hard -"@smithy/core@npm:^3.2.0": - version: 3.2.0 - resolution: "@smithy/core@npm:3.2.0" +"@smithy/core@npm:^3.3.0": + version: 3.3.0 + resolution: "@smithy/core@npm:3.3.0" dependencies: "@smithy/middleware-serde": "npm:^4.0.3" "@smithy/protocol-http": "npm:^5.1.0" @@ -10724,7 +10995,7 @@ __metadata: "@smithy/util-stream": "npm:^4.2.0" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/ad514aec318c4863851c8167fdade41ac3393f245038de73b546fcdc6e3ad794c12a661d5248cb56a2e893c2b236db95a93d06c91e53b04e6c2967c31e300567 + checksum: 10c0/f9086d3bd950202c097aa27e5a8f92294bd8254591424938a85190087135465bebc722e02f6b3367e8b955b1ece80683034690d25a4ac0a2731fe3794892efd5 languageName: node linkType: hard @@ -10894,11 +11165,11 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-endpoint@npm:^4.1.0": - version: 4.1.0 - resolution: "@smithy/middleware-endpoint@npm:4.1.0" +"@smithy/middleware-endpoint@npm:^4.1.1": + version: 4.1.1 + resolution: "@smithy/middleware-endpoint@npm:4.1.1" dependencies: - "@smithy/core": "npm:^3.2.0" + "@smithy/core": "npm:^3.3.0" "@smithy/middleware-serde": "npm:^4.0.3" "@smithy/node-config-provider": "npm:^4.0.2" "@smithy/shared-ini-file-loader": "npm:^4.0.2" @@ -10906,24 +11177,24 @@ __metadata: "@smithy/url-parser": "npm:^4.0.2" "@smithy/util-middleware": "npm:^4.0.2" tslib: "npm:^2.6.2" - checksum: 10c0/1d38c793dbe5b32f01f96c6812935753ee14ebf5c9adf9f3782b6d3b36cf48537a7e123bfb7f7447effffa5dde0bd0d79c581cf07e8175fe1fb2b69fe158a41a + checksum: 10c0/74632053cf279d7cba87887ee2723cf12b7413f200cf55b18c8417c1358dac08fb3e975993c084d23b7906f67e0c75af68e0aba9e8c815092d2c3e585dedba39 languageName: node linkType: hard -"@smithy/middleware-retry@npm:^4.1.0": - version: 4.1.0 - resolution: "@smithy/middleware-retry@npm:4.1.0" +"@smithy/middleware-retry@npm:^4.1.1": + version: 4.1.1 + resolution: "@smithy/middleware-retry@npm:4.1.1" dependencies: "@smithy/node-config-provider": "npm:^4.0.2" "@smithy/protocol-http": "npm:^5.1.0" "@smithy/service-error-classification": "npm:^4.0.2" - "@smithy/smithy-client": "npm:^4.2.0" + "@smithy/smithy-client": "npm:^4.2.1" "@smithy/types": "npm:^4.2.0" "@smithy/util-middleware": "npm:^4.0.2" "@smithy/util-retry": "npm:^4.0.2" tslib: "npm:^2.6.2" uuid: "npm:^9.0.1" - checksum: 10c0/fe62a5be9f7e81bff08ce495792c8f5c6cffecd3a872125b8e3487b9bb2dd7341ee8804a714ab4cc8b00468f80d6d83fa19b146dfb0a8d38da9502c582655f52 + checksum: 10c0/fd29504ced2ace83aed694915163679ad5356f3c0a8a450a0cb378411c1bf1ae796dcd67c2bcf61842d9d73422a8b97c016754aafc41dfda17a3b9d98ce75c1a languageName: node linkType: hard @@ -11066,9 +11337,9 @@ __metadata: languageName: node linkType: hard -"@smithy/signature-v4@npm:^5.0.2": - version: 5.0.2 - resolution: "@smithy/signature-v4@npm:5.0.2" +"@smithy/signature-v4@npm:^5.1.0": + version: 5.1.0 + resolution: "@smithy/signature-v4@npm:5.1.0" dependencies: "@smithy/is-array-buffer": "npm:^4.0.0" "@smithy/protocol-http": "npm:^5.1.0" @@ -11078,22 +11349,22 @@ __metadata: "@smithy/util-uri-escape": "npm:^4.0.0" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/379b2bcd535cfcf68567b8931920eefd3ec30fc734369b5a1055792377a815cb7b6c7fc3a18567e6066d771ddfd0d06da8e45334a02bf86d69985d1923a11c29 + checksum: 10c0/7f3aed4999b47f04485846a90a08d0863c8bf4201a38616faf4bcb3166892a5b2946e7d0f1d5dc068b667913713873e21ab8374d60c1ff02828972d8c9201282 languageName: node linkType: hard -"@smithy/smithy-client@npm:^4.2.0": - version: 4.2.0 - resolution: "@smithy/smithy-client@npm:4.2.0" +"@smithy/smithy-client@npm:^4.2.1": + version: 4.2.1 + resolution: "@smithy/smithy-client@npm:4.2.1" dependencies: - "@smithy/core": "npm:^3.2.0" - "@smithy/middleware-endpoint": "npm:^4.1.0" + "@smithy/core": "npm:^3.3.0" + "@smithy/middleware-endpoint": "npm:^4.1.1" "@smithy/middleware-stack": "npm:^4.0.2" "@smithy/protocol-http": "npm:^5.1.0" "@smithy/types": "npm:^4.2.0" "@smithy/util-stream": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/0d7ac7549edd92a7c50abcfdb9607f729533ff1aa5f70fbe7e3f9a47a272f0f1487094fb72f421d0bbf303b335e349bfd3db3f5b9e841037c3f23f47febb0f6b + checksum: 10c0/573d5099ba2faf8f63431f284dd26920fb9619a14174c890d4c621e3cf5a75868970683e4d31209ef0f63db1c81298e8bbe8c87a3bf524c75783b18637a7dee7 languageName: node linkType: hard @@ -11193,31 +11464,31 @@ __metadata: languageName: node linkType: hard -"@smithy/util-defaults-mode-browser@npm:^4.0.8": - version: 4.0.8 - resolution: "@smithy/util-defaults-mode-browser@npm:4.0.8" +"@smithy/util-defaults-mode-browser@npm:^4.0.9": + version: 4.0.9 + resolution: "@smithy/util-defaults-mode-browser@npm:4.0.9" dependencies: "@smithy/property-provider": "npm:^4.0.2" - "@smithy/smithy-client": "npm:^4.2.0" + "@smithy/smithy-client": "npm:^4.2.1" "@smithy/types": "npm:^4.2.0" bowser: "npm:^2.11.0" tslib: "npm:^2.6.2" - checksum: 10c0/ada59bc98f2538d189363bc8e22c7cb72b9ddd06142fbca54921efa5742cc248e8ea06f79ec679cb916683d3ac9e3a35bafb6377ee5d4cff8715e46de1445b81 + checksum: 10c0/57d67ffb149c2e59b46bfede0ca339ebf0417b837c0356b8381016152ed4e2d3ea8127ce2c91282d38fd4841a38640ac14be8d8d8dccb889836adc0610cfcb3c languageName: node linkType: hard -"@smithy/util-defaults-mode-node@npm:^4.0.8": - version: 4.0.8 - resolution: "@smithy/util-defaults-mode-node@npm:4.0.8" +"@smithy/util-defaults-mode-node@npm:^4.0.9": + version: 4.0.9 + resolution: "@smithy/util-defaults-mode-node@npm:4.0.9" dependencies: "@smithy/config-resolver": "npm:^4.1.0" "@smithy/credential-provider-imds": "npm:^4.0.2" "@smithy/node-config-provider": "npm:^4.0.2" "@smithy/property-provider": "npm:^4.0.2" - "@smithy/smithy-client": "npm:^4.2.0" + "@smithy/smithy-client": "npm:^4.2.1" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/cbdfe00d5cd645250ca49416ebddcfc1055da3412826cf0baa75d4af6e58765ac7ea4b262a48c5bbd4e60e4329e362b76f96c319db1112b2d92b506c82bc002a + checksum: 10c0/11a8b2693d4590ab997d3080b1feb8998c0b8fefe1819c470a2097cb1a4266ead1a8f48a187d6c1b6a1125325e2211685e5dedb93231acb90cb69a55d1623ac3 languageName: node linkType: hard @@ -11451,8 +11722,8 @@ __metadata: linkType: hard "@stoplight/spectral-core@npm:^1.18.3, @stoplight/spectral-core@npm:^1.19.2, @stoplight/spectral-core@npm:^1.19.4": - version: 1.19.5 - resolution: "@stoplight/spectral-core@npm:1.19.5" + version: 1.20.0 + resolution: "@stoplight/spectral-core@npm:1.20.0" dependencies: "@stoplight/better-ajv-errors": "npm:1.0.3" "@stoplight/json": "npm:~3.21.0" @@ -11475,7 +11746,7 @@ __metadata: pony-cause: "npm:^1.1.1" simple-eval: "npm:1.0.1" tslib: "npm:^2.8.1" - checksum: 10c0/8f4e1280497e607ac6f1e4bc21fd9e40aabf44958015e075a4555ff0e05c84ec21409e0237592719c7abe214c4b0cb3275c933f66da41d71d8495ae780160653 + checksum: 10c0/ebf6adeefded181b7c220a6cae70ebed37aa9e2ca73d9bd386d7e4c2bef965aea154fd6bb7613c822d37ae3440745fe1408c1369a11475e1050fcb986e64b63a languageName: node linkType: hard @@ -11492,8 +11763,8 @@ __metadata: linkType: hard "@stoplight/spectral-functions@npm:^1.7.2": - version: 1.9.4 - resolution: "@stoplight/spectral-functions@npm:1.9.4" + version: 1.10.1 + resolution: "@stoplight/spectral-functions@npm:1.10.1" dependencies: "@stoplight/better-ajv-errors": "npm:1.0.3" "@stoplight/json": "npm:^3.17.1" @@ -11506,7 +11777,7 @@ __metadata: ajv-formats: "npm:~2.1.1" lodash: "npm:~4.17.21" tslib: "npm:^2.8.1" - checksum: 10c0/5bce845076f00fc5a8f83167ec42d7329fb6e7a262f49d20ad14f52af552e9bba264f88ed15d7c7c66593353b13758afa76e29053afd3d9f24d88f0673b6180b + checksum: 10c0/f26af18a8ff107f5d49a86e4134f10d244fc9bc64833b92c487d1372740b2b3839a72bb76d2061320f33498e65c2704aba5062635ec4c24c16139a4cf83497ca languageName: node linkType: hard @@ -11783,333 +12054,333 @@ __metadata: languageName: node linkType: hard -"@swagger-api/apidom-ast@npm:^1.0.0-beta.30": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-ast@npm:1.0.0-beta.30" +"@swagger-api/apidom-ast@npm:^1.0.0-beta.32": + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-ast@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-error": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-error": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" unraw: "npm:^3.0.0" - checksum: 10c0/17aa59e30e4865b1b9080616e1472899696066af5ba05a793f452c4c6f5c90afe54d218149bbf41ba5903714d4bf4cd5bbb3b88b906994eb167c9671fe26e516 + checksum: 10c0/17d8ead156f353bb60dd5b6d5005e2a29ff32bc1d4e3379f76ba6b0e21a5b126247c797baa4c8c213ccca172be649fb18c3378610a0528870e61f4911b8a7bff languageName: node linkType: hard -"@swagger-api/apidom-core@npm:>=1.0.0-beta.13 <1.0.0-rc.0, @swagger-api/apidom-core@npm:^1.0.0-beta.30": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-core@npm:1.0.0-beta.30" +"@swagger-api/apidom-core@npm:>=1.0.0-beta.31 <1.0.0-rc.0, @swagger-api/apidom-core@npm:^1.0.0-beta.32": + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-core@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-ast": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-error": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-ast": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-error": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" minim: "npm:~0.23.8" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" - short-unique-id: "npm:^5.0.2" + short-unique-id: "npm:=5.2.0" ts-mixer: "npm:^6.0.3" - checksum: 10c0/d81818ebe1eddc075f8ebc469fb5ba1cf77029034eebe26aaedb983c5674cec13d7c7cb017a328f636a2705ae5565490a832a5d9bc4be7a30066ffd29c9c8cfe + checksum: 10c0/a959f3b7f7464f48fb97226d8d6f20c2ea28051ceffc8a46532b1af4b96e91fe1253cac50f2ed3e4ecab556baed404942aaaa18e2f7180f137cd4c5f5ea6ebdc languageName: node linkType: hard -"@swagger-api/apidom-error@npm:>=1.0.0-beta.13 <1.0.0-rc.0, @swagger-api/apidom-error@npm:^1.0.0-beta.3 <1.0.0-rc.0, @swagger-api/apidom-error@npm:^1.0.0-beta.30": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-error@npm:1.0.0-beta.30" +"@swagger-api/apidom-error@npm:>=1.0.0-beta.31 <1.0.0-rc.0, @swagger-api/apidom-error@npm:^1.0.0-beta.32": + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-error@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.20.7" - checksum: 10c0/50881c82a977196de437253bb7bacf78369dfbb7067bf73abb36ac78301adbf0319b57b9897c49929035d1b6f4c3a81127e7a295f0c0b69e1632fe8cfb328cc0 + checksum: 10c0/5aba275dfe196e4e8eb9e844fe1f8a5955b78d97ddaccd84921fec08f154ea0d3e335b47944aab8573f5e58cd3b4926bcb77f624ee537c75b35e1469fee4481e languageName: node linkType: hard -"@swagger-api/apidom-json-pointer@npm:>=1.0.0-beta.13 <1.0.0-rc.0, @swagger-api/apidom-json-pointer@npm:^1.0.0-beta.3 <1.0.0-rc.0, @swagger-api/apidom-json-pointer@npm:^1.0.0-beta.30": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-json-pointer@npm:1.0.0-beta.30" +"@swagger-api/apidom-json-pointer@npm:>=1.0.0-beta.31 <1.0.0-rc.0, @swagger-api/apidom-json-pointer@npm:^1.0.0-beta.3 <1.0.0-rc.0, @swagger-api/apidom-json-pointer@npm:^1.0.0-beta.32": + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-json-pointer@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-error": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-error": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" - checksum: 10c0/5f41bfb878d451a1934db163f2505b858784d35331c50febd3040660dc8b174c39cd9b41857e62e78c0e2e54bc82fc9a5ac88ee01749643308e87383f4a57f68 + checksum: 10c0/f682c3c86da17e86e19fe4a5c7b75326d5d355b782b95cbf725e74c3d5abd7008382c27bcf71384b9c45af18e9ee0a90ab3db3794e3469d2a67349aaa3cf5a9d languageName: node linkType: hard -"@swagger-api/apidom-ns-api-design-systems@npm:^1.0.0-beta.30": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-ns-api-design-systems@npm:1.0.0-beta.30" +"@swagger-api/apidom-ns-api-design-systems@npm:^1.0.0-beta.32": + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-ns-api-design-systems@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-error": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-openapi-3-1": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-error": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-openapi-3-1": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" ts-mixer: "npm:^6.0.3" - checksum: 10c0/3925afea50edf5daedf16d8c314e305860ddc29b9d4c1caf19162ba5600c266a03f787b63489dde226d6b9a1f17dd3dc097ead5b00fc193cb4eeb4422db4139b + checksum: 10c0/c2e13c3011e35eaf41f43c30627a74907f2278e48e4373f8fccfa72e806014311129b528270415c34790b3e9e9e86bd99e4494e3df4a0bc055843cd6886dd362 languageName: node linkType: hard -"@swagger-api/apidom-ns-arazzo-1@npm:^1.0.0-beta.3 <1.0.0-rc.0, @swagger-api/apidom-ns-arazzo-1@npm:^1.0.0-beta.30": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-ns-arazzo-1@npm:1.0.0-beta.30" +"@swagger-api/apidom-ns-arazzo-1@npm:^1.0.0-beta.3 <1.0.0-rc.0, @swagger-api/apidom-ns-arazzo-1@npm:^1.0.0-beta.32": + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-ns-arazzo-1@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-json-schema-2020-12": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-json-schema-2020-12": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" ts-mixer: "npm:^6.0.3" - checksum: 10c0/8b19d90e7493f5e4cacec6cabd87dc29e3987f77711d7abf351b9bed526a363d20bf0f1fd8b096db1130d630fe34f2f84e60ca83dea96e035cb032113b9686e2 + checksum: 10c0/d43a664a0c29c9377282af85b96df83b936e28a8e2515ca5ebdd98c28e121a618cec298b6e268dba9ed060221b9ca072b6f13c3560bc61160570667eacd6741f languageName: node linkType: hard -"@swagger-api/apidom-ns-asyncapi-2@npm:^1.0.0-beta.3 <1.0.0-rc.0, @swagger-api/apidom-ns-asyncapi-2@npm:^1.0.0-beta.30": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-ns-asyncapi-2@npm:1.0.0-beta.30" +"@swagger-api/apidom-ns-asyncapi-2@npm:^1.0.0-beta.3 <1.0.0-rc.0, @swagger-api/apidom-ns-asyncapi-2@npm:^1.0.0-beta.32": + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-ns-asyncapi-2@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-json-schema-draft-7": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-json-schema-draft-7": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" ts-mixer: "npm:^6.0.3" - checksum: 10c0/9f83c3a93e8ce372cfa86560df182bf927ffd8647a31e06c9fe359028a321c6cbd1dfe42a7989a584d5a56b59a935a7d1a063143918d6c49baede1b3998fb192 + checksum: 10c0/2377993efd15b5ccecb491f1473d819a5b98eeff1082edf141ada064d2df93513759c2670f3fc8a6a0dccfd8a2402b174fd846c2ebf1ae09fc042c410844c44a languageName: node linkType: hard -"@swagger-api/apidom-ns-json-schema-2019-09@npm:^1.0.0-beta.30": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-ns-json-schema-2019-09@npm:1.0.0-beta.30" +"@swagger-api/apidom-ns-json-schema-2019-09@npm:^1.0.0-beta.32": + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-ns-json-schema-2019-09@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-error": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-json-schema-draft-7": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-error": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-json-schema-draft-7": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" ts-mixer: "npm:^6.0.4" - checksum: 10c0/fc582798cc99646c90048959a5e545990f53b0b4b3a987cb3cdec5b663f074ef7fcd94eca9bff47aebbf9f5a16794fe59a58ee5965985dad532b5e5cbd2b5ecc + checksum: 10c0/1bee0b9fa4172905651e6f56feded5cf06d483664c71a4b2824dff29e421561fa4d26309e3d8140ba1abeebd7681df0d1bd548980ff590952585e6b20961b95a languageName: node linkType: hard -"@swagger-api/apidom-ns-json-schema-2020-12@npm:^1.0.0-beta.30": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-ns-json-schema-2020-12@npm:1.0.0-beta.30" +"@swagger-api/apidom-ns-json-schema-2020-12@npm:^1.0.0-beta.32": + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-ns-json-schema-2020-12@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-error": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-json-schema-2019-09": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-error": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-json-schema-2019-09": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" ts-mixer: "npm:^6.0.4" - checksum: 10c0/2af2ae093972c26b73f32c8ae7f735c2569f710b04291cb0c86c36e5182bdd89f39d1d881ccbd30fc66f2208ef9fe04503f0d85ddcd597e4959d671c215f66b3 + checksum: 10c0/37b6c05013879d630a0311882ee36bac26540fc79b8be855bc4085569a7e3b2b309bb3a57e7a416d9364ce72fb38453d8c899509c0ccd678dc08b47d67ac3204 languageName: node linkType: hard -"@swagger-api/apidom-ns-json-schema-draft-4@npm:^1.0.0-beta.30": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-ns-json-schema-draft-4@npm:1.0.0-beta.30" +"@swagger-api/apidom-ns-json-schema-draft-4@npm:^1.0.0-beta.32": + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-ns-json-schema-draft-4@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-ast": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-ast": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" ts-mixer: "npm:^6.0.4" - checksum: 10c0/71f3fe6eaaf11db60849b36a1f3c3424b1145abd5f916587a44a1f3baeac805344b77de29b6a4b0c935c1dbe9869343f78d3a0a4a0663653eb2b21fd9b0daa37 + checksum: 10c0/782d900885408c7302549232da37b5bb1d3a182edb3721c29164ce77509072973993ec1c718f5a2f630b81bbae7d8b5689ffdcccbffe5b6583c6307d33744be4 languageName: node linkType: hard -"@swagger-api/apidom-ns-json-schema-draft-6@npm:^1.0.0-beta.30": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-ns-json-schema-draft-6@npm:1.0.0-beta.30" +"@swagger-api/apidom-ns-json-schema-draft-6@npm:^1.0.0-beta.32": + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-ns-json-schema-draft-6@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-error": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-json-schema-draft-4": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-error": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-json-schema-draft-4": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" ts-mixer: "npm:^6.0.4" - checksum: 10c0/7919b62cdc7972e458db8e1648b22116b0202d5e47260a69a92ada54c0fe8e6f58166eeeaef247bf74fd64b0d88ce97ee168e6ece49997aa802702bfd644bde2 + checksum: 10c0/c8c50c4f6de9e172ad35362f9b1b21d5026084dd1042b3bda1a15f8affd2babede1e2a7a31cee1665a60654bee5a7306a995be720363e6636836c7254212ddd0 languageName: node linkType: hard -"@swagger-api/apidom-ns-json-schema-draft-7@npm:^1.0.0-beta.30": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-ns-json-schema-draft-7@npm:1.0.0-beta.30" +"@swagger-api/apidom-ns-json-schema-draft-7@npm:^1.0.0-beta.32": + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-ns-json-schema-draft-7@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-error": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-json-schema-draft-6": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-error": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-json-schema-draft-6": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" ts-mixer: "npm:^6.0.4" - checksum: 10c0/18fb66317caeda29129ae94b67c52b0ae0841911def488da4ff982a81fb20c53370bb45a5dd5ac69aca1a82b12adcee0555e18634b85f3a1e1f384be6aa51d14 + checksum: 10c0/e1e8be2f1cb2bf34e6144ffdcd0c0ae72b9954aba4b8ef82cc06b5cf8726ee575286405cfe23d7be20c91b92d0813e8f4d59b226c381e1a2a852a0eb67fa44b1 languageName: node linkType: hard -"@swagger-api/apidom-ns-openapi-2@npm:^1.0.0-beta.3 <1.0.0-rc.0, @swagger-api/apidom-ns-openapi-2@npm:^1.0.0-beta.30": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-ns-openapi-2@npm:1.0.0-beta.30" +"@swagger-api/apidom-ns-openapi-2@npm:^1.0.0-beta.3 <1.0.0-rc.0, @swagger-api/apidom-ns-openapi-2@npm:^1.0.0-beta.32": + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-ns-openapi-2@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-error": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-json-schema-draft-4": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-error": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-json-schema-draft-4": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" ts-mixer: "npm:^6.0.3" - checksum: 10c0/41425b5124e66fd2084c9db2706809743f68562a4be926bd1799b2ef9a9f7b15e39e6c3d5ca47bdfe55bc3a642f5d40fed6eee5931c8119748978ae6f904ceee + checksum: 10c0/25767e11a712119076cc424f7122d23c0320c28e8546e696a5af28a7b25171f1f339c65e5766b599b7f4a795e57a58b218aca63f1cedb781384f06a3af3cc59e languageName: node linkType: hard -"@swagger-api/apidom-ns-openapi-3-0@npm:^1.0.0-beta.3 <1.0.0-rc.0, @swagger-api/apidom-ns-openapi-3-0@npm:^1.0.0-beta.30": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-ns-openapi-3-0@npm:1.0.0-beta.30" +"@swagger-api/apidom-ns-openapi-3-0@npm:^1.0.0-beta.3 <1.0.0-rc.0, @swagger-api/apidom-ns-openapi-3-0@npm:^1.0.0-beta.32": + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-ns-openapi-3-0@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-error": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-json-schema-draft-4": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-error": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-json-schema-draft-4": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" ts-mixer: "npm:^6.0.3" - checksum: 10c0/549f9b7f499b6fa1a099d8514329b80ae5a04ae6c5e23e4ef10f78bcb90ea00237ccfbee7803e9be231b9d86f27c01e351ed9f63bd7fe733c3b869342574c540 + checksum: 10c0/6e0cbb3562bd60da9c3bae6d6a9eecd42ffce9fad8e72e54a9a31bf19845a5aad503258e9d06a70fdca5899ee137fc88acfd4c45776ea5a8c3cc15033ed3fb91 languageName: node linkType: hard -"@swagger-api/apidom-ns-openapi-3-1@npm:>=1.0.0-beta.13 <1.0.0-rc.0, @swagger-api/apidom-ns-openapi-3-1@npm:^1.0.0-beta.3 <1.0.0-rc.0, @swagger-api/apidom-ns-openapi-3-1@npm:^1.0.0-beta.30": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-ns-openapi-3-1@npm:1.0.0-beta.30" +"@swagger-api/apidom-ns-openapi-3-1@npm:>=1.0.0-beta.31 <1.0.0-rc.0, @swagger-api/apidom-ns-openapi-3-1@npm:^1.0.0-beta.3 <1.0.0-rc.0, @swagger-api/apidom-ns-openapi-3-1@npm:^1.0.0-beta.32": + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-ns-openapi-3-1@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-ast": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-json-pointer": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-json-schema-2020-12": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-openapi-3-0": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-ast": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-json-pointer": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-json-schema-2020-12": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-openapi-3-0": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" ts-mixer: "npm:^6.0.3" - checksum: 10c0/845418ba78c258e3d18cf1ad9579ea0640e201ef69cc5947fd84a0ac96e14b9f4aaea9ee5c778f82d498f89bfaf675f0e9fa47aaff5fafc69f22bc43960a04f8 + checksum: 10c0/54618ac545f8a52a3ee402f129be628e9054d3145295f8168a538ec9f9fdb35fa52e5bfb6f15d6ae221fa08d0f12e1b1eeabe270cc8c0fa6e3d34f3b722d683b languageName: node linkType: hard "@swagger-api/apidom-parser-adapter-api-design-systems-json@npm:^1.0.0-beta.3 <1.0.0-rc.0": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-parser-adapter-api-design-systems-json@npm:1.0.0-beta.30" + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-parser-adapter-api-design-systems-json@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-api-design-systems": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-parser-adapter-json": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-api-design-systems": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-parser-adapter-json": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" - checksum: 10c0/74b1f1328434be7e8f2288633c51612935c4fc9c1c5acb6becf2acce204ce09be1c23f9df0de4a1a0a471f537b402e3537b77bb7b9d7c1db5a721d5dd5a47714 + checksum: 10c0/d23f7db437f1413269fd39aabdb9cb3da04bb33e3389c85eb4a37e2d9074d71b6bcf16a4fda9b6a17e08c6e8e73557cd4d3cd8a0b15a9942d276578504a0c356 languageName: node linkType: hard "@swagger-api/apidom-parser-adapter-api-design-systems-yaml@npm:^1.0.0-beta.3 <1.0.0-rc.0": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-parser-adapter-api-design-systems-yaml@npm:1.0.0-beta.30" + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-parser-adapter-api-design-systems-yaml@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-api-design-systems": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-parser-adapter-yaml-1-2": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-api-design-systems": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-parser-adapter-yaml-1-2": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" - checksum: 10c0/ff259a540677ddb65062a0438117f76786ef69ffe2a300b5558decfb4839cd999d15b3b9b18a071fb58eff8313cdb967ff2080cd43bc5e9bcaa38f15df7bf7a1 + checksum: 10c0/5a0c285828d339b770bceeaed904eab0bbe047cfaa57df32b1d7f2a1cea0441c00dbf5cf39eff87c1d516e6c294f7a429fdbd95bc65169e1ab8323f6fcf100ad languageName: node linkType: hard "@swagger-api/apidom-parser-adapter-arazzo-json-1@npm:^1.0.0-beta.3 <1.0.0-rc.0": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-parser-adapter-arazzo-json-1@npm:1.0.0-beta.30" + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-parser-adapter-arazzo-json-1@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-arazzo-1": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-parser-adapter-json": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-arazzo-1": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-parser-adapter-json": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" - checksum: 10c0/3656de3795ab4f675c34c431e24e37476ecacc29cfd46f8fb691d7ba531a96f091b616c65840a45a681eff2b6aa571bbf528ecaba366312a8befe4f8d9c07b87 + checksum: 10c0/41edc2815a59659ff93c256e8f11009c8292941d3aafe46d76998caf4f2bd2a70c17b9b038f2ed41d12513d7fe25786804b313d26fb0653b5a39e94baf847261 languageName: node linkType: hard "@swagger-api/apidom-parser-adapter-arazzo-yaml-1@npm:^1.0.0-beta.3 <1.0.0-rc.0": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-parser-adapter-arazzo-yaml-1@npm:1.0.0-beta.30" + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-parser-adapter-arazzo-yaml-1@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-arazzo-1": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-parser-adapter-yaml-1-2": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-arazzo-1": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-parser-adapter-yaml-1-2": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" - checksum: 10c0/703ced584a865f4d5ab979ee3c6f6a59097f1a5794a9028ba5758972fed4a4ac3d71a565951ae4315b12150575ad0ed6e48b63252899872eb0cd865972b65b2e + checksum: 10c0/985c0cfa274b91a7f918ffc4eb164d5588d88a2987ce4ad59b750fdde106c2ce8f55c2ba0e0b8572729b47cb2418c6d10f63a71bad0aed03a55cf1863d147b6c languageName: node linkType: hard "@swagger-api/apidom-parser-adapter-asyncapi-json-2@npm:^1.0.0-beta.3 <1.0.0-rc.0": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-parser-adapter-asyncapi-json-2@npm:1.0.0-beta.30" + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-parser-adapter-asyncapi-json-2@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-asyncapi-2": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-parser-adapter-json": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-asyncapi-2": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-parser-adapter-json": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" - checksum: 10c0/c252d6a07c126a4df01d1eaeaa6f5cdedc54f22bbba49760f65133789634d24bb36b1d3cb9de709cadd9f95334f47f307083728998fb4be7baeaf2dd31282aee + checksum: 10c0/3c381467b97199e2ac284baef1c97ccac6d5fe956b6b36cc3467460c4feebdd14d10d3cfc29275a34da0a8e231a34f4d7e2b65d14b267758e74c00fb9a6d378e languageName: node linkType: hard "@swagger-api/apidom-parser-adapter-asyncapi-yaml-2@npm:^1.0.0-beta.3 <1.0.0-rc.0": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-parser-adapter-asyncapi-yaml-2@npm:1.0.0-beta.30" + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-parser-adapter-asyncapi-yaml-2@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-asyncapi-2": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-parser-adapter-yaml-1-2": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-asyncapi-2": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-parser-adapter-yaml-1-2": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" - checksum: 10c0/525728d9df120f413432ffc748357123c213022209bf665a008958a48ead6eb242aebb29d328499734fbd8f4b4152a8e1153386c6382aa19116b98260715abde + checksum: 10c0/4edba9b61695275aa0219d58c7a5c5624e073b6bad7a38f03b1463b8487d2754a7942cd5e44d53e1041f739a204f83b6d00765313689649fd48b6ce96f4a0d25 languageName: node linkType: hard -"@swagger-api/apidom-parser-adapter-json@npm:^1.0.0-beta.3 <1.0.0-rc.0, @swagger-api/apidom-parser-adapter-json@npm:^1.0.0-beta.30": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-parser-adapter-json@npm:1.0.0-beta.30" +"@swagger-api/apidom-parser-adapter-json@npm:^1.0.0-beta.3 <1.0.0-rc.0, @swagger-api/apidom-parser-adapter-json@npm:^1.0.0-beta.32": + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-parser-adapter-json@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-ast": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-error": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-ast": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-error": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" node-gyp: "npm:latest" ramda: "npm:~0.30.0" @@ -12117,108 +12388,108 @@ __metadata: tree-sitter: "npm:=0.22.1" tree-sitter-json: "npm:=0.24.8" web-tree-sitter: "npm:=0.24.5" - checksum: 10c0/82473afdf089c0ede4b8ba309479dfc09d858be6791214c5c9559b961333ffcdbc124e2202017071a172ec0c70bb1b6a57eca8b14b5f4c124818c8dfbf87d96b + checksum: 10c0/be1c73e386eec4ce49bc09b117059adfb2cc6854fbf8811fc70d6304f5a4336eca9170d637247bc1519066f1d55f1f9dbacae60c7837a3090c2127f1c87b278e languageName: node linkType: hard "@swagger-api/apidom-parser-adapter-openapi-json-2@npm:^1.0.0-beta.3 <1.0.0-rc.0": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-parser-adapter-openapi-json-2@npm:1.0.0-beta.30" + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-parser-adapter-openapi-json-2@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-openapi-2": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-parser-adapter-json": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-openapi-2": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-parser-adapter-json": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" - checksum: 10c0/8766da1ac58d66c564e549dc6bd5377e45b29c21413b7e18696e4bdc044309ba6570ffaa3bb95085aac460032b9f7cf5f8696e69194b2956a7c6e1118d95b2b0 + checksum: 10c0/b41a471755cd5f8520e80b530b67cb779c3c6f783816ba54f55e035bb043219d74ee24793e5abb39c6826b06586ef1b13fa1c48ab2670a854107d7e58de87048 languageName: node linkType: hard "@swagger-api/apidom-parser-adapter-openapi-json-3-0@npm:^1.0.0-beta.3 <1.0.0-rc.0": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-parser-adapter-openapi-json-3-0@npm:1.0.0-beta.30" + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-parser-adapter-openapi-json-3-0@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-openapi-3-0": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-parser-adapter-json": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-openapi-3-0": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-parser-adapter-json": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" - checksum: 10c0/d3d5e3b70c2b525cdc82592f0e03e81094e0df4ed8610bc65d31a391cfe23d785633ee918c5a1eba73bf7f0402848842525ba1011c66cb73a8a81a00e4dee18a + checksum: 10c0/621804fb5a0c69757eb6614488da834b34e44e4bfa0133a3cd82e99c9203c971029e0f517b5020970be03e23899c52c19d7ea9c29edbb365d4c6df7e6adcc95f languageName: node linkType: hard "@swagger-api/apidom-parser-adapter-openapi-json-3-1@npm:^1.0.0-beta.3 <1.0.0-rc.0": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-parser-adapter-openapi-json-3-1@npm:1.0.0-beta.30" + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-parser-adapter-openapi-json-3-1@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-openapi-3-1": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-parser-adapter-json": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-openapi-3-1": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-parser-adapter-json": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" - checksum: 10c0/aa9f69a4c352282e4d8af2ca0b15a587955d71e27bb0fd135c5ddb3d762c36b5b48922196fea9832e6b7302095da0b15ea5e1f465bb62e59b1f7e55e7641ae22 + checksum: 10c0/0c5dd581f0531040d31ce02fa438f4346c2af026799d8b24b3bf82335704a1b2f83bf306ab7a3ec37461d6400fc6b974e1417a86f806166fd11aac3960113b42 languageName: node linkType: hard "@swagger-api/apidom-parser-adapter-openapi-yaml-2@npm:^1.0.0-beta.3 <1.0.0-rc.0": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-parser-adapter-openapi-yaml-2@npm:1.0.0-beta.30" + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-parser-adapter-openapi-yaml-2@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-openapi-2": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-parser-adapter-yaml-1-2": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-openapi-2": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-parser-adapter-yaml-1-2": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" - checksum: 10c0/34adb95599c6be2853d8de0305b64533b971bd40ae91afb59ed955917e059c52e747e1564ce0e859c20c7b3781dba3a65236124a31205dbb6181e084879eebd3 + checksum: 10c0/c0ac3dcbe7be6e1a29748a8af82e239b134e84522d3b449b6b94745fc271f99fccd3ce907a0fd832171a6adbf42cc9bc574d689a65bbc718e30404672e392d2b languageName: node linkType: hard "@swagger-api/apidom-parser-adapter-openapi-yaml-3-0@npm:^1.0.0-beta.3 <1.0.0-rc.0": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-parser-adapter-openapi-yaml-3-0@npm:1.0.0-beta.30" + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-parser-adapter-openapi-yaml-3-0@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-openapi-3-0": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-parser-adapter-yaml-1-2": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-openapi-3-0": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-parser-adapter-yaml-1-2": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" - checksum: 10c0/eecde7b4621e1ae494db308a48f0b558d7d93a3c5b262f95ab3c2c8ab503e0f3672f12a84051ea793bd9d98db5838894642b90a144936fd68cc401e961dc6332 + checksum: 10c0/184c7e25fafc7b8754d5f176fe05d5aba02eddc9cfd88751a5f3e1b2c1d7b0eeecb9f14aa45fd0cab3c35c41d1c3779447c8229d1ba000885bb591bc6fc8afd5 languageName: node linkType: hard "@swagger-api/apidom-parser-adapter-openapi-yaml-3-1@npm:^1.0.0-beta.3 <1.0.0-rc.0": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-parser-adapter-openapi-yaml-3-1@npm:1.0.0-beta.30" + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-parser-adapter-openapi-yaml-3-1@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-ns-openapi-3-1": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-parser-adapter-yaml-1-2": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-ns-openapi-3-1": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-parser-adapter-yaml-1-2": "npm:^1.0.0-beta.32" "@types/ramda": "npm:~0.30.0" ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" - checksum: 10c0/f9f21dbea502db239153d1cf722f7b6fe0f11276578ece292ba189a64310f5a9f53487e7ed63ee4320e2522f5032b7893534e5b14a8ec6d3116d8d28c2658c53 + checksum: 10c0/7765a177804e38d03aaca98602e8982ade3065947781ab2ee00d5f352f3551a5277ba765297b7e763aa9072db3f7dc9d25f9da88c766979bd01e97d93d5c6ae6 languageName: node linkType: hard -"@swagger-api/apidom-parser-adapter-yaml-1-2@npm:^1.0.0-beta.3 <1.0.0-rc.0, @swagger-api/apidom-parser-adapter-yaml-1-2@npm:^1.0.0-beta.30": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-parser-adapter-yaml-1-2@npm:1.0.0-beta.30" +"@swagger-api/apidom-parser-adapter-yaml-1-2@npm:^1.0.0-beta.3 <1.0.0-rc.0, @swagger-api/apidom-parser-adapter-yaml-1-2@npm:^1.0.0-beta.32": + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-parser-adapter-yaml-1-2@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-ast": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-error": "npm:^1.0.0-beta.30" + "@swagger-api/apidom-ast": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-error": "npm:^1.0.0-beta.32" "@tree-sitter-grammars/tree-sitter-yaml": "npm:=0.7.0" "@types/ramda": "npm:~0.30.0" node-gyp: "npm:latest" @@ -12226,17 +12497,17 @@ __metadata: ramda-adjunct: "npm:^5.0.0" tree-sitter: "npm:=0.22.1" web-tree-sitter: "npm:=0.24.5" - checksum: 10c0/011a7843a65009221b2fbe75204358c8f6bd738a9532467314512dfe61a05f1c4aff76ae8c23929aa52bca3ad1aace0220c9fd17554656c22b8daf48fc914f82 + checksum: 10c0/27fa6cba9705fc0bf7345f52798fa396442b8c295ddcb39a6cef8ed693d63b8ff942829ef41c13759a567b83d981953365c391ac85a0192159683000087cccdb languageName: node linkType: hard -"@swagger-api/apidom-reference@npm:>=1.0.0-beta.13 <1.0.0-rc.0": - version: 1.0.0-beta.30 - resolution: "@swagger-api/apidom-reference@npm:1.0.0-beta.30" +"@swagger-api/apidom-reference@npm:>=1.0.0-beta.31 <1.0.0-rc.0": + version: 1.0.0-beta.32 + resolution: "@swagger-api/apidom-reference@npm:1.0.0-beta.32" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" - "@swagger-api/apidom-core": "npm:^1.0.0-beta.30" - "@swagger-api/apidom-error": "npm:^1.0.0-beta.3 <1.0.0-rc.0" + "@swagger-api/apidom-core": "npm:^1.0.0-beta.32" + "@swagger-api/apidom-error": "npm:^1.0.0-beta.32" "@swagger-api/apidom-json-pointer": "npm:^1.0.0-beta.3 <1.0.0-rc.0" "@swagger-api/apidom-ns-arazzo-1": "npm:^1.0.0-beta.3 <1.0.0-rc.0" "@swagger-api/apidom-ns-asyncapi-2": "npm:^1.0.0-beta.3 <1.0.0-rc.0" @@ -12264,8 +12535,6 @@ __metadata: ramda: "npm:~0.30.0" ramda-adjunct: "npm:^5.0.0" dependenciesMeta: - "@swagger-api/apidom-error": - optional: true "@swagger-api/apidom-json-pointer": optional: true "@swagger-api/apidom-ns-arazzo-1": @@ -12306,7 +12575,7 @@ __metadata: optional: true "@swagger-api/apidom-parser-adapter-yaml-1-2": optional: true - checksum: 10c0/7d631d2afb943508b278bb110982d56a1fe083ee9ac63b7f69351742a8e9937fd735ef0c919c615c97fc1d1582f73b5aac8b706ecec5ad4abdb7c089f8575bab + checksum: 10c0/12ef2f68a90fe58633cf63d39ae2ae78792c281f274df991d01524449edea5919afb083a41fa78c39ad551f14747953d1a6c6a5368f3570e305e5d6379b91ad0 languageName: node linkType: hard @@ -12319,94 +12588,94 @@ __metadata: languageName: node linkType: hard -"@swc/core-darwin-arm64@npm:1.11.16": - version: 1.11.16 - resolution: "@swc/core-darwin-arm64@npm:1.11.16" +"@swc/core-darwin-arm64@npm:1.11.24": + version: 1.11.24 + resolution: "@swc/core-darwin-arm64@npm:1.11.24" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@swc/core-darwin-x64@npm:1.11.16": - version: 1.11.16 - resolution: "@swc/core-darwin-x64@npm:1.11.16" +"@swc/core-darwin-x64@npm:1.11.24": + version: 1.11.24 + resolution: "@swc/core-darwin-x64@npm:1.11.24" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@swc/core-linux-arm-gnueabihf@npm:1.11.16": - version: 1.11.16 - resolution: "@swc/core-linux-arm-gnueabihf@npm:1.11.16" +"@swc/core-linux-arm-gnueabihf@npm:1.11.24": + version: 1.11.24 + resolution: "@swc/core-linux-arm-gnueabihf@npm:1.11.24" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@swc/core-linux-arm64-gnu@npm:1.11.16": - version: 1.11.16 - resolution: "@swc/core-linux-arm64-gnu@npm:1.11.16" +"@swc/core-linux-arm64-gnu@npm:1.11.24": + version: 1.11.24 + resolution: "@swc/core-linux-arm64-gnu@npm:1.11.24" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-arm64-musl@npm:1.11.16": - version: 1.11.16 - resolution: "@swc/core-linux-arm64-musl@npm:1.11.16" +"@swc/core-linux-arm64-musl@npm:1.11.24": + version: 1.11.24 + resolution: "@swc/core-linux-arm64-musl@npm:1.11.24" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@swc/core-linux-x64-gnu@npm:1.11.16": - version: 1.11.16 - resolution: "@swc/core-linux-x64-gnu@npm:1.11.16" +"@swc/core-linux-x64-gnu@npm:1.11.24": + version: 1.11.24 + resolution: "@swc/core-linux-x64-gnu@npm:1.11.24" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-x64-musl@npm:1.11.16": - version: 1.11.16 - resolution: "@swc/core-linux-x64-musl@npm:1.11.16" +"@swc/core-linux-x64-musl@npm:1.11.24": + version: 1.11.24 + resolution: "@swc/core-linux-x64-musl@npm:1.11.24" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@swc/core-win32-arm64-msvc@npm:1.11.16": - version: 1.11.16 - resolution: "@swc/core-win32-arm64-msvc@npm:1.11.16" +"@swc/core-win32-arm64-msvc@npm:1.11.24": + version: 1.11.24 + resolution: "@swc/core-win32-arm64-msvc@npm:1.11.24" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@swc/core-win32-ia32-msvc@npm:1.11.16": - version: 1.11.16 - resolution: "@swc/core-win32-ia32-msvc@npm:1.11.16" +"@swc/core-win32-ia32-msvc@npm:1.11.24": + version: 1.11.24 + resolution: "@swc/core-win32-ia32-msvc@npm:1.11.24" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@swc/core-win32-x64-msvc@npm:1.11.16": - version: 1.11.16 - resolution: "@swc/core-win32-x64-msvc@npm:1.11.16" +"@swc/core-win32-x64-msvc@npm:1.11.24": + version: 1.11.24 + resolution: "@swc/core-win32-x64-msvc@npm:1.11.24" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@swc/core@npm:^1.3.46": - version: 1.11.16 - resolution: "@swc/core@npm:1.11.16" - dependencies: - "@swc/core-darwin-arm64": "npm:1.11.16" - "@swc/core-darwin-x64": "npm:1.11.16" - "@swc/core-linux-arm-gnueabihf": "npm:1.11.16" - "@swc/core-linux-arm64-gnu": "npm:1.11.16" - "@swc/core-linux-arm64-musl": "npm:1.11.16" - "@swc/core-linux-x64-gnu": "npm:1.11.16" - "@swc/core-linux-x64-musl": "npm:1.11.16" - "@swc/core-win32-arm64-msvc": "npm:1.11.16" - "@swc/core-win32-ia32-msvc": "npm:1.11.16" - "@swc/core-win32-x64-msvc": "npm:1.11.16" + version: 1.11.24 + resolution: "@swc/core@npm:1.11.24" + dependencies: + "@swc/core-darwin-arm64": "npm:1.11.24" + "@swc/core-darwin-x64": "npm:1.11.24" + "@swc/core-linux-arm-gnueabihf": "npm:1.11.24" + "@swc/core-linux-arm64-gnu": "npm:1.11.24" + "@swc/core-linux-arm64-musl": "npm:1.11.24" + "@swc/core-linux-x64-gnu": "npm:1.11.24" + "@swc/core-linux-x64-musl": "npm:1.11.24" + "@swc/core-win32-arm64-msvc": "npm:1.11.24" + "@swc/core-win32-ia32-msvc": "npm:1.11.24" + "@swc/core-win32-x64-msvc": "npm:1.11.24" "@swc/counter": "npm:^0.1.3" "@swc/types": "npm:^0.1.21" peerDependencies: - "@swc/helpers": "*" + "@swc/helpers": ">=0.5.17" dependenciesMeta: "@swc/core-darwin-arm64": optional: true @@ -12431,7 +12700,7 @@ __metadata: peerDependenciesMeta: "@swc/helpers": optional: true - checksum: 10c0/7570645bdbb7c7ea23aa22b37fc0164034afd124c569bf1f026c13deb6c1ee88c7cab34a781d2ab4bfbb28d6cef8683a21af9f0a68e678179453923e811bb838 + checksum: 10c0/26c524a505927ebd4229ec20fecf5f38b6a3265f22f3ede3a334834b37d01eedd133676e231d19ecaae2923bdfb0fa66acb925ffaee6e472e36ed81a7ace90f7 languageName: node linkType: hard @@ -12443,24 +12712,24 @@ __metadata: linkType: hard "@swc/helpers@npm:^0.5.0, @swc/helpers@npm:^0.5.8": - version: 0.5.15 - resolution: "@swc/helpers@npm:0.5.15" + version: 0.5.17 + resolution: "@swc/helpers@npm:0.5.17" dependencies: tslib: "npm:^2.8.0" - checksum: 10c0/33002f74f6f885f04c132960835fdfc474186983ea567606db62e86acd0680ca82f34647e8e610f4e1e422d1c16fce729dde22cd3b797ab1fd9061a825dabca4 + checksum: 10c0/fe1f33ebb968558c5a0c595e54f2e479e4609bff844f9ca9a2d1ffd8dd8504c26f862a11b031f48f75c95b0381c2966c3dd156e25942f90089badd24341e7dbb languageName: node linkType: hard "@swc/jest@npm:^0.2.22": - version: 0.2.37 - resolution: "@swc/jest@npm:0.2.37" + version: 0.2.38 + resolution: "@swc/jest@npm:0.2.38" dependencies: "@jest/create-cache-key-function": "npm:^29.7.0" "@swc/counter": "npm:^0.1.3" jsonc-parser: "npm:^3.2.0" peerDependencies: "@swc/core": "*" - checksum: 10c0/abe10d87610bf7c172aa7ab14c64599a22e48c1f43a09d6e22733f85f25fb98e57cb4bb58b9554e60a3ac8629be559bd967d7a8601a3ceaacad618aecccebec2 + checksum: 10c0/d92078dd6a32c2c1106d4eeb6b78340bedad9c2a27f1aa29b69ba638942d34f1dbf6eb4ef75692d2297c66e7442e9b355ab6b879540f9cf8a37f644a5a6e6924 languageName: node linkType: hard @@ -12669,9 +12938,9 @@ __metadata: linkType: hard "@types/aws-lambda@npm:^8.10.83": - version: 8.10.148 - resolution: "@types/aws-lambda@npm:8.10.148" - checksum: 10c0/b2cf5c991263a9276490757ec8f78fa42e41ac5029588d87f6b01f03321ee97eeaed8d66d259165d941717242a84e5b67e5d3a8872e9642a47645c6610f85287 + version: 8.10.149 + resolution: "@types/aws-lambda@npm:8.10.149" + checksum: 10c0/9ef41214a1b69fa30d89cab575429793f1ccc49cfe3a7aa75228aef31a202bb6d2c306a5b33def61ef29e0d0a1a324412bf6a4fa5a615e61117685584a394047 languageName: node linkType: hard @@ -12689,11 +12958,11 @@ __metadata: linkType: hard "@types/babel__generator@npm:*": - version: 7.6.8 - resolution: "@types/babel__generator@npm:7.6.8" + version: 7.27.0 + resolution: "@types/babel__generator@npm:7.27.0" dependencies: "@babel/types": "npm:^7.0.0" - checksum: 10c0/f0ba105e7d2296bf367d6e055bb22996886c114261e2cb70bf9359556d0076c7a57239d019dee42bb063f565bade5ccb46009bce2044b2952d964bf9a454d6d2 + checksum: 10c0/9f9e959a8792df208a9d048092fda7e1858bddc95c6314857a8211a99e20e6830bdeb572e3587ae8be5429e37f2a96fcf222a9f53ad232f5537764c9e13a2bbd languageName: node linkType: hard @@ -12835,14 +13104,14 @@ __metadata: languageName: node linkType: hard -"@types/dockerode@npm:^3.3.0": - version: 3.3.37 - resolution: "@types/dockerode@npm:3.3.37" +"@types/dockerode@npm:^3.3.0, @types/dockerode@npm:^3.3.35": + version: 3.3.38 + resolution: "@types/dockerode@npm:3.3.38" dependencies: "@types/docker-modem": "npm:*" "@types/node": "npm:*" "@types/ssh2": "npm:*" - checksum: 10c0/8cdaaa859abd4a2acc58ff79d43e00f3278e912126fdd5861f26ce77c50cfcb112e9f888dbfdf0133768301d2e0380c06fe714d5d06071e95c793c696d546cca + checksum: 10c0/1086d5f2703dcb2357be5d050e1b813930737bb7a85f077ab96792a841e79e9a473d8d3965a32bc954d66dff606dee451545b8e9705859c529868894efcde42a languageName: node linkType: hard @@ -13097,6 +13366,15 @@ __metadata: languageName: node linkType: hard +"@types/keyv@npm:^4.2.0": + version: 4.2.0 + resolution: "@types/keyv@npm:4.2.0" + dependencies: + keyv: "npm:*" + checksum: 10c0/ad626918f1843035b732b582263890a67d73dc3ff80da97e51fbe0ae3f2fe7a1ada2eef1bd89605c5fb739444110e696c0e0703d9b49a842a2f924c6e9164faa + languageName: node + linkType: hard + "@types/long@npm:^4.0.0": version: 4.0.2 resolution: "@types/long@npm:4.0.2" @@ -13112,9 +13390,9 @@ __metadata: linkType: hard "@types/luxon@npm:^3.0.0": - version: 3.6.0 - resolution: "@types/luxon@npm:3.6.0" - checksum: 10c0/486188bdc0c40081f75aad404a88418a241e0fe5ca5d64da346c0864cb6cfd9c9115da0cc1155a0101902219c7d4c880f520b7df660fc9bbea1a104e2b3395f6 + version: 3.6.2 + resolution: "@types/luxon@npm:3.6.2" + checksum: 10c0/7572ee52b3d3e9dd10464b90561a728b90f34b9a257751cc3ce23762693dd1d14fa98b7f103e2efe2c6f49033331f91de5681ffd65cca88618cefe555be326db languageName: node linkType: hard @@ -13184,11 +13462,11 @@ __metadata: linkType: hard "@types/node@npm:*, @types/node@npm:>=13.7.0, @types/node@npm:^22.0.0": - version: 22.14.0 - resolution: "@types/node@npm:22.14.0" + version: 22.15.3 + resolution: "@types/node@npm:22.15.3" dependencies: undici-types: "npm:~6.21.0" - checksum: 10c0/9d79f3fa1af9c2c869514f419c4a4905b34c10e12915582fd1784868ac4e74c6d306cf5eb47ef889b6750ab85a31be96618227b86739c4a3e0b1c15063f384c6 + checksum: 10c0/2879f012d1aeba0bfdb5fed80d165f4f2cb3d1f2e1f98a24b18d4a211b4ace7d64bf2622784c78355982ffc1081ba79d0934efc2fb8353913e5871a63609661f languageName: node linkType: hard @@ -13200,20 +13478,20 @@ __metadata: linkType: hard "@types/node@npm:^18.11.18, @types/node@npm:^18.11.9": - version: 18.19.86 - resolution: "@types/node@npm:18.19.86" + version: 18.19.87 + resolution: "@types/node@npm:18.19.87" dependencies: undici-types: "npm:~5.26.4" - checksum: 10c0/1017c4ba61661ab30e4b4a78040cb66980919549f56d85755326dcccbe7a0405be7d6be1b2a91bace8eaef0d2a24b63d4f104b381be7f957c2483e465d829690 + checksum: 10c0/12b9c83d37a1f202bc8ce70e64ab2c981ebebf9290773ce371a60214406bf3e5278b807e4ada8198873c28afba88d23bf106f3cbaccd0f5ebe24daf9cfe096e3 languageName: node linkType: hard "@types/node@npm:^20.12.2": - version: 20.17.30 - resolution: "@types/node@npm:20.17.30" + version: 20.17.32 + resolution: "@types/node@npm:20.17.32" dependencies: undici-types: "npm:~6.19.2" - checksum: 10c0/649782c7822367d751472d70c948bcc50cded1a4744610f706f81cd54e1fc015523567d7e3e17f6b19e3e2797f6f23b653e898bdb4a2f21f8759ceba49976310 + checksum: 10c0/2461df36f67704f68db64d33abc5ad00b4b35ac94e996adff88c7322f9572e3e60ddaeed7e9f34ae203120d2ba36cc931fd3a8ddddf0c63943e8600c365c6396 languageName: node linkType: hard @@ -13279,7 +13557,7 @@ __metadata: languageName: node linkType: hard -"@types/qs@npm:*, @types/qs@npm:^6.9.11": +"@types/qs@npm:*, @types/qs@npm:^6.9.11, @types/qs@npm:^6.9.6": version: 6.9.18 resolution: "@types/qs@npm:6.9.18" checksum: 10c0/790b9091348e06dde2c8e4118b5771ab386a8c22a952139a2eb0675360a2070d0b155663bf6f75b23f258fd0a1f7ffc0ba0f059d99a719332c03c40d9e9cd63b @@ -13432,6 +13710,15 @@ __metadata: languageName: node linkType: hard +"@types/ssh2-streams@npm:*": + version: 0.1.12 + resolution: "@types/ssh2-streams@npm:0.1.12" + dependencies: + "@types/node": "npm:*" + checksum: 10c0/6c860066e76391c937723b9f8c3953208737be5adf33b5584d7817ec90913094f2ca578e1d47717182f1d62cb5ca8e83fdec0241d73bf064221e3a2b2d132f0e + languageName: node + linkType: hard + "@types/ssh2@npm:*": version: 1.15.5 resolution: "@types/ssh2@npm:1.15.5" @@ -13441,6 +13728,16 @@ __metadata: languageName: node linkType: hard +"@types/ssh2@npm:^0.5.48": + version: 0.5.52 + resolution: "@types/ssh2@npm:0.5.52" + dependencies: + "@types/node": "npm:*" + "@types/ssh2-streams": "npm:*" + checksum: 10c0/95c52fd3438dedae6a59ca87b6558cb36568db6b9144c6c8a28c168739e04c51e27c02908aae14950b7b5020e1c40fea039b1203ae2734c356a40a050fd51c84 + languageName: node + linkType: hard + "@types/stack-utils@npm:^2.0.0": version: 2.0.3 resolution: "@types/stack-utils@npm:2.0.3" @@ -13606,14 +13903,14 @@ __metadata: linkType: hard "@typescript-eslint/eslint-plugin@npm:^8.17.0": - version: 8.29.0 - resolution: "@typescript-eslint/eslint-plugin@npm:8.29.0" + version: 8.31.1 + resolution: "@typescript-eslint/eslint-plugin@npm:8.31.1" dependencies: "@eslint-community/regexpp": "npm:^4.10.0" - "@typescript-eslint/scope-manager": "npm:8.29.0" - "@typescript-eslint/type-utils": "npm:8.29.0" - "@typescript-eslint/utils": "npm:8.29.0" - "@typescript-eslint/visitor-keys": "npm:8.29.0" + "@typescript-eslint/scope-manager": "npm:8.31.1" + "@typescript-eslint/type-utils": "npm:8.31.1" + "@typescript-eslint/utils": "npm:8.31.1" + "@typescript-eslint/visitor-keys": "npm:8.31.1" graphemer: "npm:^1.4.0" ignore: "npm:^5.3.1" natural-compare: "npm:^1.4.0" @@ -13622,23 +13919,23 @@ __metadata: "@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0 eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.9.0" - checksum: 10c0/3b05a7376a0752484229369af6eb60d13cf06d2331e79c2d471cb0b963dcf5b25a31617cafdc71d74e98921091f479f3da10725b761878a89421191d23866b54 + checksum: 10c0/9d805ab413a666fd2eefb16f257fbf3cea7278ccaf0db30ceb686dfe696e4f40b3aa7c336261c7f0a39a51a7c32a4f08d3d4f16bba0e764ac12c93ae94d82896 languageName: node linkType: hard "@typescript-eslint/parser@npm:^8.16.0": - version: 8.29.0 - resolution: "@typescript-eslint/parser@npm:8.29.0" + version: 8.31.1 + resolution: "@typescript-eslint/parser@npm:8.31.1" dependencies: - "@typescript-eslint/scope-manager": "npm:8.29.0" - "@typescript-eslint/types": "npm:8.29.0" - "@typescript-eslint/typescript-estree": "npm:8.29.0" - "@typescript-eslint/visitor-keys": "npm:8.29.0" + "@typescript-eslint/scope-manager": "npm:8.31.1" + "@typescript-eslint/types": "npm:8.31.1" + "@typescript-eslint/typescript-estree": "npm:8.31.1" + "@typescript-eslint/visitor-keys": "npm:8.31.1" debug: "npm:^4.3.4" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.9.0" - checksum: 10c0/270b9b27e3edb54b2f98a97b7f026f95580214002a04167809b1b71233c36d1585041cdcf26f9e08f48b9eb92652f4f9c756a83dc230f48fd204a4e5e054831c + checksum: 10c0/4fffaddbe443fc6a512042b6a777a8b7d9775938b26f54d86279b232b9b3967d90d6bfd65aca0ff010d377855df19708c918545f51cedc51b1688726201added languageName: node linkType: hard @@ -13652,28 +13949,28 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:8.29.0": - version: 8.29.0 - resolution: "@typescript-eslint/scope-manager@npm:8.29.0" +"@typescript-eslint/scope-manager@npm:8.31.1": + version: 8.31.1 + resolution: "@typescript-eslint/scope-manager@npm:8.31.1" dependencies: - "@typescript-eslint/types": "npm:8.29.0" - "@typescript-eslint/visitor-keys": "npm:8.29.0" - checksum: 10c0/330d777043a99485b51197ad24927f1276d61e61adaf710f012b3fe7db2ab67c8925c0526f801715b498e7d8fa7cef390006b6f7ae40cee89abe22e8e438de9a + "@typescript-eslint/types": "npm:8.31.1" + "@typescript-eslint/visitor-keys": "npm:8.31.1" + checksum: 10c0/759cfaa922f8bc97ecdcfe583df88ad31b04d02a865efc2c6dab622374c9f32839054596193ec3b1c478d8a73690999cbd996e1092605f41a54bbe6a9a62bbf3 languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:8.29.0": - version: 8.29.0 - resolution: "@typescript-eslint/type-utils@npm:8.29.0" +"@typescript-eslint/type-utils@npm:8.31.1": + version: 8.31.1 + resolution: "@typescript-eslint/type-utils@npm:8.31.1" dependencies: - "@typescript-eslint/typescript-estree": "npm:8.29.0" - "@typescript-eslint/utils": "npm:8.29.0" + "@typescript-eslint/typescript-estree": "npm:8.31.1" + "@typescript-eslint/utils": "npm:8.31.1" debug: "npm:^4.3.4" ts-api-utils: "npm:^2.0.1" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.9.0" - checksum: 10c0/f254c8d22fc29ea088d16b06e4be1756cb5ad05ccf5989e163637b9c582e5fc8c27aa7003aad6e6a8158d56d7711ea1e4e9d361702c1a18945e0e6aaff1267c5 + checksum: 10c0/ea5369cf200cd48f26e2c6013c81f5915cc933117e011537a7424402a1ebececc8a39e290b9572a7876a237116fbd75e9ba9313c9898ab828f5a814ab26066d2 languageName: node linkType: hard @@ -13684,10 +13981,10 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/types@npm:8.29.0": - version: 8.29.0 - resolution: "@typescript-eslint/types@npm:8.29.0" - checksum: 10c0/fc1e3f3071102973a9cfb8ae843c51398bd74b5583b7b0edad182ea605ef85e72ceac7987513581869958b3a65303af6b3471bfba5b7be1338e8add62019c858 +"@typescript-eslint/types@npm:8.31.1": + version: 8.31.1 + resolution: "@typescript-eslint/types@npm:8.31.1" + checksum: 10c0/d52692559028b71d8bfda4f098c7fa08e272c11cf9dd99ea9e1cfb00036c0849d6d53694e047a942c6568b3bf5637512e46356de70b412a9216ec6cfb8b2b950 languageName: node linkType: hard @@ -13710,12 +14007,12 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:8.29.0": - version: 8.29.0 - resolution: "@typescript-eslint/typescript-estree@npm:8.29.0" +"@typescript-eslint/typescript-estree@npm:8.31.1": + version: 8.31.1 + resolution: "@typescript-eslint/typescript-estree@npm:8.31.1" dependencies: - "@typescript-eslint/types": "npm:8.29.0" - "@typescript-eslint/visitor-keys": "npm:8.29.0" + "@typescript-eslint/types": "npm:8.31.1" + "@typescript-eslint/visitor-keys": "npm:8.31.1" debug: "npm:^4.3.4" fast-glob: "npm:^3.3.2" is-glob: "npm:^4.0.3" @@ -13724,22 +14021,22 @@ __metadata: ts-api-utils: "npm:^2.0.1" peerDependencies: typescript: ">=4.8.4 <5.9.0" - checksum: 10c0/61dd52229a0758e0bd29f732115c16e640a2418fb25488877c74ef03cdbeb43ddc592a37094abd794ef49812f33d6f814c5b662b95ea796ed0a6c6bfc849299b + checksum: 10c0/77059f204389d2d1b6db32d4df63473c99f5bd051218200f257531c2d2b2e3f237b23aa80a79baebc9ca8a776636867f1fd2d03533d207da2685d740e2c7fbef languageName: node linkType: hard -"@typescript-eslint/utils@npm:8.29.0, @typescript-eslint/utils@npm:^6.0.0 || ^7.0.0 || ^8.0.0": - version: 8.29.0 - resolution: "@typescript-eslint/utils@npm:8.29.0" +"@typescript-eslint/utils@npm:8.31.1, @typescript-eslint/utils@npm:^6.0.0 || ^7.0.0 || ^8.0.0": + version: 8.31.1 + resolution: "@typescript-eslint/utils@npm:8.31.1" dependencies: "@eslint-community/eslint-utils": "npm:^4.4.0" - "@typescript-eslint/scope-manager": "npm:8.29.0" - "@typescript-eslint/types": "npm:8.29.0" - "@typescript-eslint/typescript-estree": "npm:8.29.0" + "@typescript-eslint/scope-manager": "npm:8.31.1" + "@typescript-eslint/types": "npm:8.31.1" + "@typescript-eslint/typescript-estree": "npm:8.31.1" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.9.0" - checksum: 10c0/e259d7edd12946b2dc8e1aa3bbea10f66c5277f27dda71368aa2b2923487f28cd1c123681aaae22518a31c8aeabd60a5365f8a832d0f6e6efadb03745a2d8a31 + checksum: 10c0/6190551702605aa60e67828163cb5880eee7ab5f1ee789d32227e4f4297d80ea9be98776400fd0660551dcbcac2a35babef33dd94267856dcb6f36c9c94f11ab languageName: node linkType: hard @@ -13767,19 +14064,19 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:8.29.0": - version: 8.29.0 - resolution: "@typescript-eslint/visitor-keys@npm:8.29.0" +"@typescript-eslint/visitor-keys@npm:8.31.1": + version: 8.31.1 + resolution: "@typescript-eslint/visitor-keys@npm:8.31.1" dependencies: - "@typescript-eslint/types": "npm:8.29.0" + "@typescript-eslint/types": "npm:8.31.1" eslint-visitor-keys: "npm:^4.2.0" - checksum: 10c0/7f5452b137c4edd258b2289cddf5d92687780375db33421bc4f5e2e9b0c94064c7c5ed3a7b5d96dc9c2d09ca7842b4415b3f3ed3e3f1ae3ac2e625ecb5e87efc + checksum: 10c0/09dbd8e1fdff72802a10bae2c12fa6d25f7e2dab1ff9b720afc2eb4e848b723c179109032aeaeb409d0c9e4107ab4fab8c8b1b47a55d58713d3f29a1365db3ea languageName: node linkType: hard -"@uiw/codemirror-extensions-basic-setup@npm:4.23.10": - version: 4.23.10 - resolution: "@uiw/codemirror-extensions-basic-setup@npm:4.23.10" +"@uiw/codemirror-extensions-basic-setup@npm:4.23.11": + version: 4.23.11 + resolution: "@uiw/codemirror-extensions-basic-setup@npm:4.23.11" dependencies: "@codemirror/autocomplete": "npm:^6.0.0" "@codemirror/commands": "npm:^6.0.0" @@ -13796,19 +14093,19 @@ __metadata: "@codemirror/search": ">=6.0.0" "@codemirror/state": ">=6.0.0" "@codemirror/view": ">=6.0.0" - checksum: 10c0/64c233857b1bf878bf630297b1d4b3df14e13761ff38ceccf7a1fa21d521be288311333b7cbff927889f9a899848f4fccefd975ea5fa8d626ea4aef088f13ee8 + checksum: 10c0/035a69f2d0d715ab642ed5cdfd35a5a4775f95d8876ea4fe05af265540b775eb86c1d2b934b4deea79372caa688224080ad4650dbed28e03bc45d0927521ee5f languageName: node linkType: hard "@uiw/react-codemirror@npm:^4.9.3": - version: 4.23.10 - resolution: "@uiw/react-codemirror@npm:4.23.10" + version: 4.23.11 + resolution: "@uiw/react-codemirror@npm:4.23.11" dependencies: "@babel/runtime": "npm:^7.18.6" "@codemirror/commands": "npm:^6.1.0" "@codemirror/state": "npm:^6.1.1" "@codemirror/theme-one-dark": "npm:^6.0.0" - "@uiw/codemirror-extensions-basic-setup": "npm:4.23.10" + "@uiw/codemirror-extensions-basic-setup": "npm:4.23.11" codemirror: "npm:^6.0.0" peerDependencies: "@babel/runtime": ">=7.11.0" @@ -13818,7 +14115,7 @@ __metadata: codemirror: ">=6.0.0" react: ">=16.8.0" react-dom: ">=16.8.0" - checksum: 10c0/cbcb928c84df2a6a03fd7789a3db317f6358961fd96197d2a3edb3ffbb00deff1cfa05fa1494c849393784bb89ae3f41425982f609f73bad0855a5e6522c328d + checksum: 10c0/0f214aee7aaedbde0b3eaa80057b752765cf73ae160bec4ae1a3e0f506843e59c24c07717d9790f0d48bcd6e91534da0645e8907a67fa427e242724b127f79e5 languageName: node linkType: hard @@ -13991,33 +14288,33 @@ __metadata: linkType: hard "@whatwg-node/fetch@npm:^0.10.0, @whatwg-node/fetch@npm:^0.10.4": - version: 0.10.5 - resolution: "@whatwg-node/fetch@npm:0.10.5" + version: 0.10.6 + resolution: "@whatwg-node/fetch@npm:0.10.6" dependencies: - "@whatwg-node/node-fetch": "npm:^0.7.11" + "@whatwg-node/node-fetch": "npm:^0.7.18" urlpattern-polyfill: "npm:^10.0.0" - checksum: 10c0/89e07f3202ac61246e31d78b8ae3a29ba647b4a6b8f7f5c843bf60129efbc199c32422eb658b9f8330cf2d0619eea7db5e110e4187c2afa98960aec5b115d8ba + checksum: 10c0/a341769cacd25c7b8d01f69c687592d4a790c1d8be1e197fa7d3c2229aa5416df2a05f90931a9986c9695694ef4b3edade9d8487d2d21b9315cba6eec3adbd27 languageName: node linkType: hard -"@whatwg-node/node-fetch@npm:^0.7.11": - version: 0.7.17 - resolution: "@whatwg-node/node-fetch@npm:0.7.17" +"@whatwg-node/node-fetch@npm:^0.7.18": + version: 0.7.18 + resolution: "@whatwg-node/node-fetch@npm:0.7.18" dependencies: + "@fastify/busboy": "npm:^3.1.1" "@whatwg-node/disposablestack": "npm:^0.0.6" - "@whatwg-node/promise-helpers": "npm:^1.2.5" - busboy: "npm:^1.6.0" + "@whatwg-node/promise-helpers": "npm:^1.3.1" tslib: "npm:^2.6.3" - checksum: 10c0/59d96508e804ed359d253c11e2aa56f0fb7caa88e7ec4131350ab255ca731c60444146d8b3c08cd9d885cdbd2e8808a529e87c0933f6f77492a3b38e62e665a6 + checksum: 10c0/2f7daa1b1ac65bb9d90c576bb08fe4216f60ed138d3f4638e99ae2ec0fa1423db25420a3bc23ab84390fa14d7e3235f1d8be706ae9e76e505379c2ee9e251200 languageName: node linkType: hard -"@whatwg-node/promise-helpers@npm:^1.0.0, @whatwg-node/promise-helpers@npm:^1.2.1, @whatwg-node/promise-helpers@npm:^1.2.4, @whatwg-node/promise-helpers@npm:^1.2.5, @whatwg-node/promise-helpers@npm:^1.3.0": - version: 1.3.0 - resolution: "@whatwg-node/promise-helpers@npm:1.3.0" +"@whatwg-node/promise-helpers@npm:^1.0.0, @whatwg-node/promise-helpers@npm:^1.2.1, @whatwg-node/promise-helpers@npm:^1.2.4, @whatwg-node/promise-helpers@npm:^1.3.0, @whatwg-node/promise-helpers@npm:^1.3.1": + version: 1.3.1 + resolution: "@whatwg-node/promise-helpers@npm:1.3.1" dependencies: tslib: "npm:^2.6.3" - checksum: 10c0/79b3d4fd264a7ce82fe977690191bade5c6da50f085c63bf1b548c2066c7bb9ccb9088ad064fbb0ff8da9bea7b336a527973556d8475642bac639e75bedec7ea + checksum: 10c0/bb47e71cb588c2bdc45cc78044f8e472b1600d3022f10d59bb70a68bd6a2d2f749f5bbe5858a9b0dccbc93c4c96092acc28e870ace1174d328e14fa8e8db14fa languageName: node linkType: hard @@ -14109,9 +14406,9 @@ __metadata: linkType: hard "abbrev@npm:^3.0.0": - version: 3.0.0 - resolution: "abbrev@npm:3.0.0" - checksum: 10c0/049704186396f571650eb7b22ed3627b77a5aedf98bb83caf2eac81ca2a3e25e795394b0464cfb2d6076df3db6a5312139eac5b6a126ca296ac53c5008069c28 + version: 3.0.1 + resolution: "abbrev@npm:3.0.1" + checksum: 10c0/21ba8f574ea57a3106d6d35623f2c4a9111d9ee3e9a5be47baed46ec2457d2eac46e07a5c4a60186f88cb98abbe3e24f2d4cca70bc2b12f1692523e2209a9ccf languageName: node linkType: hard @@ -14269,6 +14566,20 @@ __metadata: languageName: node linkType: hard +"ajv-formats@npm:^3.0.1": + version: 3.0.1 + resolution: "ajv-formats@npm:3.0.1" + dependencies: + ajv: "npm:^8.0.0" + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + checksum: 10c0/168d6bca1ea9f163b41c8147bae537e67bd963357a5488a1eaf3abe8baa8eec806d4e45f15b10767e6020679315c7e1e5e6803088dfb84efa2b4e9353b83dd0a + languageName: node + linkType: hard + "ajv-i18n@npm:^4.2.0": version: 4.2.0 resolution: "ajv-i18n@npm:4.2.0" @@ -14448,7 +14759,7 @@ __metadata: "@backstage/catalog-model": "npm:^1.7.3" "@backstage/cli": "npm:^0.30.0" "@backstage/core-app-api": "npm:^1.15.5" - "@backstage/core-components": "npm:^0.16.4" + "@backstage/core-components": "npm:^0.17.1" "@backstage/core-plugin-api": "npm:^1.10.4" "@backstage/integration-react": "npm:^1.2.4" "@backstage/plugin-api-docs": "npm:^0.12.4" @@ -14462,6 +14773,7 @@ __metadata: "@backstage/plugin-org": "npm:^0.6.36" "@backstage/plugin-permission-react": "npm:^0.4.31" "@backstage/plugin-scaffolder": "npm:^1.28.0" + "@backstage/plugin-scaffolder-common": "npm:^1.5.10" "@backstage/plugin-search": "npm:^1.4.23" "@backstage/plugin-search-react": "npm:^1.8.6" "@backstage/plugin-techdocs": "npm:^1.12.3" @@ -14471,8 +14783,8 @@ __metadata: "@backstage/test-utils": "npm:^1.7.5" "@backstage/theme": "npm:^0.6.4" "@fontsource/source-sans-pro": "npm:^4.5.11" - "@internal/backstage-plugin-import-flow": "npm:^1.6.0" - "@internal/plugin-tibco-platform-plugin": "npm:^1.6.0" + "@internal/backstage-plugin-import-flow": "workspace:^" + "@internal/plugin-tibco-platform-plugin": "workspace:^" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" "@material-ui/lab": "npm:^4.0.0-alpha.61" @@ -14545,7 +14857,7 @@ __metadata: languageName: node linkType: hard -"archiver@npm:^7.0.0": +"archiver@npm:^7.0.0, archiver@npm:^7.0.1": version: 7.0.1 resolution: "archiver@npm:7.0.1" dependencies: @@ -14952,13 +15264,13 @@ __metadata: linkType: hard "axios@npm:^1.8.2": - version: 1.8.4 - resolution: "axios@npm:1.8.4" + version: 1.9.0 + resolution: "axios@npm:1.9.0" dependencies: follow-redirects: "npm:^1.15.6" form-data: "npm:^4.0.0" proxy-from-env: "npm:^1.1.0" - checksum: 10c0/450993c2ba975ffccaf0d480b68839a3b2435a5469a71fa2fb0b8a55cdb2c2ae47e609360b9c1e2b2534b73dfd69e2733a1cf9f8215bee0bcd729b72f801b0ce + checksum: 10c0/9371a56886c2e43e4ff5647b5c2c3c046ed0a3d13482ef1d0135b994a628c41fbad459796f101c655e62f0c161d03883454474d2e435b2e021b1924d9f24994c languageName: node linkType: hard @@ -15157,7 +15469,7 @@ __metadata: "@backstage/plugin-catalog-backend-module-logs": "npm:^0.1.7" "@backstage/plugin-catalog-backend-module-scaffolder-entity-model": "npm:^0.2.5" "@backstage/plugin-kubernetes-backend": "npm:^0.19.3" - "@backstage/plugin-permission-backend": "npm:^0.5.54" + "@backstage/plugin-permission-backend": "npm:^0.6.0" "@backstage/plugin-permission-backend-module-allow-all-policy": "npm:^0.2.5" "@backstage/plugin-permission-common": "npm:^0.8.4" "@backstage/plugin-permission-node": "npm:^0.8.8" @@ -15172,7 +15484,8 @@ __metadata: "@backstage/plugin-search-backend-module-techdocs": "npm:^0.3.6" "@backstage/plugin-search-backend-node": "npm:^1.3.8" "@backstage/plugin-techdocs-backend": "npm:^1.11.6" - "@internal/backstage-plugin-scaffolder-backend-module-import-flow": "npm:^1.6.0" + "@internal/backstage-plugin-scaffolder-backend-module-import-flow": "workspace:^" + "@internal/plugin-scaffolder-backend-module-tibco-git-repositories": "workspace:^" app: "link:../app" better-sqlite3: "npm:^9.0.0" dockerode: "npm:^3.3.1" @@ -15325,9 +15638,9 @@ __metadata: linkType: hard "bignumber.js@npm:^9.0.0": - version: 9.1.2 - resolution: "bignumber.js@npm:9.1.2" - checksum: 10c0/e17786545433f3110b868725c449fa9625366a6e675cd70eb39b60938d6adbd0158cb4b3ad4f306ce817165d37e63f4aa3098ba4110db1d9a3b9f66abfbaf10d + version: 9.3.0 + resolution: "bignumber.js@npm:9.3.0" + checksum: 10c0/f54a79cd6fc98552ac0510c1cd9381650870ae443bdb20ba9b98e3548188d941506ac3c22a9f9c69b2cc60da9be5700e87d3f54d2825310a8b2ae999dfd6d99d languageName: node linkType: hard @@ -15386,16 +15699,16 @@ __metadata: linkType: hard "bn.js@npm:^4.0.0, bn.js@npm:^4.1.0, bn.js@npm:^4.11.8, bn.js@npm:^4.11.9": - version: 4.12.1 - resolution: "bn.js@npm:4.12.1" - checksum: 10c0/b7f37a0cd5e4b79142b6f4292d518b416be34ae55d6dd6b0f66f96550c8083a50ffbbf8bda8d0ab471158cb81aa74ea4ee58fe33c7802e4a30b13810e98df116 + version: 4.12.2 + resolution: "bn.js@npm:4.12.2" + checksum: 10c0/09a249faa416a9a1ce68b5f5ec8bbca87fe54e5dd4ef8b1cc8a4969147b80035592bddcb1e9cc814c3ba79e573503d5c5178664b722b509fb36d93620dba9b57 languageName: node linkType: hard "bn.js@npm:^5.2.1": - version: 5.2.1 - resolution: "bn.js@npm:5.2.1" - checksum: 10c0/bed3d8bd34ec89dbcf9f20f88bd7d4a49c160fda3b561c7bb227501f974d3e435a48fb9b61bc3de304acab9215a3bda0803f7017ffb4d0016a0c3a740a283caa + version: 5.2.2 + resolution: "bn.js@npm:5.2.2" + checksum: 10c0/cb97827d476aab1a0194df33cd84624952480d92da46e6b4a19c32964aa01553a4a613502396712704da2ec8f831cf98d02e74ca03398404bd78a037ba93f2ab languageName: node linkType: hard @@ -15721,7 +16034,7 @@ __metadata: languageName: node linkType: hard -"busboy@npm:^1.0.0, busboy@npm:^1.6.0": +"busboy@npm:^1.0.0": version: 1.6.0 resolution: "busboy@npm:1.6.0" dependencies: @@ -15730,6 +16043,13 @@ __metadata: languageName: node linkType: hard +"byline@npm:^5.0.0": + version: 5.0.0 + resolution: "byline@npm:5.0.0" + checksum: 10c0/33fb64cd84440b3652a99a68d732c56ef18a748ded495ba38e7756a242fab0d4654b9b8ce269fd0ac14c5f97aa4e3c369613672b280a1f60b559b34223105c85 + languageName: node + linkType: hard + "bytes@npm:3.1.2": version: 3.1.2 resolution: "bytes@npm:3.1.2" @@ -15884,9 +16204,9 @@ __metadata: linkType: hard "caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001688": - version: 1.0.30001709 - resolution: "caniuse-lite@npm:1.0.30001709" - checksum: 10c0/0acf91f59f52661fc47042e4eee1b527deb54044ae4c79ae7464d0789b79146ad587153a76d78b09157261b9fad89235eb161cd8ea7a58d36fc7f25a2e937df5 + version: 1.0.30001716 + resolution: "caniuse-lite@npm:1.0.30001716" + checksum: 10c0/5cca5089f7ee214a346ea38ecbd114c1a675c94254675150e535aa0766fe2c446961990637f25f65dc29ce9c543aed12006d679dd797d2e6159c46aa518da0cb languageName: node linkType: hard @@ -15977,7 +16297,7 @@ __metadata: languageName: node linkType: hard -"chokidar@npm:^3.3.1, chokidar@npm:^3.4.2, chokidar@npm:^3.5.2, chokidar@npm:^3.5.3, chokidar@npm:^3.6.0": +"chokidar@npm:^3.3.1, chokidar@npm:^3.4.2, chokidar@npm:^3.5.2, chokidar@npm:^3.6.0": version: 3.6.0 resolution: "chokidar@npm:3.6.0" dependencies: @@ -15996,6 +16316,15 @@ __metadata: languageName: node linkType: hard +"chokidar@npm:^4.0.1": + version: 4.0.3 + resolution: "chokidar@npm:4.0.3" + dependencies: + readdirp: "npm:^4.0.1" + checksum: 10c0/a58b9df05bb452f7d105d9e7229ac82fa873741c0c40ddcc7bb82f8a909fbe3f7814c9ebe9bc9a2bef9b737c0ec6e2d699d179048ef06ad3ec46315df0ebe6ad + languageName: node + linkType: hard + "chownr@npm:^1.1.1": version: 1.1.4 resolution: "chownr@npm:1.1.4" @@ -16196,16 +16525,16 @@ __metadata: linkType: hard "codemirror-graphql@npm:^2.0.11, codemirror-graphql@npm:^2.0.13": - version: 2.2.0 - resolution: "codemirror-graphql@npm:2.2.0" + version: 2.2.1 + resolution: "codemirror-graphql@npm:2.2.1" dependencies: "@types/codemirror": "npm:^0.0.90" - graphql-language-service: "npm:5.3.0" + graphql-language-service: "npm:5.3.1" peerDependencies: "@codemirror/language": 6.0.0 codemirror: ^5.65.3 graphql: ^15.5.0 || ^16.0.0 || ^17.0.0 - checksum: 10c0/2e1db81fd2afe2ae4db5a925d9f1e2473ec472ef072e1fac516869796544971c648f73e78bef042d42b58d3f59005809ea5be1405eedbe49fcf817e4407b85fd + checksum: 10c0/59430a44b538b85958c79d1b6ca0fd1d341cdbf093ccef2e6fc3c3a0220fd94fdd0ecde04dec6de9fadbe312347dae45510f97e3be49199ad405f86a377912e3 languageName: node linkType: hard @@ -16690,18 +17019,18 @@ __metadata: linkType: hard "core-js-compat@npm:^3.40.0": - version: 3.41.0 - resolution: "core-js-compat@npm:3.41.0" + version: 3.42.0 + resolution: "core-js-compat@npm:3.42.0" dependencies: browserslist: "npm:^4.24.4" - checksum: 10c0/92d2c748d3dd1c4e3b6cee6b6683b9212db9bc0a6574d933781210daf3baaeb76334ed4636eb8935b45802aa8d9235ab604c9a262694e02a2fa17ad0f6976829 + checksum: 10c0/0138ce005c13ce642fc38e18e54a52a1c78ca8315ee6e4faad748d2a1b0ad2462ea615285ad4e6cf77afe48e47a868d898e64c70606c1eb1c9e6a9f19ee2b186 languageName: node linkType: hard "core-js-pure@npm:^3.23.3, core-js-pure@npm:^3.30.2": - version: 3.41.0 - resolution: "core-js-pure@npm:3.41.0" - checksum: 10c0/d5003e91f167dd5670174d27bf313407325d0915454f41337510b89ba420f1d0d1b22d3b1793eb329b28e9273e951fb895eb574ecfc1ccc77ed6ad14af1c763b + version: 3.42.0 + resolution: "core-js-pure@npm:3.42.0" + checksum: 10c0/e61b097bc83ec01839e7b04cad2e1d0dd8822275ea5a08a23dc7c907d13d2522aa2b09061cec68f0625fe40abb8b888be3b65a37c817eb53a695cf02c24217bf languageName: node linkType: hard @@ -16713,9 +17042,9 @@ __metadata: linkType: hard "core-js@npm:^3.6.5": - version: 3.41.0 - resolution: "core-js@npm:3.41.0" - checksum: 10c0/a29ed0b7fe81acf49d04ce5c17a1947166b1c15197327a5d12f95bbe84b46d60c3c13de701d808f41da06fa316285f3f55ce5903abc8d5642afc1eac4457afc8 + version: 3.42.0 + resolution: "core-js@npm:3.42.0" + checksum: 10c0/2913d3d5452d54ad92f058d66046782d608c05e037bcc523aab79c04454fe640998f94e6011292969d66dfa472f398b085ce843dcb362056532a5799c627184e languageName: node linkType: hard @@ -16923,11 +17252,11 @@ __metadata: linkType: hard "cronstrue@npm:^2.2.0, cronstrue@npm:^2.32.0": - version: 2.57.0 - resolution: "cronstrue@npm:2.57.0" + version: 2.59.0 + resolution: "cronstrue@npm:2.59.0" bin: cronstrue: bin/cli.js - checksum: 10c0/32c7d2c3212ac298e61f37f4a90735b4b6e281e0c09850060649ba43bea636e947b8a5aeb3cf44eec5d542f61945b0ba35d8939726b1986584e2e1b2d9d4b009 + checksum: 10c0/f04c9720eacae8cc58ee700a33ced44947c7d722f9deb8a0d0a9a9b533f493b8c2fabed0e72e6bf9d6d1e5191b7b8325e107496ed93a85a2789e57954084b055 languageName: node linkType: hard @@ -17202,12 +17531,12 @@ __metadata: linkType: hard "cssstyle@npm:^4.2.1": - version: 4.3.0 - resolution: "cssstyle@npm:4.3.0" + version: 4.3.1 + resolution: "cssstyle@npm:4.3.1" dependencies: - "@asamuzakjp/css-color": "npm:^3.1.1" + "@asamuzakjp/css-color": "npm:^3.1.2" rrweb-cssom: "npm:^0.8.0" - checksum: 10c0/770ccb288a99257fd0d5b129e03878f848e922d3b017358acb02e8dd530e8f0c7c6f74e6ae5367d715e2da36a490a734b4177fc1b78f3f08eca25f204a56a692 + checksum: 10c0/89d73252d5f9930cf67f5c576de8030a9d960aae4c8bdd42d60464b2f67c8d809601fb7e620b43d4c84e03472016da77528df9a21a21393387ed256610ca0ab4 languageName: node linkType: hard @@ -17468,7 +17797,7 @@ __metadata: languageName: node linkType: hard -"debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.3.6, debug@npm:^4.4.0": +"debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.3.6, debug@npm:^4.4.0": version: 4.4.0 resolution: "debug@npm:4.4.0" dependencies: @@ -17501,7 +17830,7 @@ __metadata: languageName: node linkType: hard -"decimal.js@npm:^10.4.2, decimal.js@npm:^10.4.3": +"decimal.js@npm:^10.4.2, decimal.js@npm:^10.5.0": version: 10.5.0 resolution: "decimal.js@npm:10.5.0" checksum: 10c0/785c35279df32762143914668df35948920b6c1c259b933e0519a69b7003fc0a5ed2a766b1e1dda02574450c566b21738a45f15e274b47c2ac02072c0d1f3ac3 @@ -17748,9 +18077,9 @@ __metadata: linkType: hard "detect-libc@npm:^2.0.0": - version: 2.0.3 - resolution: "detect-libc@npm:2.0.3" - checksum: 10c0/88095bda8f90220c95f162bf92cad70bd0e424913e655c20578600e35b91edc261af27531cf160a331e185c0ced93944bc7e09939143225f56312d7fd800fdb7 + version: 2.0.4 + resolution: "detect-libc@npm:2.0.4" + checksum: 10c0/c15541f836eba4b1f521e4eecc28eefefdbc10a94d3b8cb4c507689f332cc111babb95deda66f2de050b22122113189986d5190be97d51b5a2b23b938415e67c languageName: node linkType: hard @@ -17862,6 +18191,15 @@ __metadata: languageName: node linkType: hard +"docker-compose@npm:^0.24.8": + version: 0.24.8 + resolution: "docker-compose@npm:0.24.8" + dependencies: + yaml: "npm:^2.2.2" + checksum: 10c0/1494389e554fed8aabf9fef24210a641cd2442028b1462d7f68186919f5e75045f7bfb4ccaf47c94ed879dcb63e4d82885c389399f531550c4b244920740b2b3 + languageName: node + linkType: hard + "docker-modem@npm:^3.0.0": version: 3.0.8 resolution: "docker-modem@npm:3.0.8" @@ -17897,9 +18235,9 @@ __metadata: languageName: node linkType: hard -"dockerode@npm:^4.0.0": - version: 4.0.5 - resolution: "dockerode@npm:4.0.5" +"dockerode@npm:^4.0.0, dockerode@npm:^4.0.5": + version: 4.0.6 + resolution: "dockerode@npm:4.0.6" dependencies: "@balena/dockerignore": "npm:^1.0.2" "@grpc/grpc-js": "npm:^1.11.1" @@ -17908,7 +18246,7 @@ __metadata: protobufjs: "npm:^7.3.2" tar-fs: "npm:~2.1.2" uuid: "npm:^10.0.0" - checksum: 10c0/a9b9024d8afc40788a195740bf9cf60e92def44ee3e046c3497b0c6a0f49c46ea07e6e89d248daf3c391c66cb260aaf1111badb73f85db54e0d106b1e760aa19 + checksum: 10c0/c0c974425fcca8c91c6c6419f0f06be13a63c17c38b73f78bd79cd35c8cb5699211727366747c7357fdfe749f5bf5823ab2896abd0db77fadab11001c294c1a4 languageName: node linkType: hard @@ -18013,7 +18351,7 @@ __metadata: languageName: node linkType: hard -"dompurify@npm:=3.2.4, dompurify@npm:^3.0.0, dompurify@npm:^3.2.4": +"dompurify@npm:=3.2.4": version: 3.2.4 resolution: "dompurify@npm:3.2.4" dependencies: @@ -18025,6 +18363,18 @@ __metadata: languageName: node linkType: hard +"dompurify@npm:^3.0.0, dompurify@npm:^3.2.5": + version: 3.2.5 + resolution: "dompurify@npm:3.2.5" + dependencies: + "@types/trusted-types": "npm:^2.0.7" + dependenciesMeta: + "@types/trusted-types": + optional: true + checksum: 10c0/b564167cc588933ad2d25c185296716bdd7124e9d2a75dac76efea831bb22d1230ce5205a1ab6ce4c1010bb32ac35f7a5cb2dd16c78cbf382111f1228362aa59 + languageName: node + linkType: hard + "domutils@npm:^2.5.2, domutils@npm:^2.8.0": version: 2.8.0 resolution: "domutils@npm:2.8.0" @@ -18135,9 +18485,9 @@ __metadata: linkType: hard "electron-to-chromium@npm:^1.5.73": - version: 1.5.130 - resolution: "electron-to-chromium@npm:1.5.130" - checksum: 10c0/524a7a467a22fd330699bd73d278b8b421fac24ab9fe5a40e68320ec16dd5d05616f5f1471a3942593767497fef6297b87c333cccecbf0b8ed6f3b9256b41be7 + version: 1.5.145 + resolution: "electron-to-chromium@npm:1.5.145" + checksum: 10c0/0db2cf3de991b1c8dc38c7412179778a13ec46cd9eb5e520dc4f985762eb534c1307dd99573d6b68d04175d74a3bfc225f065fa567a946474cc1e70839af6d7b languageName: node linkType: hard @@ -18240,13 +18590,20 @@ __metadata: languageName: node linkType: hard -"entities@npm:^4.4.0, entities@npm:^4.5.0": +"entities@npm:^4.4.0": version: 4.5.0 resolution: "entities@npm:4.5.0" checksum: 10c0/5b039739f7621f5d1ad996715e53d964035f75ad3b9a4d38c6b3804bb226e282ffeae2443624d8fdd9c47d8e926ae9ac009c54671243f0c3294c26af7cc85250 languageName: node linkType: hard +"entities@npm:^6.0.0": + version: 6.0.0 + resolution: "entities@npm:6.0.0" + checksum: 10c0/b82a7bd5de282860f3c36a91e815e41e874fd036c83956a568b82729678492eb088359d6f7e0a4f5c00776427263fcba04959b8340fefa430c39b9bce770427e + languageName: node + linkType: hard + "entities@npm:~2.1.0": version: 2.1.0 resolution: "entities@npm:2.1.0" @@ -18417,9 +18774,9 @@ __metadata: linkType: hard "es-module-lexer@npm:^1.2.1, es-module-lexer@npm:^1.6.0": - version: 1.6.0 - resolution: "es-module-lexer@npm:1.6.0" - checksum: 10c0/667309454411c0b95c476025929881e71400d74a746ffa1ff4cb450bd87f8e33e8eef7854d68e401895039ac0bac64e7809acbebb6253e055dd49ea9e3ea9212 + version: 1.7.0 + resolution: "es-module-lexer@npm:1.7.0" + checksum: 10c0/4c935affcbfeba7fb4533e1da10fa8568043df1e3574b869385980de9e2d475ddc36769891936dbb07036edb3c3786a8b78ccf44964cd130dedc1f2c984b6c7b languageName: node linkType: hard @@ -18579,34 +18936,34 @@ __metadata: linkType: hard "esbuild@npm:^0.25.0": - version: 0.25.2 - resolution: "esbuild@npm:0.25.2" - dependencies: - "@esbuild/aix-ppc64": "npm:0.25.2" - "@esbuild/android-arm": "npm:0.25.2" - "@esbuild/android-arm64": "npm:0.25.2" - "@esbuild/android-x64": "npm:0.25.2" - "@esbuild/darwin-arm64": "npm:0.25.2" - "@esbuild/darwin-x64": "npm:0.25.2" - "@esbuild/freebsd-arm64": "npm:0.25.2" - "@esbuild/freebsd-x64": "npm:0.25.2" - "@esbuild/linux-arm": "npm:0.25.2" - "@esbuild/linux-arm64": "npm:0.25.2" - "@esbuild/linux-ia32": "npm:0.25.2" - "@esbuild/linux-loong64": "npm:0.25.2" - "@esbuild/linux-mips64el": "npm:0.25.2" - "@esbuild/linux-ppc64": "npm:0.25.2" - "@esbuild/linux-riscv64": "npm:0.25.2" - "@esbuild/linux-s390x": "npm:0.25.2" - "@esbuild/linux-x64": "npm:0.25.2" - "@esbuild/netbsd-arm64": "npm:0.25.2" - "@esbuild/netbsd-x64": "npm:0.25.2" - "@esbuild/openbsd-arm64": "npm:0.25.2" - "@esbuild/openbsd-x64": "npm:0.25.2" - "@esbuild/sunos-x64": "npm:0.25.2" - "@esbuild/win32-arm64": "npm:0.25.2" - "@esbuild/win32-ia32": "npm:0.25.2" - "@esbuild/win32-x64": "npm:0.25.2" + version: 0.25.3 + resolution: "esbuild@npm:0.25.3" + dependencies: + "@esbuild/aix-ppc64": "npm:0.25.3" + "@esbuild/android-arm": "npm:0.25.3" + "@esbuild/android-arm64": "npm:0.25.3" + "@esbuild/android-x64": "npm:0.25.3" + "@esbuild/darwin-arm64": "npm:0.25.3" + "@esbuild/darwin-x64": "npm:0.25.3" + "@esbuild/freebsd-arm64": "npm:0.25.3" + "@esbuild/freebsd-x64": "npm:0.25.3" + "@esbuild/linux-arm": "npm:0.25.3" + "@esbuild/linux-arm64": "npm:0.25.3" + "@esbuild/linux-ia32": "npm:0.25.3" + "@esbuild/linux-loong64": "npm:0.25.3" + "@esbuild/linux-mips64el": "npm:0.25.3" + "@esbuild/linux-ppc64": "npm:0.25.3" + "@esbuild/linux-riscv64": "npm:0.25.3" + "@esbuild/linux-s390x": "npm:0.25.3" + "@esbuild/linux-x64": "npm:0.25.3" + "@esbuild/netbsd-arm64": "npm:0.25.3" + "@esbuild/netbsd-x64": "npm:0.25.3" + "@esbuild/openbsd-arm64": "npm:0.25.3" + "@esbuild/openbsd-x64": "npm:0.25.3" + "@esbuild/sunos-x64": "npm:0.25.3" + "@esbuild/win32-arm64": "npm:0.25.3" + "@esbuild/win32-ia32": "npm:0.25.3" + "@esbuild/win32-x64": "npm:0.25.3" dependenciesMeta: "@esbuild/aix-ppc64": optional: true @@ -18660,7 +19017,7 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: 10c0/87ce0b78699c4d192b8cf7e9b688e9a0da10e6f58ff85a368bf3044ca1fa95626c98b769b5459352282e0065585b6f994a5e6699af5cccf9d31178960e2b58fd + checksum: 10c0/127aff654310ede4e2eb232a7b1d8823f5b5d69222caf17aa7f172574a5b6b75f71ce78c6d8a40030421d7c75b784dc640de0fb1b87b7ea77ab2a1c832fa8df8 languageName: node linkType: hard @@ -18886,8 +19243,8 @@ __metadata: linkType: hard "eslint-plugin-react@npm:^7.37.2": - version: 7.37.4 - resolution: "eslint-plugin-react@npm:7.37.4" + version: 7.37.5 + resolution: "eslint-plugin-react@npm:7.37.5" dependencies: array-includes: "npm:^3.1.8" array.prototype.findlast: "npm:^1.2.5" @@ -18899,7 +19256,7 @@ __metadata: hasown: "npm:^2.0.2" jsx-ast-utils: "npm:^2.4.1 || ^3.0.0" minimatch: "npm:^3.1.2" - object.entries: "npm:^1.1.8" + object.entries: "npm:^1.1.9" object.fromentries: "npm:^2.0.8" object.values: "npm:^1.2.1" prop-types: "npm:^15.8.1" @@ -18909,7 +19266,7 @@ __metadata: string.prototype.repeat: "npm:^1.0.0" peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 - checksum: 10c0/4acbbdb19669dfa9a162ed8847c3ad1918f6aea1ceb675ee320b5d903b4e463fdef25e15233295b6d0a726fef2ea8b015c527da769c7690932ddc52d5b82ba12 + checksum: 10c0/c850bfd556291d4d9234f5ca38db1436924a1013627c8ab1853f77cac73ec19b020e861e6c7b783436a48b6ffcdfba4547598235a37ad4611b6739f65fd8ad57 languageName: node linkType: hard @@ -19233,25 +19590,25 @@ __metadata: linkType: hard "express-openapi-validator@npm:^5.0.4": - version: 5.4.7 - resolution: "express-openapi-validator@npm:5.4.7" + version: 5.4.9 + resolution: "express-openapi-validator@npm:5.4.9" dependencies: - "@apidevtools/json-schema-ref-parser": "npm:^11.7.2" + "@apidevtools/json-schema-ref-parser": "npm:^11.9.3" "@types/multer": "npm:^1.4.12" ajv: "npm:^8.17.1" ajv-draft-04: "npm:^1.0.0" - ajv-formats: "npm:^2.1.1" + ajv-formats: "npm:^3.0.1" content-type: "npm:^1.0.5" json-schema-traverse: "npm:^1.0.0" lodash.clonedeep: "npm:^4.5.0" lodash.get: "npm:^4.4.2" media-typer: "npm:^1.1.0" - multer: "npm:^1.4.5-lts.1" + multer: "npm:^1.4.5-lts.2" ono: "npm:^7.1.3" path-to-regexp: "npm:^8.2.0" peerDependencies: express: "*" - checksum: 10c0/d3e5cefc2d14e9ae22633e6a85dc27ffc4a4c3fd6bb6615b2d10b8964a77c3c0702831fbade3e80745ab8be0f94b9b6b57f13140fe7e0db3911880c5ad4564af + checksum: 10c0/8e33a7ac8d5d8f361363f03cf87c424d36eefe9ed347174523ab75a0ebbf49718b816aa13f20d95db9eb688a323051265e2e550cdc676a8a80201a8f7b4f1d11 languageName: node linkType: hard @@ -19472,13 +19829,13 @@ __metadata: linkType: hard "fast-xml-parser@npm:^5.0.7": - version: 5.1.0 - resolution: "fast-xml-parser@npm:5.1.0" + version: 5.2.1 + resolution: "fast-xml-parser@npm:5.2.1" dependencies: strnum: "npm:^2.0.5" bin: fxparser: src/cli/cli.js - checksum: 10c0/58aa2e9ffd735fa81b15e7ce6ca01c8b74366d2ab001ed15a3fa565adc5f15bbe2e98fd7243bdf0a0ea26a6b012e4ef503078ff188702f9c4209a8de89de44bd + checksum: 10c0/56839040975f66a1b825dd705bbf7fd622b605f59b994c80a5eda2fb971d553dca7341f094b5c04ae5277164f24e93603cc1f0fb90e22a57411bf350bede48b9 languageName: node linkType: hard @@ -19525,15 +19882,15 @@ __metadata: languageName: node linkType: hard -"fdir@npm:^6.4.3": - version: 6.4.3 - resolution: "fdir@npm:6.4.3" +"fdir@npm:^6.4.4": + version: 6.4.4 + resolution: "fdir@npm:6.4.4" peerDependencies: picomatch: ^3 || ^4 peerDependenciesMeta: picomatch: optional: true - checksum: 10c0/d13c10120e9625adf21d8d80481586200759928c19405a816b77dd28eaeb80e7c59c5def3e2941508045eb06d34eb47fad865ccc8bf98e6ab988bb0ed160fb6f + checksum: 10c0/6ccc33be16945ee7bc841e1b4178c0b4cf18d3804894cb482aa514651c962a162f96da7ffc6ebfaf0df311689fb70091b04dd6caffe28d56b9ebdc0e7ccadfdd languageName: node linkType: hard @@ -19799,12 +20156,12 @@ __metadata: linkType: hard "fork-ts-checker-webpack-plugin@npm:^9.0.0": - version: 9.0.3 - resolution: "fork-ts-checker-webpack-plugin@npm:9.0.3" + version: 9.1.0 + resolution: "fork-ts-checker-webpack-plugin@npm:9.1.0" dependencies: "@babel/code-frame": "npm:^7.16.7" chalk: "npm:^4.1.2" - chokidar: "npm:^3.5.3" + chokidar: "npm:^4.0.1" cosmiconfig: "npm:^8.2.0" deepmerge: "npm:^4.2.2" fs-extra: "npm:^10.0.0" @@ -19817,7 +20174,7 @@ __metadata: peerDependencies: typescript: ">3.6.0" webpack: ^5.11.0 - checksum: 10c0/f9a265d3a990d35cbd2a877f20760175da3af8fae8470a1728ea1ac9e07e8d18e90f2e1fbbca1db5483993f89d5577c2a5655e49cee793f9d094c735a9b981ae + checksum: 10c0/b4acdf400862af5f57d3e159b3a444e7f9f73e9f4609d54604c3810f75f8adcea0165a8b17ee856ed3c65591d058ffd73cd08d273e289d4952844e75f6efa85d languageName: node linkType: hard @@ -19834,7 +20191,7 @@ __metadata: languageName: node linkType: hard -"form-data@npm:^4.0.0, form-data@npm:^4.0.1": +"form-data@npm:^4.0.0": version: 4.0.2 resolution: "form-data@npm:4.0.2" dependencies: @@ -19863,14 +20220,14 @@ __metadata: linkType: hard "formidable@npm:^2.1.2": - version: 2.1.2 - resolution: "formidable@npm:2.1.2" + version: 2.1.5 + resolution: "formidable@npm:2.1.5" dependencies: + "@paralleldrive/cuid2": "npm:^2.2.2" dezalgo: "npm:^1.0.4" - hexoid: "npm:^1.0.0" once: "npm:^1.4.0" qs: "npm:^6.11.0" - checksum: 10c0/efba03d11127098daa6ef54c3c0fad25693973eb902fa88ccaaa203baebe8c74d12ba0fe1e113eccf79b9172510fa337e4e107330b124fb3a8c74697b4aa2ce3 + checksum: 10c0/2c68ca6cccc1ac3de497c50236631fafea8e1a09396d88b4dd2dc9db6029b5abaeb6747b8b97ebc1143cd40cf62c27ba485b8c6317088c066fc999af3ac621d4 languageName: node linkType: hard @@ -20184,6 +20541,13 @@ __metadata: languageName: node linkType: hard +"get-port@npm:^7.1.0": + version: 7.1.0 + resolution: "get-port@npm:7.1.0" + checksum: 10c0/896051fea0fd3df58c050566754ab91f46406e898ce0c708414739d908a5ac03ffef3eca7a494ea9cc1914439e8caccd2218010d1eeabdde914b9ff920fa28fc + languageName: node + linkType: hard + "get-proto@npm:^1.0.0, get-proto@npm:^1.0.1": version: 1.0.1 resolution: "get-proto@npm:1.0.1" @@ -20455,8 +20819,8 @@ __metadata: linkType: hard "google-gax@npm:^4.0.3, google-gax@npm:^4.3.3": - version: 4.4.1 - resolution: "google-gax@npm:4.4.1" + version: 4.6.0 + resolution: "google-gax@npm:4.6.0" dependencies: "@grpc/grpc-js": "npm:^1.10.9" "@grpc/proto-loader": "npm:^0.7.13" @@ -20470,7 +20834,7 @@ __metadata: protobufjs: "npm:^7.3.2" retry-request: "npm:^7.0.0" uuid: "npm:^9.0.1" - checksum: 10c0/ff27a5f045b84c50c7c539f45d36c4373c0cc58a39a46fb77976f456c4029238b8cc08f83368e4491c381a67774bc3d42534b68e8eda487c87efc22e84edf6d3 + checksum: 10c0/371d855fad00fe5957587ac8b16f27b0e8dbd91e5a05e1f501f57b9f0042171951b8b777e0e73af990203ce3b7a19e02aaeeb32125482b1222be11787c19dbdb languageName: node linkType: hard @@ -20528,12 +20892,12 @@ __metadata: linkType: hard "graphql-config@npm:^5.0.2": - version: 5.1.3 - resolution: "graphql-config@npm:5.1.3" + version: 5.1.5 + resolution: "graphql-config@npm:5.1.5" dependencies: "@graphql-tools/graphql-file-loader": "npm:^8.0.0" "@graphql-tools/json-file-loader": "npm:^8.0.0" - "@graphql-tools/load": "npm:^8.0.0" + "@graphql-tools/load": "npm:^8.1.0" "@graphql-tools/merge": "npm:^9.0.0" "@graphql-tools/url-loader": "npm:^8.0.0" "@graphql-tools/utils": "npm:^10.0.0" @@ -20548,7 +20912,7 @@ __metadata: peerDependenciesMeta: cosmiconfig-toml-loader: optional: true - checksum: 10c0/e1a1a665c35a6c01c7922f532aad098c2bea67354e33fbf78d631079fd51fd18fa32e0571dc098c50d22d554c43085afec8b634b29f788f140d17d2bde12c9a6 + checksum: 10c0/05e2a895dd899709da0a6f24c0248d858c23767c4848f27f68935a6fe44d00dfd804c38ef59157193ad30e54d4e0773d9ec562842fe00ce7aaa0330bca5053cd languageName: node linkType: hard @@ -20561,18 +20925,18 @@ __metadata: languageName: node linkType: hard -"graphql-language-service@npm:5.3.0, graphql-language-service@npm:^5.2.0, graphql-language-service@npm:^5.2.2": - version: 5.3.0 - resolution: "graphql-language-service@npm:5.3.0" +"graphql-language-service@npm:5.3.1, graphql-language-service@npm:^5.2.0, graphql-language-service@npm:^5.2.2": + version: 5.3.1 + resolution: "graphql-language-service@npm:5.3.1" dependencies: debounce-promise: "npm:^3.1.2" nullthrows: "npm:^1.0.0" vscode-languageserver-types: "npm:^3.17.1" peerDependencies: - graphql: ^15.5.0 || ^16.0.0 || ^17.0.0-alpha.2 + graphql: ^15.5.0 || ^16.0.0 || ^17.0.0 bin: graphql: dist/temp-bin.js - checksum: 10c0/93bf543a6561c22ff4067fae00f7b3f30365fcf8d123ba9ca623693dc28272682df89c87bda74772cab353c906fb0a6942344a5809fd223df9ea3505a341065c + checksum: 10c0/f7915550fa97a037f74e90c5616886fc00a3cb84543a92f7210e02fc97fa2eaa1e5cf2d47c13256d84ba42c151a8f877a8eb47c0489d4525a4c523e6c982ebff languageName: node linkType: hard @@ -20634,9 +20998,9 @@ __metadata: linkType: hard "graphql@npm:^16.0.0, graphql@npm:^16.8.1": - version: 16.10.0 - resolution: "graphql@npm:16.10.0" - checksum: 10c0/303730675538c8bd6c76b447dc6f03e61242e2d2596b408c34759666ec4877409e5593a7a0467d590ac5407b8c663b093b599556a77f24f281abea69ddc53de6 + version: 16.11.0 + resolution: "graphql@npm:16.11.0" + checksum: 10c0/124da7860a2292e9acf2fed0c71fc0f6a9b9ca865d390d112bdd563c1f474357141501c12891f4164fe984315764736ad67f705219c62f7580681d431a85db88 languageName: node linkType: hard @@ -20836,13 +21200,6 @@ __metadata: languageName: node linkType: hard -"hexoid@npm:^1.0.0": - version: 1.0.0 - resolution: "hexoid@npm:1.0.0" - checksum: 10c0/9c45e8ba676b9eb88455631ebceec4c829a8374a583410dc735472ab9808bf11339fcd074633c3fa30e420901b894d8a92ffd5e2e21eddd41149546e05a91f69 - languageName: node - linkType: hard - "hey-listen@npm:^1.0.8": version: 1.0.8 resolution: "hey-listen@npm:1.0.8" @@ -21084,9 +21441,9 @@ __metadata: linkType: hard "http-parser-js@npm:>=0.5.1": - version: 0.5.9 - resolution: "http-parser-js@npm:0.5.9" - checksum: 10c0/25aac1096b5270e69b1f6c850c8d4363c1e8b5711f97109cf65d44ecf5dfe3438811036a9b4d4f432474a2519ac46e8feb1a7b6be6e292a956e63bdad12583fb + version: 0.5.10 + resolution: "http-parser-js@npm:0.5.10" + checksum: 10c0/8bbcf1832a8d70b2bd515270112116333add88738a2cc05bfb94ba6bde3be4b33efee5611584113818d2bcf654fdc335b652503be5a6b4c0b95e46f214187d93 languageName: node linkType: hard @@ -21112,8 +21469,8 @@ __metadata: linkType: hard "http-proxy-middleware@npm:*": - version: 3.0.3 - resolution: "http-proxy-middleware@npm:3.0.3" + version: 3.0.5 + resolution: "http-proxy-middleware@npm:3.0.5" dependencies: "@types/http-proxy": "npm:^1.17.15" debug: "npm:^4.3.6" @@ -21121,13 +21478,13 @@ __metadata: is-glob: "npm:^4.0.3" is-plain-object: "npm:^5.0.0" micromatch: "npm:^4.0.8" - checksum: 10c0/c4d68a10d8d42f02e59f7dc8249c98d1ac03aecee177b42c2d8b6a0cb6b71c6688e759e5387f4cdb570150070ca1c6808b38010cbdf67f4500a2e75671a36e05 + checksum: 10c0/89ff3c8fe65b22b8042a6173ae1b8f77c5171f7eecf3c8b5d6dcffe3c9d688acae7bcf498cc08d1525f566dc0781efaec4e2ddc49224b1f16f020de7987a446b languageName: node linkType: hard "http-proxy-middleware@npm:^2.0.0, http-proxy-middleware@npm:^2.0.6, http-proxy-middleware@npm:^2.0.7": - version: 2.0.7 - resolution: "http-proxy-middleware@npm:2.0.7" + version: 2.0.9 + resolution: "http-proxy-middleware@npm:2.0.9" dependencies: "@types/http-proxy": "npm:^1.17.8" http-proxy: "npm:^1.18.1" @@ -21139,7 +21496,7 @@ __metadata: peerDependenciesMeta: "@types/express": optional: true - checksum: 10c0/8d00a61eb215b83826460b07489d8bb095368ec16e02a9d63e228dcf7524e7c20d61561e5476de1391aecd4ec32ea093279cdc972115b311f8e0a95a24c9e47e + checksum: 10c0/8e9032af625f7c9f2f0d318f6cdb14eb725cc16ffe7b4ccccea25cf591fa819bb7c3bb579e0b543e0ae9c73059b505a6d728290c757bff27bae526a6ed11c05e languageName: node linkType: hard @@ -21485,8 +21842,8 @@ __metadata: linkType: hard "ioredis@npm:^5.4.1": - version: 5.6.0 - resolution: "ioredis@npm:5.6.0" + version: 5.6.1 + resolution: "ioredis@npm:5.6.1" dependencies: "@ioredis/commands": "npm:^1.1.1" cluster-key-slot: "npm:^1.1.0" @@ -21497,7 +21854,7 @@ __metadata: redis-errors: "npm:^1.2.0" redis-parser: "npm:^3.0.0" standard-as-callback: "npm:^2.1.0" - checksum: 10c0/a885e5146640fc448706871290ef424ffa39af561f7ee3cf1590085209a509f85e99082bdaaf3cd32fa66758aea3fc2055d1109648ddca96fac4944bf2092c30 + checksum: 10c0/26ae49cf448e807e454a9bdea5a9dfdcf669e2fdbf2df341900a0fb693c5662fea7e39db3227ce8972d1bda0ba7da9b7410e5163b12d8878a579548d847220ac languageName: node linkType: hard @@ -22121,12 +22478,12 @@ __metadata: linkType: hard "isomorphic-dompurify@npm:^2.14.0": - version: 2.22.0 - resolution: "isomorphic-dompurify@npm:2.22.0" + version: 2.24.0 + resolution: "isomorphic-dompurify@npm:2.24.0" dependencies: - dompurify: "npm:^3.2.4" - jsdom: "npm:^26.0.0" - checksum: 10c0/d26000d4015994b04e03901698720f1db7d619d7b880bd47ee6d0265129be849b1ad0b7bb175b5b60153e77396394c356df5ebb083309084904dac0b0ee1f606 + dompurify: "npm:^3.2.5" + jsdom: "npm:^26.1.0" + checksum: 10c0/0db27a48c848f05ce71bde779eead660defdf844993073fd4eaf66ae81039a0e69989f3ff4ce1d357c82f427d7018c6fc406ed6a42bab0fc93bbaab9aaccaa7e languageName: node linkType: hard @@ -22929,14 +23286,13 @@ __metadata: languageName: node linkType: hard -"jsdom@npm:^26.0.0": - version: 26.0.0 - resolution: "jsdom@npm:26.0.0" +"jsdom@npm:^26.1.0": + version: 26.1.0 + resolution: "jsdom@npm:26.1.0" dependencies: cssstyle: "npm:^4.2.1" data-urls: "npm:^5.0.0" - decimal.js: "npm:^10.4.3" - form-data: "npm:^4.0.1" + decimal.js: "npm:^10.5.0" html-encoding-sniffer: "npm:^4.0.0" http-proxy-agent: "npm:^7.0.2" https-proxy-agent: "npm:^7.0.6" @@ -22946,12 +23302,12 @@ __metadata: rrweb-cssom: "npm:^0.8.0" saxes: "npm:^6.0.0" symbol-tree: "npm:^3.2.4" - tough-cookie: "npm:^5.0.0" + tough-cookie: "npm:^5.1.1" w3c-xmlserializer: "npm:^5.0.0" webidl-conversions: "npm:^7.0.0" whatwg-encoding: "npm:^3.1.1" whatwg-mimetype: "npm:^4.0.0" - whatwg-url: "npm:^14.1.0" + whatwg-url: "npm:^14.1.1" ws: "npm:^8.18.0" xml-name-validator: "npm:^5.0.0" peerDependencies: @@ -22959,7 +23315,7 @@ __metadata: peerDependenciesMeta: canvas: optional: true - checksum: 10c0/e48725ba4027edcfc9bca5799eaec72c6561ecffe3675a8ff87fe9c3541ca4ff9f82b4eff5b3d9c527302da0d859b2f60e9364347a5d42b77f5c76c436c569dc + checksum: 10c0/5b14a5bc32ce077a06fb42d1ab95b1191afa5cbbce8859e3b96831c5143becbbcbf0511d4d4934e922d2901443ced2cdc3b734c1cf30b5f73b3e067ce457d0f4 languageName: node linkType: hard @@ -23384,6 +23740,15 @@ __metadata: languageName: node linkType: hard +"keyv@npm:*, keyv@npm:^5.2.1": + version: 5.3.3 + resolution: "keyv@npm:5.3.3" + dependencies: + "@keyv/serialize": "npm:^1.0.3" + checksum: 10c0/6b9064d061784e80a5dc500453b03cacb099f06fddd0346063519371d563a66771237e04467f3387b60d8a33a3c99864288991274921fb1338c6adf638574924 + languageName: node + linkType: hard + "keyv@npm:^4.5.2, keyv@npm:^4.5.3": version: 4.5.4 resolution: "keyv@npm:4.5.4" @@ -23393,15 +23758,6 @@ __metadata: languageName: node linkType: hard -"keyv@npm:^5.2.1, keyv@npm:^5.3.1": - version: 5.3.2 - resolution: "keyv@npm:5.3.2" - dependencies: - "@keyv/serialize": "npm:^1.0.3" - checksum: 10c0/293ebd052e7889685b8b770b7b4c9047aaafd821f5446b5b5ffa1cc6e9b830ee752f7b2d108bd96e1277c644c89f02a39e09c45159a6cb87663e183c4405989a - languageName: node - linkType: hard - "kind-of@npm:^6.0.2": version: 6.0.3 resolution: "kind-of@npm:6.0.3" @@ -23935,9 +24291,9 @@ __metadata: linkType: hard "long@npm:^5.0.0, long@npm:^5.2.1": - version: 5.3.1 - resolution: "long@npm:5.3.1" - checksum: 10c0/8726994c6359bb7162fb94563e14c3f9c0f0eeafd90ec654738f4f144a5705756d36a873c442f172ee2a4b51e08d14ab99765b49aa1fb994c5ba7fe12057bca2 + version: 5.3.2 + resolution: "long@npm:5.3.2" + checksum: 10c0/7130fe1cbce2dca06734b35b70d380ca3f70271c7f8852c922a7c62c86c4e35f0c39290565eca7133c625908d40e126ac57c02b1b1a4636b9457d77e1e60b981 languageName: node linkType: hard @@ -24173,11 +24529,11 @@ __metadata: linkType: hard "markdown-to-jsx@npm:^7.4.1": - version: 7.7.4 - resolution: "markdown-to-jsx@npm:7.7.4" + version: 7.7.6 + resolution: "markdown-to-jsx@npm:7.7.6" peerDependencies: react: ">= 0.14.0" - checksum: 10c0/692323e3cb5573ecce5f1f40c3b1a8d67bca40f2b4907ec266c23e7dffa2dcab466f738ea6569f8a5e6234ddcdccacbfeeb97b5e2f647b94bf29fa441f0083be + checksum: 10c0/be645e0e07cc54e52f2f934c879b10459e33a83f2592d8d7c03eb9ef2c91cdbd777f667040b3d15a5f6fb3b3d77fb7b3428d49e90573581eb85a21011533ee67 languageName: node linkType: hard @@ -25148,7 +25504,7 @@ __metadata: languageName: node linkType: hard -"mkdirp@npm:^1.0.3": +"mkdirp@npm:^1.0.3, mkdirp@npm:^1.0.4": version: 1.0.4 resolution: "mkdirp@npm:1.0.4" bin: @@ -25167,8 +25523,8 @@ __metadata: linkType: hard "mockttp@npm:^3.13.0": - version: 3.17.0 - resolution: "mockttp@npm:3.17.0" + version: 3.17.1 + resolution: "mockttp@npm:3.17.1" dependencies: "@graphql-tools/schema": "npm:^8.5.0" "@graphql-tools/utils": "npm:^8.8.0" @@ -25214,7 +25570,7 @@ __metadata: ws: "npm:^8.8.0" bin: mockttp: dist/admin/admin-bin.js - checksum: 10c0/617d0178a109d25dc20b3d00c113a2fb1b6ec2d661420cdf02de47f766fb89bdda843d45db60d9adbf128e6abde2f3819a028feab7f1759a465ab25e790531ec + checksum: 10c0/76d0bdf48c055b5e79e652aab8f20fdae3879da27c6699ccea0dbc93d33d5b7d2eaac57b57cdbd6e2247a5d16382172bfeed6bc435fbb0fcb23c86a8ff62adcc languageName: node linkType: hard @@ -25314,7 +25670,7 @@ __metadata: languageName: node linkType: hard -"multer@npm:^1.4.5-lts.1": +"multer@npm:^1.4.5-lts.2": version: 1.4.5-lts.2 resolution: "multer@npm:1.4.5-lts.2" dependencies: @@ -25349,8 +25705,8 @@ __metadata: linkType: hard "mysql2@npm:^3.0.0": - version: 3.14.0 - resolution: "mysql2@npm:3.14.0" + version: 3.14.1 + resolution: "mysql2@npm:3.14.1" dependencies: aws-ssl-profiles: "npm:^1.1.1" denque: "npm:^2.1.0" @@ -25361,7 +25717,7 @@ __metadata: named-placeholders: "npm:^1.1.3" seq-queue: "npm:^0.0.5" sqlstring: "npm:^2.3.2" - checksum: 10c0/d11d21339bb02283cc69fad73cf8fa7ba116a2f2a559f68ec8deadd3a9642344e5be0dda6dd76af490c5f8fe13948903465e3419960180a757fd8fa68fc29653 + checksum: 10c0/e535629ee98b96366abcdd26774af18cc062e2b9c2bea94cb7e6af85ed49321b0d347c77e432a3d7776de973817298c1bcafe8a822cd34a2a9ddf616e7c36eba languageName: node linkType: hard @@ -25910,10 +26266,10 @@ __metadata: languageName: node linkType: hard -"oauth4webapi@npm:^3.3.1": - version: 3.3.2 - resolution: "oauth4webapi@npm:3.3.2" - checksum: 10c0/943de6db201e94dd0d99c38aed5c48c28c5f6161a18fc4126d46165e2e12af15191826d0cd6cd40a6da4c8258e6cd7db1de051deec810187a1cdd2588ff52249 +"oauth4webapi@npm:^3.4.1": + version: 3.5.0 + resolution: "oauth4webapi@npm:3.5.0" + checksum: 10c0/383a98ccd7423cd3f0c4f288b206731c85ec2f606a8700ec4094e977b668fc06756dd6ff37420143799b26c13e84e662ea02ceb32ea8c7c2d476eed809361d13 languageName: node linkType: hard @@ -25990,7 +26346,7 @@ __metadata: languageName: node linkType: hard -"object.entries@npm:^1.1.8": +"object.entries@npm:^1.1.9": version: 1.1.9 resolution: "object.entries@npm:1.1.9" dependencies: @@ -26147,14 +26503,14 @@ __metadata: linkType: hard "open@npm:^10.0.3, open@npm:^10.1.0": - version: 10.1.0 - resolution: "open@npm:10.1.0" + version: 10.1.1 + resolution: "open@npm:10.1.1" dependencies: default-browser: "npm:^5.2.1" define-lazy-prop: "npm:^3.0.0" is-inside-container: "npm:^1.0.0" is-wsl: "npm:^3.1.0" - checksum: 10c0/c86d0b94503d5f735f674158d5c5d339c25ec2927562f00ee74590727292ed23e1b8d9336cb41ffa7e1fa4d3641d29b199b4ea37c78cb557d72b511743e90ebb + checksum: 10c0/27706de0a8015fcfa9454394984f726f47aba10f33b1a16eda8d7d3604a01c39b2372638b068401dffd9826dca689947480062742b116ff76e0970c39a5e25c6 languageName: node linkType: hard @@ -26231,12 +26587,12 @@ __metadata: linkType: hard "openid-client@npm:^6.1.3": - version: 6.3.4 - resolution: "openid-client@npm:6.3.4" + version: 6.4.2 + resolution: "openid-client@npm:6.4.2" dependencies: jose: "npm:^6.0.10" - oauth4webapi: "npm:^3.3.1" - checksum: 10c0/b5c09956e64ac39e1c0820aa816e3628740e1ab7224a3a19f06d7c703659f06287ea5f96d278f29e5b5784478f444c0eb67a6f64518fbe7f0fe3a635c13f88a9 + oauth4webapi: "npm:^3.4.1" + checksum: 10c0/a291933d571c1b2904c65f142ef79737094c31594a58a237df4813abe315385981122b668d5a6dc44bb0e079e1fe6dd6a3d974814bd9f75f8be08dac91cd227e languageName: node linkType: hard @@ -26543,11 +26899,11 @@ __metadata: linkType: hard "parse-path@npm:^7.0.0": - version: 7.0.1 - resolution: "parse-path@npm:7.0.1" + version: 7.1.0 + resolution: "parse-path@npm:7.1.0" dependencies: protocols: "npm:^2.0.0" - checksum: 10c0/687804bbd216bf45f3942a5a0a3cd74da0eb9cdaf40d32020fa05a590b3c84c985bab0dc18cb13569db4cf3294c560d3a657be06698c323b32423210e488164b + checksum: 10c0/8c8c8b3019323d686e7b1cd6fd9653bc233404403ad68827836fbfe59dfe26aaef64ed4e0396d0e20c4a7e1469312ec969a679618960e79d5e7c652dc0da5a0f languageName: node linkType: hard @@ -26561,11 +26917,11 @@ __metadata: linkType: hard "parse5@npm:^7.0.0, parse5@npm:^7.1.1, parse5@npm:^7.2.1": - version: 7.2.1 - resolution: "parse5@npm:7.2.1" + version: 7.3.0 + resolution: "parse5@npm:7.3.0" dependencies: - entities: "npm:^4.5.0" - checksum: 10c0/829d37a0c709215a887e410a7118d754f8e1afd7edb529db95bc7bbf8045fb0266a7b67801331d8e8d9d073ea75793624ec27ce9ff3b96862c3b9008f4d68e80 + entities: "npm:^6.0.0" + checksum: 10c0/7fd2e4e247e85241d6f2a464d0085eed599a26d7b0a5233790c49f53473232eb85350e8133344d9b3fd58b89339e7ad7270fe1f89d28abe50674ec97b87f80b5 languageName: node linkType: hard @@ -26864,10 +27220,10 @@ __metadata: languageName: node linkType: hard -"pg-cloudflare@npm:^1.1.1": - version: 1.1.1 - resolution: "pg-cloudflare@npm:1.1.1" - checksum: 10c0/a68b957f755be6af813d68ccaf4c906a000fd2ecb362cd281220052cc9e2f6c26da3b88792742387008c30b3bf0d2fa3a0eff04aeb8af4414023c99ae78e07bd +"pg-cloudflare@npm:^1.2.5": + version: 1.2.5 + resolution: "pg-cloudflare@npm:1.2.5" + checksum: 10c0/48b9105ef027c7b3f57ef88ceaec3634cd82120059bd68273cce06989a1ec547e0b0fbb5d1afdd0711824f409c8b410f9bdec2f6c8034728992d3658c0b36f86 languageName: node linkType: hard @@ -26878,10 +27234,10 @@ __metadata: languageName: node linkType: hard -"pg-connection-string@npm:^2.3.0, pg-connection-string@npm:^2.7.0": - version: 2.7.0 - resolution: "pg-connection-string@npm:2.7.0" - checksum: 10c0/50a1496a1c858f9495d78a2c7a66d93ef3602e718aff2953bb5738f3ea616d7f727f32fc20513c9bed127650cd14c1ddc7b458396f4000e689d4b64c65c5c51e +"pg-connection-string@npm:^2.3.0, pg-connection-string@npm:^2.8.5": + version: 2.8.5 + resolution: "pg-connection-string@npm:2.8.5" + checksum: 10c0/5f65afc9dfc99ecf1583a1699c97511f3d505659c9c6a91db8cd0ffe862caa29060722712a034abd6da493356567261febf18b3a6ef223d0a219f0d50d959b97 languageName: node linkType: hard @@ -26899,19 +27255,19 @@ __metadata: languageName: node linkType: hard -"pg-pool@npm:^3.8.0": - version: 3.8.0 - resolution: "pg-pool@npm:3.8.0" +"pg-pool@npm:^3.9.6": + version: 3.9.6 + resolution: "pg-pool@npm:3.9.6" peerDependencies: pg: ">=8.0" - checksum: 10c0/c05287b0caafeab43807e6ad22d153c09c473dbeb5b2cea13b83102376e9a56f46b91fa9adf9d53885ce198280c6a95555390987c42b3858d1936d3e0cdc83aa + checksum: 10c0/458d50a4e7260977f076472d40d0796fa8b513af7e3ce1bf65557e10724e9c13653661c883f6650dff92d0a1a5ff4e7a001a8262b786c1ad4cfbd35c3354353e languageName: node linkType: hard -"pg-protocol@npm:^1.8.0": - version: 1.8.0 - resolution: "pg-protocol@npm:1.8.0" - checksum: 10c0/2be784955599d84b564795952cee52cc2b8eab0be43f74fc1061506353801e282c1d52c9e0691a9b72092c1f3fde370e9b181e80fef6bb82a9b8d1618bfa91e6 +"pg-protocol@npm:^1.9.5": + version: 1.9.5 + resolution: "pg-protocol@npm:1.9.5" + checksum: 10c0/5cb3444cf973adadd22ee9ea26bb1674f0d980ef8f9c66d426bbe67fc9cb5f0ca4a204bf7e432b3ab2ab59ac8227f4b18ab3b2e64eaed537e037e916991c7319 languageName: node linkType: hard @@ -26929,13 +27285,13 @@ __metadata: linkType: hard "pg@npm:^8.11.3": - version: 8.14.1 - resolution: "pg@npm:8.14.1" + version: 8.15.6 + resolution: "pg@npm:8.15.6" dependencies: - pg-cloudflare: "npm:^1.1.1" - pg-connection-string: "npm:^2.7.0" - pg-pool: "npm:^3.8.0" - pg-protocol: "npm:^1.8.0" + pg-cloudflare: "npm:^1.2.5" + pg-connection-string: "npm:^2.8.5" + pg-pool: "npm:^3.9.6" + pg-protocol: "npm:^1.9.5" pg-types: "npm:^2.1.0" pgpass: "npm:1.x" peerDependencies: @@ -26946,7 +27302,7 @@ __metadata: peerDependenciesMeta: pg-native: optional: true - checksum: 10c0/221741cfcea4ab32c8b57bd60703bc36cfb5622dcac56c19e45f504ef8669f2f2e0429af8850f58079cfc89055da35b5a5e12de19e0505e3f61a4b4349388dcb + checksum: 10c0/d4dc81020ebd137b6cf6228e43c643067acb8240079a07f7b9a7e97be0f33ad4d8c6f2a3f5b512ad87180e3d48e651fbd72885aa807ab58a715da8f3efea0fab languageName: node linkType: hard @@ -27098,27 +27454,27 @@ __metadata: languageName: node linkType: hard -"playwright-core@npm:1.51.1": - version: 1.51.1 - resolution: "playwright-core@npm:1.51.1" +"playwright-core@npm:1.52.0": + version: 1.52.0 + resolution: "playwright-core@npm:1.52.0" bin: playwright-core: cli.js - checksum: 10c0/4f004d9dea5ecbd76b84c858fa4880ed955600b6cda972a3e8093ea47e150ce20bf2ea806e73e740497d34f4b61b080c208339a661fc75ad04d8f00bedcc21e0 + checksum: 10c0/640945507e6ca2144e9f596b2a6ecac042c2fd3683ff99e6271e9a7b38f3602d415f282609d569456f66680aab8b3c5bb1b257d8fb63a7fc0ed648261110421f languageName: node linkType: hard -"playwright@npm:1.51.1": - version: 1.51.1 - resolution: "playwright@npm:1.51.1" +"playwright@npm:1.52.0": + version: 1.52.0 + resolution: "playwright@npm:1.52.0" dependencies: fsevents: "npm:2.3.2" - playwright-core: "npm:1.51.1" + playwright-core: "npm:1.52.0" dependenciesMeta: fsevents: optional: true bin: playwright: cli.js - checksum: 10c0/2aea553b8b1086ee419e72c9d4f4117686e6bdb5e09e0f47dfe563ce0f0bd79c4ee79dd9c8a0f023a2fb7803b81d4fdc552887410d16c036be07f21ab72b3f46 + checksum: 10c0/2c6edf1e15e59bbaf77f3fa0fe0ac975793c17cff835d9c8b8bc6395a3b6f1c01898b3058ab37891b2e4d424bcc8f1b4844fe70d943e0143d239d7451408c579 languageName: node linkType: hard @@ -27156,12 +27512,12 @@ __metadata: linkType: hard "portfinder@npm:^1.0.32": - version: 1.0.35 - resolution: "portfinder@npm:1.0.35" + version: 1.0.37 + resolution: "portfinder@npm:1.0.37" dependencies: async: "npm:^3.2.6" debug: "npm:^4.3.6" - checksum: 10c0/bdc3653bf7f8e6f83464812fba8cb26abdb1a7d3d4977199f6edd857a1697c829d5ac4342b626590619efbbddc9916a1847145812d32bb0d2457ee6e895f9082 + checksum: 10c0/eabd2764ced7bb0e6da7a1382bb77f9531309f7782fb6169021d05eecff0c0a17958bcf87573047a164dd0bb23f294d5d74b08ffe58c47005c28ed92eea9a6a7 languageName: node linkType: hard @@ -27792,6 +28148,26 @@ __metadata: languageName: node linkType: hard +"proper-lockfile@npm:^4.1.2": + version: 4.1.2 + resolution: "proper-lockfile@npm:4.1.2" + dependencies: + graceful-fs: "npm:^4.2.4" + retry: "npm:^0.12.0" + signal-exit: "npm:^3.0.2" + checksum: 10c0/2f265dbad15897a43110a02dae55105c04d356ec4ed560723dcb9f0d34bc4fb2f13f79bb930e7561be10278e2314db5aca2527d5d3dcbbdee5e6b331d1571f6d + languageName: node + linkType: hard + +"properties-reader@npm:^2.3.0": + version: 2.3.0 + resolution: "properties-reader@npm:2.3.0" + dependencies: + mkdirp: "npm:^1.0.4" + checksum: 10c0/f665057e3a9076c643ba1198afcc71703eda227a59913252f7ff9467ece8d29c0cf8bf14bf1abcaef71570840c32a4e257e6c39b7550451bbff1a777efcf5667 + languageName: node + linkType: hard + "property-expr@npm:^2.0.5": version: 2.0.6 resolution: "property-expr@npm:2.0.6" @@ -27825,8 +28201,8 @@ __metadata: linkType: hard "protobufjs@npm:^7.2.5, protobufjs@npm:^7.2.6, protobufjs@npm:^7.3.2, protobufjs@npm:^7.4.0": - version: 7.4.0 - resolution: "protobufjs@npm:7.4.0" + version: 7.5.0 + resolution: "protobufjs@npm:7.5.0" dependencies: "@protobufjs/aspromise": "npm:^1.1.2" "@protobufjs/base64": "npm:^1.1.2" @@ -27840,7 +28216,7 @@ __metadata: "@protobufjs/utf8": "npm:^1.1.0" "@types/node": "npm:>=13.7.0" long: "npm:^5.0.0" - checksum: 10c0/a5460a63fe596523b9a067cbce39a6b310d1a71750fda261f076535662aada97c24450e18c5bc98a27784f70500615904ff1227e1742183509f0db4fdede669b + checksum: 10c0/21ae56998d04e31ef7f58f49ccf6cd307f06b6257fee8b53016418176a2a03083f781c42907762bfdf632f425b5cd9707bc3f23aa73a9a774292e1b7190e3689 languageName: node linkType: hard @@ -28315,11 +28691,11 @@ __metadata: linkType: hard "react-hook-form@npm:^7.12.2": - version: 7.55.0 - resolution: "react-hook-form@npm:7.55.0" + version: 7.56.1 + resolution: "react-hook-form@npm:7.56.1" peerDependencies: react: ^16.8.0 || ^17 || ^18 || ^19 - checksum: 10c0/9cff0da58d8223dd14e01ac83688e3546edc42cfa557974b6f2f09922ee051e4713fd53abb69c7a815bf3600142a14186b977d69d438da32f63475a8ecf6b452 + checksum: 10c0/26eafd54bf47167628e34c2f22ea27ea7bdd5b4231a56af5be31ccedfb2a721708b308026ea4a17f2fb15c7b5fff83c0feb4acc7aa07bd6faa8506e917810cab languageName: node linkType: hard @@ -28760,6 +29136,13 @@ __metadata: languageName: node linkType: hard +"readdirp@npm:^4.0.1": + version: 4.1.2 + resolution: "readdirp@npm:4.1.2" + checksum: 10c0/60a14f7619dec48c9c850255cd523e2717001b0e179dc7037cfa0895da7b9e9ab07532d324bfb118d73a710887d1e35f79c495fa91582784493e085d18c72c62 + languageName: node + linkType: hard + "readdirp@npm:~3.6.0": version: 3.6.0 resolution: "readdirp@npm:3.6.0" @@ -28925,6 +29308,13 @@ __metadata: languageName: node linkType: hard +"regex-parser@npm:^2.3.1": + version: 2.3.1 + resolution: "regex-parser@npm:2.3.1" + checksum: 10c0/a256f79c8b465e6765eb65799417200f8ee81f68cc202cc5563a02713e61ad51f6280672f8edee072ef37c5301a90f8d1a71cefb6ec3ed2ca0d1d88587286219 + languageName: node + linkType: hard + "regexp.prototype.flags@npm:^1.5.1, regexp.prototype.flags@npm:^1.5.3": version: 1.5.4 resolution: "regexp.prototype.flags@npm:1.5.4" @@ -29412,29 +29802,29 @@ __metadata: linkType: hard "rollup@npm:^4.27.3": - version: 4.39.0 - resolution: "rollup@npm:4.39.0" - dependencies: - "@rollup/rollup-android-arm-eabi": "npm:4.39.0" - "@rollup/rollup-android-arm64": "npm:4.39.0" - "@rollup/rollup-darwin-arm64": "npm:4.39.0" - "@rollup/rollup-darwin-x64": "npm:4.39.0" - "@rollup/rollup-freebsd-arm64": "npm:4.39.0" - "@rollup/rollup-freebsd-x64": "npm:4.39.0" - "@rollup/rollup-linux-arm-gnueabihf": "npm:4.39.0" - "@rollup/rollup-linux-arm-musleabihf": "npm:4.39.0" - "@rollup/rollup-linux-arm64-gnu": "npm:4.39.0" - "@rollup/rollup-linux-arm64-musl": "npm:4.39.0" - "@rollup/rollup-linux-loongarch64-gnu": "npm:4.39.0" - "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.39.0" - "@rollup/rollup-linux-riscv64-gnu": "npm:4.39.0" - "@rollup/rollup-linux-riscv64-musl": "npm:4.39.0" - "@rollup/rollup-linux-s390x-gnu": "npm:4.39.0" - "@rollup/rollup-linux-x64-gnu": "npm:4.39.0" - "@rollup/rollup-linux-x64-musl": "npm:4.39.0" - "@rollup/rollup-win32-arm64-msvc": "npm:4.39.0" - "@rollup/rollup-win32-ia32-msvc": "npm:4.39.0" - "@rollup/rollup-win32-x64-msvc": "npm:4.39.0" + version: 4.40.1 + resolution: "rollup@npm:4.40.1" + dependencies: + "@rollup/rollup-android-arm-eabi": "npm:4.40.1" + "@rollup/rollup-android-arm64": "npm:4.40.1" + "@rollup/rollup-darwin-arm64": "npm:4.40.1" + "@rollup/rollup-darwin-x64": "npm:4.40.1" + "@rollup/rollup-freebsd-arm64": "npm:4.40.1" + "@rollup/rollup-freebsd-x64": "npm:4.40.1" + "@rollup/rollup-linux-arm-gnueabihf": "npm:4.40.1" + "@rollup/rollup-linux-arm-musleabihf": "npm:4.40.1" + "@rollup/rollup-linux-arm64-gnu": "npm:4.40.1" + "@rollup/rollup-linux-arm64-musl": "npm:4.40.1" + "@rollup/rollup-linux-loongarch64-gnu": "npm:4.40.1" + "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.40.1" + "@rollup/rollup-linux-riscv64-gnu": "npm:4.40.1" + "@rollup/rollup-linux-riscv64-musl": "npm:4.40.1" + "@rollup/rollup-linux-s390x-gnu": "npm:4.40.1" + "@rollup/rollup-linux-x64-gnu": "npm:4.40.1" + "@rollup/rollup-linux-x64-musl": "npm:4.40.1" + "@rollup/rollup-win32-arm64-msvc": "npm:4.40.1" + "@rollup/rollup-win32-ia32-msvc": "npm:4.40.1" + "@rollup/rollup-win32-x64-msvc": "npm:4.40.1" "@types/estree": "npm:1.0.7" fsevents: "npm:~2.3.2" dependenciesMeta: @@ -29482,7 +29872,7 @@ __metadata: optional: true bin: rollup: dist/bin/rollup - checksum: 10c0/2dc0c23ca04bd00295035b405c977261559aed8acc9902ee9ff44e4a6b54734fcb64999c32143c43804dcb543da7983032831b893a902633b006c21848a093ce + checksum: 10c0/11c44b5ef9b3fd521c5501b3f1c36af4ca07821aeff41d41f45336eee324d8f5b46c1a92189f5c8cd146bc21ac10418d57cb4571637ea09aced1ae831a2a4ae0 languageName: node linkType: hard @@ -29687,15 +30077,15 @@ __metadata: languageName: node linkType: hard -"schema-utils@npm:^4.0.0, schema-utils@npm:^4.2.0, schema-utils@npm:^4.3.0": - version: 4.3.0 - resolution: "schema-utils@npm:4.3.0" +"schema-utils@npm:^4.0.0, schema-utils@npm:^4.2.0, schema-utils@npm:^4.3.0, schema-utils@npm:^4.3.2": + version: 4.3.2 + resolution: "schema-utils@npm:4.3.2" dependencies: "@types/json-schema": "npm:^7.0.9" ajv: "npm:^8.9.0" ajv-formats: "npm:^2.1.1" ajv-keywords: "npm:^5.1.0" - checksum: 10c0/c23f0fa73ef71a01d4a2bb7af4c91e0d356ec640e071aa2d06ea5e67f042962bb7ac7c29a60a295bb0125878801bc3209197a2b8a833dd25bd38e37c3ed21427 + checksum: 10c0/981632f9bf59f35b15a9bcdac671dd183f4946fe4b055ae71a301e66a9797b95e5dd450de581eb6cca56fb6583ce8f24d67b2d9f8e1b2936612209697f6c277e languageName: node linkType: hard @@ -29764,7 +30154,7 @@ __metadata: languageName: node linkType: hard -"semver@npm:^7.3.2, semver@npm:^7.3.5, semver@npm:^7.3.8, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0": +"semver@npm:^7.3.2, semver@npm:^7.3.5, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0": version: 7.7.1 resolution: "semver@npm:7.7.1" bin: @@ -29773,6 +30163,15 @@ __metadata: languageName: node linkType: hard +"semver@npm:^7.3.8": + version: 7.7.2 + resolution: "semver@npm:7.7.2" + bin: + semver: bin/semver.js + checksum: 10c0/aca305edfbf2383c22571cb7714f48cadc7ac95371b4b52362fb8eeffdfbc0de0669368b82b2b15978f8848f01d7114da65697e56cd8c37b0dab8c58e543f9ea + languageName: node + linkType: hard + "send@npm:0.19.0": version: 0.19.0 resolution: "send@npm:0.19.0" @@ -29972,13 +30371,13 @@ __metadata: languageName: node linkType: hard -"short-unique-id@npm:^5.0.2": - version: 5.2.2 - resolution: "short-unique-id@npm:5.2.2" +"short-unique-id@npm:=5.2.0": + version: 5.2.0 + resolution: "short-unique-id@npm:5.2.0" bin: short-unique-id: bin/short-unique-id suid: bin/short-unique-id - checksum: 10c0/2ff27cd772e13a370dae4de174ad503770caf7fefa6cfffcc9e52f4fe5bed2cbe07ab5683d5846c6b3b554d4036785d94b877ce09db26e22912e22de35d40772 + checksum: 10c0/fb5f2d11bf38c3a2de629caaa55de858b4e1c0b02399b9c42afa1ef05e5203ae6e3ab5b11449b56c68d04d74f76515a778780afd7d16742b340d77d2967498f1 languageName: node linkType: hard @@ -30071,6 +30470,17 @@ __metadata: languageName: node linkType: hard +"simple-git@npm:^3.27.0": + version: 3.27.0 + resolution: "simple-git@npm:3.27.0" + dependencies: + "@kwsites/file-exists": "npm:^1.1.1" + "@kwsites/promise-deferred": "npm:^1.1.1" + debug: "npm:^4.3.5" + checksum: 10c0/ef56cabea585377d3e0ca30e4e93447f465d91f23eaf751693cc31f366b5f7636facf52ad5bcd598bfdf295fa60732e7a394303d378995b52e2d221d92e5f9f4 + languageName: node + linkType: hard + "simple-swizzle@npm:^0.2.2": version: 0.2.2 resolution: "simple-swizzle@npm:0.2.2" @@ -30326,7 +30736,17 @@ __metadata: languageName: node linkType: hard -"ssh2@npm:^1.11.0, ssh2@npm:^1.15.0": +"ssh-remote-port-forward@npm:^1.0.4": + version: 1.0.4 + resolution: "ssh-remote-port-forward@npm:1.0.4" + dependencies: + "@types/ssh2": "npm:^0.5.48" + ssh2: "npm:^1.4.0" + checksum: 10c0/33a441af12817577ea30d089b03c19f980d2fb2370933123a35026dc6be40f2dfce067e4dfc173e23d745464537ff647aa1bb7469be5571cc21f7cdb25181c09 + languageName: node + linkType: hard + +"ssh2@npm:^1.11.0, ssh2@npm:^1.15.0, ssh2@npm:^1.4.0": version: 1.16.0 resolution: "ssh2@npm:1.16.0" dependencies: @@ -31003,16 +31423,16 @@ __metadata: linkType: hard "swagger-client@npm:^3.34.4": - version: 3.34.4 - resolution: "swagger-client@npm:3.34.4" + version: 3.35.0 + resolution: "swagger-client@npm:3.35.0" dependencies: "@babel/runtime-corejs3": "npm:^7.22.15" "@scarf/scarf": "npm:=1.4.0" - "@swagger-api/apidom-core": "npm:>=1.0.0-beta.13 <1.0.0-rc.0" - "@swagger-api/apidom-error": "npm:>=1.0.0-beta.13 <1.0.0-rc.0" - "@swagger-api/apidom-json-pointer": "npm:>=1.0.0-beta.13 <1.0.0-rc.0" - "@swagger-api/apidom-ns-openapi-3-1": "npm:>=1.0.0-beta.13 <1.0.0-rc.0" - "@swagger-api/apidom-reference": "npm:>=1.0.0-beta.13 <1.0.0-rc.0" + "@swagger-api/apidom-core": "npm:>=1.0.0-beta.31 <1.0.0-rc.0" + "@swagger-api/apidom-error": "npm:>=1.0.0-beta.31 <1.0.0-rc.0" + "@swagger-api/apidom-json-pointer": "npm:>=1.0.0-beta.31 <1.0.0-rc.0" + "@swagger-api/apidom-ns-openapi-3-1": "npm:>=1.0.0-beta.31 <1.0.0-rc.0" + "@swagger-api/apidom-reference": "npm:>=1.0.0-beta.31 <1.0.0-rc.0" "@swaggerexpert/cookie": "npm:^2.0.2" deepmerge: "npm:~4.3.0" fast-json-patch: "npm:^3.0.0-1" @@ -31024,13 +31444,13 @@ __metadata: openapi-server-url-templating: "npm:^1.3.0" ramda: "npm:^0.30.1" ramda-adjunct: "npm:^5.1.0" - checksum: 10c0/95a8df0c8a51b4bbdc540e8a65474f8aa99e950531dd672be82c214e6d1a9817a6a60a94d2f69db03095bcfc84defb07d1af3c842ad21487bf8a3fa6463d010b + checksum: 10c0/c77936516075f407409ee46feafcb59e61a51a5bf2e1a88da143abefcf917e01ec01dd69b064e472a4060022cf09338df4e42de7c8060ae1be8e6e40f4e08f8a languageName: node linkType: hard "swagger-ui-react@npm:^5.0.0": - version: 5.20.3 - resolution: "swagger-ui-react@npm:5.20.3" + version: 5.21.0 + resolution: "swagger-ui-react@npm:5.21.0" dependencies: "@babel/runtime-corejs3": "npm:^7.26.10" "@scarf/scarf": "npm:=1.4.0" @@ -31068,7 +31488,7 @@ __metadata: peerDependencies: react: ">=16.8.0 <19" react-dom: ">=16.8.0 <19" - checksum: 10c0/d88cfc2012f7baafa6838f1cc6f2e27458e6ac62c9c79ae2880b6faf37c419664fe5c06b0e7775f2664507799ceabf7b67e60fcb12cde1dc98708c5187b00e23 + checksum: 10c0/4ee784c1c08cbbb9ded2bb6bb574f7a71ea1826bb593db9c1825cd4bc66a645a8496399af36c78e95839a7b6b830121325597438d01d92c094ee106de5521686 languageName: node linkType: hard @@ -31275,6 +31695,29 @@ __metadata: languageName: node linkType: hard +"testcontainers@npm:^10.0.0": + version: 10.24.2 + resolution: "testcontainers@npm:10.24.2" + dependencies: + "@balena/dockerignore": "npm:^1.0.2" + "@types/dockerode": "npm:^3.3.35" + archiver: "npm:^7.0.1" + async-lock: "npm:^1.4.1" + byline: "npm:^5.0.0" + debug: "npm:^4.3.5" + docker-compose: "npm:^0.24.8" + dockerode: "npm:^4.0.5" + get-port: "npm:^7.1.0" + proper-lockfile: "npm:^4.1.2" + properties-reader: "npm:^2.3.0" + ssh-remote-port-forward: "npm:^1.0.4" + tar-fs: "npm:^3.0.7" + tmp: "npm:^0.2.3" + undici: "npm:^5.28.5" + checksum: 10c0/36e220b64c3313682d4ec955f09e66a209d5258354393d6f6fd7662ac63de293948ecde495d5ae8a8f17c1f6fa17855790168f5baadcd91ffff512b9ff1e3df3 + languageName: node + linkType: hard + "text-decoder@npm:^1.1.0": version: 1.2.3 resolution: "text-decoder@npm:1.2.3" @@ -31298,6 +31741,13 @@ __metadata: languageName: node linkType: hard +"textextensions@npm:^5.16.0": + version: 5.16.0 + resolution: "textextensions@npm:5.16.0" + checksum: 10c0/bc90dc60272c3ffb76eeff86dc1decab9535ba8da6a00efe2a005763d0305cb445db9ac35970538c59b89bf41820c3d19394f46c6b7346d520b9ae16fe47be80 + languageName: node + linkType: hard + "thenify-all@npm:^1.0.0": version: 1.6.0 resolution: "thenify-all@npm:1.6.0" @@ -31400,30 +31850,30 @@ __metadata: linkType: hard "tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.9": - version: 0.2.12 - resolution: "tinyglobby@npm:0.2.12" + version: 0.2.13 + resolution: "tinyglobby@npm:0.2.13" dependencies: - fdir: "npm:^6.4.3" + fdir: "npm:^6.4.4" picomatch: "npm:^4.0.2" - checksum: 10c0/7c9be4fd3625630e262dcb19015302aad3b4ba7fc620f269313e688f2161ea8724d6cb4444baab5ef2826eb6bed72647b169a33ec8eea37501832a2526ff540f + checksum: 10c0/ef07dfaa7b26936601d3f6d999f7928a4d1c6234c5eb36896bb88681947c0d459b7ebe797022400e555fe4b894db06e922b95d0ce60cb05fd827a0a66326b18c languageName: node linkType: hard -"tldts-core@npm:^6.1.85": - version: 6.1.85 - resolution: "tldts-core@npm:6.1.85" - checksum: 10c0/f028759b361bef86d3dd8dbaaa010b4c3aca236ec7ba097658b9a595243bb34c98206e410cc3631055af6ed34012f5da7e9af2c4e38e218d5fc693df6ab3da33 +"tldts-core@npm:^6.1.86": + version: 6.1.86 + resolution: "tldts-core@npm:6.1.86" + checksum: 10c0/8133c29375f3f99f88fce5f4d62f6ecb9532b106f31e5423b27c1eb1b6e711bd41875184a456819ceaed5c8b94f43911b1ad57e25c6eb86e1fc201228ff7e2af languageName: node linkType: hard "tldts@npm:^6.1.32": - version: 6.1.85 - resolution: "tldts@npm:6.1.85" + version: 6.1.86 + resolution: "tldts@npm:6.1.86" dependencies: - tldts-core: "npm:^6.1.85" + tldts-core: "npm:^6.1.86" bin: tldts: bin/cli.js - checksum: 10c0/83bc222046f36a9ca071b662e3272bb1e98e849fa4bddfab0a3eba8804a4a539b02bcbe55e1277fe713de6677e55104da2ef9a54d006c642b6e9f26c7595d5aa + checksum: 10c0/27ae7526d9d78cb97b2de3f4d102e0b4321d1ccff0648a7bb0e039ed54acbce86bacdcd9cd3c14310e519b457854e7bafbef1f529f58a1e217a737ced63f0940 languageName: node linkType: hard @@ -31445,7 +31895,7 @@ __metadata: languageName: node linkType: hard -"tmp@npm:^0.2.0": +"tmp@npm:^0.2.0, tmp@npm:^0.2.3": version: 0.2.3 resolution: "tmp@npm:0.2.3" checksum: 10c0/3e809d9c2f46817475b452725c2aaa5d11985cf18d32a7a970ff25b568438e2c076c2e8609224feef3b7923fa9749b74428e3e634f6b8e520c534eef2fd24125 @@ -31525,7 +31975,7 @@ __metadata: languageName: node linkType: hard -"tough-cookie@npm:^5.0.0": +"tough-cookie@npm:^5.1.1": version: 5.1.2 resolution: "tough-cookie@npm:5.1.2" dependencies: @@ -31544,11 +31994,11 @@ __metadata: linkType: hard "tr46@npm:^5.1.0": - version: 5.1.0 - resolution: "tr46@npm:5.1.0" + version: 5.1.1 + resolution: "tr46@npm:5.1.1" dependencies: punycode: "npm:^2.3.1" - checksum: 10c0/d761f7144e0cb296187674ef245c74f761e334d7cf25ca73ef60e4c72c097c75051031c093fa1a2fee04b904977b316716a7915854bcae8fb1a371746513cbe8 + checksum: 10c0/ae270e194d52ec67ebd695c1a42876e0f19b96e4aca2ab464ab1d9d17dc3acd3e18764f5034c93897db73421563be27c70c98359c4501136a497e46deda5d5ec languageName: node linkType: hard @@ -32111,10 +32561,19 @@ __metadata: languageName: node linkType: hard +"undici@npm:^5.28.5": + version: 5.29.0 + resolution: "undici@npm:5.29.0" + dependencies: + "@fastify/busboy": "npm:^2.0.0" + checksum: 10c0/e4e4d631ca54ee0ad82d2e90e7798fa00a106e27e6c880687e445cc2f13b4bc87c5eba2a88c266c3eecffb18f26e227b778412da74a23acc374fca7caccec49b + languageName: node + linkType: hard + "undici@npm:^7.2.3, undici@npm:^7.3.0": - version: 7.7.0 - resolution: "undici@npm:7.7.0" - checksum: 10c0/2e535e56b5d462337e0dc57012659dab016a2596bc23dd44637c2b81b6947eb236c3390ccc9293f399032d363474f66cf836bc5ee14889fbcf820fa42181c629 + version: 7.8.0 + resolution: "undici@npm:7.8.0" + checksum: 10c0/7141f63ea405208a88120d211d83d77bf21327b16b451d3149fb266c28884fbcf78ec370ac2d3412a0e68ba6132ab85265ba85a2f4fde24cb47dc77f5c5a158c languageName: node linkType: hard @@ -32902,11 +33361,12 @@ __metadata: linkType: hard "webpack@npm:^5.94.0": - version: 5.98.0 - resolution: "webpack@npm:5.98.0" + version: 5.99.7 + resolution: "webpack@npm:5.99.7" dependencies: "@types/eslint-scope": "npm:^3.7.7" "@types/estree": "npm:^1.0.6" + "@types/json-schema": "npm:^7.0.15" "@webassemblyjs/ast": "npm:^1.14.1" "@webassemblyjs/wasm-edit": "npm:^1.14.1" "@webassemblyjs/wasm-parser": "npm:^1.14.1" @@ -32923,7 +33383,7 @@ __metadata: loader-runner: "npm:^4.2.0" mime-types: "npm:^2.1.27" neo-async: "npm:^2.6.2" - schema-utils: "npm:^4.3.0" + schema-utils: "npm:^4.3.2" tapable: "npm:^2.1.1" terser-webpack-plugin: "npm:^5.3.11" watchpack: "npm:^2.4.1" @@ -32933,7 +33393,7 @@ __metadata: optional: true bin: webpack: bin/webpack.js - checksum: 10c0/bee4fa77f444802f0beafb2ff30eb5454a606163ad7d3cc9a5dcc9d24033c62407bed04601b25dea49ea3969b352c1b530a86c753246f42560a4a084eefb094e + checksum: 10c0/e121880d921d5500e9dd61c3428f5d8dca4786c559e7f37488173186447cd22079be677d470a4db1643febf8031b9be900f501c9b95ba94ffe3d2065ad486d31 languageName: node linkType: hard @@ -32997,7 +33457,7 @@ __metadata: languageName: node linkType: hard -"whatwg-url@npm:^14.0.0, whatwg-url@npm:^14.1.0": +"whatwg-url@npm:^14.0.0, whatwg-url@npm:^14.1.1": version: 14.2.0 resolution: "whatwg-url@npm:14.2.0" dependencies: @@ -33277,13 +33737,13 @@ __metadata: linkType: hard "xml-crypto@npm:^6.0.1": - version: 6.0.1 - resolution: "xml-crypto@npm:6.0.1" + version: 6.1.2 + resolution: "xml-crypto@npm:6.1.2" dependencies: "@xmldom/is-dom-node": "npm:^1.0.1" "@xmldom/xmldom": "npm:^0.8.10" xpath: "npm:^0.0.33" - checksum: 10c0/608121007ddc50e7e0e23c1305af1dba5e449ff79ab3d0ecfb034a8072896f47bc082d377d7ef13c4ee82137f64cd1b5dde1d2f8eecea59fda55a04c1b080d0a + checksum: 10c0/70c19a0d721df6fbc967c09636d2c9ed5fa49309cb8a1ed740f6a4bebdcee76c6988d32fd2a338f3122aa112ac67842a638b2913347496c937c2167f0c9d3ed0 languageName: node linkType: hard @@ -33438,7 +33898,7 @@ __metadata: languageName: node linkType: hard -"yaml@npm:^2.0.0, yaml@npm:^2.2.1, yaml@npm:^2.7.0": +"yaml@npm:^2.0.0, yaml@npm:^2.2.1, yaml@npm:^2.2.2, yaml@npm:^2.7.0": version: 2.7.1 resolution: "yaml@npm:2.7.1" bin: @@ -33605,10 +34065,10 @@ __metadata: languageName: node linkType: hard -"zod@npm:^3.22.4, zod@npm:^3.23.8": - version: 3.24.2 - resolution: "zod@npm:3.24.2" - checksum: 10c0/c638c7220150847f13ad90635b3e7d0321b36cce36f3fc6050ed960689594c949c326dfe2c6fa87c14b126ee5d370ccdebd6efb304f41ef5557a4aaca2824565 +"zod@npm:^3.22.4, zod@npm:^3.23.8, zod@npm:^3.24.2": + version: 3.24.3 + resolution: "zod@npm:3.24.3" + checksum: 10c0/ab0369810968d0329a1a141e9418e01e5c9c2a4905cbb7cb7f5a131d6e9487596e1400e21eeff24c4a8ee28dacfa5bd6103893765c055b7a98c2006a5a4fc68d languageName: node linkType: hard From 35e2bacc4bd0228b607744a9767350e1a3e8cae0 Mon Sep 17 00:00:00 2001 From: hpeters Date: Wed, 21 May 2025 13:10:55 +0200 Subject: [PATCH 2/5] Advanced Import Flows: BW5 System --- .gitignore | 2 + .../entity-skeletons-bw5-system/apis.yaml.njk | 50 ++++ .../component.yaml.njk | 82 +++++++ .../resources.yaml.njk | 39 ++++ .../system.yaml.njk | 51 ++++ .../import-flow-bw5-system.yaml | 220 ++++++++++++++++++ 6 files changed, 444 insertions(+) create mode 100644 tibco-examples/advanced-import-flows/entity-skeletons-bw5-system/apis.yaml.njk create mode 100644 tibco-examples/advanced-import-flows/entity-skeletons-bw5-system/component.yaml.njk create mode 100644 tibco-examples/advanced-import-flows/entity-skeletons-bw5-system/resources.yaml.njk create mode 100644 tibco-examples/advanced-import-flows/entity-skeletons-bw5-system/system.yaml.njk create mode 100644 tibco-examples/advanced-import-flows/import-flow-bw5-system.yaml diff --git a/.gitignore b/.gitignore index 4c618f1..6590a2e 100644 --- a/.gitignore +++ b/.gitignore @@ -68,3 +68,5 @@ environment.sh .idea +# Local environment variables +/.env.yarn diff --git a/tibco-examples/advanced-import-flows/entity-skeletons-bw5-system/apis.yaml.njk b/tibco-examples/advanced-import-flows/entity-skeletons-bw5-system/apis.yaml.njk new file mode 100644 index 0000000..a57e0fe --- /dev/null +++ b/tibco-examples/advanced-import-flows/entity-skeletons-bw5-system/apis.yaml.njk @@ -0,0 +1,50 @@ +# Every WSDL file becomes an API +# +# Debug inputs +# application_folder: ${{ values.application_folder | dump}} +# application: ${{ values.application | dump}} +# bw5_project_name: ${{values.bw5_project_name | dump}} +# bw5_project: ${{ values.bw5_project | dump}} +# bw5_project_name: ${{ values.bw5_project_name | dump}} +# bw5_project_description: ${{ values.bw5_project_description | dump}} +# repoUrl: ${{ values.repoUrl | dump}} +# owner: ${{ values.owner | dump}} +# api_files: ${{ values.api_files | dump}} +# api_files_names: ${{ values.api_files_names | dump}} +# db_files: ${{ values.db_files | dump}} +# db_files_names: ${{ values.db_files_names | dump}} +# process_files: ${{ values.process_files | dump}} +# process_files_names: ${{ values.process_files_names | dump}} + + +{%- if(values.api_files_names.length) %} + {%- for api in values.api_files_names %} + {%- if(api) %} +--- +apiVersion: backstage.io/v1alpha1 +kind: API +metadata: + name: ${{ api | replace(".wsdl", "") }} + description: ${{ 'An API for ' + api | replace(".wsdl", "") }} + tags: + - store + - wsdl + links: + - url: ${{ "https://" + (values.repoUrl | parseRepoUrl).host + "/" + (values.repoUrl | parseRepoUrl).owner + "/" + (values.repoUrl | parseRepoUrl).repo }} + title: GitHub Repo + icon: github + - url: ${{ "https://" + (values.repoUrl | parseRepoUrl).host + "/" + (values.repoUrl | parseRepoUrl).owner + "/" + (values.repoUrl | parseRepoUrl).repo + "/blob/main/" + values.application_folder + "/" + values.application + "/" + values.api_files[loop.index0] }} + title: API Spec + icon: code +spec: + type: wsdl + lifecycle: production + owner: ${{ values.owner }} + system: bw5-projects + # system: ${{values.bw5_project['@_name']}} + apiProvidedBy: ['${{'component:default/' + values.bw5_project['@_name']}}'] + definition: + $text: ${{ "https://" + (values.repoUrl | parseRepoUrl).host + "/" + (values.repoUrl | parseRepoUrl).owner + "/" + (values.repoUrl | parseRepoUrl).repo + "/blob/main/" + values.application_folder + "/" + values.application + "/" + values.api_files[loop.index0] }} + {%- endif %} + {%- endfor %} +{%- endif %} diff --git a/tibco-examples/advanced-import-flows/entity-skeletons-bw5-system/component.yaml.njk b/tibco-examples/advanced-import-flows/entity-skeletons-bw5-system/component.yaml.njk new file mode 100644 index 0000000..03f04a3 --- /dev/null +++ b/tibco-examples/advanced-import-flows/entity-skeletons-bw5-system/component.yaml.njk @@ -0,0 +1,82 @@ +# Every process file becomes a component +# +# Debug inputs +# application_folder: ${{ values.application_folder | dump}} +# application: ${{ values.application | dump}} +# bw5_project_name: ${{values.bw5_project_name | dump}} +# bw5_project: ${{ values.bw5_project | dump}} +# bw5_project_name: ${{ values.bw5_project_name | dump}} +# bw5_project_description: ${{ values.bw5_project_description | dump}} +# repoUrl: ${{ values.repoUrl | dump}} +# owner: ${{ values.owner | dump}} +# api_files: ${{ values.api_files | dump}} +# api_files_names: ${{ values.api_files_names | dump}} +# db_files: ${{ values.db_files | dump}} +# db_files_names: ${{ values.db_files_names | dump}} +# process_files: ${{ values.process_files | dump}} +# process_files_names: ${{ values.process_files_names | dump}} + + +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: ${{values.bw5_project['@_name']}} + description: ${{values.bw5_project['description']}} + tags: + - bw5-project + links: + - title: Business Works 5 + url: https://docs.tibco.com/products/tibco-activematrix-businessworks-5-13-0 + annotations: + github.com/project-slug: ${{ "https://" + (values.repoUrl | parseRepoUrl).host + "/" + (values.repoUrl | parseRepoUrl).owner + "/" + (values.repoUrl | parseRepoUrl).repo }} +spec: + type: service + lifecycle: production + owner: group:default/tibco-imported + system: bw5-projects +{%- if(values.db_files_names.length) %} + dependsOn: + {%- for db in values.db_files_names %} + {%- if(db) %} + - ${{ "resource:default/" + db | replace(".sharedjdbc", "") }} + {%- endif %} + {%- endfor %} +{%- endif %} +{%- if(values.api_files_names.length) %} + providesApi: + {%- for bwapi in values.api_files_names %} + {%- if(bwapi) %} + - ${{ bwapi | replace(".wsdl", "") }} + {%- endif %} + {%- endfor %} +{%- endif %} + + + +{%- if(values.process_files_names.length) %} + {%- for process in values.process_files_names %} + {%- if(process) %} +--- +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: +# name: ${{ process | replace(".process", "") + "_BW5_PROCESS"}} + name: ${{ "BW5_PROCESS_" + process | replace(".process", "") }} + description: ${{ process }} + tags: + - bw5-process + links: + - title: Business Works 5 + url: https://docs.tibco.com/products/tibco-activematrix-businessworks-5-13-0 + annotations: + github.com/project-slug: ${{ "https://" + (values.repoUrl | parseRepoUrl).host + "/" + (values.repoUrl | parseRepoUrl).owner + "/" + (values.repoUrl | parseRepoUrl).repo }} +spec: + type: bw-5-process + lifecycle: production + owner: ${{ values.owner }} + subcomponentOf: ${{'component:default/' + values.bw5_project['@_name']}} + # system: ${{values.bw5_project['@_name']}} + {%- endif %} + {%- endfor %} +{%- endif %} + diff --git a/tibco-examples/advanced-import-flows/entity-skeletons-bw5-system/resources.yaml.njk b/tibco-examples/advanced-import-flows/entity-skeletons-bw5-system/resources.yaml.njk new file mode 100644 index 0000000..4407bc6 --- /dev/null +++ b/tibco-examples/advanced-import-flows/entity-skeletons-bw5-system/resources.yaml.njk @@ -0,0 +1,39 @@ +# Every Database becomes a Resource +# +# Debug inputs +# application_folder: ${{ values.application_folder | dump}} +# application: ${{ values.application | dump}} +# bw5_project_name: ${{values.bw5_project_name | dump}} +# bw5_project: ${{ values.bw5_project | dump}} +# bw5_project_name: ${{ values.bw5_project_name | dump}} +# bw5_project_description: ${{ values.bw5_project_description | dump}} +# repoUrl: ${{ values.repoUrl | dump}} +# owner: ${{ values.owner | dump}} +# api_files: ${{ values.api_files | dump}} +# api_files_names: ${{ values.api_files_names | dump}} +# db_files: ${{ values.db_files | dump}} +# db_files_names: ${{ values.db_files_names | dump}} +# process_files: ${{ values.process_files | dump}} +# process_files_names: ${{ values.process_files_names | dump}} + +{%- if(values.db_files_names.length) %} + {%- for db in values.db_files_names %} + {%- if(db) %} +--- +apiVersion: backstage.io/v1alpha1 +kind: Resource +metadata: +# name: ${{ db | replace(".sharedjdbc", "") + "_DATABASE" }} + name: ${{ db | replace(".sharedjdbc", "") }} + description: ${{ db }} + tags: + - database +spec: + type: database + lifecycle: production + owner: ${{ values.owner }} + # dependencyOf: ${{'component:default/' + values.bw5_project['@_name']}} + # system: ${{values.bw5_project['@_name']}} + {%- endif %} + {%- endfor %} +{%- endif %} diff --git a/tibco-examples/advanced-import-flows/entity-skeletons-bw5-system/system.yaml.njk b/tibco-examples/advanced-import-flows/entity-skeletons-bw5-system/system.yaml.njk new file mode 100644 index 0000000..01e4cce --- /dev/null +++ b/tibco-examples/advanced-import-flows/entity-skeletons-bw5-system/system.yaml.njk @@ -0,0 +1,51 @@ +# Debug inputs +# application_folder: ${{ values.application_folder | dump}} +# application: ${{ values.application | dump}} +# bw5_project_name: ${{values.bw5_project_name | dump}} +# bw5_project: ${{ values.bw5_project | dump}} +# bw5_project_name: ${{ values.bw5_project_name | dump}} +# bw5_project_description: ${{ values.bw5_project_description | dump}} +# repoUrl: ${{ values.repoUrl | dump}} +# owner: ${{ values.owner | dump}} +# api_files: ${{ values.api_files | dump}} +# api_files_names: ${{ values.api_files_names | dump}} +# db_files: ${{ values.db_files | dump}} +# db_files_names: ${{ values.db_files_names | dump}} +# process_files: ${{ values.process_files | dump}} +# process_files_names: ${{ values.process_files_names | dump}} + +apiVersion: backstage.io/v1alpha1 +kind: Group +metadata: + name: BW5-Projects + description: A group for all BW5 Projects +spec: + type: organization + profile: + displayName: BW5 Projects + email: info@acme.com + children: [] +--- +apiVersion: backstage.io/v1alpha1 +kind: Domain +metadata: + name: bw5 + description: BW5 Domain +spec: + owner: group:BW5-Projects +--- +{# We only want 1 BW5 System #} +apiVersion: backstage.io/v1alpha1 +kind: System +metadata: + name: bw5-projects + description: Business Works 5 Projects + annotations: + github.com/project-slug: ${{ "https://" + (values.repoUrl | parseRepoUrl).host + "/" + (values.repoUrl | parseRepoUrl).owner + "/" + (values.repoUrl | parseRepoUrl).repo }} + tags: + - tibco-bw5 + - imported +spec: + owner: group:BW5-Projects + domain: bw5 + diff --git a/tibco-examples/advanced-import-flows/import-flow-bw5-system.yaml b/tibco-examples/advanced-import-flows/import-flow-bw5-system.yaml new file mode 100644 index 0000000..fbe8e42 --- /dev/null +++ b/tibco-examples/advanced-import-flows/import-flow-bw5-system.yaml @@ -0,0 +1,220 @@ +apiVersion: scaffolder.backstage.io/v1beta3 +kind: Template +metadata: + name: import-flow-bw5-system + title: Import flow for BW5 System + description: Import existing BW5 systems into TIBCO Developer Hub + tags: + - import-flow + - tibco + - business-works-5 + - developer-hub +spec: + owner: group:default/tibco-imported + type: integration + + parameters: + - title: Repository Location + required: + - repoUrl + properties: + repoUrl: + title: GitHub repository with Existing BusinessWorks 5 Project + type: string + ui:field: RepoUrlPicker + ui:options: + allowedHosts: + - github.com + + - title: Fill in some steps + required: + - application + - owner + properties: + application_folder: + title: BusinessWorks 5 Application Folder + type: string + description: Folder of BusinessWorks 5 Application to import + application: + title: BusinessWorks 5 Application + type: string + description: Name of the BusinessWorks 5 Application to import + owner: + title: Owner + type: string + description: Owner of the template + ui:field: OwnerPicker + ui:options: + allowedKinds: + - Group + + # The import flow consist out of 4 general steps: + # 1. Fetch the project from GitHub + # 2. Generate the Component YAML + # 3. Commit the Component YAML file back to the GitHub project + # 4. Register the Component in the catalog + + steps: + # Get the repo with the BW5 Soure code + - id: clone + name: Clone the Project + action: tibco:git:clone + input: + repoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo }} + + # Extract the parameters from the BW5 project + - id: extract + name: Extract Parameters + action: tibco:extract-parameters + input: + failOnError: true + extractParameters: + bw5_project: + type: xml + filePath: ${{ parameters.application_folder + "/" + parameters.application + "/.folder"}} + jsonPath: "$['Repository:repository'].folder" + bw5_project_name: + type: xml + filePath: ${{ parameters.application_folder + "/" + parameters.application + "/.folder"}} + jsonPath: "$['Repository:repository'].folder['@_name']" + bw5_project_description: + type: xml + filePath: ${{ parameters.application_folder + "/" + parameters.application + "/.folder"}} + jsonPath: "$['Repository:repository'].folder.description" + api_files: + type: workspace + onlyName: false + directoryPath: ${{ parameters.application_folder + "/" + parameters.application + "/"}} + regex: "(.*).wsdl" + api_files_names: + type: workspace + onlyName: true + directoryPath: ${{ parameters.application_folder + "/" + parameters.application + "/"}} + regex: "(.*).wsdl" + db_files: + type: workspace + onlyName: false + directoryPath: ${{ parameters.application_folder + "/" + parameters.application + "/"}} + regex: "(.*).sharedjdbc" + db_files_names: + type: workspace + onlyName: true + directoryPath: ${{ parameters.application_folder + "/" + parameters.application + "/"}} + regex: "(.*).sharedjdbc" + process_files: + type: workspace + onlyName: false + directoryPath: ${{ parameters.application_folder + "/" + parameters.application + "/"}} + regex: "(.*).process" + process_files_names: + type: workspace + onlyName: true + directoryPath: ${{ parameters.application_folder + "/" + parameters.application + "/"}} + regex: "(.*).process" +# +# # The import flow debug step, enable it for debugging +# - id: log-debug +# name: Debug Logs +# action: debug:log +# input: +# message: "Fetched the bw5 Skeleton template" +# listWorkspace: true +# + - id: fetchRS + name: Resource Skeleton + action: fetch:template + input: + url: ./entity-skeletons-bw5-system/ + targetPath: ${{ parameters.application_folder }} + templateFileExtension: true + values: + application_folder: ${{ parameters.application_folder }} + application: ${{ parameters.application }} + bw5_project: ${{ steps.extract.output.bw5_project[0] }} + bw5_project_name: ${{ steps.extract.output.bw5_project_name[0] }} + bw5_project_description: ${{ steps.extract.output.bw5_project_description[0] }} + repoUrl: ${{ parameters.repoUrl }} + owner: ${{ parameters.owner }} + api_files: ${{ steps.extract.output.api_files }} + api_files_names: ${{ steps.extract.output.api_files_names }} + db_files: ${{ steps.extract.output.db_files }} + db_files_names: ${{ steps.extract.output.db_files_names }} + process_files: ${{ steps.extract.output.process_files }} + process_files_names: ${{ steps.extract.output.process_files_names }} + + # Rename files + - id: rename + name: Rename Descriptor Files + action: fs:rename + input: + files: + - from: ${{ parameters.application_folder + "/system.yaml" }} + to: ${{ parameters.application_folder + "/system-" + parameters.application + ".yaml" }} + overwrite: true + - from: ${{ parameters.application_folder + "/component.yaml" }} + to: ${{ parameters.application_folder + "/components-" + parameters.application + ".yaml" }} + overwrite: true + - from: ${{ parameters.application_folder + "/resources.yaml" }} + to: ${{ parameters.application_folder + "/resources-" + parameters.application + ".yaml" }} + overwrite: true + - from: ${{ parameters.application_folder + "/apis.yaml" }} + to: ${{ parameters.application_folder + "/apis-" + parameters.application + ".yaml" }} + overwrite: true + +# Push the result back into the repository + - id: push + name: Push Current Repo + action: tibco:git:push + +# Register the BW5 System + - id: registerSystem + name: Register System + action: catalog:register + input: + optional: true + catalogInfoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo + "/blob/main/" + parameters.application_folder + "/system-" + parameters.application + ".yaml" }} + +# Register the BW5 Components, Resources and API's + - id: registerComponents + name: Register Components + if: ${{ (steps.extract.output.process_files.length > 0) }} + action: catalog:register + input: + optional: true + catalogInfoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo + "/blob/main/" + parameters.application_folder + "/components-" + parameters.application + ".yaml" }} + + - id: registerResources + name: Register Resources + if: ${{ (steps.extract.output.db_files.length > 0) }} + action: catalog:register + input: + optional: true + catalogInfoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo + "/blob/main/" + parameters.application_folder + "/resources-" + parameters.application + ".yaml" }} + + - id: registerApis + name: Register API's + if: ${{ (steps.extract.output.api_files.length > 0) }} + action: catalog:register + input: + optional: true + catalogInfoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo + "/blob/main/" + parameters.application_folder + "/apis-" + parameters.application + ".yaml" }} + + output: + links: + - title: Business Works 5 Documentation + icon: catalog + url: https://docs.tibco.com/products/tibco-activematrix-businessworks-5-16-1 + - title: Open in catalog (System) + icon: catalog + entityRef: ${{ steps.registerSystem.output.entityRef }} + - title: Open in catalog (Components) + icon: catalog + entityRef: ${{ steps.registerComponents.output.entityRef }} + - title: Open in catalog (Resources) + icon: catalog + entityRef: ${{ steps.registerResources.output.entityRef }} + - title: Open in catalog (API's) + icon: catalog + entityRef: ${{ steps.registerApis.output.entityRef }} + - title: Repository (Pull Request) + url: ${{ steps.cpr.output.remoteUrl }} From edd9b0e9d2df80bbf75d1eb21a83742f3d69902e Mon Sep 17 00:00:00 2001 From: hpeters Date: Wed, 21 May 2025 14:20:53 +0200 Subject: [PATCH 3/5] Advanced Import Flows --- .../entity-skeletons-bw6/component.yaml.njk | 38 ++++ .../entity-skeletons-bw6/system.yaml.njk | 44 ++++ .../entity-skeletons-ems/component.yaml.njk | 34 +++ .../entity-skeletons-ems/resources.yaml.njk | 49 +++++ .../entity-skeletons-ems/system.yaml.njk | 42 ++++ .../entity-skeletons-flogo/apis.yaml.njk | 39 ++++ .../entity-skeletons-flogo/component.yaml.njk | 49 +++++ .../entity-skeletons-flogo/resources.yaml.njk | 63 ++++++ .../import-flow-bw5-system.yaml | 7 +- .../import-flow-bw6.yaml | 176 ++++++++++++++++ .../import-flow-ems-server.yaml | 171 +++++++++++++++ .../import-flow-flogo-ems.yaml | 194 ++++++++++++++++++ 12 files changed, 903 insertions(+), 3 deletions(-) create mode 100644 tibco-examples/advanced-import-flows/entity-skeletons-bw6/component.yaml.njk create mode 100644 tibco-examples/advanced-import-flows/entity-skeletons-bw6/system.yaml.njk create mode 100644 tibco-examples/advanced-import-flows/entity-skeletons-ems/component.yaml.njk create mode 100644 tibco-examples/advanced-import-flows/entity-skeletons-ems/resources.yaml.njk create mode 100644 tibco-examples/advanced-import-flows/entity-skeletons-ems/system.yaml.njk create mode 100644 tibco-examples/advanced-import-flows/entity-skeletons-flogo/apis.yaml.njk create mode 100644 tibco-examples/advanced-import-flows/entity-skeletons-flogo/component.yaml.njk create mode 100644 tibco-examples/advanced-import-flows/entity-skeletons-flogo/resources.yaml.njk create mode 100644 tibco-examples/advanced-import-flows/import-flow-bw6.yaml create mode 100644 tibco-examples/advanced-import-flows/import-flow-ems-server.yaml create mode 100644 tibco-examples/advanced-import-flows/import-flow-flogo-ems.yaml diff --git a/tibco-examples/advanced-import-flows/entity-skeletons-bw6/component.yaml.njk b/tibco-examples/advanced-import-flows/entity-skeletons-bw6/component.yaml.njk new file mode 100644 index 0000000..13e62d1 --- /dev/null +++ b/tibco-examples/advanced-import-flows/entity-skeletons-bw6/component.yaml.njk @@ -0,0 +1,38 @@ +# Debug inputs +# application_folder: ${{ values.application_folder | dump}} +# application: ${{ values.application | dump}} +# bw6_system: ${{ values.bw6_system | dump}} +# bw6_project_name: ${{ values.bw6_project_name | dump}} +# bw6_project_description: ${{ values.bw6_project_description | dump}} +# bw6_project_manifest: ${{ values.bw6_project_manifest | dump}} +# bw6_project_dependencies: ${{ values.bw6_project_dependencies | dump}} +# repoUrl: ${{ values.repoUrl | dump}} +# owner: ${{ values.owner | dump}} +--- +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: ${{ values.bw6_project_name }} +{%- if(values.flogo_project_description) %} + description: ${{ values.bw6_project_description }} +{%- endif %} + tags: + - bw6-project + links: + - title: Business Works 6 + url: https://docs.tibco.com/products/tibco-activematrix-businessworks-6-10-0 + annotations: + github.com/project-slug: ${{ "https://" + (values.repoUrl | parseRepoUrl).host + "/" + (values.repoUrl | parseRepoUrl).owner + "/" + (values.repoUrl | parseRepoUrl).repo }} +spec: + type: bw-6-project + lifecycle: production + owner: ${{ values.owner }} + system: ${{ values.bw6_system }} +{%- if(values.bw6_project_dependencies.length > 2) %} + dependsOn: + {%- for dep in values.bw6_project_dependencies %} + {%- if(dep != "name=bwext" and dep != "name=bw.generalactivities") %} + - ${{ "component:default/" + dep | replace("name=", "") }} + {%- endif %} + {%- endfor %} +{%- endif %} diff --git a/tibco-examples/advanced-import-flows/entity-skeletons-bw6/system.yaml.njk b/tibco-examples/advanced-import-flows/entity-skeletons-bw6/system.yaml.njk new file mode 100644 index 0000000..d07b1c2 --- /dev/null +++ b/tibco-examples/advanced-import-flows/entity-skeletons-bw6/system.yaml.njk @@ -0,0 +1,44 @@ +# Debug inputs +# application_folder: ${{ values.application_folder | dump}} +# application: ${{ values.application | dump}} +# bw6_system: ${{ values.bw6_system | dump}} +# bw6_project_name: ${{ values.bw6_project_name | dump}} +# bw6_project_description: ${{ values.bw6_project_description | dump}} +# bw6_project_manifest: ${{ values.bw6_project_manifest | dump}} +# bw6_project_dependencies: ${{ values.bw6_project_dependencies | dump}} +# repoUrl: ${{ values.repoUrl | dump}} +# owner: ${{ values.owner | dump}} + +apiVersion: backstage.io/v1alpha1 +kind: Group +metadata: + name: BW6-Projects + description: A group for all BW6 Projects +spec: + type: organization + profile: + displayName: BW6 Projects + email: info@acme.com + children: [] +--- +apiVersion: backstage.io/v1alpha1 +kind: Domain +metadata: + name: bw6 + description: BW6 Domain +spec: + owner: group:BW6-Projects +--- +apiVersion: backstage.io/v1alpha1 +kind: System +metadata: + name: ${{values.bw6_system}} + description: ${{values.bw6_system}} + annotations: + github.com/project-slug: ${{ "https://" + (values.repoUrl | parseRepoUrl).host + "/" + (values.repoUrl | parseRepoUrl).owner + "/" + (values.repoUrl | parseRepoUrl).repo }} + tags: + - tibco-bw6 + - imported +spec: + owner: group:BW6-Projects + domain: bw6 diff --git a/tibco-examples/advanced-import-flows/entity-skeletons-ems/component.yaml.njk b/tibco-examples/advanced-import-flows/entity-skeletons-ems/component.yaml.njk new file mode 100644 index 0000000..762abdb --- /dev/null +++ b/tibco-examples/advanced-import-flows/entity-skeletons-ems/component.yaml.njk @@ -0,0 +1,34 @@ +# Debug inputs +# owner: ${{ values.owner | dump}} +# repoUrl: ${{ values.repoUrl | dump}} +# ems_server_name: ${{ values.ems_server_name | dump}} +# ems_server_routes: ${{ values.ems_server_routes | dump}} +# ems_server_topics: ${{ values.ems_server_topics | dump}} +# ems_server_global_topics: ${{ values.ems_server_global_topics | dump}} +# ems_server_queues: ${{ values.ems_server_queues | dump}} + +# An EMS Server becomes a componnent + +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: ${{ values.ems_server_name }} + description: ${{ "EMS Server [" + values.ems_server_name + "]" }} + tags: + - ems-server + links: + - title: TIBCO Enterprise Message Service + url: https://docs.tibco.com/products/tibco-enterprise-message-service-10-3-0 + annotations: + github.com/project-slug: ${{ "https://" + (values.repoUrl | parseRepoUrl).host + "/" + (values.repoUrl | parseRepoUrl).owner + "/" + (values.repoUrl | parseRepoUrl).repo }} +spec: + type: ems-server + lifecycle: production + owner: ${{ values.owner }} + system: EMS-Server-Topology +{%- if(values.ems_server_routes.length) %} + dependsOn: + {%- for route in values.ems_server_routes %} + - ${{ "component:default/" + route }} + {%- endfor %} +{%- endif %} diff --git a/tibco-examples/advanced-import-flows/entity-skeletons-ems/resources.yaml.njk b/tibco-examples/advanced-import-flows/entity-skeletons-ems/resources.yaml.njk new file mode 100644 index 0000000..3f24605 --- /dev/null +++ b/tibco-examples/advanced-import-flows/entity-skeletons-ems/resources.yaml.njk @@ -0,0 +1,49 @@ +# Debug inputs +# owner: ${{ values.owner | dump}} +# repoUrl: ${{ values.repoUrl | dump}} +# ems_server_name: ${{ values.ems_server_name | dump}} +# ems_server_routes: ${{ values.ems_server_routes | dump}} +# ems_server_topics: ${{ values.ems_server_topics | dump}} +# ems_server_global_topics: ${{ values.ems_server_global_topics | dump}} +# ems_server_queues: ${{ values.ems_server_queues | dump}} + + +{%- if(values.ems_server_topics.length) %} + {%- for topic in values.ems_server_topics %} +--- +apiVersion: backstage.io/v1alpha1 +kind: Resource +metadata: + name: ${{ topic + "_TOPIC" }} + description: ${{ "Topic on " + values.ems_server_name }} + tags: + - ems + - ems-topic +spec: + type: ems-topic + lifecycle: production + owner: ${{ values.owner }} +# system: EMS-Server-Topology + dependsOn: ['${{ 'component:default/' + values.ems_server_name }}'] + {%- endfor %} +{%- endif %} + +{%- if(values.ems_server_queues.length) %} + {%- for queue in values.ems_server_queues %} +--- +apiVersion: backstage.io/v1alpha1 +kind: Resource +metadata: + name: ${{ queue | replace("@", "") + "_QUEUE" }} + description: ${{ "Queue on " + values.ems_server_name }} + tags: + - ems + - ems-queue +spec: + type: ems-queue + lifecycle: production + owner: ${{ values.owner }} +# system: EMS-Server-Topology + dependsOn: ['${{ 'component:default/' + values.ems_server_name }}'] + {%- endfor %} +{%- endif %} diff --git a/tibco-examples/advanced-import-flows/entity-skeletons-ems/system.yaml.njk b/tibco-examples/advanced-import-flows/entity-skeletons-ems/system.yaml.njk new file mode 100644 index 0000000..e21c891 --- /dev/null +++ b/tibco-examples/advanced-import-flows/entity-skeletons-ems/system.yaml.njk @@ -0,0 +1,42 @@ +# Debug inputs +# owner: ${{ values.owner | dump}} +# repoUrl: ${{ values.repoUrl | dump}} +# ems_server_name: ${{ values.ems_server_name | dump}} +# ems_server_routes: ${{ values.ems_server_routes | dump}} +# ems_server_topics: ${{ values.ems_server_topics | dump}} +# ems_server_global_topics: ${{ values.ems_server_global_topics | dump}} +# ems_server_queues: ${{ values.ems_server_queues | dump}} + +apiVersion: backstage.io/v1alpha1 +kind: Group +metadata: + name: EMS-Servers + description: A group for all EMS Servers +spec: + type: organization + profile: + displayName: EMS Servers + email: info@acme.com + children: [] +--- +apiVersion: backstage.io/v1alpha1 +kind: Domain +metadata: + name: ems-servers + description: EMS Servers Domain +spec: + owner: group:BW6-Projects +--- +apiVersion: backstage.io/v1alpha1 +kind: System +metadata: + name: EMS-Server-Topology + description: A system for all EMS Servers + annotations: + github.com/project-slug: ${{ "https://" + (values.repoUrl | parseRepoUrl).host + "/" + (values.repoUrl | parseRepoUrl).owner + "/" + (values.repoUrl | parseRepoUrl).repo }} + tags: + - tibco-ems + - imported +spec: + owner: group:EMS-Servers + domain: ems-servers diff --git a/tibco-examples/advanced-import-flows/entity-skeletons-flogo/apis.yaml.njk b/tibco-examples/advanced-import-flows/entity-skeletons-flogo/apis.yaml.njk new file mode 100644 index 0000000..073d278 --- /dev/null +++ b/tibco-examples/advanced-import-flows/entity-skeletons-flogo/apis.yaml.njk @@ -0,0 +1,39 @@ + # Debug inputs + # flogo_project_name: ${{values.flogo_project_name | dump}} + # flogo_project_description: ${{values.flogo_project_description | dump}} + # repoUrl: ${{values.repoUrl | dump}} + # flogo_ems_queue_receivers: ${{values.flogo_ems_queue_receivers | dump}} + # flogo_ems_queue_senders: ${{values.flogo_ems_queue_senders | dump}} + # flogo_task_ids: ${{values.flogo_task_ids | dump}} + # flogo_tasks: ${{values.flogo_tasks | dump}} + # owner: ${{ values.owner | dump}} + # flogo_api_names: ${{ values.flogo_api_names | dump}} + # flogo_api_swagger_b64: ${{ values.flogo_api_swagger_b64 | dump}} + #flogo_api_swagger_triggers: ${{ values.flogo_api_swagger_triggers | dump}} + + + {%- if(values.flogo_api_swagger_triggers.length) %} + {%- for fapi in values.flogo_api_swagger_triggers %} + {%- if(fapi.settings.swagger.filename) and (fapi.settings.swagger.content) %} + apiVersion: backstage.io/v1alpha1 + kind: API + metadata: + name: ${{ fapi.settings.swagger.filename | replace(".json", "") }} + description: ${{ 'An API for ' + fapi.settings.swagger.filename | replace(".json", "") }} + tags: + - store + - rest + links: + - url: https://github.com/TIBCO-Hub-Backstage/tibco-examples + title: GitHub Repo + icon: github + spec: + type: openapi + lifecycle: production + owner: ${{ values.owner }} + apiProvidedBy: ['${{ 'component:default/' + values.flogo_project_name + "_FLOGO_APP"}}'] + definition: | + ${{ fapi.settings.swagger.content | replace("data:application/json;base64,", "") | decodeBase64 | replace("\n", "")}} + {%- endif %} + {%- endfor %} + {%- endif %} diff --git a/tibco-examples/advanced-import-flows/entity-skeletons-flogo/component.yaml.njk b/tibco-examples/advanced-import-flows/entity-skeletons-flogo/component.yaml.njk new file mode 100644 index 0000000..949fac4 --- /dev/null +++ b/tibco-examples/advanced-import-flows/entity-skeletons-flogo/component.yaml.njk @@ -0,0 +1,49 @@ +# Debug inputs +# flogo_project_name: ${{values.flogo_project_name | dump}} +# flogo_project_description: ${{values.flogo_project_description | dump}} +# repoUrl: ${{values.repoUrl | dump}} +# flogo_ems_queue_receivers: ${{values.flogo_ems_queue_receivers | dump}} +# flogo_ems_queue_senders: ${{values.flogo_ems_queue_senders | dump}} +# flogo_task_ids: ${{values.flogo_task_ids | dump}} +# flogo_tasks: ${{values.flogo_tasks | dump}} +# owner: ${{ values.owner | dump}} +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: ${{ values.flogo_project_name + "_FLOGO_APP"}} +{%- if(values.flogo_project_description) %} + description: ${{ values.flogo_project_description }} +{%- endif %} + tags: + - flogo-app + links: + - title: TIBCO Flogo Enterprise + url: https://docs.tibco.com/products/tibco-flogo-enterprise + annotations: + github.com/project-slug: ${{ "https://" + (values.repoUrl | parseRepoUrl).host + "/" + (values.repoUrl | parseRepoUrl).owner + "/" + (values.repoUrl | parseRepoUrl).repo }} +spec: + type: flogo + lifecycle: production + owner: ${{ values.owner }} +{%- if(values.flogo_ems_queue_senders.length) or (values.flogo_ems_queue_receivers.length) %} + dependsOn: +{%- for qsend in values.flogo_ems_queue_senders %} + - ${{ "resource:default/" + qsend + "_EMS_QUEUE" }} + {%- endfor %} +{%- for qres in values.flogo_ems_queue_receivers %} + - ${{ "resource:default/" + qres + "_EMS_QUEUE" }} + {%- endfor %} +{%- endif %} +{%- if(values.flogo_tasks.length) %} + {%- for ftask in values.flogo_tasks %} + - ${{ "resource:default/" + values.flogo_project_name + "_" + ftask.name + "_FLOGO_TASK" }} + {%- endfor %} +{%- endif %} +{%- if(values.flogo_api_swagger_triggers.length) %} + providesApi: + {%- for fapi in values.flogo_api_swagger_triggers %} + {%- if(fapi.settings.swagger.filename) %} + - ${{ fapi.settings.swagger.filename | replace(".json", "") }} + {%- endif %} + {%- endfor %} +{%- endif %} diff --git a/tibco-examples/advanced-import-flows/entity-skeletons-flogo/resources.yaml.njk b/tibco-examples/advanced-import-flows/entity-skeletons-flogo/resources.yaml.njk new file mode 100644 index 0000000..24187fa --- /dev/null +++ b/tibco-examples/advanced-import-flows/entity-skeletons-flogo/resources.yaml.njk @@ -0,0 +1,63 @@ +# Debug inputs +# flogo_project_name: ${{values.flogo_project_name | dump}} +# flogo_project_description: ${{values.flogo_project_description | dump}} +# repoUrl: ${{values.repoUrl | dump}} +# flogo_ems_queue_receivers: ${{values.flogo_ems_queue_receivers | dump}} +# flogo_ems_queue_senders: ${{values.flogo_ems_queue_senders | dump}} +# flogo_task_ids: ${{values.flogo_task_ids | dump}} +# flogo_tasks: ${{values.flogo_tasks | dump}} +# owner: ${{ values.owner | dump}} + +{%- if(values.flogo_tasks.length) %} + {%- for ftask in values.flogo_tasks %} +--- +apiVersion: backstage.io/v1alpha1 +kind: Resource +metadata: + name: ${{ values.flogo_project_name + "_" + ftask.name + "_FLOGO_TASK" }} +{%- if(ftask.description) %} + description: ${{ ftask.description }} +{%- endif %} + tags: + - flogo-task +spec: + type: flogo-task + lifecycle: production + owner: ${{ values.owner }} + dependsOn: ['${{ 'component:default/' + values.flogo_project_name + "_FLOGO_APP"}}'] + {%- endfor %} +{%- endif %} +{%- if(values.flogo_ems_queue_receivers.length) %} + {%- for qres in values.flogo_ems_queue_receivers %} +--- +apiVersion: backstage.io/v1alpha1 +kind: Resource +metadata: + name: ${{ qres + "_EMS_QUEUE" }} + description: ${{ "EMS Queue:" + qres }} + tags: + - ems-queue +spec: + type: ems-queue + lifecycle: production + owner: ${{ values.owner }} + dependsOn: ['${{'component:default/' + values.flogo_project_name + "_FLOGO_APP"}}'] + {%- endfor %} +{%- endif %} +{%- if(values.flogo_ems_queue_senders.length) %} + {%- for qsend in values.flogo_ems_queue_senders %} +--- +apiVersion: backstage.io/v1alpha1 +kind: Resource +metadata: + name: ${{ qsend + "_EMS_QUEUE" }} + description: ${{ "EMS Queue:" + qsend }} + tags: + - ems-queue +spec: + type: ems-queue + lifecycle: production + owner: ${{ values.owner }} + dependsOn: ['${{'component:default/' + values.flogo_project_name + "_FLOGO_APP"}}'] + {%- endfor %} +{%- endif %} diff --git a/tibco-examples/advanced-import-flows/import-flow-bw5-system.yaml b/tibco-examples/advanced-import-flows/import-flow-bw5-system.yaml index fbe8e42..ad49b1f 100644 --- a/tibco-examples/advanced-import-flows/import-flow-bw5-system.yaml +++ b/tibco-examples/advanced-import-flows/import-flow-bw5-system.yaml @@ -55,7 +55,7 @@ spec: # 4. Register the Component in the catalog steps: - # Get the repo with the BW5 Soure code + # Get the repo with the BW5 Source code - id: clone name: Clone the Project action: tibco:git:clone @@ -119,7 +119,8 @@ spec: # input: # message: "Fetched the bw5 Skeleton template" # listWorkspace: true -# + + # Create the Developer Hub YAML Files from the templates, using the input values - id: fetchRS name: Resource Skeleton action: fetch:template @@ -161,7 +162,7 @@ spec: to: ${{ parameters.application_folder + "/apis-" + parameters.application + ".yaml" }} overwrite: true -# Push the result back into the repository +# Push the resulting YAML files back into the repository - id: push name: Push Current Repo action: tibco:git:push diff --git a/tibco-examples/advanced-import-flows/import-flow-bw6.yaml b/tibco-examples/advanced-import-flows/import-flow-bw6.yaml new file mode 100644 index 0000000..04275a4 --- /dev/null +++ b/tibco-examples/advanced-import-flows/import-flow-bw6.yaml @@ -0,0 +1,176 @@ +apiVersion: scaffolder.backstage.io/v1beta3 +kind: Template +metadata: + name: import-flow-bw6 + title: Import flow for BW6/CE projects + description: Import existing BW6/CE projects into TIBCO Developer Hub + tags: + - import-flow + - tibco + - business-works-6 + - business-works-container-edition + - developer-hub + - bwce +spec: + owner: group:default/tibco-imported + type: integration + + parameters: + - title: Repository Location + required: + - repoUrl + properties: + repoUrl: + title: GitHub repository with Existing BusinessWorks 6 Project + type: string + ui:field: RepoUrlPicker + ui:options: + allowedHosts: + - github.com + + - title: Fill in some steps + required: + - application + - owner + properties: + application_folder: + title: BusinessWorks 6 Application Folder + type: string + description: Folder of BusinessWorks 6 Application to import + application: + title: BusinessWorks 6 Application + type: string + description: Name of the BusinessWorks 6 Application to import + system: + title: BusinessWorks 6 System + type: string + description: System of which the BW6 project is part of + owner: + title: Owner + type: string + description: Owner of the template + ui:field: OwnerPicker + ui:options: + allowedKinds: + - Group + + # The import flow consist out of 4 steps: + # 1. Fetch the project from GitHub + # 2. Generate the Component YAML + # 3. Commit the Component YAML file back to the GitHub project branch creating a pull request + # 4. Register the Component in the catalog + + steps: + # Get the repo with the BW6/CE Source code + - id: clone + name: Clone the Project + action: tibco:git:clone + input: + repoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo }} + +# - id: fetch +# name: Fetch project +# action: fetch:plain +# input: +# url: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo }} + + - id: extract + name: Extract Parameters + action: tibco:extract-parameters + input: + failOnError: true + extractParameters: + bw6_project_name: + type: xml + filePath: ${{ parameters.application_folder + "/" + parameters.application + "/.project" }} + jsonPath: "$.projectDescription.name" + bw6_project_description: + type: xml + filePath: ${{ parameters.application_folder + "/" + parameters.application + "/.project"}} + jsonPath: "$.projectDescription.comment" + bw6_project_manifest: + type: file + filePath: ${{ parameters.application_folder + "/" + parameters.application + "/META-INF/MANIFEST.MF" }} + regex: "(.*)(.*)" + bw6_project_dependencies: + type: file + filePath: ${{ parameters.application_folder + "/" + parameters.application + "/META-INF/MANIFEST.MF" }} + regex: + regexPattern: "name=([A-Za-z0-9_\\.]+)" + regexFlags: gm + + + # The import flow debug step, enable it for debugging +# - id: log-debug +# name: Debug Logs +# action: debug:log +# input: +# message: "Fetched the bw6 Skeleton template" +# listWorkspace: false + +# Create the Developer Hub YAML Files from the templates, using the input values + - id: fetchRS + name: Resource Skeleton + action: fetch:template + input: + url: ./entity-skeletons-bw6/ + targetPath: ${{ parameters.application_folder }} + templateFileExtension: true + values: + repoUrl: ${{ parameters.repoUrl }} + owner: ${{ parameters.owner }} + application_folder: ${{ parameters.application_folder }} + application: ${{ parameters.application }} + bw6_system: ${{ parameters.system }} + bw6_project_name: ${{ steps.extract.output.bw6_project_name[0] }} + bw6_project_description: ${{ steps.extract.output.bw6_project_description[0] }} + bw6_project_manifest: ${{ steps.extract.output.bw6_project_manifest }} + bw6_project_dependencies: ${{ steps.extract.output.bw6_project_dependencies }} + + + # Rename files + - id: rename + name: Rename Descriptor Files + action: fs:rename + input: + files: + - from: ${{ parameters.application_folder + "/system.yaml" }} + to: ${{ parameters.application_folder + "/system-" + parameters.application + ".yaml" }} + overwrite: true + - from: ${{ parameters.application_folder + "/component.yaml" }} + to: ${{ parameters.application_folder + "/components-" + parameters.application + ".yaml" }} + overwrite: true + +# Push the resulting YAML files back into the repository + - id: push + name: Push Current Repo + action: tibco:git:push + + # Register the BW6/CE System & Components in the catalog + - id: registerSystem + name: Register System + action: catalog:register + input: + optional: true + catalogInfoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo + "/blob/main/" + parameters.application_folder + "/system-" + parameters.application + ".yaml" }} + + - id: registerComponents + name: Register Components + action: catalog:register + input: + optional: true + catalogInfoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo + "/blob/main/" + parameters.application_folder + "/components-" + parameters.application + ".yaml" }} + + output: + links: + - title: Business Works 6 Documentation + icon: catalog + url: https://docs.tibco.com/products/tibco-activematrix-businessworks-6-10-0 + - title: Open in catalog (System) + icon: catalog + entityRef: ${{ steps.registerSystem.output.entityRef }} + - title: Open in catalog (Components) + icon: catalog + entityRef: ${{ steps.registerComponents.output.entityRef }} + - title: Repository (Pull Request) + url: ${{ steps.cpr.output.remoteUrl }} diff --git a/tibco-examples/advanced-import-flows/import-flow-ems-server.yaml b/tibco-examples/advanced-import-flows/import-flow-ems-server.yaml new file mode 100644 index 0000000..64f55c8 --- /dev/null +++ b/tibco-examples/advanced-import-flows/import-flow-ems-server.yaml @@ -0,0 +1,171 @@ +apiVersion: scaffolder.backstage.io/v1beta3 +kind: Template +metadata: + name: import-flow-ems-server + title: Import flow for EMS Server + description: Import existing EMS Server topologies with routed queues into TIBCO Developer Hub + tags: + - import-flow + - tibco + - template + - developer-hub + - ems +spec: + owner: group:default/tibco-imported + type: messaging + + parameters: + - title: Repository Location + required: + - repoUrl + properties: + repoUrl: + title: GitHub repository with Existing EMS Server Configuration + type: string + ui:field: RepoUrlPicker + ui:options: + allowedHosts: + - github.com + + - title: Fill in some steps + required: + - ems_config_file + - owner + properties: + ems_config_file: + title: EMS Server Configuration File + type: string + description: JSON File with EMS Configuration + owner: + title: Owner + type: string + description: Owner of the template + ui:field: OwnerPicker + ui:options: + allowedKinds: + - Group + + # The import flow consist out of 4 steps: + # 1. Fetch the project from GitHub + # 2. Generate the Component YAML + # 3. Commit the Component YAML file back to the GitHub project branch creating a pull request + # 4. Register the Component in the catalog + + steps: + # Get the repo with the EMS Configuration + - id: clone + name: Clone the Project + action: tibco:git:clone + input: + repoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo }} + + - id: extract + name: Extract Parameters + action: tibco:extract-parameters + input: + failOnError: true + extractParameters: + ems_server_name: + type: json + filePath: ${{ parameters.ems_config_file }} + jsonPath: "$.tibemsd.server" + ems_server_routes: + type: json + filePath: ${{ parameters.ems_config_file }} + jsonPath: "$.routes[*].name" + ems_server_topics: + type: json + filePath: ${{ parameters.ems_config_file }} + jsonPath: "$.topics[*].name" + ems_server_global_topics: + type: json + filePath: ${{ parameters.ems_config_file }} + jsonPath: "$.topics[?(@.global == true)].name" + ems_server_queues: + type: json + filePath: ${{ parameters.ems_config_file }} + jsonPath: "$.queues[*].name" + + # The import flow debug step, enable it for debugging +# - id: log-debug +# name: Debug Logs +# action: debug:log +# input: +# message: "Fetched the EMS Skeleton template" +# listWorkspace: true + + # Create the Developer Hub YAML Files from the templates, using the input values + - id: fetchRS + name: Resource Skeleton + action: fetch:template + input: + url: ./entity-skeletons-ems/ + targetPath: ./tibco-developer-hub-resources + templateFileExtension: true + values: + owner: ${{ parameters.owner }} + repoUrl: ${{ parameters.repoUrl }} + routes: ${{ steps.extract.output.routes }} + ems_server_name: ${{ steps.extract.output.ems_server_name[0] }} + ems_server_routes: ${{ steps.extract.output.ems_server_routes }} + ems_server_topics: ${{ steps.extract.output.ems_server_topics }} + ems_server_global_topics: ${{ steps.extract.output.ems_server_global_topics }} + ems_server_queues: ${{ steps.extract.output.ems_server_queues }} + + # Rename files + - id: rename + name: Rename Descriptor Files + action: fs:rename + input: + files: + - from: "./tibco-developer-hub-resources/system.yaml" + to: ${{ "./tibco-developer-hub-resources/system-" + steps.extract.output.ems_server_name[0] + ".yaml" }} + overwrite: true + - from: "./tibco-developer-hub-resources/component.yaml" + to: ${{ "./tibco-developer-hub-resources/component-" + steps.extract.output.ems_server_name[0] + ".yaml" }} + overwrite: true + - from: "./tibco-developer-hub-resources/resources.yaml" + to: ${{ "./tibco-developer-hub-resources/resources-" + steps.extract.output.ems_server_name[0] + ".yaml" }} + overwrite: true + + # Push the resulting YAML files back into the repository + - id: push + name: Push Current Repo + action: tibco:git:push + +# Register the System, Component & Resources in the catalog + - id: registerSystem + name: Register System + action: catalog:register + input: + optional: true + catalogInfoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo + "/blob/main/tibco-developer-hub-resources/system-" + steps.extract.output.ems_server_name[0] + ".yaml" }} + + - id: registerComponent + name: Register Component + action: catalog:register + input: + optional: true + catalogInfoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo + "/blob/main/tibco-developer-hub-resources/component-" + steps.extract.output.ems_server_name[0] + ".yaml" }} + + - id: registerResources + name: Register Resources + if: ${{ (steps.extract.output.ems_server_topics.length > 0) or (steps.extract.output.ems_server_queues.length > 0) }} + action: catalog:register + input: + optional: true + catalogInfoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo + "/blob/main/tibco-developer-hub-resources/resources-" + steps.extract.output.ems_server_name[0] + ".yaml" }} + + output: + links: + - title: Open in catalog (System) + icon: catalog + entityRef: ${{ steps.registerSystem.output.entityRef }} + - title: Open in catalog (Component) + icon: catalog + entityRef: ${{ steps.registerComponent.output.entityRef }} + - title: Open in catalog (Resources) + icon: catalog + entityRef: ${{ steps.registerResources.output.entityRef }} + - title: Repository (Pull Request) + url: ${{ steps.cpr.output.remoteUrl }} diff --git a/tibco-examples/advanced-import-flows/import-flow-flogo-ems.yaml b/tibco-examples/advanced-import-flows/import-flow-flogo-ems.yaml new file mode 100644 index 0000000..e555662 --- /dev/null +++ b/tibco-examples/advanced-import-flows/import-flow-flogo-ems.yaml @@ -0,0 +1,194 @@ +apiVersion: scaffolder.backstage.io/v1beta3 +kind: Template +metadata: + name: import-flow-flogo-ems + title: Import flow for Flogo projects with EMS + description: Import existing Flogo projects, connected to EMS, into TIBCO Developer Hub + tags: + - import-flow + - tibco + - template + - developer-hub +spec: + owner: group:default/tibco-imported + type: messaging + + parameters: + - title: Repository Location + required: + - repoUrl + properties: + repoUrl: + title: GitHub repository with Existing Flogo Project + type: string + ui:field: RepoUrlPicker + ui:options: + allowedHosts: + - github.com + + - title: Fill in some steps + required: + - application + - owner + properties: + application_folder: + title: Flogo Application Folder + type: string + description: Folder of Flogo Application to import + application: + title: Flogo Application + type: string + description: Name of the Flogo Application to import + owner: + title: Owner + type: string + description: Owner of the template + ui:field: OwnerPicker + ui:options: + allowedKinds: + - Group + + # The import flow consist out of 4 steps: + # 1. Fetch the project from GitHub + # 2. Generate the Component YAML + # 3. Commit the Component YAML file back to the GitHub project branch creating a pull request + # 4. Register the Component in the catalog + + steps: + # Get the repo with the Flogo/EMS source code + - id: clone + name: Clone the Project + action: tibco:git:clone + input: + repoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo }} + + - id: extract + name: Extract Parameters + action: tibco:extract-parameters + input: + failOnError: true + extractParameters: + flogo_project_name: + type: json + filePath: ${{ parameters.application_folder + "/" + parameters.application }} + jsonPath: $.name + flogo_project_description: + type: json + filePath: ${{ parameters.application_folder + "/" + parameters.application }} + jsonPath: $.description + flogo_ems_queue_receivers: + type: json + filePath: ${{ parameters.application_folder + "/" + parameters.application }} + jsonPath: "$.triggers[?(@.ref == '#receivemessage')].handlers[?(@.settings.destinationType == 'Queue')].settings.destination" + flogo_ems_queue_senders: + type: json + filePath: ${{ parameters.application_folder + "/" + parameters.application }} + jsonPath: "$.resources[*].data.tasks[?(@.activity.ref == '#sendmessage' && @.activity.settings.destinationType == 'Queue' )].activity.settings.settingDestination" + flogo_task_ids: + type: json + filePath: ${{ parameters.application_folder + "/" + parameters.application }} + jsonPath: "$.resources[*].data.tasks[*].id" + flogo_tasks: + type: json + filePath: ${{ parameters.application_folder + "/" + parameters.application }} + jsonPath: "$.resources[*].data.tasks[*]" + flogo_api_names: + type: json + filePath: ${{ parameters.application_folder + "/" + parameters.application }} + jsonPath: "$.triggers[?(@.ref == '#rest')].settings.swagger.filename" + flogo_api_swagger_b64: + type: json + filePath: ${{ parameters.application_folder + "/" + parameters.application }} + jsonPath: "$.triggers[?(@.ref == '#rest')].settings.swagger.content" + flogo_api_swagger_triggers: + type: json + filePath: ${{ parameters.application_folder + "/" + parameters.application }} + jsonPath: "$.triggers[?(@.ref == '#rest')]" + + # The import flow debug step, enable it for debugging +# - id: log-debug +# name: Debug Logs +# action: debug:log +# input: +# message: "Fetched the Flogo Skeleton template" +# listWorkspace: true + + # Create the Developer Hub YAML Files from the templates, using the input values + - id: fetchRS + name: Resource Skeleton + action: fetch:template + input: + url: ./entity-skeletons-flogo/ + targetPath: ${{ parameters.application_folder }} + templateFileExtension: true + values: + flogo_project_name: ${{ steps.extract.output.flogo_project_name[0] }} + flogo_project_description: ${{ steps.extract.output.flogo_project_description[0] }} + repoUrl: ${{ parameters.repoUrl }} + flogo_ems_queue_receivers: ${{ steps.extract.output.flogo_ems_queue_receivers }} + flogo_ems_queue_senders: ${{ steps.extract.output.flogo_ems_queue_senders }} + flogo_task_ids: ${{ steps.extract.output.flogo_task_ids }} + flogo_tasks: ${{ steps.extract.output.flogo_tasks }} + owner: ${{ parameters.owner }} + flogo_api_names: ${{ steps.extract.output.flogo_api_names }} + flogo_api_swagger_b64: ${{ steps.extract.output.flogo_api_swagger_b64 }} + flogo_api_swagger_triggers: ${{ steps.extract.output.flogo_api_swagger_triggers }} + + + # Rename files + - id: rename + name: Rename Descriptor Files + action: fs:rename + input: + files: + - from: ${{ parameters.application_folder + "/component.yaml" }} + to: ${{ parameters.application_folder + "/component-" + parameters.application + ".yaml" }} + overwrite: true + - from: ${{ parameters.application_folder + "/resources.yaml" }} + to: ${{ parameters.application_folder + "/resources-" + parameters.application + ".yaml" }} + overwrite: true + - from: ${{ parameters.application_folder + "/apis.yaml" }} + to: ${{ parameters.application_folder + "/apis-" + parameters.application + ".yaml" }} + overwrite: true + + # Push the resulting YAML files back into the repository + - id: push + name: Push Current Repo + action: tibco:git:push + +# Register the Component, Resources & API's in the catalog + - id: registerComponent + name: Register Component + action: catalog:register + input: + optional: true + catalogInfoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo + "/blob/main/" + parameters.application_folder + "/component-" + parameters.application + ".yaml" }} + + - id: registerResources + name: Register Resources + if: ${{ (steps.extract.output.flogo_ems_queue_receivers.length > 0) or (steps.extract.output.flogo_ems_queue_senders.length > 0) }} + action: catalog:register + input: + optional: true + catalogInfoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo + "/blob/main/" + parameters.application_folder + "/resources-" + parameters.application + ".yaml" }} + + - id: registerAPIs + name: Register APIs + action: catalog:register + input: + optional: true + catalogInfoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo + "/blob/main/" + parameters.application_folder + "/apis-" + parameters.application + ".yaml" }} + + output: + links: + - title: Open in catalog (Component) + icon: catalog + entityRef: ${{ steps.registerComponent.output.entityRef }} + - title: Open in catalog (Resources) + icon: catalog + entityRef: ${{ steps.registerResources.output.entityRef }} + - title: Open in catalog (APIs) + icon: catalog + entityRef: ${{ steps.registerAPIs.output.entityRef }} + - title: Repository (Pull Request) + url: ${{ steps.cpr.output.remoteUrl }} From d7e3ca52969ed19c0d6f54b3599d75e17b64b936 Mon Sep 17 00:00:00 2001 From: hpeters Date: Wed, 21 May 2025 15:16:33 +0200 Subject: [PATCH 4/5] Advanced Import Flows (fail on error) --- .../advanced-import-flows/import-flow-bw5-system.yaml | 3 +++ .../advanced-import-flows/import-flow-bw6.yaml | 9 +++------ .../advanced-import-flows/import-flow-ems-server.yaml | 3 +++ .../advanced-import-flows/import-flow-flogo-ems.yaml | 4 ++++ 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/tibco-examples/advanced-import-flows/import-flow-bw5-system.yaml b/tibco-examples/advanced-import-flows/import-flow-bw5-system.yaml index ad49b1f..0e2b36d 100644 --- a/tibco-examples/advanced-import-flows/import-flow-bw5-system.yaml +++ b/tibco-examples/advanced-import-flows/import-flow-bw5-system.yaml @@ -60,6 +60,7 @@ spec: name: Clone the Project action: tibco:git:clone input: + failOnError: true repoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo }} # Extract the parameters from the BW5 project @@ -166,6 +167,8 @@ spec: - id: push name: Push Current Repo action: tibco:git:push + input: + failOnError: true # Register the BW5 System - id: registerSystem diff --git a/tibco-examples/advanced-import-flows/import-flow-bw6.yaml b/tibco-examples/advanced-import-flows/import-flow-bw6.yaml index 04275a4..8be90c4 100644 --- a/tibco-examples/advanced-import-flows/import-flow-bw6.yaml +++ b/tibco-examples/advanced-import-flows/import-flow-bw6.yaml @@ -66,14 +66,9 @@ spec: name: Clone the Project action: tibco:git:clone input: + failOnError: true repoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo }} -# - id: fetch -# name: Fetch project -# action: fetch:plain -# input: -# url: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo }} - - id: extract name: Extract Parameters action: tibco:extract-parameters @@ -145,6 +140,8 @@ spec: - id: push name: Push Current Repo action: tibco:git:push + input: + failOnError: true # Register the BW6/CE System & Components in the catalog - id: registerSystem diff --git a/tibco-examples/advanced-import-flows/import-flow-ems-server.yaml b/tibco-examples/advanced-import-flows/import-flow-ems-server.yaml index 64f55c8..f28b1d7 100644 --- a/tibco-examples/advanced-import-flows/import-flow-ems-server.yaml +++ b/tibco-examples/advanced-import-flows/import-flow-ems-server.yaml @@ -57,6 +57,7 @@ spec: name: Clone the Project action: tibco:git:clone input: + failOnError: true repoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo }} - id: extract @@ -132,6 +133,8 @@ spec: - id: push name: Push Current Repo action: tibco:git:push + input: + failOnError: true # Register the System, Component & Resources in the catalog - id: registerSystem diff --git a/tibco-examples/advanced-import-flows/import-flow-flogo-ems.yaml b/tibco-examples/advanced-import-flows/import-flow-flogo-ems.yaml index e555662..710390d 100644 --- a/tibco-examples/advanced-import-flows/import-flow-flogo-ems.yaml +++ b/tibco-examples/advanced-import-flows/import-flow-flogo-ems.yaml @@ -60,8 +60,10 @@ spec: name: Clone the Project action: tibco:git:clone input: + failOnError: true repoUrl: ${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo }} + - id: extract name: Extract Parameters action: tibco:extract-parameters @@ -155,6 +157,8 @@ spec: - id: push name: Push Current Repo action: tibco:git:push + input: + failOnError: true # Register the Component, Resources & API's in the catalog - id: registerComponent From a73a5cb3793a37a7d6d3979c8ea173893d5e9785 Mon Sep 17 00:00:00 2001 From: sgantaya Date: Fri, 23 May 2025 01:05:57 +0530 Subject: [PATCH 5/5] Added missing examples for scaffolder custom actions and filters added in 1.7.0 --- packages/app/src/index.css | 2 +- .../tibco-import/create-yaml.examples.ts | 71 +++++++++++++++ .../extract-parameters.examples.ts | 87 ++++++++++++++++++- .../package.json | 1 + .../actions/tibco-git/git-clone.examples.ts | 41 +++++++++ .../src/actions/tibco-git/git-clone.ts | 3 + .../actions/tibco-git/git-push.examples.ts | 39 +++++++++ .../src/actions/tibco-git/git-push.ts | 3 + yarn.lock | 10 +++ 9 files changed, 252 insertions(+), 5 deletions(-) create mode 100644 plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-clone.examples.ts create mode 100644 plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-push.examples.ts diff --git a/packages/app/src/index.css b/packages/app/src/index.css index 1fbdff6..8a44272 100644 --- a/packages/app/src/index.css +++ b/packages/app/src/index.css @@ -2,7 +2,7 @@ * Copyright (c) 2023-2025. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary */ -@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap'); +@import '@fontsource/source-sans-pro'; @import './themes/styles/button.css'; body { /* You will need to configure the Source Sans Pro font */ diff --git a/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/create-yaml.examples.ts b/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/create-yaml.examples.ts index 6f665cc..b0c3b54 100644 --- a/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/create-yaml.examples.ts +++ b/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/create-yaml.examples.ts @@ -48,4 +48,75 @@ export const examples: TemplateExample[] = [ ], }), }, + { + description: + 'Create yaml file with example outputStructure accepting multiple catalog entity as array', + example: yaml.stringify({ + steps: [ + { + action: 'tibco:create-yaml', + name: 'Create yaml file with multiple catalog entity', + input: { + failOnError: true, + sourcePath: '', + outputFile: '', + outputStructure: [ + { + apiVersion: 'backstage.io/v1alpha1', + kind: 'Component1 (You can change this to any TIBCO Developer Hub entity, ex: API, Resource, System)', + metadata: { + name: '<${{ steps.extract.output.extract_parameter_name[0] }}>', + description: + '<${{ steps.extract.output.extract_parameter_desc[0] }}>', + tags: ['', ''], + annotations: { + 'github.com/project-slug': + '<${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo }}>', + 'backstage.io/techdocs-ref': 'dir:.', + }, + links: [ + { + title: '', + url: '', + }, + ], + }, + spec: { + type: '', + }, + lifecycle: 'production1', + owner: '<${{ parameters.owner1 }}>', + }, + { + apiVersion: 'backstage.io/v1alpha1', + kind: 'Component2 (You can change this to any TIBCO Developer Hub entity, ex: API, Resource, System)', + metadata: { + name: '<${{ steps.extract.output.extract_parameter_name[1] }}>', + description: + '<${{ steps.extract.output.extract_parameter_desc[1] }}>', + tags: ['', ''], + annotations: { + 'github.com/project-slug': + '<${{ "https://" + (parameters.repoUrl | parseRepoUrl).host + "/" + (parameters.repoUrl | parseRepoUrl).owner + "/" + (parameters.repoUrl | parseRepoUrl).repo }}>', + 'backstage.io/techdocs-ref': 'dir:.', + }, + links: [ + { + title: '', + url: '', + }, + ], + }, + spec: { + type: '', + }, + lifecycle: 'production2', + owner: '<${{ parameters.owner2 }}>', + }, + ], + }, + }, + ], + }), + }, ]; diff --git a/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/extract-parameters.examples.ts b/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/extract-parameters.examples.ts index 757dab5..6da66d2 100644 --- a/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/extract-parameters.examples.ts +++ b/plugins/scaffolder-backend-module-import-flow/src/actions/tibco-import/extract-parameters.examples.ts @@ -104,7 +104,8 @@ export const examples: TemplateExample[] = [ }), }, { - description: 'Extract parameters when extract type is file', + description: + 'Extract parameters when extract type is file and regex as string', example: yaml.stringify({ steps: [ { @@ -128,7 +129,44 @@ export const examples: TemplateExample[] = [ }, { description: - 'Output parameters when extract type is file, the value of output parameter key will be always an array', + 'Output parameters when extract type is file and regex as string, the value of output parameter key will be always an array', + example: JSON.stringify({ + output: { + extract_parameter: [''], + }, + }), + }, + { + description: + 'Extract parameters when extract type is file and regex as object containing regexPattern and regexFlags', + example: yaml.stringify({ + steps: [ + { + action: 'tibco:extract-parameters', + name: 'Extract parameters', + input: { + failOnError: true, + sourcePath: '', + extractParameters: { + extract_parameter: { + type: 'file', + filePath: '', + regex: { + regexPattern: + '', + regexFlags: + '', + }, + }, + }, + }, + }, + ], + }), + }, + { + description: + 'Output parameters when extract type is file and regex as object containing regexPattern and regexFlags, the value of output parameter key will be always an array', example: JSON.stringify({ output: { extract_parameter: [''], @@ -136,7 +174,8 @@ export const examples: TemplateExample[] = [ }), }, { - description: 'Extract parameters when extract type is workspace', + description: + 'Extract parameters when extract type is workspace and regex as string', example: yaml.stringify({ steps: [ { @@ -163,7 +202,47 @@ export const examples: TemplateExample[] = [ }, { description: - 'Output parameters when extract type is workspace, the value of output parameter key will be always an array', + 'Output parameters when extract type is workspace and regex as string, the value of output parameter key will be always an array', + example: JSON.stringify({ + output: { + extract_parameter: [''], + }, + }), + }, + { + description: + 'Extract parameters when extract type is workspace and regex as object containing regexPattern and regexFlags', + example: yaml.stringify({ + steps: [ + { + action: 'tibco:extract-parameters', + name: 'Extract parameters', + input: { + failOnError: true, + sourcePath: '', + extractParameters: { + extract_parameter: { + type: 'workspace', + directoryPath: '', + glob: '', + onlyName: + '', + regex: { + regexPattern: + '', + regexFlags: + '', + }, + }, + }, + }, + }, + ], + }), + }, + { + description: + 'Output parameters when extract type is workspace and regex as object containing regexPattern and regexFlags, the value of output parameter key will be always an array', example: JSON.stringify({ output: { extract_parameter: [''], diff --git a/plugins/scaffolder-backend-module-tibco-git-repositories/package.json b/plugins/scaffolder-backend-module-tibco-git-repositories/package.json index 5daf107..6310931 100644 --- a/plugins/scaffolder-backend-module-tibco-git-repositories/package.json +++ b/plugins/scaffolder-backend-module-tibco-git-repositories/package.json @@ -28,6 +28,7 @@ "@backstage/integration": "^1.16.2", "@backstage/plugin-scaffolder-node": "^0.7.0", "simple-git": "^3.27.0", + "yaml": "^2.8.0", "zod": "^3.24.2" }, "devDependencies": { diff --git a/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-clone.examples.ts b/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-clone.examples.ts new file mode 100644 index 0000000..97016fa --- /dev/null +++ b/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-clone.examples.ts @@ -0,0 +1,41 @@ +/* + * Copyright (c) 2023-2025. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary + */ + +import { TemplateExample } from '@backstage/plugin-scaffolder-node'; +import yaml from 'yaml'; + +export const examples: TemplateExample[] = [ + { + description: 'Git clone with minimal inputs', + example: yaml.stringify({ + steps: [ + { + action: 'tibco:git:clone', + name: 'Clone repository', + input: { + repoUrl: 'https://github.com/owner/repo.git', + }, + }, + ], + }), + }, + { + description: 'Git clone with all available inputs', + example: yaml.stringify({ + steps: [ + { + action: 'tibco:git:clone', + name: 'Clone repository', + input: { + failOnError: true, + sourcePath: 'source-path', + branch: 'branch-name', + repoUrl: 'https://github.com/owner/repo.git', + token: 'authentication-token', + }, + }, + ], + }), + }, +]; diff --git a/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-clone.ts b/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-clone.ts index 2c50832..2fd52a4 100644 --- a/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-clone.ts +++ b/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-clone.ts @@ -14,6 +14,7 @@ import { DefaultGithubCredentialsProvider, ScmIntegrations, } from '@backstage/integration'; +import { examples } from './git-clone.examples.ts'; export function gitCloneAction(config: RootConfigService) { return createTemplateAction<{ @@ -24,6 +25,8 @@ export function gitCloneAction(config: RootConfigService) { token?: string; }>({ id: 'tibco:git:clone', + description: 'Clones a git repository.', + examples, schema: { input: z.object({ sourcePath: z diff --git a/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-push.examples.ts b/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-push.examples.ts new file mode 100644 index 0000000..9bf28b6 --- /dev/null +++ b/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-push.examples.ts @@ -0,0 +1,39 @@ +/* + * Copyright (c) 2023-2025. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary + */ + +import { TemplateExample } from '@backstage/plugin-scaffolder-node'; +import yaml from 'yaml'; + +export const examples: TemplateExample[] = [ + { + description: 'Git push with minimal inputs', + example: yaml.stringify({ + steps: [ + { + action: 'tibco:git:push', + name: 'Push to repository', + }, + ], + }), + }, + { + description: 'Git push with all available inputs', + example: yaml.stringify({ + steps: [ + { + action: 'tibco:git:push', + name: 'Push to repository', + input: { + failOnError: true, + sourcePath: 'source-path', + commitMessage: 'Commit message', + gitAuthorName: 'Author Name', + gitAuthorEmail: 'Author Email', + branch: 'branch-name', + }, + }, + ], + }), + }, +]; diff --git a/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-push.ts b/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-push.ts index a9a1905..baa72c8 100644 --- a/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-push.ts +++ b/plugins/scaffolder-backend-module-tibco-git-repositories/src/actions/tibco-git/git-push.ts @@ -10,6 +10,7 @@ import { RootConfigService, } from '@backstage/backend-plugin-api'; import { existsSync } from 'fs'; +import { examples } from './git-push.examples.ts'; export function gitPushAction(config: RootConfigService) { return createTemplateAction<{ @@ -21,6 +22,8 @@ export function gitPushAction(config: RootConfigService) { branch?: string; }>({ id: 'tibco:git:push', + description: 'Commits and push to a git repository.', + examples, schema: { input: z.object({ sourcePath: z diff --git a/yarn.lock b/yarn.lock index 659afd5..5eb97e6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7738,6 +7738,7 @@ __metadata: "@backstage/plugin-scaffolder-node": "npm:^0.7.0" "@backstage/plugin-scaffolder-node-test-utils": "npm:^0.1.19" simple-git: "npm:^3.27.0" + yaml: "npm:^2.8.0" zod: "npm:^3.24.2" languageName: unknown linkType: soft @@ -33907,6 +33908,15 @@ __metadata: languageName: node linkType: hard +"yaml@npm:^2.8.0": + version: 2.8.0 + resolution: "yaml@npm:2.8.0" + bin: + yaml: bin.mjs + checksum: 10c0/f6f7310cf7264a8107e72c1376f4de37389945d2fb4656f8060eca83f01d2d703f9d1b925dd8f39852a57034fafefde6225409ddd9f22aebfda16c6141b71858 + languageName: node + linkType: hard + "yargs-parser@npm:^20.2.2": version: 20.2.9 resolution: "yargs-parser@npm:20.2.9"