mirror of
https://github.com/docker/login-action.git
synced 2026-04-10 23:25:58 +00:00
Compare commits
62 Commits
v4.0.0
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3de63bf4d3 | ||
|
|
7cc00e02d0 | ||
|
|
ba754150c9 | ||
|
|
d8fcc4b9cc | ||
|
|
149496aaf3 | ||
|
|
4907a6ddec | ||
|
|
1e233e691a | ||
|
|
6c24ead680 | ||
|
|
ee034d7094 | ||
|
|
1527209db9 | ||
|
|
d39362aba4 | ||
|
|
a6f092b568 | ||
|
|
60953f0bed | ||
|
|
62c688590f | ||
|
|
102c0e6729 | ||
|
|
72e5ceb81f | ||
|
|
e7e12d441a | ||
|
|
20103df299 | ||
|
|
5be8034354 | ||
|
|
4fddf4fef5 | ||
|
|
eb50903c80 | ||
|
|
b434872b94 | ||
|
|
2d420a4f14 | ||
|
|
ccb26d9283 | ||
|
|
e48e882fee | ||
|
|
b0186b9cf5 | ||
|
|
034c220d94 | ||
|
|
3fdf3f727d | ||
|
|
6f14fdf8a4 | ||
|
|
6290052128 | ||
|
|
bb555fc48d | ||
|
|
6de6c60d10 | ||
|
|
de05a6d3a2 | ||
|
|
5ac140e711 | ||
|
|
bb9683dca2 | ||
|
|
abb6787042 | ||
|
|
a40c6a7122 | ||
|
|
5c42dd293b | ||
|
|
1615afe9d3 | ||
|
|
c376ab6818 | ||
|
|
ed2fd52341 | ||
|
|
8ff08ec562 | ||
|
|
b24684bb3c | ||
|
|
a0d57b8e43 | ||
|
|
6eab1c84d2 | ||
|
|
292fe2d7ee | ||
|
|
717e062c09 | ||
|
|
b9381571b7 | ||
|
|
7277d4d442 | ||
|
|
955b3c705f | ||
|
|
da5b89b92c | ||
|
|
b78dc2c156 | ||
|
|
c144859092 | ||
|
|
cf45a603d2 | ||
|
|
9fe7774c8f | ||
|
|
2b784c0f37 | ||
|
|
89452f99ba | ||
|
|
db14339dbc | ||
|
|
e46b7e3300 | ||
|
|
126accdd0b | ||
|
|
5c5e504cc6 | ||
|
|
bb0e4e1bb1 |
8
.github/dependabot.yml
vendored
8
.github/dependabot.yml
vendored
@@ -4,6 +4,12 @@ updates:
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
cooldown:
|
||||
default-days: 2
|
||||
groups:
|
||||
crazy-max-dot-github:
|
||||
patterns:
|
||||
- "crazy-max/.github/*"
|
||||
labels:
|
||||
- "dependencies"
|
||||
- "bot"
|
||||
@@ -11,6 +17,8 @@ updates:
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
cooldown:
|
||||
default-days: 2
|
||||
versioning-strategy: "increase"
|
||||
groups:
|
||||
aws-sdk-dependencies:
|
||||
|
||||
49
.github/workflows/ci.yml
vendored
49
.github/workflows/ci.yml
vendored
@@ -1,5 +1,8 @@
|
||||
name: ci
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
@@ -19,7 +22,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Stop docker
|
||||
run: |
|
||||
@@ -43,7 +46,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Login to GitHub Container Registry
|
||||
uses: ./
|
||||
@@ -60,7 +63,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Login to GitHub Container Registry
|
||||
uses: ./
|
||||
@@ -70,7 +73,7 @@ jobs:
|
||||
password: ${{ secrets.GHCR_PAT }}
|
||||
-
|
||||
name: DinD
|
||||
uses: docker://docker
|
||||
uses: docker://docker:29.3@sha256:4d90f1f6c400315c2dba96d3ec93c01e64198395cbba04f79d12adce4f737029
|
||||
with:
|
||||
entrypoint: docker
|
||||
args: pull ghcr.io/docker-ghactiontest/test
|
||||
@@ -85,7 +88,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Login to ACR
|
||||
uses: ./
|
||||
@@ -105,7 +108,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Login to Docker Hub
|
||||
uses: ./
|
||||
@@ -124,7 +127,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Login to ECR
|
||||
uses: ./
|
||||
@@ -144,10 +147,10 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Configure AWS Credentials
|
||||
uses: aws-actions/configure-aws-credentials@v6
|
||||
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0
|
||||
with:
|
||||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
@@ -169,7 +172,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Login to Public ECR
|
||||
continue-on-error: ${{ matrix.os == 'windows-latest' }}
|
||||
@@ -192,10 +195,10 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Configure AWS Credentials
|
||||
uses: aws-actions/configure-aws-credentials@v6
|
||||
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0
|
||||
with:
|
||||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
@@ -218,7 +221,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Login to GitHub Container Registry
|
||||
uses: ./
|
||||
@@ -238,7 +241,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Login to GitLab
|
||||
uses: ./
|
||||
@@ -258,7 +261,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Login to Google Artifact Registry
|
||||
uses: ./
|
||||
@@ -278,7 +281,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Login to Google Container Registry
|
||||
uses: ./
|
||||
@@ -292,7 +295,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Login to registries
|
||||
uses: ./
|
||||
@@ -315,7 +318,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Login to registries
|
||||
uses: ./
|
||||
@@ -336,7 +339,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Login to registries
|
||||
id: login
|
||||
@@ -368,7 +371,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Login to Docker Hub
|
||||
uses: ./
|
||||
@@ -398,7 +401,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Login to Docker Hub
|
||||
uses: ./
|
||||
@@ -428,7 +431,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Login to GitHub Container Registry
|
||||
uses: ./
|
||||
@@ -459,7 +462,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Login to GitHub Container Registry
|
||||
uses: ./
|
||||
|
||||
52
.github/workflows/codeql.yml
vendored
52
.github/workflows/codeql.yml
vendored
@@ -1,50 +1,46 @@
|
||||
name: codeql
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
- 'releases/v*'
|
||||
paths:
|
||||
- '.github/workflows/codeql.yml'
|
||||
- 'dist/**'
|
||||
- 'src/**'
|
||||
pull_request:
|
||||
paths:
|
||||
- '.github/workflows/codeql.yml'
|
||||
- 'dist/**'
|
||||
- 'src/**'
|
||||
|
||||
permissions:
|
||||
actions: read
|
||||
contents: read
|
||||
security-events: write
|
||||
env:
|
||||
NODE_VERSION: "24"
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
language:
|
||||
- javascript-typescript
|
||||
permissions:
|
||||
contents: read
|
||||
security-events: write
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Enable corepack
|
||||
run: |
|
||||
corepack enable
|
||||
yarn --version
|
||||
-
|
||||
name: Set up Node
|
||||
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
|
||||
with:
|
||||
node-version: ${{ env.NODE_VERSION }}
|
||||
-
|
||||
name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v4
|
||||
uses: github/codeql-action/init@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1
|
||||
with:
|
||||
languages: ${{ matrix.language }}
|
||||
config: |
|
||||
paths:
|
||||
- src
|
||||
-
|
||||
name: Autobuild
|
||||
uses: github/codeql-action/autobuild@v4
|
||||
languages: javascript-typescript
|
||||
build-mode: none
|
||||
-
|
||||
name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v4
|
||||
uses: github/codeql-action/analyze@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1
|
||||
with:
|
||||
category: "/language:${{matrix.language}}"
|
||||
category: "/language:javascript-typescript"
|
||||
|
||||
4
.github/workflows/pr-assign-author.yml
vendored
4
.github/workflows/pr-assign-author.yml
vendored
@@ -4,14 +4,14 @@ permissions:
|
||||
contents: read
|
||||
|
||||
on:
|
||||
pull_request_target:
|
||||
pull_request_target: # zizmor: ignore[dangerous-triggers] safe to use without checkout
|
||||
types:
|
||||
- opened
|
||||
- reopened
|
||||
|
||||
jobs:
|
||||
run:
|
||||
uses: crazy-max/.github/.github/workflows/pr-assign-author.yml@1b673f36fad86812f538c1df9794904038a23cbf
|
||||
uses: crazy-max/.github/.github/workflows/pr-assign-author.yml@bb328ea508cd6a89d0865555ddbeb148e5724aed # v1.3.0
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
|
||||
11
.github/workflows/publish.yml
vendored
11
.github/workflows/publish.yml
vendored
@@ -1,5 +1,12 @@
|
||||
name: publish
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
release:
|
||||
types:
|
||||
@@ -15,7 +22,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Publish
|
||||
uses: actions/publish-immutable-action@v0.0.4
|
||||
uses: actions/publish-immutable-action@4bc8754ffc40f27910afb20287dbbbb675a4e978 # v0.0.4
|
||||
|
||||
9
.github/workflows/test.yml
vendored
9
.github/workflows/test.yml
vendored
@@ -1,5 +1,8 @@
|
||||
name: test
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
@@ -17,16 +20,16 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: Test
|
||||
uses: docker/bake-action@v6
|
||||
uses: docker/bake-action@82490499d2e5613fcead7e128237ef0b0ea210f7 # v7.0.0
|
||||
with:
|
||||
source: .
|
||||
targets: test
|
||||
-
|
||||
name: Upload coverage
|
||||
uses: codecov/codecov-action@v5
|
||||
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
|
||||
with:
|
||||
files: ./coverage/clover.xml
|
||||
token: ${{ secrets.CODECOV_TOKEN }}
|
||||
|
||||
17
.github/workflows/update-dist.yml
vendored
17
.github/workflows/update-dist.yml
vendored
@@ -1,5 +1,12 @@
|
||||
name: update-dist
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types:
|
||||
@@ -8,27 +15,27 @@ on:
|
||||
|
||||
jobs:
|
||||
update-dist:
|
||||
if: github.actor == 'dependabot[bot]'
|
||||
if: github.actor == 'dependabot[bot]' && github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == github.event.pull_request.head.repo.full_name
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: GitHub auth token from GitHub App
|
||||
id: docker-read-app
|
||||
uses: actions/create-github-app-token@v2
|
||||
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0
|
||||
with:
|
||||
app-id: ${{ secrets.GHACTIONS_REPO_WRITE_APP_ID }}
|
||||
private-key: ${{ secrets.GHACTIONS_REPO_WRITE_APP_PRIVATE_KEY }}
|
||||
owner: docker
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.ref }}
|
||||
fetch-depth: 0
|
||||
token: ${{ steps.docker-read-app.outputs.token || github.token }}
|
||||
token: ${{ steps.docker-read-app.outputs.token }}
|
||||
-
|
||||
name: Build
|
||||
uses: docker/bake-action@v6
|
||||
uses: docker/bake-action@82490499d2e5613fcead7e128237ef0b0ea210f7 # v7.0.0
|
||||
with:
|
||||
source: .
|
||||
targets: build
|
||||
|
||||
15
.github/workflows/validate.yml
vendored
15
.github/workflows/validate.yml
vendored
@@ -1,5 +1,8 @@
|
||||
name: validate
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
@@ -15,15 +18,15 @@ jobs:
|
||||
prepare:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
targets: ${{ steps.generate.outputs.targets }}
|
||||
matrix: ${{ steps.generate.outputs.matrix }}
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
-
|
||||
name: List targets
|
||||
name: Generate matrix
|
||||
id: generate
|
||||
uses: docker/bake-action/subaction/list-targets@v6
|
||||
uses: docker/bake-action/subaction/matrix@82490499d2e5613fcead7e128237ef0b0ea210f7 # v7.0.0
|
||||
with:
|
||||
target: validate
|
||||
|
||||
@@ -34,10 +37,10 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
target: ${{ fromJson(needs.prepare.outputs.targets) }}
|
||||
include: ${{ fromJson(needs.prepare.outputs.matrix) }}
|
||||
steps:
|
||||
-
|
||||
name: Validate
|
||||
uses: docker/bake-action@v6
|
||||
uses: docker/bake-action@82490499d2e5613fcead7e128237ef0b0ea210f7 # v7.0.0
|
||||
with:
|
||||
targets: ${{ matrix.target }}
|
||||
|
||||
29
.github/workflows/zizmor.yml
vendored
Normal file
29
.github/workflows/zizmor.yml
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
name: zizmor
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
- 'releases/v*'
|
||||
tags:
|
||||
- 'v*'
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
zizmor:
|
||||
uses: crazy-max/.github/.github/workflows/zizmor.yml@bb328ea508cd6a89d0865555ddbeb148e5724aed # v1.3.0
|
||||
permissions:
|
||||
contents: read
|
||||
security-events: write
|
||||
with:
|
||||
min-severity: medium
|
||||
min-confidence: medium
|
||||
persona: pedantic
|
||||
3
.github/zizmor.yml
vendored
Normal file
3
.github/zizmor.yml
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
rules:
|
||||
secrets-outside-env: # FIXME: remove this rule when zizmor 1.24.0 is released, fixing the right persona attached to this rule: https://github.com/zizmorcore/zizmor/pull/1783
|
||||
disable: true
|
||||
38
README.md
38
README.md
@@ -51,7 +51,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Login to Docker Hub
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
@@ -76,7 +76,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Login to GitHub Container Registry
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
@@ -104,7 +104,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Login to GitLab
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry: registry.gitlab.com
|
||||
username: ${{ vars.GITLAB_USERNAME }}
|
||||
@@ -135,7 +135,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Login to ACR
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry: <registry-name>.azurecr.io
|
||||
username: ${{ vars.AZURE_CLIENT_ID }}
|
||||
@@ -183,7 +183,7 @@ jobs:
|
||||
service_account: <service_account>
|
||||
-
|
||||
name: Login to GCR
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry: gcr.io
|
||||
username: oauth2accesstoken
|
||||
@@ -216,7 +216,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Login to GCR
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry: gcr.io
|
||||
username: _json_key
|
||||
@@ -254,7 +254,7 @@ jobs:
|
||||
service_account: <service_account>
|
||||
-
|
||||
name: Login to GAR
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry: <location>-docker.pkg.dev
|
||||
username: oauth2accesstoken
|
||||
@@ -291,7 +291,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Login to GAR
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry: <location>-docker.pkg.dev
|
||||
username: _json_key
|
||||
@@ -320,7 +320,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Login to ECR
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry: <aws-account-number>.dkr.ecr.<region>.amazonaws.com
|
||||
username: ${{ vars.AWS_ACCESS_KEY_ID }}
|
||||
@@ -343,7 +343,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Login to ECR
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry: <aws-account-number>.dkr.ecr.<region>.amazonaws.com
|
||||
username: ${{ vars.AWS_ACCESS_KEY_ID }}
|
||||
@@ -377,7 +377,7 @@ jobs:
|
||||
aws-region: <region>
|
||||
-
|
||||
name: Login to ECR
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry: <aws-account-number>.dkr.ecr.<region>.amazonaws.com
|
||||
```
|
||||
@@ -404,7 +404,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Login to Public ECR
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry: public.ecr.aws
|
||||
username: ${{ vars.AWS_ACCESS_KEY_ID }}
|
||||
@@ -438,7 +438,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Login to OCIR
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry: <region>.ocir.io
|
||||
username: ${{ vars.OCI_USERNAME }}
|
||||
@@ -465,7 +465,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Login to Quay.io
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry: quay.io
|
||||
username: ${{ vars.QUAY_USERNAME }}
|
||||
@@ -489,7 +489,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Login to DigitalOcean Container Registry
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry: registry.digitalocean.com
|
||||
username: ${{ vars.DIGITALOCEAN_USERNAME }}
|
||||
@@ -514,13 +514,13 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Login to Docker Hub
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
-
|
||||
name: Login to GitHub Container Registry
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
@@ -548,7 +548,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Login to registries
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry-auth: |
|
||||
- username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
@@ -596,7 +596,7 @@ jobs:
|
||||
steps:
|
||||
-
|
||||
name: Login to Docker Hub (scoped)
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
@@ -1,6 +1,17 @@
|
||||
import {expect, test} from 'vitest';
|
||||
import {afterEach, expect, test} from 'vitest';
|
||||
import * as path from 'path';
|
||||
|
||||
import {getInputs} from '../src/context.js';
|
||||
import {Buildx} from '@docker/actions-toolkit/lib/buildx/buildx.js';
|
||||
|
||||
import {getAuthList, getInputs} from '../src/context.js';
|
||||
|
||||
afterEach(() => {
|
||||
for (const key of Object.keys(process.env)) {
|
||||
if (key.startsWith('INPUT_')) {
|
||||
delete process.env[key];
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
test('with password and username getInputs does not throw error', async () => {
|
||||
process.env['INPUT_USERNAME'] = 'dbowie';
|
||||
@@ -10,3 +21,15 @@ test('with password and username getInputs does not throw error', async () => {
|
||||
getInputs();
|
||||
}).not.toThrow();
|
||||
});
|
||||
|
||||
test('getAuthList uses the default Docker Hub registry when computing scoped config dir', async () => {
|
||||
process.env['INPUT_USERNAME'] = 'dbowie';
|
||||
process.env['INPUT_PASSWORD'] = 'groundcontrol';
|
||||
process.env['INPUT_SCOPE'] = 'myscope';
|
||||
process.env['INPUT_LOGOUT'] = 'false';
|
||||
const [auth] = getAuthList(getInputs());
|
||||
expect(auth).toMatchObject({
|
||||
registry: 'docker.io',
|
||||
configDir: path.join(Buildx.configDir, 'config', 'registry-1.docker.io', 'myscope')
|
||||
});
|
||||
});
|
||||
|
||||
@@ -1,15 +1,10 @@
|
||||
import {expect, test, vi} from 'vitest';
|
||||
import * as path from 'path';
|
||||
|
||||
import {Docker} from '@docker/actions-toolkit/lib/docker/docker.js';
|
||||
|
||||
import {loginStandard, logout} from '../src/docker.js';
|
||||
|
||||
process.env['RUNNER_TEMP'] = path.join(__dirname, 'runner');
|
||||
|
||||
test('loginStandard calls exec', async () => {
|
||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
||||
// @ts-ignore
|
||||
const execSpy = vi.spyOn(Docker, 'getExecOutput').mockImplementation(async () => {
|
||||
return {
|
||||
exitCode: expect.any(Number),
|
||||
@@ -38,8 +33,6 @@ test('loginStandard calls exec', async () => {
|
||||
});
|
||||
|
||||
test('logout calls exec', async () => {
|
||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
||||
// @ts-ignore
|
||||
const execSpy = vi.spyOn(Docker, 'getExecOutput').mockImplementation(async () => {
|
||||
return {
|
||||
exitCode: expect.any(Number),
|
||||
|
||||
27
dist/136.index.js
generated
vendored
27
dist/136.index.js
generated
vendored
@@ -119,7 +119,7 @@ exports.resolveHttpAuthRuntimeConfig = resolveHttpAuthRuntimeConfig;
|
||||
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.resolveHttpAuthSchemeConfig = exports.resolveStsAuthConfig = exports.defaultSTSHttpAuthSchemeProvider = exports.defaultSTSHttpAuthSchemeParametersProvider = void 0;
|
||||
const core_1 = __webpack_require__(8704);
|
||||
const httpAuthSchemes_1 = __webpack_require__(7523);
|
||||
const util_middleware_1 = __webpack_require__(6324);
|
||||
const STSClient_1 = __webpack_require__(3723);
|
||||
const defaultSTSHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
||||
@@ -172,7 +172,7 @@ const resolveStsAuthConfig = (input) => Object.assign(input, {
|
||||
exports.resolveStsAuthConfig = resolveStsAuthConfig;
|
||||
const resolveHttpAuthSchemeConfig = (config) => {
|
||||
const config_0 = (0, exports.resolveStsAuthConfig)(config);
|
||||
const config_1 = (0, core_1.resolveAwsSdkSigV4Config)(config_0);
|
||||
const config_1 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config_0);
|
||||
return Object.assign(config_1, {
|
||||
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
|
||||
});
|
||||
@@ -723,10 +723,11 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.getRuntimeConfig = void 0;
|
||||
const tslib_1 = __webpack_require__(1860);
|
||||
const package_json_1 = tslib_1.__importDefault(__webpack_require__(9955));
|
||||
const core_1 = __webpack_require__(8704);
|
||||
const client_1 = __webpack_require__(5152);
|
||||
const httpAuthSchemes_1 = __webpack_require__(7523);
|
||||
const util_user_agent_node_1 = __webpack_require__(1656);
|
||||
const config_resolver_1 = __webpack_require__(9316);
|
||||
const core_2 = __webpack_require__(402);
|
||||
const core_1 = __webpack_require__(402);
|
||||
const hash_node_1 = __webpack_require__(2711);
|
||||
const middleware_retry_1 = __webpack_require__(9618);
|
||||
const node_config_provider_1 = __webpack_require__(5704);
|
||||
@@ -741,7 +742,7 @@ const getRuntimeConfig = (config) => {
|
||||
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
||||
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
||||
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
||||
(0, core_1.emitWarningIfUnsupportedVersion)(process.version);
|
||||
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
||||
const loaderConfig = {
|
||||
profile: config?.profile,
|
||||
logger: clientSharedValues.logger,
|
||||
@@ -751,7 +752,7 @@ const getRuntimeConfig = (config) => {
|
||||
...config,
|
||||
runtime: "node",
|
||||
defaultsMode,
|
||||
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
||||
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
||||
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
||||
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
||||
(0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
||||
@@ -760,12 +761,12 @@ const getRuntimeConfig = (config) => {
|
||||
schemeId: "aws.auth#sigv4",
|
||||
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4") ||
|
||||
(async (idProps) => await config.credentialDefaultProvider(idProps?.__config || {})()),
|
||||
signer: new core_1.AwsSdkSigV4Signer(),
|
||||
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
|
||||
},
|
||||
{
|
||||
schemeId: "smithy.api#noAuth",
|
||||
identityProvider: (ipc) => ipc.getIdentityProvider("smithy.api#noAuth") || (async () => ({})),
|
||||
signer: new core_2.NoAuthSigner(),
|
||||
signer: new core_1.NoAuthSigner(),
|
||||
},
|
||||
],
|
||||
maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
||||
@@ -795,9 +796,9 @@ exports.getRuntimeConfig = getRuntimeConfig;
|
||||
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.getRuntimeConfig = void 0;
|
||||
const core_1 = __webpack_require__(8704);
|
||||
const httpAuthSchemes_1 = __webpack_require__(7523);
|
||||
const protocols_1 = __webpack_require__(7288);
|
||||
const core_2 = __webpack_require__(402);
|
||||
const core_1 = __webpack_require__(402);
|
||||
const smithy_client_1 = __webpack_require__(1411);
|
||||
const url_parser_1 = __webpack_require__(4494);
|
||||
const util_base64_1 = __webpack_require__(8385);
|
||||
@@ -818,12 +819,12 @@ const getRuntimeConfig = (config) => {
|
||||
{
|
||||
schemeId: "aws.auth#sigv4",
|
||||
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
||||
signer: new core_1.AwsSdkSigV4Signer(),
|
||||
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
|
||||
},
|
||||
{
|
||||
schemeId: "smithy.api#noAuth",
|
||||
identityProvider: (ipc) => ipc.getIdentityProvider("smithy.api#noAuth") || (async () => ({})),
|
||||
signer: new core_2.NoAuthSigner(),
|
||||
signer: new core_1.NoAuthSigner(),
|
||||
},
|
||||
],
|
||||
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
||||
@@ -1071,7 +1072,7 @@ exports.AssumeRoleWithWebIdentity$ = [
|
||||
/***/ 9955:
|
||||
/***/ ((module) => {
|
||||
|
||||
module.exports = /*#__PURE__*/JSON.parse('{"name":"@aws-sdk/nested-clients","version":"3.996.3","description":"Nested clients for AWS SDK packages.","main":"./dist-cjs/index.js","module":"./dist-es/index.js","types":"./dist-types/index.d.ts","scripts":{"build":"yarn lint && concurrently \'yarn:build:types\' \'yarn:build:es\' && yarn build:cjs","build:cjs":"node ../../scripts/compilation/inline nested-clients","build:es":"tsc -p tsconfig.es.json","build:include:deps":"yarn g:turbo run build -F=\\"$npm_package_name\\"","build:types":"tsc -p tsconfig.types.json","build:types:downlevel":"downlevel-dts dist-types dist-types/ts3.4","clean":"premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo","lint":"node ../../scripts/validation/submodules-linter.js --pkg nested-clients","test":"yarn g:vitest run","test:watch":"yarn g:vitest watch"},"engines":{"node":">=20.0.0"},"sideEffects":false,"author":{"name":"AWS SDK for JavaScript Team","url":"https://aws.amazon.com/javascript/"},"license":"Apache-2.0","dependencies":{"@aws-crypto/sha256-browser":"5.2.0","@aws-crypto/sha256-js":"5.2.0","@aws-sdk/core":"^3.973.15","@aws-sdk/middleware-host-header":"^3.972.6","@aws-sdk/middleware-logger":"^3.972.6","@aws-sdk/middleware-recursion-detection":"^3.972.6","@aws-sdk/middleware-user-agent":"^3.972.15","@aws-sdk/region-config-resolver":"^3.972.6","@aws-sdk/types":"^3.973.4","@aws-sdk/util-endpoints":"^3.996.3","@aws-sdk/util-user-agent-browser":"^3.972.6","@aws-sdk/util-user-agent-node":"^3.973.0","@smithy/config-resolver":"^4.4.9","@smithy/core":"^3.23.6","@smithy/fetch-http-handler":"^5.3.11","@smithy/hash-node":"^4.2.10","@smithy/invalid-dependency":"^4.2.10","@smithy/middleware-content-length":"^4.2.10","@smithy/middleware-endpoint":"^4.4.20","@smithy/middleware-retry":"^4.4.37","@smithy/middleware-serde":"^4.2.11","@smithy/middleware-stack":"^4.2.10","@smithy/node-config-provider":"^4.3.10","@smithy/node-http-handler":"^4.4.12","@smithy/protocol-http":"^5.3.10","@smithy/smithy-client":"^4.12.0","@smithy/types":"^4.13.0","@smithy/url-parser":"^4.2.10","@smithy/util-base64":"^4.3.1","@smithy/util-body-length-browser":"^4.2.1","@smithy/util-body-length-node":"^4.2.2","@smithy/util-defaults-mode-browser":"^4.3.36","@smithy/util-defaults-mode-node":"^4.2.39","@smithy/util-endpoints":"^3.3.1","@smithy/util-middleware":"^4.2.10","@smithy/util-retry":"^4.2.10","@smithy/util-utf8":"^4.2.1","tslib":"^2.6.2"},"devDependencies":{"concurrently":"7.0.0","downlevel-dts":"0.10.1","premove":"4.0.0","typescript":"~5.8.3"},"typesVersions":{"<4.0":{"dist-types/*":["dist-types/ts3.4/*"]}},"files":["./cognito-identity.d.ts","./cognito-identity.js","./signin.d.ts","./signin.js","./sso-oidc.d.ts","./sso-oidc.js","./sso.d.ts","./sso.js","./sts.d.ts","./sts.js","dist-*/**"],"browser":{"./dist-es/submodules/signin/runtimeConfig":"./dist-es/submodules/signin/runtimeConfig.browser","./dist-es/submodules/sso-oidc/runtimeConfig":"./dist-es/submodules/sso-oidc/runtimeConfig.browser","./dist-es/submodules/sts/runtimeConfig":"./dist-es/submodules/sts/runtimeConfig.browser"},"react-native":{},"homepage":"https://github.com/aws/aws-sdk-js-v3/tree/main/packages/nested-clients","repository":{"type":"git","url":"https://github.com/aws/aws-sdk-js-v3.git","directory":"packages/nested-clients"},"exports":{"./package.json":"./package.json","./sso-oidc":{"types":"./dist-types/submodules/sso-oidc/index.d.ts","module":"./dist-es/submodules/sso-oidc/index.js","node":"./dist-cjs/submodules/sso-oidc/index.js","import":"./dist-es/submodules/sso-oidc/index.js","require":"./dist-cjs/submodules/sso-oidc/index.js"},"./sts":{"types":"./dist-types/submodules/sts/index.d.ts","module":"./dist-es/submodules/sts/index.js","node":"./dist-cjs/submodules/sts/index.js","import":"./dist-es/submodules/sts/index.js","require":"./dist-cjs/submodules/sts/index.js"},"./signin":{"types":"./dist-types/submodules/signin/index.d.ts","module":"./dist-es/submodules/signin/index.js","node":"./dist-cjs/submodules/signin/index.js","import":"./dist-es/submodules/signin/index.js","require":"./dist-cjs/submodules/signin/index.js"},"./cognito-identity":{"types":"./dist-types/submodules/cognito-identity/index.d.ts","module":"./dist-es/submodules/cognito-identity/index.js","node":"./dist-cjs/submodules/cognito-identity/index.js","import":"./dist-es/submodules/cognito-identity/index.js","require":"./dist-cjs/submodules/cognito-identity/index.js"},"./sso":{"types":"./dist-types/submodules/sso/index.d.ts","module":"./dist-es/submodules/sso/index.js","node":"./dist-cjs/submodules/sso/index.js","import":"./dist-es/submodules/sso/index.js","require":"./dist-cjs/submodules/sso/index.js"}}}');
|
||||
module.exports = /*#__PURE__*/JSON.parse('{"name":"@aws-sdk/nested-clients","version":"3.996.18","description":"Nested clients for AWS SDK packages.","main":"./dist-cjs/index.js","module":"./dist-es/index.js","types":"./dist-types/index.d.ts","scripts":{"build":"yarn lint && concurrently \'yarn:build:types\' \'yarn:build:es\' && yarn build:cjs","build:cjs":"node ../../scripts/compilation/inline nested-clients","build:es":"tsc -p tsconfig.es.json","build:include:deps":"yarn g:turbo run build -F=\\"$npm_package_name\\"","build:types":"tsc -p tsconfig.types.json","build:types:downlevel":"downlevel-dts dist-types dist-types/ts3.4","clean":"premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo","lint":"node ../../scripts/validation/submodules-linter.js --pkg nested-clients","test":"yarn g:vitest run","test:watch":"yarn g:vitest watch"},"engines":{"node":">=20.0.0"},"sideEffects":false,"author":{"name":"AWS SDK for JavaScript Team","url":"https://aws.amazon.com/javascript/"},"license":"Apache-2.0","dependencies":{"@aws-crypto/sha256-browser":"5.2.0","@aws-crypto/sha256-js":"5.2.0","@aws-sdk/core":"^3.973.26","@aws-sdk/middleware-host-header":"^3.972.8","@aws-sdk/middleware-logger":"^3.972.8","@aws-sdk/middleware-recursion-detection":"^3.972.9","@aws-sdk/middleware-user-agent":"^3.972.28","@aws-sdk/region-config-resolver":"^3.972.10","@aws-sdk/types":"^3.973.6","@aws-sdk/util-endpoints":"^3.996.5","@aws-sdk/util-user-agent-browser":"^3.972.8","@aws-sdk/util-user-agent-node":"^3.973.14","@smithy/config-resolver":"^4.4.13","@smithy/core":"^3.23.13","@smithy/fetch-http-handler":"^5.3.15","@smithy/hash-node":"^4.2.12","@smithy/invalid-dependency":"^4.2.12","@smithy/middleware-content-length":"^4.2.12","@smithy/middleware-endpoint":"^4.4.28","@smithy/middleware-retry":"^4.4.46","@smithy/middleware-serde":"^4.2.16","@smithy/middleware-stack":"^4.2.12","@smithy/node-config-provider":"^4.3.12","@smithy/node-http-handler":"^4.5.1","@smithy/protocol-http":"^5.3.12","@smithy/smithy-client":"^4.12.8","@smithy/types":"^4.13.1","@smithy/url-parser":"^4.2.12","@smithy/util-base64":"^4.3.2","@smithy/util-body-length-browser":"^4.2.2","@smithy/util-body-length-node":"^4.2.3","@smithy/util-defaults-mode-browser":"^4.3.44","@smithy/util-defaults-mode-node":"^4.2.48","@smithy/util-endpoints":"^3.3.3","@smithy/util-middleware":"^4.2.12","@smithy/util-retry":"^4.2.13","@smithy/util-utf8":"^4.2.2","tslib":"^2.6.2"},"devDependencies":{"concurrently":"7.0.0","downlevel-dts":"0.10.1","premove":"4.0.0","typescript":"~5.8.3"},"typesVersions":{"<4.5":{"dist-types/*":["dist-types/ts3.4/*"]}},"files":["./cognito-identity.d.ts","./cognito-identity.js","./signin.d.ts","./signin.js","./sso-oidc.d.ts","./sso-oidc.js","./sso.d.ts","./sso.js","./sts.d.ts","./sts.js","dist-*/**"],"browser":{"./dist-es/submodules/cognito-identity/runtimeConfig":"./dist-es/submodules/cognito-identity/runtimeConfig.browser","./dist-es/submodules/signin/runtimeConfig":"./dist-es/submodules/signin/runtimeConfig.browser","./dist-es/submodules/sso-oidc/runtimeConfig":"./dist-es/submodules/sso-oidc/runtimeConfig.browser","./dist-es/submodules/sso/runtimeConfig":"./dist-es/submodules/sso/runtimeConfig.browser","./dist-es/submodules/sts/runtimeConfig":"./dist-es/submodules/sts/runtimeConfig.browser"},"react-native":{},"homepage":"https://github.com/aws/aws-sdk-js-v3/tree/main/packages/nested-clients","repository":{"type":"git","url":"https://github.com/aws/aws-sdk-js-v3.git","directory":"packages/nested-clients"},"exports":{"./package.json":"./package.json","./sso-oidc":{"types":"./dist-types/submodules/sso-oidc/index.d.ts","module":"./dist-es/submodules/sso-oidc/index.js","node":"./dist-cjs/submodules/sso-oidc/index.js","import":"./dist-es/submodules/sso-oidc/index.js","require":"./dist-cjs/submodules/sso-oidc/index.js"},"./sts":{"types":"./dist-types/submodules/sts/index.d.ts","module":"./dist-es/submodules/sts/index.js","node":"./dist-cjs/submodules/sts/index.js","import":"./dist-es/submodules/sts/index.js","require":"./dist-cjs/submodules/sts/index.js"},"./signin":{"types":"./dist-types/submodules/signin/index.d.ts","module":"./dist-es/submodules/signin/index.js","node":"./dist-cjs/submodules/signin/index.js","import":"./dist-es/submodules/signin/index.js","require":"./dist-cjs/submodules/signin/index.js"},"./cognito-identity":{"types":"./dist-types/submodules/cognito-identity/index.d.ts","module":"./dist-es/submodules/cognito-identity/index.js","node":"./dist-cjs/submodules/cognito-identity/index.js","import":"./dist-es/submodules/cognito-identity/index.js","require":"./dist-cjs/submodules/cognito-identity/index.js"},"./sso":{"types":"./dist-types/submodules/sso/index.d.ts","module":"./dist-es/submodules/sso/index.js","node":"./dist-cjs/submodules/sso/index.js","import":"./dist-es/submodules/sso/index.js","require":"./dist-cjs/submodules/sso/index.js"}}}');
|
||||
|
||||
/***/ })
|
||||
|
||||
|
||||
2
dist/136.index.js.map
generated
vendored
2
dist/136.index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
19
dist/443.index.js
generated
vendored
19
dist/443.index.js
generated
vendored
@@ -8,7 +8,7 @@ export const modules = {
|
||||
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.resolveHttpAuthSchemeConfig = exports.defaultSSOOIDCHttpAuthSchemeProvider = exports.defaultSSOOIDCHttpAuthSchemeParametersProvider = void 0;
|
||||
const core_1 = __webpack_require__(8704);
|
||||
const httpAuthSchemes_1 = __webpack_require__(7523);
|
||||
const util_middleware_1 = __webpack_require__(6324);
|
||||
const defaultSSOOIDCHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
||||
return {
|
||||
@@ -55,7 +55,7 @@ const defaultSSOOIDCHttpAuthSchemeProvider = (authParameters) => {
|
||||
};
|
||||
exports.defaultSSOOIDCHttpAuthSchemeProvider = defaultSSOOIDCHttpAuthSchemeProvider;
|
||||
const resolveHttpAuthSchemeConfig = (config) => {
|
||||
const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
|
||||
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
||||
return Object.assign(config_0, {
|
||||
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
|
||||
});
|
||||
@@ -611,7 +611,8 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.getRuntimeConfig = void 0;
|
||||
const tslib_1 = __webpack_require__(1860);
|
||||
const package_json_1 = tslib_1.__importDefault(__webpack_require__(9955));
|
||||
const core_1 = __webpack_require__(8704);
|
||||
const client_1 = __webpack_require__(5152);
|
||||
const httpAuthSchemes_1 = __webpack_require__(7523);
|
||||
const util_user_agent_node_1 = __webpack_require__(1656);
|
||||
const config_resolver_1 = __webpack_require__(9316);
|
||||
const hash_node_1 = __webpack_require__(2711);
|
||||
@@ -628,7 +629,7 @@ const getRuntimeConfig = (config) => {
|
||||
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
||||
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
||||
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
||||
(0, core_1.emitWarningIfUnsupportedVersion)(process.version);
|
||||
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
||||
const loaderConfig = {
|
||||
profile: config?.profile,
|
||||
logger: clientSharedValues.logger,
|
||||
@@ -638,7 +639,7 @@ const getRuntimeConfig = (config) => {
|
||||
...config,
|
||||
runtime: "node",
|
||||
defaultsMode,
|
||||
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
||||
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
||||
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
||||
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
||||
(0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
||||
@@ -669,9 +670,9 @@ exports.getRuntimeConfig = getRuntimeConfig;
|
||||
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.getRuntimeConfig = void 0;
|
||||
const core_1 = __webpack_require__(8704);
|
||||
const httpAuthSchemes_1 = __webpack_require__(7523);
|
||||
const protocols_1 = __webpack_require__(7288);
|
||||
const core_2 = __webpack_require__(402);
|
||||
const core_1 = __webpack_require__(402);
|
||||
const smithy_client_1 = __webpack_require__(1411);
|
||||
const url_parser_1 = __webpack_require__(4494);
|
||||
const util_base64_1 = __webpack_require__(8385);
|
||||
@@ -692,12 +693,12 @@ const getRuntimeConfig = (config) => {
|
||||
{
|
||||
schemeId: "aws.auth#sigv4",
|
||||
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
||||
signer: new core_1.AwsSdkSigV4Signer(),
|
||||
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
|
||||
},
|
||||
{
|
||||
schemeId: "smithy.api#noAuth",
|
||||
identityProvider: (ipc) => ipc.getIdentityProvider("smithy.api#noAuth") || (async () => ({})),
|
||||
signer: new core_2.NoAuthSigner(),
|
||||
signer: new core_1.NoAuthSigner(),
|
||||
},
|
||||
],
|
||||
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
||||
|
||||
2
dist/443.index.js.map
generated
vendored
2
dist/443.index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
2
dist/579.index.js
generated
vendored
2
dist/579.index.js
generated
vendored
@@ -250,7 +250,7 @@ class EventStreamSerde {
|
||||
throw new Error("@smithy/core/event-streams - non-struct member not supported in event stream union.");
|
||||
}
|
||||
}
|
||||
const messageSerialization = serializer.flush();
|
||||
const messageSerialization = serializer.flush() ?? new Uint8Array();
|
||||
const body = typeof messageSerialization === "string"
|
||||
? (this.serdeContext?.utf8Decoder ?? utilUtf8.fromUtf8)(messageSerialization)
|
||||
: messageSerialization;
|
||||
|
||||
2
dist/579.index.js.map
generated
vendored
2
dist/579.index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
21
dist/762.index.js
generated
vendored
21
dist/762.index.js
generated
vendored
@@ -8,7 +8,7 @@ export const modules = {
|
||||
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.resolveHttpAuthSchemeConfig = exports.defaultSigninHttpAuthSchemeProvider = exports.defaultSigninHttpAuthSchemeParametersProvider = void 0;
|
||||
const core_1 = __webpack_require__(8704);
|
||||
const httpAuthSchemes_1 = __webpack_require__(7523);
|
||||
const util_middleware_1 = __webpack_require__(6324);
|
||||
const defaultSigninHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
||||
return {
|
||||
@@ -55,7 +55,7 @@ const defaultSigninHttpAuthSchemeProvider = (authParameters) => {
|
||||
};
|
||||
exports.defaultSigninHttpAuthSchemeProvider = defaultSigninHttpAuthSchemeProvider;
|
||||
const resolveHttpAuthSchemeConfig = (config) => {
|
||||
const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
|
||||
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
||||
return Object.assign(config_0, {
|
||||
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
|
||||
});
|
||||
@@ -505,7 +505,8 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.getRuntimeConfig = void 0;
|
||||
const tslib_1 = __webpack_require__(1860);
|
||||
const package_json_1 = tslib_1.__importDefault(__webpack_require__(9955));
|
||||
const core_1 = __webpack_require__(8704);
|
||||
const client_1 = __webpack_require__(5152);
|
||||
const httpAuthSchemes_1 = __webpack_require__(7523);
|
||||
const util_user_agent_node_1 = __webpack_require__(1656);
|
||||
const config_resolver_1 = __webpack_require__(9316);
|
||||
const hash_node_1 = __webpack_require__(2711);
|
||||
@@ -522,7 +523,7 @@ const getRuntimeConfig = (config) => {
|
||||
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
||||
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
||||
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
||||
(0, core_1.emitWarningIfUnsupportedVersion)(process.version);
|
||||
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
||||
const loaderConfig = {
|
||||
profile: config?.profile,
|
||||
logger: clientSharedValues.logger,
|
||||
@@ -532,7 +533,7 @@ const getRuntimeConfig = (config) => {
|
||||
...config,
|
||||
runtime: "node",
|
||||
defaultsMode,
|
||||
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
||||
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
||||
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
||||
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
||||
(0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
||||
@@ -563,9 +564,9 @@ exports.getRuntimeConfig = getRuntimeConfig;
|
||||
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.getRuntimeConfig = void 0;
|
||||
const core_1 = __webpack_require__(8704);
|
||||
const httpAuthSchemes_1 = __webpack_require__(7523);
|
||||
const protocols_1 = __webpack_require__(7288);
|
||||
const core_2 = __webpack_require__(402);
|
||||
const core_1 = __webpack_require__(402);
|
||||
const smithy_client_1 = __webpack_require__(1411);
|
||||
const url_parser_1 = __webpack_require__(4494);
|
||||
const util_base64_1 = __webpack_require__(8385);
|
||||
@@ -586,12 +587,12 @@ const getRuntimeConfig = (config) => {
|
||||
{
|
||||
schemeId: "aws.auth#sigv4",
|
||||
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
||||
signer: new core_1.AwsSdkSigV4Signer(),
|
||||
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
|
||||
},
|
||||
{
|
||||
schemeId: "smithy.api#noAuth",
|
||||
identityProvider: (ipc) => ipc.getIdentityProvider("smithy.api#noAuth") || (async () => ({})),
|
||||
signer: new core_2.NoAuthSigner(),
|
||||
signer: new core_1.NoAuthSigner(),
|
||||
},
|
||||
],
|
||||
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
||||
@@ -748,7 +749,7 @@ exports.CreateOAuth2Token$ = [
|
||||
/***/ 9955:
|
||||
/***/ ((module) => {
|
||||
|
||||
module.exports = /*#__PURE__*/JSON.parse('{"name":"@aws-sdk/nested-clients","version":"3.996.3","description":"Nested clients for AWS SDK packages.","main":"./dist-cjs/index.js","module":"./dist-es/index.js","types":"./dist-types/index.d.ts","scripts":{"build":"yarn lint && concurrently \'yarn:build:types\' \'yarn:build:es\' && yarn build:cjs","build:cjs":"node ../../scripts/compilation/inline nested-clients","build:es":"tsc -p tsconfig.es.json","build:include:deps":"yarn g:turbo run build -F=\\"$npm_package_name\\"","build:types":"tsc -p tsconfig.types.json","build:types:downlevel":"downlevel-dts dist-types dist-types/ts3.4","clean":"premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo","lint":"node ../../scripts/validation/submodules-linter.js --pkg nested-clients","test":"yarn g:vitest run","test:watch":"yarn g:vitest watch"},"engines":{"node":">=20.0.0"},"sideEffects":false,"author":{"name":"AWS SDK for JavaScript Team","url":"https://aws.amazon.com/javascript/"},"license":"Apache-2.0","dependencies":{"@aws-crypto/sha256-browser":"5.2.0","@aws-crypto/sha256-js":"5.2.0","@aws-sdk/core":"^3.973.15","@aws-sdk/middleware-host-header":"^3.972.6","@aws-sdk/middleware-logger":"^3.972.6","@aws-sdk/middleware-recursion-detection":"^3.972.6","@aws-sdk/middleware-user-agent":"^3.972.15","@aws-sdk/region-config-resolver":"^3.972.6","@aws-sdk/types":"^3.973.4","@aws-sdk/util-endpoints":"^3.996.3","@aws-sdk/util-user-agent-browser":"^3.972.6","@aws-sdk/util-user-agent-node":"^3.973.0","@smithy/config-resolver":"^4.4.9","@smithy/core":"^3.23.6","@smithy/fetch-http-handler":"^5.3.11","@smithy/hash-node":"^4.2.10","@smithy/invalid-dependency":"^4.2.10","@smithy/middleware-content-length":"^4.2.10","@smithy/middleware-endpoint":"^4.4.20","@smithy/middleware-retry":"^4.4.37","@smithy/middleware-serde":"^4.2.11","@smithy/middleware-stack":"^4.2.10","@smithy/node-config-provider":"^4.3.10","@smithy/node-http-handler":"^4.4.12","@smithy/protocol-http":"^5.3.10","@smithy/smithy-client":"^4.12.0","@smithy/types":"^4.13.0","@smithy/url-parser":"^4.2.10","@smithy/util-base64":"^4.3.1","@smithy/util-body-length-browser":"^4.2.1","@smithy/util-body-length-node":"^4.2.2","@smithy/util-defaults-mode-browser":"^4.3.36","@smithy/util-defaults-mode-node":"^4.2.39","@smithy/util-endpoints":"^3.3.1","@smithy/util-middleware":"^4.2.10","@smithy/util-retry":"^4.2.10","@smithy/util-utf8":"^4.2.1","tslib":"^2.6.2"},"devDependencies":{"concurrently":"7.0.0","downlevel-dts":"0.10.1","premove":"4.0.0","typescript":"~5.8.3"},"typesVersions":{"<4.0":{"dist-types/*":["dist-types/ts3.4/*"]}},"files":["./cognito-identity.d.ts","./cognito-identity.js","./signin.d.ts","./signin.js","./sso-oidc.d.ts","./sso-oidc.js","./sso.d.ts","./sso.js","./sts.d.ts","./sts.js","dist-*/**"],"browser":{"./dist-es/submodules/signin/runtimeConfig":"./dist-es/submodules/signin/runtimeConfig.browser","./dist-es/submodules/sso-oidc/runtimeConfig":"./dist-es/submodules/sso-oidc/runtimeConfig.browser","./dist-es/submodules/sts/runtimeConfig":"./dist-es/submodules/sts/runtimeConfig.browser"},"react-native":{},"homepage":"https://github.com/aws/aws-sdk-js-v3/tree/main/packages/nested-clients","repository":{"type":"git","url":"https://github.com/aws/aws-sdk-js-v3.git","directory":"packages/nested-clients"},"exports":{"./package.json":"./package.json","./sso-oidc":{"types":"./dist-types/submodules/sso-oidc/index.d.ts","module":"./dist-es/submodules/sso-oidc/index.js","node":"./dist-cjs/submodules/sso-oidc/index.js","import":"./dist-es/submodules/sso-oidc/index.js","require":"./dist-cjs/submodules/sso-oidc/index.js"},"./sts":{"types":"./dist-types/submodules/sts/index.d.ts","module":"./dist-es/submodules/sts/index.js","node":"./dist-cjs/submodules/sts/index.js","import":"./dist-es/submodules/sts/index.js","require":"./dist-cjs/submodules/sts/index.js"},"./signin":{"types":"./dist-types/submodules/signin/index.d.ts","module":"./dist-es/submodules/signin/index.js","node":"./dist-cjs/submodules/signin/index.js","import":"./dist-es/submodules/signin/index.js","require":"./dist-cjs/submodules/signin/index.js"},"./cognito-identity":{"types":"./dist-types/submodules/cognito-identity/index.d.ts","module":"./dist-es/submodules/cognito-identity/index.js","node":"./dist-cjs/submodules/cognito-identity/index.js","import":"./dist-es/submodules/cognito-identity/index.js","require":"./dist-cjs/submodules/cognito-identity/index.js"},"./sso":{"types":"./dist-types/submodules/sso/index.d.ts","module":"./dist-es/submodules/sso/index.js","node":"./dist-cjs/submodules/sso/index.js","import":"./dist-es/submodules/sso/index.js","require":"./dist-cjs/submodules/sso/index.js"}}}');
|
||||
module.exports = /*#__PURE__*/JSON.parse('{"name":"@aws-sdk/nested-clients","version":"3.996.18","description":"Nested clients for AWS SDK packages.","main":"./dist-cjs/index.js","module":"./dist-es/index.js","types":"./dist-types/index.d.ts","scripts":{"build":"yarn lint && concurrently \'yarn:build:types\' \'yarn:build:es\' && yarn build:cjs","build:cjs":"node ../../scripts/compilation/inline nested-clients","build:es":"tsc -p tsconfig.es.json","build:include:deps":"yarn g:turbo run build -F=\\"$npm_package_name\\"","build:types":"tsc -p tsconfig.types.json","build:types:downlevel":"downlevel-dts dist-types dist-types/ts3.4","clean":"premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo","lint":"node ../../scripts/validation/submodules-linter.js --pkg nested-clients","test":"yarn g:vitest run","test:watch":"yarn g:vitest watch"},"engines":{"node":">=20.0.0"},"sideEffects":false,"author":{"name":"AWS SDK for JavaScript Team","url":"https://aws.amazon.com/javascript/"},"license":"Apache-2.0","dependencies":{"@aws-crypto/sha256-browser":"5.2.0","@aws-crypto/sha256-js":"5.2.0","@aws-sdk/core":"^3.973.26","@aws-sdk/middleware-host-header":"^3.972.8","@aws-sdk/middleware-logger":"^3.972.8","@aws-sdk/middleware-recursion-detection":"^3.972.9","@aws-sdk/middleware-user-agent":"^3.972.28","@aws-sdk/region-config-resolver":"^3.972.10","@aws-sdk/types":"^3.973.6","@aws-sdk/util-endpoints":"^3.996.5","@aws-sdk/util-user-agent-browser":"^3.972.8","@aws-sdk/util-user-agent-node":"^3.973.14","@smithy/config-resolver":"^4.4.13","@smithy/core":"^3.23.13","@smithy/fetch-http-handler":"^5.3.15","@smithy/hash-node":"^4.2.12","@smithy/invalid-dependency":"^4.2.12","@smithy/middleware-content-length":"^4.2.12","@smithy/middleware-endpoint":"^4.4.28","@smithy/middleware-retry":"^4.4.46","@smithy/middleware-serde":"^4.2.16","@smithy/middleware-stack":"^4.2.12","@smithy/node-config-provider":"^4.3.12","@smithy/node-http-handler":"^4.5.1","@smithy/protocol-http":"^5.3.12","@smithy/smithy-client":"^4.12.8","@smithy/types":"^4.13.1","@smithy/url-parser":"^4.2.12","@smithy/util-base64":"^4.3.2","@smithy/util-body-length-browser":"^4.2.2","@smithy/util-body-length-node":"^4.2.3","@smithy/util-defaults-mode-browser":"^4.3.44","@smithy/util-defaults-mode-node":"^4.2.48","@smithy/util-endpoints":"^3.3.3","@smithy/util-middleware":"^4.2.12","@smithy/util-retry":"^4.2.13","@smithy/util-utf8":"^4.2.2","tslib":"^2.6.2"},"devDependencies":{"concurrently":"7.0.0","downlevel-dts":"0.10.1","premove":"4.0.0","typescript":"~5.8.3"},"typesVersions":{"<4.5":{"dist-types/*":["dist-types/ts3.4/*"]}},"files":["./cognito-identity.d.ts","./cognito-identity.js","./signin.d.ts","./signin.js","./sso-oidc.d.ts","./sso-oidc.js","./sso.d.ts","./sso.js","./sts.d.ts","./sts.js","dist-*/**"],"browser":{"./dist-es/submodules/cognito-identity/runtimeConfig":"./dist-es/submodules/cognito-identity/runtimeConfig.browser","./dist-es/submodules/signin/runtimeConfig":"./dist-es/submodules/signin/runtimeConfig.browser","./dist-es/submodules/sso-oidc/runtimeConfig":"./dist-es/submodules/sso-oidc/runtimeConfig.browser","./dist-es/submodules/sso/runtimeConfig":"./dist-es/submodules/sso/runtimeConfig.browser","./dist-es/submodules/sts/runtimeConfig":"./dist-es/submodules/sts/runtimeConfig.browser"},"react-native":{},"homepage":"https://github.com/aws/aws-sdk-js-v3/tree/main/packages/nested-clients","repository":{"type":"git","url":"https://github.com/aws/aws-sdk-js-v3.git","directory":"packages/nested-clients"},"exports":{"./package.json":"./package.json","./sso-oidc":{"types":"./dist-types/submodules/sso-oidc/index.d.ts","module":"./dist-es/submodules/sso-oidc/index.js","node":"./dist-cjs/submodules/sso-oidc/index.js","import":"./dist-es/submodules/sso-oidc/index.js","require":"./dist-cjs/submodules/sso-oidc/index.js"},"./sts":{"types":"./dist-types/submodules/sts/index.d.ts","module":"./dist-es/submodules/sts/index.js","node":"./dist-cjs/submodules/sts/index.js","import":"./dist-es/submodules/sts/index.js","require":"./dist-cjs/submodules/sts/index.js"},"./signin":{"types":"./dist-types/submodules/signin/index.d.ts","module":"./dist-es/submodules/signin/index.js","node":"./dist-cjs/submodules/signin/index.js","import":"./dist-es/submodules/signin/index.js","require":"./dist-cjs/submodules/signin/index.js"},"./cognito-identity":{"types":"./dist-types/submodules/cognito-identity/index.d.ts","module":"./dist-es/submodules/cognito-identity/index.js","node":"./dist-cjs/submodules/cognito-identity/index.js","import":"./dist-es/submodules/cognito-identity/index.js","require":"./dist-cjs/submodules/cognito-identity/index.js"},"./sso":{"types":"./dist-types/submodules/sso/index.d.ts","module":"./dist-es/submodules/sso/index.js","node":"./dist-cjs/submodules/sso/index.js","import":"./dist-es/submodules/sso/index.js","require":"./dist-cjs/submodules/sso/index.js"}}}');
|
||||
|
||||
/***/ })
|
||||
|
||||
|
||||
2
dist/762.index.js.map
generated
vendored
2
dist/762.index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
335
dist/998.index.js
generated
vendored
335
dist/998.index.js
generated
vendored
@@ -2,320 +2,6 @@ export const id = 998;
|
||||
export const ids = [998];
|
||||
export const modules = {
|
||||
|
||||
/***/ 7523:
|
||||
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
||||
|
||||
|
||||
|
||||
var protocolHttp = __webpack_require__(2356);
|
||||
var core = __webpack_require__(402);
|
||||
var propertyProvider = __webpack_require__(8857);
|
||||
var client = __webpack_require__(5152);
|
||||
var signatureV4 = __webpack_require__(5118);
|
||||
|
||||
const getDateHeader = (response) => protocolHttp.HttpResponse.isInstance(response) ? response.headers?.date ?? response.headers?.Date : undefined;
|
||||
|
||||
const getSkewCorrectedDate = (systemClockOffset) => new Date(Date.now() + systemClockOffset);
|
||||
|
||||
const isClockSkewed = (clockTime, systemClockOffset) => Math.abs(getSkewCorrectedDate(systemClockOffset).getTime() - clockTime) >= 300000;
|
||||
|
||||
const getUpdatedSystemClockOffset = (clockTime, currentSystemClockOffset) => {
|
||||
const clockTimeInMs = Date.parse(clockTime);
|
||||
if (isClockSkewed(clockTimeInMs, currentSystemClockOffset)) {
|
||||
return clockTimeInMs - Date.now();
|
||||
}
|
||||
return currentSystemClockOffset;
|
||||
};
|
||||
|
||||
const throwSigningPropertyError = (name, property) => {
|
||||
if (!property) {
|
||||
throw new Error(`Property \`${name}\` is not resolved for AWS SDK SigV4Auth`);
|
||||
}
|
||||
return property;
|
||||
};
|
||||
const validateSigningProperties = async (signingProperties) => {
|
||||
const context = throwSigningPropertyError("context", signingProperties.context);
|
||||
const config = throwSigningPropertyError("config", signingProperties.config);
|
||||
const authScheme = context.endpointV2?.properties?.authSchemes?.[0];
|
||||
const signerFunction = throwSigningPropertyError("signer", config.signer);
|
||||
const signer = await signerFunction(authScheme);
|
||||
const signingRegion = signingProperties?.signingRegion;
|
||||
const signingRegionSet = signingProperties?.signingRegionSet;
|
||||
const signingName = signingProperties?.signingName;
|
||||
return {
|
||||
config,
|
||||
signer,
|
||||
signingRegion,
|
||||
signingRegionSet,
|
||||
signingName,
|
||||
};
|
||||
};
|
||||
class AwsSdkSigV4Signer {
|
||||
async sign(httpRequest, identity, signingProperties) {
|
||||
if (!protocolHttp.HttpRequest.isInstance(httpRequest)) {
|
||||
throw new Error("The request is not an instance of `HttpRequest` and cannot be signed");
|
||||
}
|
||||
const validatedProps = await validateSigningProperties(signingProperties);
|
||||
const { config, signer } = validatedProps;
|
||||
let { signingRegion, signingName } = validatedProps;
|
||||
const handlerExecutionContext = signingProperties.context;
|
||||
if (handlerExecutionContext?.authSchemes?.length ?? 0 > 1) {
|
||||
const [first, second] = handlerExecutionContext.authSchemes;
|
||||
if (first?.name === "sigv4a" && second?.name === "sigv4") {
|
||||
signingRegion = second?.signingRegion ?? signingRegion;
|
||||
signingName = second?.signingName ?? signingName;
|
||||
}
|
||||
}
|
||||
const signedRequest = await signer.sign(httpRequest, {
|
||||
signingDate: getSkewCorrectedDate(config.systemClockOffset),
|
||||
signingRegion: signingRegion,
|
||||
signingService: signingName,
|
||||
});
|
||||
return signedRequest;
|
||||
}
|
||||
errorHandler(signingProperties) {
|
||||
return (error) => {
|
||||
const serverTime = error.ServerTime ?? getDateHeader(error.$response);
|
||||
if (serverTime) {
|
||||
const config = throwSigningPropertyError("config", signingProperties.config);
|
||||
const initialSystemClockOffset = config.systemClockOffset;
|
||||
config.systemClockOffset = getUpdatedSystemClockOffset(serverTime, config.systemClockOffset);
|
||||
const clockSkewCorrected = config.systemClockOffset !== initialSystemClockOffset;
|
||||
if (clockSkewCorrected && error.$metadata) {
|
||||
error.$metadata.clockSkewCorrected = true;
|
||||
}
|
||||
}
|
||||
throw error;
|
||||
};
|
||||
}
|
||||
successHandler(httpResponse, signingProperties) {
|
||||
const dateHeader = getDateHeader(httpResponse);
|
||||
if (dateHeader) {
|
||||
const config = throwSigningPropertyError("config", signingProperties.config);
|
||||
config.systemClockOffset = getUpdatedSystemClockOffset(dateHeader, config.systemClockOffset);
|
||||
}
|
||||
}
|
||||
}
|
||||
const AWSSDKSigV4Signer = AwsSdkSigV4Signer;
|
||||
|
||||
class AwsSdkSigV4ASigner extends AwsSdkSigV4Signer {
|
||||
async sign(httpRequest, identity, signingProperties) {
|
||||
if (!protocolHttp.HttpRequest.isInstance(httpRequest)) {
|
||||
throw new Error("The request is not an instance of `HttpRequest` and cannot be signed");
|
||||
}
|
||||
const { config, signer, signingRegion, signingRegionSet, signingName } = await validateSigningProperties(signingProperties);
|
||||
const configResolvedSigningRegionSet = await config.sigv4aSigningRegionSet?.();
|
||||
const multiRegionOverride = (configResolvedSigningRegionSet ??
|
||||
signingRegionSet ?? [signingRegion]).join(",");
|
||||
const signedRequest = await signer.sign(httpRequest, {
|
||||
signingDate: getSkewCorrectedDate(config.systemClockOffset),
|
||||
signingRegion: multiRegionOverride,
|
||||
signingService: signingName,
|
||||
});
|
||||
return signedRequest;
|
||||
}
|
||||
}
|
||||
|
||||
const getArrayForCommaSeparatedString = (str) => typeof str === "string" && str.length > 0 ? str.split(",").map((item) => item.trim()) : [];
|
||||
|
||||
const getBearerTokenEnvKey = (signingName) => `AWS_BEARER_TOKEN_${signingName.replace(/[\s-]/g, "_").toUpperCase()}`;
|
||||
|
||||
const NODE_AUTH_SCHEME_PREFERENCE_ENV_KEY = "AWS_AUTH_SCHEME_PREFERENCE";
|
||||
const NODE_AUTH_SCHEME_PREFERENCE_CONFIG_KEY = "auth_scheme_preference";
|
||||
const NODE_AUTH_SCHEME_PREFERENCE_OPTIONS = {
|
||||
environmentVariableSelector: (env, options) => {
|
||||
if (options?.signingName) {
|
||||
const bearerTokenKey = getBearerTokenEnvKey(options.signingName);
|
||||
if (bearerTokenKey in env)
|
||||
return ["httpBearerAuth"];
|
||||
}
|
||||
if (!(NODE_AUTH_SCHEME_PREFERENCE_ENV_KEY in env))
|
||||
return undefined;
|
||||
return getArrayForCommaSeparatedString(env[NODE_AUTH_SCHEME_PREFERENCE_ENV_KEY]);
|
||||
},
|
||||
configFileSelector: (profile) => {
|
||||
if (!(NODE_AUTH_SCHEME_PREFERENCE_CONFIG_KEY in profile))
|
||||
return undefined;
|
||||
return getArrayForCommaSeparatedString(profile[NODE_AUTH_SCHEME_PREFERENCE_CONFIG_KEY]);
|
||||
},
|
||||
default: [],
|
||||
};
|
||||
|
||||
const resolveAwsSdkSigV4AConfig = (config) => {
|
||||
config.sigv4aSigningRegionSet = core.normalizeProvider(config.sigv4aSigningRegionSet);
|
||||
return config;
|
||||
};
|
||||
const NODE_SIGV4A_CONFIG_OPTIONS = {
|
||||
environmentVariableSelector(env) {
|
||||
if (env.AWS_SIGV4A_SIGNING_REGION_SET) {
|
||||
return env.AWS_SIGV4A_SIGNING_REGION_SET.split(",").map((_) => _.trim());
|
||||
}
|
||||
throw new propertyProvider.ProviderError("AWS_SIGV4A_SIGNING_REGION_SET not set in env.", {
|
||||
tryNextLink: true,
|
||||
});
|
||||
},
|
||||
configFileSelector(profile) {
|
||||
if (profile.sigv4a_signing_region_set) {
|
||||
return (profile.sigv4a_signing_region_set ?? "").split(",").map((_) => _.trim());
|
||||
}
|
||||
throw new propertyProvider.ProviderError("sigv4a_signing_region_set not set in profile.", {
|
||||
tryNextLink: true,
|
||||
});
|
||||
},
|
||||
default: undefined,
|
||||
};
|
||||
|
||||
const resolveAwsSdkSigV4Config = (config) => {
|
||||
let inputCredentials = config.credentials;
|
||||
let isUserSupplied = !!config.credentials;
|
||||
let resolvedCredentials = undefined;
|
||||
Object.defineProperty(config, "credentials", {
|
||||
set(credentials) {
|
||||
if (credentials && credentials !== inputCredentials && credentials !== resolvedCredentials) {
|
||||
isUserSupplied = true;
|
||||
}
|
||||
inputCredentials = credentials;
|
||||
const memoizedProvider = normalizeCredentialProvider(config, {
|
||||
credentials: inputCredentials,
|
||||
credentialDefaultProvider: config.credentialDefaultProvider,
|
||||
});
|
||||
const boundProvider = bindCallerConfig(config, memoizedProvider);
|
||||
if (isUserSupplied && !boundProvider.attributed) {
|
||||
const isCredentialObject = typeof inputCredentials === "object" && inputCredentials !== null;
|
||||
resolvedCredentials = async (options) => {
|
||||
const creds = await boundProvider(options);
|
||||
const attributedCreds = creds;
|
||||
if (isCredentialObject && (!attributedCreds.$source || Object.keys(attributedCreds.$source).length === 0)) {
|
||||
return client.setCredentialFeature(attributedCreds, "CREDENTIALS_CODE", "e");
|
||||
}
|
||||
return attributedCreds;
|
||||
};
|
||||
resolvedCredentials.memoized = boundProvider.memoized;
|
||||
resolvedCredentials.configBound = boundProvider.configBound;
|
||||
resolvedCredentials.attributed = true;
|
||||
}
|
||||
else {
|
||||
resolvedCredentials = boundProvider;
|
||||
}
|
||||
},
|
||||
get() {
|
||||
return resolvedCredentials;
|
||||
},
|
||||
enumerable: true,
|
||||
configurable: true,
|
||||
});
|
||||
config.credentials = inputCredentials;
|
||||
const { signingEscapePath = true, systemClockOffset = config.systemClockOffset || 0, sha256, } = config;
|
||||
let signer;
|
||||
if (config.signer) {
|
||||
signer = core.normalizeProvider(config.signer);
|
||||
}
|
||||
else if (config.regionInfoProvider) {
|
||||
signer = () => core.normalizeProvider(config.region)()
|
||||
.then(async (region) => [
|
||||
(await config.regionInfoProvider(region, {
|
||||
useFipsEndpoint: await config.useFipsEndpoint(),
|
||||
useDualstackEndpoint: await config.useDualstackEndpoint(),
|
||||
})) || {},
|
||||
region,
|
||||
])
|
||||
.then(([regionInfo, region]) => {
|
||||
const { signingRegion, signingService } = regionInfo;
|
||||
config.signingRegion = config.signingRegion || signingRegion || region;
|
||||
config.signingName = config.signingName || signingService || config.serviceId;
|
||||
const params = {
|
||||
...config,
|
||||
credentials: config.credentials,
|
||||
region: config.signingRegion,
|
||||
service: config.signingName,
|
||||
sha256,
|
||||
uriEscapePath: signingEscapePath,
|
||||
};
|
||||
const SignerCtor = config.signerConstructor || signatureV4.SignatureV4;
|
||||
return new SignerCtor(params);
|
||||
});
|
||||
}
|
||||
else {
|
||||
signer = async (authScheme) => {
|
||||
authScheme = Object.assign({}, {
|
||||
name: "sigv4",
|
||||
signingName: config.signingName || config.defaultSigningName,
|
||||
signingRegion: await core.normalizeProvider(config.region)(),
|
||||
properties: {},
|
||||
}, authScheme);
|
||||
const signingRegion = authScheme.signingRegion;
|
||||
const signingService = authScheme.signingName;
|
||||
config.signingRegion = config.signingRegion || signingRegion;
|
||||
config.signingName = config.signingName || signingService || config.serviceId;
|
||||
const params = {
|
||||
...config,
|
||||
credentials: config.credentials,
|
||||
region: config.signingRegion,
|
||||
service: config.signingName,
|
||||
sha256,
|
||||
uriEscapePath: signingEscapePath,
|
||||
};
|
||||
const SignerCtor = config.signerConstructor || signatureV4.SignatureV4;
|
||||
return new SignerCtor(params);
|
||||
};
|
||||
}
|
||||
const resolvedConfig = Object.assign(config, {
|
||||
systemClockOffset,
|
||||
signingEscapePath,
|
||||
signer,
|
||||
});
|
||||
return resolvedConfig;
|
||||
};
|
||||
const resolveAWSSDKSigV4Config = resolveAwsSdkSigV4Config;
|
||||
function normalizeCredentialProvider(config, { credentials, credentialDefaultProvider, }) {
|
||||
let credentialsProvider;
|
||||
if (credentials) {
|
||||
if (!credentials?.memoized) {
|
||||
credentialsProvider = core.memoizeIdentityProvider(credentials, core.isIdentityExpired, core.doesIdentityRequireRefresh);
|
||||
}
|
||||
else {
|
||||
credentialsProvider = credentials;
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (credentialDefaultProvider) {
|
||||
credentialsProvider = core.normalizeProvider(credentialDefaultProvider(Object.assign({}, config, {
|
||||
parentClientConfig: config,
|
||||
})));
|
||||
}
|
||||
else {
|
||||
credentialsProvider = async () => {
|
||||
throw new Error("@aws-sdk/core::resolveAwsSdkSigV4Config - `credentials` not provided and no credentialDefaultProvider was configured.");
|
||||
};
|
||||
}
|
||||
}
|
||||
credentialsProvider.memoized = true;
|
||||
return credentialsProvider;
|
||||
}
|
||||
function bindCallerConfig(config, credentialsProvider) {
|
||||
if (credentialsProvider.configBound) {
|
||||
return credentialsProvider;
|
||||
}
|
||||
const fn = async (options) => credentialsProvider({ ...options, callerClientConfig: config });
|
||||
fn.memoized = credentialsProvider.memoized;
|
||||
fn.configBound = true;
|
||||
return fn;
|
||||
}
|
||||
|
||||
exports.AWSSDKSigV4Signer = AWSSDKSigV4Signer;
|
||||
exports.AwsSdkSigV4ASigner = AwsSdkSigV4ASigner;
|
||||
exports.AwsSdkSigV4Signer = AwsSdkSigV4Signer;
|
||||
exports.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS = NODE_AUTH_SCHEME_PREFERENCE_OPTIONS;
|
||||
exports.NODE_SIGV4A_CONFIG_OPTIONS = NODE_SIGV4A_CONFIG_OPTIONS;
|
||||
exports.getBearerTokenEnvKey = getBearerTokenEnvKey;
|
||||
exports.resolveAWSSDKSigV4Config = resolveAWSSDKSigV4Config;
|
||||
exports.resolveAwsSdkSigV4AConfig = resolveAwsSdkSigV4AConfig;
|
||||
exports.resolveAwsSdkSigV4Config = resolveAwsSdkSigV4Config;
|
||||
exports.validateSigningProperties = validateSigningProperties;
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 998:
|
||||
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
||||
|
||||
@@ -537,7 +223,7 @@ exports.SSOClient = sso.SSOClient;
|
||||
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.resolveHttpAuthSchemeConfig = exports.defaultSSOHttpAuthSchemeProvider = exports.defaultSSOHttpAuthSchemeParametersProvider = void 0;
|
||||
const core_1 = __webpack_require__(8704);
|
||||
const httpAuthSchemes_1 = __webpack_require__(7523);
|
||||
const util_middleware_1 = __webpack_require__(6324);
|
||||
const defaultSSOHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
||||
return {
|
||||
@@ -584,7 +270,7 @@ const defaultSSOHttpAuthSchemeProvider = (authParameters) => {
|
||||
};
|
||||
exports.defaultSSOHttpAuthSchemeProvider = defaultSSOHttpAuthSchemeProvider;
|
||||
const resolveHttpAuthSchemeConfig = (config) => {
|
||||
const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
|
||||
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
||||
return Object.assign(config_0, {
|
||||
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
|
||||
});
|
||||
@@ -989,7 +675,8 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.getRuntimeConfig = void 0;
|
||||
const tslib_1 = __webpack_require__(1860);
|
||||
const package_json_1 = tslib_1.__importDefault(__webpack_require__(9955));
|
||||
const core_1 = __webpack_require__(8704);
|
||||
const client_1 = __webpack_require__(5152);
|
||||
const httpAuthSchemes_1 = __webpack_require__(7523);
|
||||
const util_user_agent_node_1 = __webpack_require__(1656);
|
||||
const config_resolver_1 = __webpack_require__(9316);
|
||||
const hash_node_1 = __webpack_require__(2711);
|
||||
@@ -1006,7 +693,7 @@ const getRuntimeConfig = (config) => {
|
||||
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
||||
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
||||
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
||||
(0, core_1.emitWarningIfUnsupportedVersion)(process.version);
|
||||
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
||||
const loaderConfig = {
|
||||
profile: config?.profile,
|
||||
logger: clientSharedValues.logger,
|
||||
@@ -1016,7 +703,7 @@ const getRuntimeConfig = (config) => {
|
||||
...config,
|
||||
runtime: "node",
|
||||
defaultsMode,
|
||||
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
||||
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
||||
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
||||
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
||||
(0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
||||
@@ -1047,9 +734,9 @@ exports.getRuntimeConfig = getRuntimeConfig;
|
||||
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.getRuntimeConfig = void 0;
|
||||
const core_1 = __webpack_require__(8704);
|
||||
const httpAuthSchemes_1 = __webpack_require__(7523);
|
||||
const protocols_1 = __webpack_require__(7288);
|
||||
const core_2 = __webpack_require__(402);
|
||||
const core_1 = __webpack_require__(402);
|
||||
const smithy_client_1 = __webpack_require__(1411);
|
||||
const url_parser_1 = __webpack_require__(4494);
|
||||
const util_base64_1 = __webpack_require__(8385);
|
||||
@@ -1070,12 +757,12 @@ const getRuntimeConfig = (config) => {
|
||||
{
|
||||
schemeId: "aws.auth#sigv4",
|
||||
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
||||
signer: new core_1.AwsSdkSigV4Signer(),
|
||||
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
|
||||
},
|
||||
{
|
||||
schemeId: "smithy.api#noAuth",
|
||||
identityProvider: (ipc) => ipc.getIdentityProvider("smithy.api#noAuth") || (async () => ({})),
|
||||
signer: new core_2.NoAuthSigner(),
|
||||
signer: new core_1.NoAuthSigner(),
|
||||
},
|
||||
],
|
||||
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
||||
@@ -1361,7 +1048,7 @@ exports.nodeProvider = nodeProvider;
|
||||
/***/ 9955:
|
||||
/***/ ((module) => {
|
||||
|
||||
module.exports = /*#__PURE__*/JSON.parse('{"name":"@aws-sdk/nested-clients","version":"3.996.3","description":"Nested clients for AWS SDK packages.","main":"./dist-cjs/index.js","module":"./dist-es/index.js","types":"./dist-types/index.d.ts","scripts":{"build":"yarn lint && concurrently \'yarn:build:types\' \'yarn:build:es\' && yarn build:cjs","build:cjs":"node ../../scripts/compilation/inline nested-clients","build:es":"tsc -p tsconfig.es.json","build:include:deps":"yarn g:turbo run build -F=\\"$npm_package_name\\"","build:types":"tsc -p tsconfig.types.json","build:types:downlevel":"downlevel-dts dist-types dist-types/ts3.4","clean":"premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo","lint":"node ../../scripts/validation/submodules-linter.js --pkg nested-clients","test":"yarn g:vitest run","test:watch":"yarn g:vitest watch"},"engines":{"node":">=20.0.0"},"sideEffects":false,"author":{"name":"AWS SDK for JavaScript Team","url":"https://aws.amazon.com/javascript/"},"license":"Apache-2.0","dependencies":{"@aws-crypto/sha256-browser":"5.2.0","@aws-crypto/sha256-js":"5.2.0","@aws-sdk/core":"^3.973.15","@aws-sdk/middleware-host-header":"^3.972.6","@aws-sdk/middleware-logger":"^3.972.6","@aws-sdk/middleware-recursion-detection":"^3.972.6","@aws-sdk/middleware-user-agent":"^3.972.15","@aws-sdk/region-config-resolver":"^3.972.6","@aws-sdk/types":"^3.973.4","@aws-sdk/util-endpoints":"^3.996.3","@aws-sdk/util-user-agent-browser":"^3.972.6","@aws-sdk/util-user-agent-node":"^3.973.0","@smithy/config-resolver":"^4.4.9","@smithy/core":"^3.23.6","@smithy/fetch-http-handler":"^5.3.11","@smithy/hash-node":"^4.2.10","@smithy/invalid-dependency":"^4.2.10","@smithy/middleware-content-length":"^4.2.10","@smithy/middleware-endpoint":"^4.4.20","@smithy/middleware-retry":"^4.4.37","@smithy/middleware-serde":"^4.2.11","@smithy/middleware-stack":"^4.2.10","@smithy/node-config-provider":"^4.3.10","@smithy/node-http-handler":"^4.4.12","@smithy/protocol-http":"^5.3.10","@smithy/smithy-client":"^4.12.0","@smithy/types":"^4.13.0","@smithy/url-parser":"^4.2.10","@smithy/util-base64":"^4.3.1","@smithy/util-body-length-browser":"^4.2.1","@smithy/util-body-length-node":"^4.2.2","@smithy/util-defaults-mode-browser":"^4.3.36","@smithy/util-defaults-mode-node":"^4.2.39","@smithy/util-endpoints":"^3.3.1","@smithy/util-middleware":"^4.2.10","@smithy/util-retry":"^4.2.10","@smithy/util-utf8":"^4.2.1","tslib":"^2.6.2"},"devDependencies":{"concurrently":"7.0.0","downlevel-dts":"0.10.1","premove":"4.0.0","typescript":"~5.8.3"},"typesVersions":{"<4.0":{"dist-types/*":["dist-types/ts3.4/*"]}},"files":["./cognito-identity.d.ts","./cognito-identity.js","./signin.d.ts","./signin.js","./sso-oidc.d.ts","./sso-oidc.js","./sso.d.ts","./sso.js","./sts.d.ts","./sts.js","dist-*/**"],"browser":{"./dist-es/submodules/signin/runtimeConfig":"./dist-es/submodules/signin/runtimeConfig.browser","./dist-es/submodules/sso-oidc/runtimeConfig":"./dist-es/submodules/sso-oidc/runtimeConfig.browser","./dist-es/submodules/sts/runtimeConfig":"./dist-es/submodules/sts/runtimeConfig.browser"},"react-native":{},"homepage":"https://github.com/aws/aws-sdk-js-v3/tree/main/packages/nested-clients","repository":{"type":"git","url":"https://github.com/aws/aws-sdk-js-v3.git","directory":"packages/nested-clients"},"exports":{"./package.json":"./package.json","./sso-oidc":{"types":"./dist-types/submodules/sso-oidc/index.d.ts","module":"./dist-es/submodules/sso-oidc/index.js","node":"./dist-cjs/submodules/sso-oidc/index.js","import":"./dist-es/submodules/sso-oidc/index.js","require":"./dist-cjs/submodules/sso-oidc/index.js"},"./sts":{"types":"./dist-types/submodules/sts/index.d.ts","module":"./dist-es/submodules/sts/index.js","node":"./dist-cjs/submodules/sts/index.js","import":"./dist-es/submodules/sts/index.js","require":"./dist-cjs/submodules/sts/index.js"},"./signin":{"types":"./dist-types/submodules/signin/index.d.ts","module":"./dist-es/submodules/signin/index.js","node":"./dist-cjs/submodules/signin/index.js","import":"./dist-es/submodules/signin/index.js","require":"./dist-cjs/submodules/signin/index.js"},"./cognito-identity":{"types":"./dist-types/submodules/cognito-identity/index.d.ts","module":"./dist-es/submodules/cognito-identity/index.js","node":"./dist-cjs/submodules/cognito-identity/index.js","import":"./dist-es/submodules/cognito-identity/index.js","require":"./dist-cjs/submodules/cognito-identity/index.js"},"./sso":{"types":"./dist-types/submodules/sso/index.d.ts","module":"./dist-es/submodules/sso/index.js","node":"./dist-cjs/submodules/sso/index.js","import":"./dist-es/submodules/sso/index.js","require":"./dist-cjs/submodules/sso/index.js"}}}');
|
||||
module.exports = /*#__PURE__*/JSON.parse('{"name":"@aws-sdk/nested-clients","version":"3.996.18","description":"Nested clients for AWS SDK packages.","main":"./dist-cjs/index.js","module":"./dist-es/index.js","types":"./dist-types/index.d.ts","scripts":{"build":"yarn lint && concurrently \'yarn:build:types\' \'yarn:build:es\' && yarn build:cjs","build:cjs":"node ../../scripts/compilation/inline nested-clients","build:es":"tsc -p tsconfig.es.json","build:include:deps":"yarn g:turbo run build -F=\\"$npm_package_name\\"","build:types":"tsc -p tsconfig.types.json","build:types:downlevel":"downlevel-dts dist-types dist-types/ts3.4","clean":"premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo","lint":"node ../../scripts/validation/submodules-linter.js --pkg nested-clients","test":"yarn g:vitest run","test:watch":"yarn g:vitest watch"},"engines":{"node":">=20.0.0"},"sideEffects":false,"author":{"name":"AWS SDK for JavaScript Team","url":"https://aws.amazon.com/javascript/"},"license":"Apache-2.0","dependencies":{"@aws-crypto/sha256-browser":"5.2.0","@aws-crypto/sha256-js":"5.2.0","@aws-sdk/core":"^3.973.26","@aws-sdk/middleware-host-header":"^3.972.8","@aws-sdk/middleware-logger":"^3.972.8","@aws-sdk/middleware-recursion-detection":"^3.972.9","@aws-sdk/middleware-user-agent":"^3.972.28","@aws-sdk/region-config-resolver":"^3.972.10","@aws-sdk/types":"^3.973.6","@aws-sdk/util-endpoints":"^3.996.5","@aws-sdk/util-user-agent-browser":"^3.972.8","@aws-sdk/util-user-agent-node":"^3.973.14","@smithy/config-resolver":"^4.4.13","@smithy/core":"^3.23.13","@smithy/fetch-http-handler":"^5.3.15","@smithy/hash-node":"^4.2.12","@smithy/invalid-dependency":"^4.2.12","@smithy/middleware-content-length":"^4.2.12","@smithy/middleware-endpoint":"^4.4.28","@smithy/middleware-retry":"^4.4.46","@smithy/middleware-serde":"^4.2.16","@smithy/middleware-stack":"^4.2.12","@smithy/node-config-provider":"^4.3.12","@smithy/node-http-handler":"^4.5.1","@smithy/protocol-http":"^5.3.12","@smithy/smithy-client":"^4.12.8","@smithy/types":"^4.13.1","@smithy/url-parser":"^4.2.12","@smithy/util-base64":"^4.3.2","@smithy/util-body-length-browser":"^4.2.2","@smithy/util-body-length-node":"^4.2.3","@smithy/util-defaults-mode-browser":"^4.3.44","@smithy/util-defaults-mode-node":"^4.2.48","@smithy/util-endpoints":"^3.3.3","@smithy/util-middleware":"^4.2.12","@smithy/util-retry":"^4.2.13","@smithy/util-utf8":"^4.2.2","tslib":"^2.6.2"},"devDependencies":{"concurrently":"7.0.0","downlevel-dts":"0.10.1","premove":"4.0.0","typescript":"~5.8.3"},"typesVersions":{"<4.5":{"dist-types/*":["dist-types/ts3.4/*"]}},"files":["./cognito-identity.d.ts","./cognito-identity.js","./signin.d.ts","./signin.js","./sso-oidc.d.ts","./sso-oidc.js","./sso.d.ts","./sso.js","./sts.d.ts","./sts.js","dist-*/**"],"browser":{"./dist-es/submodules/cognito-identity/runtimeConfig":"./dist-es/submodules/cognito-identity/runtimeConfig.browser","./dist-es/submodules/signin/runtimeConfig":"./dist-es/submodules/signin/runtimeConfig.browser","./dist-es/submodules/sso-oidc/runtimeConfig":"./dist-es/submodules/sso-oidc/runtimeConfig.browser","./dist-es/submodules/sso/runtimeConfig":"./dist-es/submodules/sso/runtimeConfig.browser","./dist-es/submodules/sts/runtimeConfig":"./dist-es/submodules/sts/runtimeConfig.browser"},"react-native":{},"homepage":"https://github.com/aws/aws-sdk-js-v3/tree/main/packages/nested-clients","repository":{"type":"git","url":"https://github.com/aws/aws-sdk-js-v3.git","directory":"packages/nested-clients"},"exports":{"./package.json":"./package.json","./sso-oidc":{"types":"./dist-types/submodules/sso-oidc/index.d.ts","module":"./dist-es/submodules/sso-oidc/index.js","node":"./dist-cjs/submodules/sso-oidc/index.js","import":"./dist-es/submodules/sso-oidc/index.js","require":"./dist-cjs/submodules/sso-oidc/index.js"},"./sts":{"types":"./dist-types/submodules/sts/index.d.ts","module":"./dist-es/submodules/sts/index.js","node":"./dist-cjs/submodules/sts/index.js","import":"./dist-es/submodules/sts/index.js","require":"./dist-cjs/submodules/sts/index.js"},"./signin":{"types":"./dist-types/submodules/signin/index.d.ts","module":"./dist-es/submodules/signin/index.js","node":"./dist-cjs/submodules/signin/index.js","import":"./dist-es/submodules/signin/index.js","require":"./dist-cjs/submodules/signin/index.js"},"./cognito-identity":{"types":"./dist-types/submodules/cognito-identity/index.d.ts","module":"./dist-es/submodules/cognito-identity/index.js","node":"./dist-cjs/submodules/cognito-identity/index.js","import":"./dist-es/submodules/cognito-identity/index.js","require":"./dist-cjs/submodules/cognito-identity/index.js"},"./sso":{"types":"./dist-types/submodules/sso/index.d.ts","module":"./dist-es/submodules/sso/index.js","node":"./dist-cjs/submodules/sso/index.js","import":"./dist-es/submodules/sso/index.js","require":"./dist-cjs/submodules/sso/index.js"}}}');
|
||||
|
||||
/***/ })
|
||||
|
||||
|
||||
2
dist/998.index.js.map
generated
vendored
2
dist/998.index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
16
dist/index.js
generated
vendored
16
dist/index.js
generated
vendored
File diff suppressed because one or more lines are too long
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
204
dist/licenses.txt
generated
vendored
204
dist/licenses.txt
generated
vendored
@@ -1,207 +1,3 @@
|
||||
@aws-sdk/core
|
||||
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 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.
|
||||
|
||||
@aws-sdk/credential-provider-http
|
||||
Apache-2.0
|
||||
|
||||
|
||||
10
package.json
10
package.json
@@ -23,11 +23,11 @@
|
||||
"packageManager": "yarn@4.9.2",
|
||||
"dependencies": {
|
||||
"@actions/core": "^3.0.0",
|
||||
"@aws-sdk/client-ecr": "^3.1000.0",
|
||||
"@aws-sdk/client-ecr-public": "^3.1000.0",
|
||||
"@docker/actions-toolkit": "^0.77.0",
|
||||
"http-proxy-agent": "^7.0.2",
|
||||
"https-proxy-agent": "^7.0.6",
|
||||
"@aws-sdk/client-ecr": "^3.1020.0",
|
||||
"@aws-sdk/client-ecr-public": "^3.1020.0",
|
||||
"@docker/actions-toolkit": "^0.86.0",
|
||||
"http-proxy-agent": "^9.0.0",
|
||||
"https-proxy-agent": "^9.0.0",
|
||||
"js-yaml": "^4.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
||||
@@ -42,24 +42,26 @@ export function getAuthList(inputs: Inputs): Array<Auth> {
|
||||
}
|
||||
let auths: Array<Auth> = [];
|
||||
if (!inputs.registryAuth) {
|
||||
const registry = inputs.registry || 'docker.io';
|
||||
auths.push({
|
||||
registry: inputs.registry || 'docker.io',
|
||||
registry,
|
||||
username: inputs.username,
|
||||
password: inputs.password,
|
||||
scope: inputs.scope,
|
||||
ecr: inputs.ecr || 'auto',
|
||||
configDir: scopeToConfigDir(inputs.registry, inputs.scope)
|
||||
configDir: scopeToConfigDir(registry, inputs.scope)
|
||||
});
|
||||
} else {
|
||||
auths = (yaml.load(inputs.registryAuth) as Array<Auth>).map(auth => {
|
||||
core.setSecret(auth.password); // redacted in workflow logs
|
||||
const registry = auth.registry || 'docker.io';
|
||||
return {
|
||||
registry: auth.registry || 'docker.io',
|
||||
registry,
|
||||
username: auth.username,
|
||||
password: auth.password,
|
||||
scope: auth.scope,
|
||||
ecr: auth.ecr || 'auto',
|
||||
configDir: scopeToConfigDir(auth.registry || 'docker.io', auth.scope)
|
||||
configDir: scopeToConfigDir(registry, auth.scope)
|
||||
};
|
||||
});
|
||||
}
|
||||
|
||||
1495
yarn.lock
1495
yarn.lock
@@ -12,9 +12,9 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@actions/artifact@npm:^6.2.0":
|
||||
version: 6.2.0
|
||||
resolution: "@actions/artifact@npm:6.2.0"
|
||||
"@actions/artifact@npm:^6.2.1":
|
||||
version: 6.2.1
|
||||
resolution: "@actions/artifact@npm:6.2.1"
|
||||
dependencies:
|
||||
"@actions/core": "npm:^3.0.0"
|
||||
"@actions/github": "npm:^9.0.0"
|
||||
@@ -30,7 +30,7 @@ __metadata:
|
||||
archiver: "npm:^7.0.1"
|
||||
jwt-decode: "npm:^4.0.0"
|
||||
unzip-stream: "npm:^0.3.1"
|
||||
checksum: 10/fa931b1222c0e08bca85d3cb18c2cd5ae912cce3f09ab3acd4ec3486e864337d65177089a14aef124d9696b9dd5309b273a9251e230172c79c2444af2c43443e
|
||||
checksum: 10/1fad9b079ee2ab07f964b93bf7b4fc594d115199219baed74ac3bf2a8675e0b7ea57252eccbcdaaaa8fc8375742d23585cbd054f3b2d029c091817e0f257ce93
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -181,378 +181,379 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/client-ecr-public@npm:^3.1000.0":
|
||||
version: 3.1000.0
|
||||
resolution: "@aws-sdk/client-ecr-public@npm:3.1000.0"
|
||||
"@aws-sdk/client-ecr-public@npm:^3.1020.0":
|
||||
version: 3.1022.0
|
||||
resolution: "@aws-sdk/client-ecr-public@npm:3.1022.0"
|
||||
dependencies:
|
||||
"@aws-crypto/sha256-browser": "npm:5.2.0"
|
||||
"@aws-crypto/sha256-js": "npm:5.2.0"
|
||||
"@aws-sdk/core": "npm:^3.973.15"
|
||||
"@aws-sdk/credential-provider-node": "npm:^3.972.14"
|
||||
"@aws-sdk/middleware-host-header": "npm:^3.972.6"
|
||||
"@aws-sdk/middleware-logger": "npm:^3.972.6"
|
||||
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.6"
|
||||
"@aws-sdk/middleware-user-agent": "npm:^3.972.15"
|
||||
"@aws-sdk/region-config-resolver": "npm:^3.972.6"
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@aws-sdk/util-endpoints": "npm:^3.996.3"
|
||||
"@aws-sdk/util-user-agent-browser": "npm:^3.972.6"
|
||||
"@aws-sdk/util-user-agent-node": "npm:^3.973.0"
|
||||
"@smithy/config-resolver": "npm:^4.4.9"
|
||||
"@smithy/core": "npm:^3.23.6"
|
||||
"@smithy/fetch-http-handler": "npm:^5.3.11"
|
||||
"@smithy/hash-node": "npm:^4.2.10"
|
||||
"@smithy/invalid-dependency": "npm:^4.2.10"
|
||||
"@smithy/middleware-content-length": "npm:^4.2.10"
|
||||
"@smithy/middleware-endpoint": "npm:^4.4.20"
|
||||
"@smithy/middleware-retry": "npm:^4.4.37"
|
||||
"@smithy/middleware-serde": "npm:^4.2.11"
|
||||
"@smithy/middleware-stack": "npm:^4.2.10"
|
||||
"@smithy/node-config-provider": "npm:^4.3.10"
|
||||
"@smithy/node-http-handler": "npm:^4.4.12"
|
||||
"@smithy/protocol-http": "npm:^5.3.10"
|
||||
"@smithy/smithy-client": "npm:^4.12.0"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/url-parser": "npm:^4.2.10"
|
||||
"@smithy/util-base64": "npm:^4.3.1"
|
||||
"@smithy/util-body-length-browser": "npm:^4.2.1"
|
||||
"@smithy/util-body-length-node": "npm:^4.2.2"
|
||||
"@smithy/util-defaults-mode-browser": "npm:^4.3.36"
|
||||
"@smithy/util-defaults-mode-node": "npm:^4.2.39"
|
||||
"@smithy/util-endpoints": "npm:^3.3.1"
|
||||
"@smithy/util-middleware": "npm:^4.2.10"
|
||||
"@smithy/util-retry": "npm:^4.2.10"
|
||||
"@smithy/util-utf8": "npm:^4.2.1"
|
||||
"@aws-sdk/core": "npm:^3.973.26"
|
||||
"@aws-sdk/credential-provider-node": "npm:^3.972.29"
|
||||
"@aws-sdk/middleware-host-header": "npm:^3.972.8"
|
||||
"@aws-sdk/middleware-logger": "npm:^3.972.8"
|
||||
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.9"
|
||||
"@aws-sdk/middleware-user-agent": "npm:^3.972.28"
|
||||
"@aws-sdk/region-config-resolver": "npm:^3.972.10"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@aws-sdk/util-endpoints": "npm:^3.996.5"
|
||||
"@aws-sdk/util-user-agent-browser": "npm:^3.972.8"
|
||||
"@aws-sdk/util-user-agent-node": "npm:^3.973.14"
|
||||
"@smithy/config-resolver": "npm:^4.4.13"
|
||||
"@smithy/core": "npm:^3.23.13"
|
||||
"@smithy/fetch-http-handler": "npm:^5.3.15"
|
||||
"@smithy/hash-node": "npm:^4.2.12"
|
||||
"@smithy/invalid-dependency": "npm:^4.2.12"
|
||||
"@smithy/middleware-content-length": "npm:^4.2.12"
|
||||
"@smithy/middleware-endpoint": "npm:^4.4.28"
|
||||
"@smithy/middleware-retry": "npm:^4.4.46"
|
||||
"@smithy/middleware-serde": "npm:^4.2.16"
|
||||
"@smithy/middleware-stack": "npm:^4.2.12"
|
||||
"@smithy/node-config-provider": "npm:^4.3.12"
|
||||
"@smithy/node-http-handler": "npm:^4.5.1"
|
||||
"@smithy/protocol-http": "npm:^5.3.12"
|
||||
"@smithy/smithy-client": "npm:^4.12.8"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/url-parser": "npm:^4.2.12"
|
||||
"@smithy/util-base64": "npm:^4.3.2"
|
||||
"@smithy/util-body-length-browser": "npm:^4.2.2"
|
||||
"@smithy/util-body-length-node": "npm:^4.2.3"
|
||||
"@smithy/util-defaults-mode-browser": "npm:^4.3.44"
|
||||
"@smithy/util-defaults-mode-node": "npm:^4.2.48"
|
||||
"@smithy/util-endpoints": "npm:^3.3.3"
|
||||
"@smithy/util-middleware": "npm:^4.2.12"
|
||||
"@smithy/util-retry": "npm:^4.2.13"
|
||||
"@smithy/util-utf8": "npm:^4.2.2"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/76e31a87e10c1e48c36bf14b8e2bda46cb270903b542f6e14523e3752d1b14e2e13593a4520c00f8d6d66625e715a2f87c863b74d3c1f1f8c4a7eca4bb6694a0
|
||||
checksum: 10/c91a98928130052f521b59aedd2469b11b2f03a8394dceb23e48b84c201e64474efd1d13fcceaea0f507ea3b72c11615ae58c4fcb1343cc485786a4cb9a8bc1f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/client-ecr@npm:^3.1000.0":
|
||||
version: 3.1000.0
|
||||
resolution: "@aws-sdk/client-ecr@npm:3.1000.0"
|
||||
"@aws-sdk/client-ecr@npm:^3.1020.0":
|
||||
version: 3.1022.0
|
||||
resolution: "@aws-sdk/client-ecr@npm:3.1022.0"
|
||||
dependencies:
|
||||
"@aws-crypto/sha256-browser": "npm:5.2.0"
|
||||
"@aws-crypto/sha256-js": "npm:5.2.0"
|
||||
"@aws-sdk/core": "npm:^3.973.15"
|
||||
"@aws-sdk/credential-provider-node": "npm:^3.972.14"
|
||||
"@aws-sdk/middleware-host-header": "npm:^3.972.6"
|
||||
"@aws-sdk/middleware-logger": "npm:^3.972.6"
|
||||
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.6"
|
||||
"@aws-sdk/middleware-user-agent": "npm:^3.972.15"
|
||||
"@aws-sdk/region-config-resolver": "npm:^3.972.6"
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@aws-sdk/util-endpoints": "npm:^3.996.3"
|
||||
"@aws-sdk/util-user-agent-browser": "npm:^3.972.6"
|
||||
"@aws-sdk/util-user-agent-node": "npm:^3.973.0"
|
||||
"@smithy/config-resolver": "npm:^4.4.9"
|
||||
"@smithy/core": "npm:^3.23.6"
|
||||
"@smithy/fetch-http-handler": "npm:^5.3.11"
|
||||
"@smithy/hash-node": "npm:^4.2.10"
|
||||
"@smithy/invalid-dependency": "npm:^4.2.10"
|
||||
"@smithy/middleware-content-length": "npm:^4.2.10"
|
||||
"@smithy/middleware-endpoint": "npm:^4.4.20"
|
||||
"@smithy/middleware-retry": "npm:^4.4.37"
|
||||
"@smithy/middleware-serde": "npm:^4.2.11"
|
||||
"@smithy/middleware-stack": "npm:^4.2.10"
|
||||
"@smithy/node-config-provider": "npm:^4.3.10"
|
||||
"@smithy/node-http-handler": "npm:^4.4.12"
|
||||
"@smithy/protocol-http": "npm:^5.3.10"
|
||||
"@smithy/smithy-client": "npm:^4.12.0"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/url-parser": "npm:^4.2.10"
|
||||
"@smithy/util-base64": "npm:^4.3.1"
|
||||
"@smithy/util-body-length-browser": "npm:^4.2.1"
|
||||
"@smithy/util-body-length-node": "npm:^4.2.2"
|
||||
"@smithy/util-defaults-mode-browser": "npm:^4.3.36"
|
||||
"@smithy/util-defaults-mode-node": "npm:^4.2.39"
|
||||
"@smithy/util-endpoints": "npm:^3.3.1"
|
||||
"@smithy/util-middleware": "npm:^4.2.10"
|
||||
"@smithy/util-retry": "npm:^4.2.10"
|
||||
"@smithy/util-utf8": "npm:^4.2.1"
|
||||
"@smithy/util-waiter": "npm:^4.2.10"
|
||||
"@aws-sdk/core": "npm:^3.973.26"
|
||||
"@aws-sdk/credential-provider-node": "npm:^3.972.29"
|
||||
"@aws-sdk/middleware-host-header": "npm:^3.972.8"
|
||||
"@aws-sdk/middleware-logger": "npm:^3.972.8"
|
||||
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.9"
|
||||
"@aws-sdk/middleware-user-agent": "npm:^3.972.28"
|
||||
"@aws-sdk/region-config-resolver": "npm:^3.972.10"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@aws-sdk/util-endpoints": "npm:^3.996.5"
|
||||
"@aws-sdk/util-user-agent-browser": "npm:^3.972.8"
|
||||
"@aws-sdk/util-user-agent-node": "npm:^3.973.14"
|
||||
"@smithy/config-resolver": "npm:^4.4.13"
|
||||
"@smithy/core": "npm:^3.23.13"
|
||||
"@smithy/fetch-http-handler": "npm:^5.3.15"
|
||||
"@smithy/hash-node": "npm:^4.2.12"
|
||||
"@smithy/invalid-dependency": "npm:^4.2.12"
|
||||
"@smithy/middleware-content-length": "npm:^4.2.12"
|
||||
"@smithy/middleware-endpoint": "npm:^4.4.28"
|
||||
"@smithy/middleware-retry": "npm:^4.4.46"
|
||||
"@smithy/middleware-serde": "npm:^4.2.16"
|
||||
"@smithy/middleware-stack": "npm:^4.2.12"
|
||||
"@smithy/node-config-provider": "npm:^4.3.12"
|
||||
"@smithy/node-http-handler": "npm:^4.5.1"
|
||||
"@smithy/protocol-http": "npm:^5.3.12"
|
||||
"@smithy/smithy-client": "npm:^4.12.8"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/url-parser": "npm:^4.2.12"
|
||||
"@smithy/util-base64": "npm:^4.3.2"
|
||||
"@smithy/util-body-length-browser": "npm:^4.2.2"
|
||||
"@smithy/util-body-length-node": "npm:^4.2.3"
|
||||
"@smithy/util-defaults-mode-browser": "npm:^4.3.44"
|
||||
"@smithy/util-defaults-mode-node": "npm:^4.2.48"
|
||||
"@smithy/util-endpoints": "npm:^3.3.3"
|
||||
"@smithy/util-middleware": "npm:^4.2.12"
|
||||
"@smithy/util-retry": "npm:^4.2.13"
|
||||
"@smithy/util-utf8": "npm:^4.2.2"
|
||||
"@smithy/util-waiter": "npm:^4.2.14"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/c1cc77d938208bc04040deae84c94f5d3a511d8617ba122f020ed1b8b0a8e02ed8c47cb4ac8da120772cb1021c1bdd36feb12cf090fdc14b26658b221feac993
|
||||
checksum: 10/ba985c4d19589eaab17416518c96686e8ef204bb526f606064a23b44c9b27f5c9b71d8f9926ac8785f5afe10e157f66689156d825d88d177c509cfd3224f3063
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/core@npm:^3.973.15":
|
||||
version: 3.973.15
|
||||
resolution: "@aws-sdk/core@npm:3.973.15"
|
||||
"@aws-sdk/core@npm:^3.973.26":
|
||||
version: 3.973.26
|
||||
resolution: "@aws-sdk/core@npm:3.973.26"
|
||||
dependencies:
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@aws-sdk/xml-builder": "npm:^3.972.8"
|
||||
"@smithy/core": "npm:^3.23.6"
|
||||
"@smithy/node-config-provider": "npm:^4.3.10"
|
||||
"@smithy/property-provider": "npm:^4.2.10"
|
||||
"@smithy/protocol-http": "npm:^5.3.10"
|
||||
"@smithy/signature-v4": "npm:^5.3.10"
|
||||
"@smithy/smithy-client": "npm:^4.12.0"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/util-base64": "npm:^4.3.1"
|
||||
"@smithy/util-middleware": "npm:^4.2.10"
|
||||
"@smithy/util-utf8": "npm:^4.2.1"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@aws-sdk/xml-builder": "npm:^3.972.16"
|
||||
"@smithy/core": "npm:^3.23.13"
|
||||
"@smithy/node-config-provider": "npm:^4.3.12"
|
||||
"@smithy/property-provider": "npm:^4.2.12"
|
||||
"@smithy/protocol-http": "npm:^5.3.12"
|
||||
"@smithy/signature-v4": "npm:^5.3.12"
|
||||
"@smithy/smithy-client": "npm:^4.12.8"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/util-base64": "npm:^4.3.2"
|
||||
"@smithy/util-middleware": "npm:^4.2.12"
|
||||
"@smithy/util-utf8": "npm:^4.2.2"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/65b10efa3b511bce9be0738f60dd8b373e4ccb8269b128ceea31536b6ddd0447d22984f7f43b2ac44f973f74945c60996d224d497ad657323d6b5dd4bef4c727
|
||||
checksum: 10/6760e19f912034cf2e28c6fe9872613a3a32f6f66c5bef7c104fa00d74f3408acf0aa52711eb3f4df2889c0d4ca055be35dd7fd2fdbc0ed057f773bff8cffeba
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-env@npm:^3.972.13":
|
||||
version: 3.972.13
|
||||
resolution: "@aws-sdk/credential-provider-env@npm:3.972.13"
|
||||
"@aws-sdk/credential-provider-env@npm:^3.972.24":
|
||||
version: 3.972.24
|
||||
resolution: "@aws-sdk/credential-provider-env@npm:3.972.24"
|
||||
dependencies:
|
||||
"@aws-sdk/core": "npm:^3.973.15"
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@smithy/property-provider": "npm:^4.2.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@aws-sdk/core": "npm:^3.973.26"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@smithy/property-provider": "npm:^4.2.12"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/306c35e37abafd2f3a95cb3f1e666ee46f0dc35260b6a96ab85222f1133f3fa53734355e803f199b1857c28489caee7fce1cbc9cc11ce1dfdb172781f5696147
|
||||
checksum: 10/5ca69d965747507f8af0851eaf66fb2b51eceaecbb36b8ea0b20c0a87693aff33b7378f4a0f18f92e64b685d8bcd52123922bb45f2f5f51b4994cc64f8b210c5
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-http@npm:^3.972.15":
|
||||
version: 3.972.15
|
||||
resolution: "@aws-sdk/credential-provider-http@npm:3.972.15"
|
||||
"@aws-sdk/credential-provider-http@npm:^3.972.26":
|
||||
version: 3.972.26
|
||||
resolution: "@aws-sdk/credential-provider-http@npm:3.972.26"
|
||||
dependencies:
|
||||
"@aws-sdk/core": "npm:^3.973.15"
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@smithy/fetch-http-handler": "npm:^5.3.11"
|
||||
"@smithy/node-http-handler": "npm:^4.4.12"
|
||||
"@smithy/property-provider": "npm:^4.2.10"
|
||||
"@smithy/protocol-http": "npm:^5.3.10"
|
||||
"@smithy/smithy-client": "npm:^4.12.0"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/util-stream": "npm:^4.5.15"
|
||||
"@aws-sdk/core": "npm:^3.973.26"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@smithy/fetch-http-handler": "npm:^5.3.15"
|
||||
"@smithy/node-http-handler": "npm:^4.5.1"
|
||||
"@smithy/property-provider": "npm:^4.2.12"
|
||||
"@smithy/protocol-http": "npm:^5.3.12"
|
||||
"@smithy/smithy-client": "npm:^4.12.8"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/util-stream": "npm:^4.5.21"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/8d933acd8c8ca80a5a86b02bbf6a5455c6d3215a247f103e88ab44569288fe03ee0a716ef0cdd7017a4c80415f584ce992c3055a069b76942a1e5f2b41d0918b
|
||||
checksum: 10/d3b5904e168a43c53c32cfe16725c091bf3f41755afe910f50d2bede17f2682bed968ad1923a3dadd17e75ffdd53eda6ef790fb8700fed350066bdcdb160ad24
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-ini@npm:^3.972.13":
|
||||
version: 3.972.13
|
||||
resolution: "@aws-sdk/credential-provider-ini@npm:3.972.13"
|
||||
"@aws-sdk/credential-provider-ini@npm:^3.972.28":
|
||||
version: 3.972.28
|
||||
resolution: "@aws-sdk/credential-provider-ini@npm:3.972.28"
|
||||
dependencies:
|
||||
"@aws-sdk/core": "npm:^3.973.15"
|
||||
"@aws-sdk/credential-provider-env": "npm:^3.972.13"
|
||||
"@aws-sdk/credential-provider-http": "npm:^3.972.15"
|
||||
"@aws-sdk/credential-provider-login": "npm:^3.972.13"
|
||||
"@aws-sdk/credential-provider-process": "npm:^3.972.13"
|
||||
"@aws-sdk/credential-provider-sso": "npm:^3.972.13"
|
||||
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.13"
|
||||
"@aws-sdk/nested-clients": "npm:^3.996.3"
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@smithy/credential-provider-imds": "npm:^4.2.10"
|
||||
"@smithy/property-provider": "npm:^4.2.10"
|
||||
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@aws-sdk/core": "npm:^3.973.26"
|
||||
"@aws-sdk/credential-provider-env": "npm:^3.972.24"
|
||||
"@aws-sdk/credential-provider-http": "npm:^3.972.26"
|
||||
"@aws-sdk/credential-provider-login": "npm:^3.972.28"
|
||||
"@aws-sdk/credential-provider-process": "npm:^3.972.24"
|
||||
"@aws-sdk/credential-provider-sso": "npm:^3.972.28"
|
||||
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.28"
|
||||
"@aws-sdk/nested-clients": "npm:^3.996.18"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@smithy/credential-provider-imds": "npm:^4.2.12"
|
||||
"@smithy/property-provider": "npm:^4.2.12"
|
||||
"@smithy/shared-ini-file-loader": "npm:^4.4.7"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/e2840eafd28350727a0685f281c9f52cc0eea5633a31b53b702003a4d005d4c19010e82fe895fb3e7afe3fd280c568cfbf15c440a2c1f61fe1c0ab541981b15e
|
||||
checksum: 10/4a961738da0487acc4b72de413321e35941550ca85d6b3afa2103a896c093ee530eacbf905a2286c40a3fab387ba62ef0fa05173d49f3aeef2a1fcd403a8b29b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-login@npm:^3.972.13":
|
||||
version: 3.972.13
|
||||
resolution: "@aws-sdk/credential-provider-login@npm:3.972.13"
|
||||
"@aws-sdk/credential-provider-login@npm:^3.972.28":
|
||||
version: 3.972.28
|
||||
resolution: "@aws-sdk/credential-provider-login@npm:3.972.28"
|
||||
dependencies:
|
||||
"@aws-sdk/core": "npm:^3.973.15"
|
||||
"@aws-sdk/nested-clients": "npm:^3.996.3"
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@smithy/property-provider": "npm:^4.2.10"
|
||||
"@smithy/protocol-http": "npm:^5.3.10"
|
||||
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@aws-sdk/core": "npm:^3.973.26"
|
||||
"@aws-sdk/nested-clients": "npm:^3.996.18"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@smithy/property-provider": "npm:^4.2.12"
|
||||
"@smithy/protocol-http": "npm:^5.3.12"
|
||||
"@smithy/shared-ini-file-loader": "npm:^4.4.7"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/d4c871cc6b384e5b25bc821bef4e1042e4e856011dcaf08b6b1843f6a7d7edd89221d7c3b475580f1fe08edcdecc6c20e7c546e713c124902d23788ff5d69c9f
|
||||
checksum: 10/075c680e352140fd678434cb29d05dfb5016f1a8e1eda8cfe6b39f0b72c52e374d53f63ccd9e35088d3bd26de9201c20020ea7dfbe2e3afc17cec52c139297b5
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-node@npm:^3.972.14":
|
||||
version: 3.972.14
|
||||
resolution: "@aws-sdk/credential-provider-node@npm:3.972.14"
|
||||
"@aws-sdk/credential-provider-node@npm:^3.972.29":
|
||||
version: 3.972.29
|
||||
resolution: "@aws-sdk/credential-provider-node@npm:3.972.29"
|
||||
dependencies:
|
||||
"@aws-sdk/credential-provider-env": "npm:^3.972.13"
|
||||
"@aws-sdk/credential-provider-http": "npm:^3.972.15"
|
||||
"@aws-sdk/credential-provider-ini": "npm:^3.972.13"
|
||||
"@aws-sdk/credential-provider-process": "npm:^3.972.13"
|
||||
"@aws-sdk/credential-provider-sso": "npm:^3.972.13"
|
||||
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.13"
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@smithy/credential-provider-imds": "npm:^4.2.10"
|
||||
"@smithy/property-provider": "npm:^4.2.10"
|
||||
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@aws-sdk/credential-provider-env": "npm:^3.972.24"
|
||||
"@aws-sdk/credential-provider-http": "npm:^3.972.26"
|
||||
"@aws-sdk/credential-provider-ini": "npm:^3.972.28"
|
||||
"@aws-sdk/credential-provider-process": "npm:^3.972.24"
|
||||
"@aws-sdk/credential-provider-sso": "npm:^3.972.28"
|
||||
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.28"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@smithy/credential-provider-imds": "npm:^4.2.12"
|
||||
"@smithy/property-provider": "npm:^4.2.12"
|
||||
"@smithy/shared-ini-file-loader": "npm:^4.4.7"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/f36ef21fa7932a06fa8065f3e306c6b61de92251a41e471af1193e99f408bd970fe1baab4e28533b964a5ac712b5268e7f9422f22772e5cb25029c68f4ab23a5
|
||||
checksum: 10/99e64f9719146104ef4f1484654ceefd7ca821b328f488c305159e4d9b81e9205e5ccafb5f7eb50a2872fcb58bc28131945d8dc71fc4d988009bc5c8c757251b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-process@npm:^3.972.13":
|
||||
version: 3.972.13
|
||||
resolution: "@aws-sdk/credential-provider-process@npm:3.972.13"
|
||||
"@aws-sdk/credential-provider-process@npm:^3.972.24":
|
||||
version: 3.972.24
|
||||
resolution: "@aws-sdk/credential-provider-process@npm:3.972.24"
|
||||
dependencies:
|
||||
"@aws-sdk/core": "npm:^3.973.15"
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@smithy/property-provider": "npm:^4.2.10"
|
||||
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@aws-sdk/core": "npm:^3.973.26"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@smithy/property-provider": "npm:^4.2.12"
|
||||
"@smithy/shared-ini-file-loader": "npm:^4.4.7"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/e9e946d1bd19af521b1ba4695598345fab0052e9c55444db8c423df6bc965a41f5d02eef56e72ec9c9dcd314a510f798c3baf0d63ee8054f9220ce3864e8578b
|
||||
checksum: 10/aa2cc9ceefd0f717840fd460637710373624bd79ceb981cceff9065615a8538ceefbdaf5803372a590609e14657ad0e158f0d56b5f2c67abfc38df65c5c12432
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-sso@npm:^3.972.13":
|
||||
version: 3.972.13
|
||||
resolution: "@aws-sdk/credential-provider-sso@npm:3.972.13"
|
||||
"@aws-sdk/credential-provider-sso@npm:^3.972.28":
|
||||
version: 3.972.28
|
||||
resolution: "@aws-sdk/credential-provider-sso@npm:3.972.28"
|
||||
dependencies:
|
||||
"@aws-sdk/core": "npm:^3.973.15"
|
||||
"@aws-sdk/nested-clients": "npm:^3.996.3"
|
||||
"@aws-sdk/token-providers": "npm:3.999.0"
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@smithy/property-provider": "npm:^4.2.10"
|
||||
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@aws-sdk/core": "npm:^3.973.26"
|
||||
"@aws-sdk/nested-clients": "npm:^3.996.18"
|
||||
"@aws-sdk/token-providers": "npm:3.1021.0"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@smithy/property-provider": "npm:^4.2.12"
|
||||
"@smithy/shared-ini-file-loader": "npm:^4.4.7"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/184f97b6f3b9510678fb509ef947dfc9350e186ad6961d0ed2369b24cfdf9e5ef2cd220f956e7b9b6986b63b383df8f4b2dd1be01347a5e014670f9f417fc8f9
|
||||
checksum: 10/440c07e329f5112a9ff637f2b595fbae21001fb0255183e3713630ac38e3de35cfa84beac49d78da4ef9684a9f78a3cbeac13e7f48c7da1df6e1390dbf3bc28b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-web-identity@npm:^3.972.13":
|
||||
version: 3.972.13
|
||||
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.13"
|
||||
"@aws-sdk/credential-provider-web-identity@npm:^3.972.28":
|
||||
version: 3.972.28
|
||||
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.28"
|
||||
dependencies:
|
||||
"@aws-sdk/core": "npm:^3.973.15"
|
||||
"@aws-sdk/nested-clients": "npm:^3.996.3"
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@smithy/property-provider": "npm:^4.2.10"
|
||||
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@aws-sdk/core": "npm:^3.973.26"
|
||||
"@aws-sdk/nested-clients": "npm:^3.996.18"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@smithy/property-provider": "npm:^4.2.12"
|
||||
"@smithy/shared-ini-file-loader": "npm:^4.4.7"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/d2260502b2f90382d91c2ebbb197cab399a3903a4f54c4d62f8145a823f44a8e1899bdf231a5c9d77ec6d9efa132a26fb367e653596946c012914b7c91cee7a0
|
||||
checksum: 10/9578e46e5b2a08a0f49b02807f4dfe20e22da01ff9b2c70fa54680efda4106817497c461e2dd2caa7a5226658519ec6c98c808adb33993e61aac5061e3470f28
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/middleware-host-header@npm:^3.972.6":
|
||||
version: 3.972.6
|
||||
resolution: "@aws-sdk/middleware-host-header@npm:3.972.6"
|
||||
"@aws-sdk/middleware-host-header@npm:^3.972.8":
|
||||
version: 3.972.8
|
||||
resolution: "@aws-sdk/middleware-host-header@npm:3.972.8"
|
||||
dependencies:
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@smithy/protocol-http": "npm:^5.3.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@smithy/protocol-http": "npm:^5.3.12"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/9c62beeb1e59cb80699870086370409b9c80d3fc269d4dedbb9b74e0f7996d6dc3036039641747a9679ecc71a2837e39f0250d59dd60ed2f8c76ed0d3c452b3d
|
||||
checksum: 10/1af0015aa4e1f243d20054501148c27f62af974cc92735a38723ed909396bc98f7cddbf76a1237c8e08b46ab4b54cbf7f47c239263002a441aad4807feb41750
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/middleware-logger@npm:^3.972.6":
|
||||
version: 3.972.6
|
||||
resolution: "@aws-sdk/middleware-logger@npm:3.972.6"
|
||||
"@aws-sdk/middleware-logger@npm:^3.972.8":
|
||||
version: 3.972.8
|
||||
resolution: "@aws-sdk/middleware-logger@npm:3.972.8"
|
||||
dependencies:
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/b914002e1f246669c1570a607a6e8c6cc326a5d1d210e7c2ad5cb9a30b2b1b2bfbe34f4903396ec899be4e525d3b9194c3a8552321ed333b9f26e3c3f6cc5994
|
||||
checksum: 10/e6f56fb83fd5bdbe6d354648596ce3ffff5293c87a48d06365e1a9fd41bdc6da4f53240908bc7d3b69e735905506ef89078a5812d1252e7f46bcb82255e5999b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/middleware-recursion-detection@npm:^3.972.6":
|
||||
version: 3.972.6
|
||||
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.6"
|
||||
"@aws-sdk/middleware-recursion-detection@npm:^3.972.9":
|
||||
version: 3.972.9
|
||||
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.9"
|
||||
dependencies:
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@aws/lambda-invoke-store": "npm:^0.2.2"
|
||||
"@smithy/protocol-http": "npm:^5.3.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/protocol-http": "npm:^5.3.12"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/34ac5af8425b24f6b9c16eafaa24d0ac64e2a0eec5a8203a0b27b207cb0e72075717c5711ad979a3321dd76949330595467293ac702f5d1dd7b03468e2fd40f4
|
||||
checksum: 10/86eea869b5b157b4f411013c4dc138fb72e43ff9a10fe83890d0fe0a3ecc7f63af415b8af02f11543233ade78fdeecab271f78fff6b0bd58b29d3d2e6053e1d4
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/middleware-user-agent@npm:^3.972.15":
|
||||
version: 3.972.15
|
||||
resolution: "@aws-sdk/middleware-user-agent@npm:3.972.15"
|
||||
"@aws-sdk/middleware-user-agent@npm:^3.972.28":
|
||||
version: 3.972.28
|
||||
resolution: "@aws-sdk/middleware-user-agent@npm:3.972.28"
|
||||
dependencies:
|
||||
"@aws-sdk/core": "npm:^3.973.15"
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@aws-sdk/util-endpoints": "npm:^3.996.3"
|
||||
"@smithy/core": "npm:^3.23.6"
|
||||
"@smithy/protocol-http": "npm:^5.3.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@aws-sdk/core": "npm:^3.973.26"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@aws-sdk/util-endpoints": "npm:^3.996.5"
|
||||
"@smithy/core": "npm:^3.23.13"
|
||||
"@smithy/protocol-http": "npm:^5.3.12"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/util-retry": "npm:^4.2.13"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/4b11fe292c12e3d1cda095110d9c8e6a3a08593845b49f8be37032eb9a5f798b2384d64f10b0b2be4aa8cd4eb8326a7fcde7f5572f91da0698b604f8482b86f9
|
||||
checksum: 10/1f5668ea362c98cbfe2ec17d71a47792b8f78c1d5ba77b2a9ef10614528b8f704fb11df74fdf6d9199799341171eed6b7710b56ac927df43343c06df15dd2e74
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/nested-clients@npm:^3.996.3":
|
||||
version: 3.996.3
|
||||
resolution: "@aws-sdk/nested-clients@npm:3.996.3"
|
||||
"@aws-sdk/nested-clients@npm:^3.996.18":
|
||||
version: 3.996.18
|
||||
resolution: "@aws-sdk/nested-clients@npm:3.996.18"
|
||||
dependencies:
|
||||
"@aws-crypto/sha256-browser": "npm:5.2.0"
|
||||
"@aws-crypto/sha256-js": "npm:5.2.0"
|
||||
"@aws-sdk/core": "npm:^3.973.15"
|
||||
"@aws-sdk/middleware-host-header": "npm:^3.972.6"
|
||||
"@aws-sdk/middleware-logger": "npm:^3.972.6"
|
||||
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.6"
|
||||
"@aws-sdk/middleware-user-agent": "npm:^3.972.15"
|
||||
"@aws-sdk/region-config-resolver": "npm:^3.972.6"
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@aws-sdk/util-endpoints": "npm:^3.996.3"
|
||||
"@aws-sdk/util-user-agent-browser": "npm:^3.972.6"
|
||||
"@aws-sdk/util-user-agent-node": "npm:^3.973.0"
|
||||
"@smithy/config-resolver": "npm:^4.4.9"
|
||||
"@smithy/core": "npm:^3.23.6"
|
||||
"@smithy/fetch-http-handler": "npm:^5.3.11"
|
||||
"@smithy/hash-node": "npm:^4.2.10"
|
||||
"@smithy/invalid-dependency": "npm:^4.2.10"
|
||||
"@smithy/middleware-content-length": "npm:^4.2.10"
|
||||
"@smithy/middleware-endpoint": "npm:^4.4.20"
|
||||
"@smithy/middleware-retry": "npm:^4.4.37"
|
||||
"@smithy/middleware-serde": "npm:^4.2.11"
|
||||
"@smithy/middleware-stack": "npm:^4.2.10"
|
||||
"@smithy/node-config-provider": "npm:^4.3.10"
|
||||
"@smithy/node-http-handler": "npm:^4.4.12"
|
||||
"@smithy/protocol-http": "npm:^5.3.10"
|
||||
"@smithy/smithy-client": "npm:^4.12.0"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/url-parser": "npm:^4.2.10"
|
||||
"@smithy/util-base64": "npm:^4.3.1"
|
||||
"@smithy/util-body-length-browser": "npm:^4.2.1"
|
||||
"@smithy/util-body-length-node": "npm:^4.2.2"
|
||||
"@smithy/util-defaults-mode-browser": "npm:^4.3.36"
|
||||
"@smithy/util-defaults-mode-node": "npm:^4.2.39"
|
||||
"@smithy/util-endpoints": "npm:^3.3.1"
|
||||
"@smithy/util-middleware": "npm:^4.2.10"
|
||||
"@smithy/util-retry": "npm:^4.2.10"
|
||||
"@smithy/util-utf8": "npm:^4.2.1"
|
||||
"@aws-sdk/core": "npm:^3.973.26"
|
||||
"@aws-sdk/middleware-host-header": "npm:^3.972.8"
|
||||
"@aws-sdk/middleware-logger": "npm:^3.972.8"
|
||||
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.9"
|
||||
"@aws-sdk/middleware-user-agent": "npm:^3.972.28"
|
||||
"@aws-sdk/region-config-resolver": "npm:^3.972.10"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@aws-sdk/util-endpoints": "npm:^3.996.5"
|
||||
"@aws-sdk/util-user-agent-browser": "npm:^3.972.8"
|
||||
"@aws-sdk/util-user-agent-node": "npm:^3.973.14"
|
||||
"@smithy/config-resolver": "npm:^4.4.13"
|
||||
"@smithy/core": "npm:^3.23.13"
|
||||
"@smithy/fetch-http-handler": "npm:^5.3.15"
|
||||
"@smithy/hash-node": "npm:^4.2.12"
|
||||
"@smithy/invalid-dependency": "npm:^4.2.12"
|
||||
"@smithy/middleware-content-length": "npm:^4.2.12"
|
||||
"@smithy/middleware-endpoint": "npm:^4.4.28"
|
||||
"@smithy/middleware-retry": "npm:^4.4.46"
|
||||
"@smithy/middleware-serde": "npm:^4.2.16"
|
||||
"@smithy/middleware-stack": "npm:^4.2.12"
|
||||
"@smithy/node-config-provider": "npm:^4.3.12"
|
||||
"@smithy/node-http-handler": "npm:^4.5.1"
|
||||
"@smithy/protocol-http": "npm:^5.3.12"
|
||||
"@smithy/smithy-client": "npm:^4.12.8"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/url-parser": "npm:^4.2.12"
|
||||
"@smithy/util-base64": "npm:^4.3.2"
|
||||
"@smithy/util-body-length-browser": "npm:^4.2.2"
|
||||
"@smithy/util-body-length-node": "npm:^4.2.3"
|
||||
"@smithy/util-defaults-mode-browser": "npm:^4.3.44"
|
||||
"@smithy/util-defaults-mode-node": "npm:^4.2.48"
|
||||
"@smithy/util-endpoints": "npm:^3.3.3"
|
||||
"@smithy/util-middleware": "npm:^4.2.12"
|
||||
"@smithy/util-retry": "npm:^4.2.13"
|
||||
"@smithy/util-utf8": "npm:^4.2.2"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/200708dad4219ead519809a49da9fb6e78028bdcd215731a27085b9341956a72886c45d9103646254c7ccee7426901b9199df729186fda12badfc14f166b65e1
|
||||
checksum: 10/042d258e098e8e097374a5a5ef29fdebcd39ab6bdb76a06d21dc6291a03ccb1bcd6b17c6bf9cb011d2efa0483ccaf5c2e81f7b5f0febaae8fea6cbad8479dbec
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/region-config-resolver@npm:^3.972.6":
|
||||
version: 3.972.6
|
||||
resolution: "@aws-sdk/region-config-resolver@npm:3.972.6"
|
||||
"@aws-sdk/region-config-resolver@npm:^3.972.10":
|
||||
version: 3.972.10
|
||||
resolution: "@aws-sdk/region-config-resolver@npm:3.972.10"
|
||||
dependencies:
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@smithy/config-resolver": "npm:^4.4.9"
|
||||
"@smithy/node-config-provider": "npm:^4.3.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@smithy/config-resolver": "npm:^4.4.13"
|
||||
"@smithy/node-config-provider": "npm:^4.3.12"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/d3541c865b0f2816adae45345716bb0271f5eeb4f4389bcb33f467e85dad2460aac6b768185c85f32d386b5bffda92a59366d87a052dda8aa53d85d155ed98ed
|
||||
checksum: 10/2c6c644953c038abc18a753807eef9b7c7eaa099d184f8e2721058a1edacc3d9d050fa278781df7f020da89ae976c553bb381d7c64119f2fb7b43e2b2869c828
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/token-providers@npm:3.999.0":
|
||||
version: 3.999.0
|
||||
resolution: "@aws-sdk/token-providers@npm:3.999.0"
|
||||
"@aws-sdk/token-providers@npm:3.1021.0":
|
||||
version: 3.1021.0
|
||||
resolution: "@aws-sdk/token-providers@npm:3.1021.0"
|
||||
dependencies:
|
||||
"@aws-sdk/core": "npm:^3.973.15"
|
||||
"@aws-sdk/nested-clients": "npm:^3.996.3"
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@smithy/property-provider": "npm:^4.2.10"
|
||||
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@aws-sdk/core": "npm:^3.973.26"
|
||||
"@aws-sdk/nested-clients": "npm:^3.996.18"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@smithy/property-provider": "npm:^4.2.12"
|
||||
"@smithy/shared-ini-file-loader": "npm:^4.4.7"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/1edabf8766e273121df8498df2c7ac8965f5c14ba2ef66700162aab1050fc1491a62fbef220c99cbdab4e883b9dafbedd7d014421e7fc4a2587a4b9fbadcdc7f
|
||||
checksum: 10/8b64169f56e3b352656bdcea347269d979aa7422c09396e01ef97912db96584274b6aac1fa6d0e267536ef0f6b8acfa150c0eed722243af2235019d62f824870
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -566,26 +567,26 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/types@npm:^3.973.4":
|
||||
version: 3.973.4
|
||||
resolution: "@aws-sdk/types@npm:3.973.4"
|
||||
"@aws-sdk/types@npm:^3.973.6":
|
||||
version: 3.973.6
|
||||
resolution: "@aws-sdk/types@npm:3.973.6"
|
||||
dependencies:
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/285f75ec183d799363d7f756b9e6f67dab230bff09b027f5dac0145f97de73e72b0fa6affa9ce2b6f5c97ab5f0ec8059436fd2ea1784398c07aacf3648c93705
|
||||
checksum: 10/74f0ef0da96aab5e9a2838c02a0ecbf3cda5cba09711378c1eb980f66ce511eb6929e3f46743538f64854d75fe27d23bf7b67790df6df09a10bedf0a7a5ccb7f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/util-endpoints@npm:^3.996.3":
|
||||
version: 3.996.3
|
||||
resolution: "@aws-sdk/util-endpoints@npm:3.996.3"
|
||||
"@aws-sdk/util-endpoints@npm:^3.996.5":
|
||||
version: 3.996.5
|
||||
resolution: "@aws-sdk/util-endpoints@npm:3.996.5"
|
||||
dependencies:
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/url-parser": "npm:^4.2.10"
|
||||
"@smithy/util-endpoints": "npm:^3.3.1"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/url-parser": "npm:^4.2.12"
|
||||
"@smithy/util-endpoints": "npm:^3.3.3"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/d8380467ce615d31ef6e10b4dee22e470cc46c6a7dedb4c9b263ba4ac10270d69d41d44e26ff5c2543b1690365f38f85b66a109d1ab8627ac695aa87e9571a81
|
||||
checksum: 10/44c43c71f69981afc5238e25292fbe56a4552295ab0589a17215cf0d476ea63679a62142aeab9e30c76ae65b5f408a0d5e11513255be14c2d7dbeaaa2cc428c5
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -598,44 +599,45 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/util-user-agent-browser@npm:^3.972.6":
|
||||
version: 3.972.6
|
||||
resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.6"
|
||||
"@aws-sdk/util-user-agent-browser@npm:^3.972.8":
|
||||
version: 3.972.8
|
||||
resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.8"
|
||||
dependencies:
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
bowser: "npm:^2.11.0"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/acf17f80518e5385738c18c0494563e6d138ab0c11b03cfe0a5aa15bf71995998dac463295c36f42790bd38151a53edd6f35b99dfc5fc28578b1e4a7caaa7ffe
|
||||
checksum: 10/cb0f9b1daa8ce90e174d75c60d0b42360d952a710fef0c3bed21d3bfbabf814e1137e94a0edb3fa4eb8f5d4ee166fd94b9f56deb5878495b818c1ddbfe04e543
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/util-user-agent-node@npm:^3.973.0":
|
||||
version: 3.973.0
|
||||
resolution: "@aws-sdk/util-user-agent-node@npm:3.973.0"
|
||||
"@aws-sdk/util-user-agent-node@npm:^3.973.14":
|
||||
version: 3.973.14
|
||||
resolution: "@aws-sdk/util-user-agent-node@npm:3.973.14"
|
||||
dependencies:
|
||||
"@aws-sdk/middleware-user-agent": "npm:^3.972.15"
|
||||
"@aws-sdk/types": "npm:^3.973.4"
|
||||
"@smithy/node-config-provider": "npm:^4.3.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@aws-sdk/middleware-user-agent": "npm:^3.972.28"
|
||||
"@aws-sdk/types": "npm:^3.973.6"
|
||||
"@smithy/node-config-provider": "npm:^4.3.12"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/util-config-provider": "npm:^4.2.2"
|
||||
tslib: "npm:^2.6.2"
|
||||
peerDependencies:
|
||||
aws-crt: ">=1.0.0"
|
||||
peerDependenciesMeta:
|
||||
aws-crt:
|
||||
optional: true
|
||||
checksum: 10/a99926ca970ecb45990723e716b11997afbd56f828498c4f838d748c56784fb5484bffcacb6e6e256d3a511400fe6ed8548996d672c058ab5ed96e4a0d6e52c4
|
||||
checksum: 10/61077c95e26478ee73b125cac0fb1b5d08d833c67be8209662c851c768641f9043e24ed8449f72ce6968faee976001a784b1ebc1f29170f4c07942260b2500ff
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/xml-builder@npm:^3.972.8":
|
||||
version: 3.972.8
|
||||
resolution: "@aws-sdk/xml-builder@npm:3.972.8"
|
||||
"@aws-sdk/xml-builder@npm:^3.972.16":
|
||||
version: 3.972.16
|
||||
resolution: "@aws-sdk/xml-builder@npm:3.972.16"
|
||||
dependencies:
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
fast-xml-parser: "npm:5.3.6"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
fast-xml-parser: "npm:5.5.8"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/12d924f5b808e965c91410b1362878863cc0d79c4c5d08e264f63c92a23198b3d35e610bbca3beb1bbaeb3ba596746b81812edd9131b4de29195ae0e46583e65
|
||||
checksum: 10/6e67c69b4f101d60b3cb7394ea71c463bfeac68a3e4bd0a70773e59c00b0cbc87f808949c1d7cd72d4bb7e849373ba6af7ef5a27f1f9e87b1f2b4f79f9b6d4c0
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -877,11 +879,11 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@docker/actions-toolkit@npm:^0.77.0":
|
||||
version: 0.77.0
|
||||
resolution: "@docker/actions-toolkit@npm:0.77.0"
|
||||
"@docker/actions-toolkit@npm:^0.86.0":
|
||||
version: 0.86.0
|
||||
resolution: "@docker/actions-toolkit@npm:0.86.0"
|
||||
dependencies:
|
||||
"@actions/artifact": "npm:^6.2.0"
|
||||
"@actions/artifact": "npm:^6.2.1"
|
||||
"@actions/cache": "npm:^6.0.0"
|
||||
"@actions/core": "npm:^3.0.0"
|
||||
"@actions/exec": "npm:^3.0.0"
|
||||
@@ -890,11 +892,11 @@ __metadata:
|
||||
"@actions/io": "npm:^3.0.2"
|
||||
"@actions/tool-cache": "npm:^4.0.0"
|
||||
"@sigstore/bundle": "npm:^4.0.0"
|
||||
"@sigstore/sign": "npm:^4.1.0"
|
||||
"@sigstore/tuf": "npm:^4.0.1"
|
||||
"@sigstore/sign": "npm:^4.1.1"
|
||||
"@sigstore/tuf": "npm:^4.0.2"
|
||||
"@sigstore/verify": "npm:^3.1.0"
|
||||
async-retry: "npm:^1.3.3"
|
||||
csv-parse: "npm:^6.1.0"
|
||||
csv-parse: "npm:^6.2.1"
|
||||
gunzip-maybe: "npm:^1.4.2"
|
||||
handlebars: "npm:^4.7.8"
|
||||
he: "npm:^1.2.0"
|
||||
@@ -903,7 +905,7 @@ __metadata:
|
||||
semver: "npm:^7.7.4"
|
||||
tar-stream: "npm:^3.1.7"
|
||||
tmp: "npm:^0.2.5"
|
||||
checksum: 10/f3ae817a5a6827efc63d1a1730e918801a8fa33867cda72bd7a1f78309631c45d91de60bc57985c7520fae168e96daed0fcab0003b5fab9b50bdd7aa355d651b
|
||||
checksum: 10/89d65c4a48de7474d7356520b452a1f9ff1931e6bcb2b810a2e14b4b6efcdc1fb7d0d22771e94289b58ee57040a77792306a13dc898b2aa7e083124bee102f18
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1177,6 +1179,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@gar/promise-retry@npm:^1.0.0, @gar/promise-retry@npm:^1.0.2":
|
||||
version: 1.0.3
|
||||
resolution: "@gar/promise-retry@npm:1.0.3"
|
||||
checksum: 10/0d13ea3bb1025755e055648f6e290d2a7e0c87affaf552218f09f66b3fcd9ea9d5c9cc5fe2aa6e285e1530437768e40f9448fe9a86f4f3417b216dcf488d3d1a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@humanfs/core@npm:^0.19.1":
|
||||
version: 0.19.1
|
||||
resolution: "@humanfs/core@npm:0.19.1"
|
||||
@@ -1208,22 +1217,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@isaacs/balanced-match@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@isaacs/balanced-match@npm:4.0.1"
|
||||
checksum: 10/102fbc6d2c0d5edf8f6dbf2b3feb21695a21bc850f11bc47c4f06aa83bd8884fde3fe9d6d797d619901d96865fdcb4569ac2a54c937992c48885c5e3d9967fe8
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@isaacs/brace-expansion@npm:^5.0.0":
|
||||
version: 5.0.1
|
||||
resolution: "@isaacs/brace-expansion@npm:5.0.1"
|
||||
dependencies:
|
||||
"@isaacs/balanced-match": "npm:^4.0.1"
|
||||
checksum: 10/aec226065bc4285436a27379e08cc35bf94ef59f5098ac1c026495c9ba4ab33d851964082d3648d56d63eb90f2642867bd15a3e1b810b98beb1a8c14efce6a94
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@isaacs/cliui@npm:^8.0.2":
|
||||
version: 8.0.2
|
||||
resolution: "@isaacs/cliui@npm:8.0.2"
|
||||
@@ -1313,6 +1306,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@npmcli/redact@npm:^4.0.0":
|
||||
version: 4.0.0
|
||||
resolution: "@npmcli/redact@npm:4.0.0"
|
||||
checksum: 10/5d52df2b5267f4369c97a2b2f7c427e3d7aa4b6a83e7a1b522e196f6e9d50024c620bd0cb2052067c74d1aaa0c330d9bc04e1d335bfb46180e705bb33423e74c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@octokit/auth-token@npm:^6.0.0":
|
||||
version: 6.0.0
|
||||
resolution: "@octokit/auth-token@npm:6.0.0"
|
||||
@@ -1711,6 +1711,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@sigstore/core@npm:^3.2.0":
|
||||
version: 3.2.0
|
||||
resolution: "@sigstore/core@npm:3.2.0"
|
||||
checksum: 10/2425d20297d57a5f5a62f0e6c2f4280818015ea00b3defebdac63f13c7d01db988602c316c16e374ba091c3649dd9a22ae8c9ba3ac165f736b0503164c5da5f5
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@sigstore/protobuf-specs@npm:^0.5.0":
|
||||
version: 0.5.0
|
||||
resolution: "@sigstore/protobuf-specs@npm:0.5.0"
|
||||
@@ -1718,27 +1725,27 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@sigstore/sign@npm:^4.1.0":
|
||||
version: 4.1.0
|
||||
resolution: "@sigstore/sign@npm:4.1.0"
|
||||
"@sigstore/sign@npm:^4.1.1":
|
||||
version: 4.1.1
|
||||
resolution: "@sigstore/sign@npm:4.1.1"
|
||||
dependencies:
|
||||
"@gar/promise-retry": "npm:^1.0.2"
|
||||
"@sigstore/bundle": "npm:^4.0.0"
|
||||
"@sigstore/core": "npm:^3.1.0"
|
||||
"@sigstore/core": "npm:^3.2.0"
|
||||
"@sigstore/protobuf-specs": "npm:^0.5.0"
|
||||
make-fetch-happen: "npm:^15.0.3"
|
||||
make-fetch-happen: "npm:^15.0.4"
|
||||
proc-log: "npm:^6.1.0"
|
||||
promise-retry: "npm:^2.0.1"
|
||||
checksum: 10/e5441d4cacf0f203f329e96bb7a3ca77682cfdf90d6448ad368344056fd8d55c01742e2b636545d55364490a87988f767f2b23168b2d9cc52ef3d8fe9e9496aa
|
||||
checksum: 10/c9424813ed83ae26111dd3a190dbfd776901cfc245ebb9aa68e133a7ffcbf8fc053f01d999a451e44805a291921ba4d2dfe80e3fd41b20cd5becd26aae5f5e7c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@sigstore/tuf@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@sigstore/tuf@npm:4.0.1"
|
||||
"@sigstore/tuf@npm:^4.0.2":
|
||||
version: 4.0.2
|
||||
resolution: "@sigstore/tuf@npm:4.0.2"
|
||||
dependencies:
|
||||
"@sigstore/protobuf-specs": "npm:^0.5.0"
|
||||
tuf-js: "npm:^4.1.0"
|
||||
checksum: 10/1a9725aa95eba55badf24442fe8a71c6d68f8b7d17a6b2a5e4b5590117f0181881b3485cfa57ea375b7c3a38421dbffdfcbe86e6623d903e17e3a8359837e268
|
||||
checksum: 10/14882b8e71be4185ec417744b97a47392a50da00aafd4207a46bb74b40aa019ebf22d928052fd2d31a8da0da1efe7ebebac5a70898b31a74239a1ada997be754
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1753,93 +1760,83 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/abort-controller@npm:^4.2.10":
|
||||
version: 4.2.10
|
||||
resolution: "@smithy/abort-controller@npm:4.2.10"
|
||||
"@smithy/config-resolver@npm:^4.4.13":
|
||||
version: 4.4.13
|
||||
resolution: "@smithy/config-resolver@npm:4.4.13"
|
||||
dependencies:
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/node-config-provider": "npm:^4.3.12"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/util-config-provider": "npm:^4.2.2"
|
||||
"@smithy/util-endpoints": "npm:^3.3.3"
|
||||
"@smithy/util-middleware": "npm:^4.2.12"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/cd13d1a674e6a9318166cb3602e8d6aecf7141f3f4f8faf25afe2a9841faf6ecfface8058be520174a6b4776e45c18bac41fa352e917ca3cafaf4e77f893a0e2
|
||||
checksum: 10/30ee2ed270681144db3acf065a00a992fd0cd9bd2e7d2288f9341749bb92bae052ab5c2fdbe22b58c99bcec6e88d88ecbf7b7f04f2e94ba3342bcd4643c9bf37
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/config-resolver@npm:^4.4.9":
|
||||
version: 4.4.9
|
||||
resolution: "@smithy/config-resolver@npm:4.4.9"
|
||||
"@smithy/core@npm:^3.23.13":
|
||||
version: 3.23.13
|
||||
resolution: "@smithy/core@npm:3.23.13"
|
||||
dependencies:
|
||||
"@smithy/node-config-provider": "npm:^4.3.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/util-config-provider": "npm:^4.2.1"
|
||||
"@smithy/util-endpoints": "npm:^3.3.1"
|
||||
"@smithy/util-middleware": "npm:^4.2.10"
|
||||
"@smithy/protocol-http": "npm:^5.3.12"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/url-parser": "npm:^4.2.12"
|
||||
"@smithy/util-base64": "npm:^4.3.2"
|
||||
"@smithy/util-body-length-browser": "npm:^4.2.2"
|
||||
"@smithy/util-middleware": "npm:^4.2.12"
|
||||
"@smithy/util-stream": "npm:^4.5.21"
|
||||
"@smithy/util-utf8": "npm:^4.2.2"
|
||||
"@smithy/uuid": "npm:^1.1.2"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/59733532725b50a9b7ec0f569bffafe6d47465c3b61ba5449a11952834b8cc07862b398fdb1a85b9a0205eddb7905f1b1095bad1a8561db883c42c192cf079b2
|
||||
checksum: 10/a901d75cbf172023dc0abcc8ceacd518c18867c8887752675059282fd6862e08379f75b4c6f41f0b7dbd13a8c1d231aafa1b3b1e28fe79d1593f9c622fa560b7
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/core@npm:^3.23.6":
|
||||
version: 3.23.6
|
||||
resolution: "@smithy/core@npm:3.23.6"
|
||||
"@smithy/credential-provider-imds@npm:^4.2.12":
|
||||
version: 4.2.12
|
||||
resolution: "@smithy/credential-provider-imds@npm:4.2.12"
|
||||
dependencies:
|
||||
"@smithy/middleware-serde": "npm:^4.2.11"
|
||||
"@smithy/protocol-http": "npm:^5.3.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/util-base64": "npm:^4.3.1"
|
||||
"@smithy/util-body-length-browser": "npm:^4.2.1"
|
||||
"@smithy/util-middleware": "npm:^4.2.10"
|
||||
"@smithy/util-stream": "npm:^4.5.15"
|
||||
"@smithy/util-utf8": "npm:^4.2.1"
|
||||
"@smithy/uuid": "npm:^1.1.1"
|
||||
"@smithy/node-config-provider": "npm:^4.3.12"
|
||||
"@smithy/property-provider": "npm:^4.2.12"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/url-parser": "npm:^4.2.12"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/aea8d404fefeb1532c1caf00a2eef8764e3260b26f70746bf9460ba668d63c4616f95064c6edf15d7e0eba072740b79d1b9351745c4fa5d1a569502210370746
|
||||
checksum: 10/d68e72894cb4b3ac7fec28c03a95d8de884670ef26a4454e0d5f19454c4ccc50c1795eb3ea0ccae6c1ba8957f77743c614529d5f482b4d2ff3c529e310ae4746
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/credential-provider-imds@npm:^4.2.10":
|
||||
version: 4.2.10
|
||||
resolution: "@smithy/credential-provider-imds@npm:4.2.10"
|
||||
"@smithy/fetch-http-handler@npm:^5.3.15":
|
||||
version: 5.3.15
|
||||
resolution: "@smithy/fetch-http-handler@npm:5.3.15"
|
||||
dependencies:
|
||||
"@smithy/node-config-provider": "npm:^4.3.10"
|
||||
"@smithy/property-provider": "npm:^4.2.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/url-parser": "npm:^4.2.10"
|
||||
"@smithy/protocol-http": "npm:^5.3.12"
|
||||
"@smithy/querystring-builder": "npm:^4.2.12"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/util-base64": "npm:^4.3.2"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/32b1b2ad3d071b36bb50da598d620100ec72fee45cae22f87d27b9764614a2e975e94cf481df78e088a60cf621a48ea9141ce18d6f7ba2d0e351707cecfe16d7
|
||||
checksum: 10/5caed0a84eca6004bf83773c0e465b76237f5ac0b32794f147891d85b496f4ded0df42dead594cc5ec686545b7266de54c465bfc4d2d25288dea5df4686446bc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/fetch-http-handler@npm:^5.3.11":
|
||||
version: 5.3.11
|
||||
resolution: "@smithy/fetch-http-handler@npm:5.3.11"
|
||||
"@smithy/hash-node@npm:^4.2.12":
|
||||
version: 4.2.12
|
||||
resolution: "@smithy/hash-node@npm:4.2.12"
|
||||
dependencies:
|
||||
"@smithy/protocol-http": "npm:^5.3.10"
|
||||
"@smithy/querystring-builder": "npm:^4.2.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/util-base64": "npm:^4.3.1"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/util-buffer-from": "npm:^4.2.2"
|
||||
"@smithy/util-utf8": "npm:^4.2.2"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/b15461b66a3fdc293ab62f3146b322d9ec6e76457b3a33ec9dbad40f93e927705e318cfe4006742aab3f1bf4928938acff9472abb076c8b47ff9ae767a7dfbad
|
||||
checksum: 10/d4ba8a5a02e875a52dca9effde822d227e0a762579275194a4e2ef1dff93eeb12f6e929bba973c21388f01e271df10c66dd986f83d59969ce6c7980d696e6e21
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/hash-node@npm:^4.2.10":
|
||||
version: 4.2.10
|
||||
resolution: "@smithy/hash-node@npm:4.2.10"
|
||||
"@smithy/invalid-dependency@npm:^4.2.12":
|
||||
version: 4.2.12
|
||||
resolution: "@smithy/invalid-dependency@npm:4.2.12"
|
||||
dependencies:
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/util-buffer-from": "npm:^4.2.1"
|
||||
"@smithy/util-utf8": "npm:^4.2.1"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/e81cdad00803cbb3598efe1c37f7b13e050a371bd0456d622c790bc6c125b28549f06f277c10aae1f66fbdaf2a599f5d184f062d8ed44b29eb03de8e77b65534
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/invalid-dependency@npm:^4.2.10":
|
||||
version: 4.2.10
|
||||
resolution: "@smithy/invalid-dependency@npm:4.2.10"
|
||||
dependencies:
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/7f9be8eade96a8dff5b2a71b6ffcedf97f743b9531e10b10430dea22b663ed821ee22f5d7e58f0aa7739c9ca6bf86b568531a5c9e0b01d1c7ba25c7d20149618
|
||||
checksum: 10/94a4df6e1e71298d595b42e003979b9c256c8a1712e32ffba438608efe51b591e8c61b54e44bdaec7f009fb32ebb7b2116776a2fafd6fa72a05d16058f012b5a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1852,193 +1849,193 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/is-array-buffer@npm:^4.2.1":
|
||||
version: 4.2.1
|
||||
resolution: "@smithy/is-array-buffer@npm:4.2.1"
|
||||
"@smithy/is-array-buffer@npm:^4.2.2":
|
||||
version: 4.2.2
|
||||
resolution: "@smithy/is-array-buffer@npm:4.2.2"
|
||||
dependencies:
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/a6cb22520c1cac6e5aca8ebc830fa4ad96bd793d7ff9f12a34d0bfa2ddc7f4c62930b032d6f81af4271ce2031998a8d7494ea16492bdb5d343b8649ab220535f
|
||||
checksum: 10/ebf9bac3daad0e1c3b201d41c4d2ab4be0c08c4c34604f87965b73cb052b1fd99133088f3b9837527f8fd6ed071b8684bb554ff381e5fdeacfc5907a66e4688b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/middleware-content-length@npm:^4.2.10":
|
||||
version: 4.2.10
|
||||
resolution: "@smithy/middleware-content-length@npm:4.2.10"
|
||||
"@smithy/middleware-content-length@npm:^4.2.12":
|
||||
version: 4.2.12
|
||||
resolution: "@smithy/middleware-content-length@npm:4.2.12"
|
||||
dependencies:
|
||||
"@smithy/protocol-http": "npm:^5.3.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/protocol-http": "npm:^5.3.12"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/7b58bdcfc97f01997e2a235c16536847b70ba07fdb7da8dfc81b93e4782fcd5fcf8b894a599455b35bed7ac0b145e2d00d0be4610131f48be6bb4df2e110b68c
|
||||
checksum: 10/899a1fecf72c116e8a86c64e0239479b2a4031ba5ec7f5e7606bf22ab80e4e6eb1f480bd3d99b90347b4ed5937bbdabc7689a1d79abc5bca2c4bb9b1db415836
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/middleware-endpoint@npm:^4.4.20":
|
||||
version: 4.4.20
|
||||
resolution: "@smithy/middleware-endpoint@npm:4.4.20"
|
||||
"@smithy/middleware-endpoint@npm:^4.4.28":
|
||||
version: 4.4.28
|
||||
resolution: "@smithy/middleware-endpoint@npm:4.4.28"
|
||||
dependencies:
|
||||
"@smithy/core": "npm:^3.23.6"
|
||||
"@smithy/middleware-serde": "npm:^4.2.11"
|
||||
"@smithy/node-config-provider": "npm:^4.3.10"
|
||||
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/url-parser": "npm:^4.2.10"
|
||||
"@smithy/util-middleware": "npm:^4.2.10"
|
||||
"@smithy/core": "npm:^3.23.13"
|
||||
"@smithy/middleware-serde": "npm:^4.2.16"
|
||||
"@smithy/node-config-provider": "npm:^4.3.12"
|
||||
"@smithy/shared-ini-file-loader": "npm:^4.4.7"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/url-parser": "npm:^4.2.12"
|
||||
"@smithy/util-middleware": "npm:^4.2.12"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/5c383e2b2bdadee64547ba9a3fa7690c9b146510313cec999477527029a0eb0a25bac94034b769b1b528480e2e825c4e611511d01458b90841edef3bb3735cf0
|
||||
checksum: 10/afbb873c955e4ca02a9c33f709f0dfc4e32f9b0a834ffb7860881167b611d80282955a220c3568a362efef47b273c7da533d0dafe4d3d0b5c3fa9258e4708e23
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/middleware-retry@npm:^4.4.37":
|
||||
version: 4.4.37
|
||||
resolution: "@smithy/middleware-retry@npm:4.4.37"
|
||||
"@smithy/middleware-retry@npm:^4.4.46":
|
||||
version: 4.4.46
|
||||
resolution: "@smithy/middleware-retry@npm:4.4.46"
|
||||
dependencies:
|
||||
"@smithy/node-config-provider": "npm:^4.3.10"
|
||||
"@smithy/protocol-http": "npm:^5.3.10"
|
||||
"@smithy/service-error-classification": "npm:^4.2.10"
|
||||
"@smithy/smithy-client": "npm:^4.12.0"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/util-middleware": "npm:^4.2.10"
|
||||
"@smithy/util-retry": "npm:^4.2.10"
|
||||
"@smithy/uuid": "npm:^1.1.1"
|
||||
"@smithy/node-config-provider": "npm:^4.3.12"
|
||||
"@smithy/protocol-http": "npm:^5.3.12"
|
||||
"@smithy/service-error-classification": "npm:^4.2.12"
|
||||
"@smithy/smithy-client": "npm:^4.12.8"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/util-middleware": "npm:^4.2.12"
|
||||
"@smithy/util-retry": "npm:^4.2.13"
|
||||
"@smithy/uuid": "npm:^1.1.2"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/4a9ac93ed0ec19dba8ced3787a12baa812df431718176d167a6894fd9a21c0da0b7a9953341d07662d44fa9f0a1942559883e3132db8daed84dcb611422fbbda
|
||||
checksum: 10/6444f96e8355522b907d1a5a3d9743cc0ba41531a46392c1f085a9c44396befe0cb414d18716ec29c0bbdf5602b5844d17b6eebec92ad27f64ecd5261ebea5a8
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/middleware-serde@npm:^4.2.11":
|
||||
version: 4.2.11
|
||||
resolution: "@smithy/middleware-serde@npm:4.2.11"
|
||||
"@smithy/middleware-serde@npm:^4.2.16":
|
||||
version: 4.2.16
|
||||
resolution: "@smithy/middleware-serde@npm:4.2.16"
|
||||
dependencies:
|
||||
"@smithy/protocol-http": "npm:^5.3.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/core": "npm:^3.23.13"
|
||||
"@smithy/protocol-http": "npm:^5.3.12"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/0d61120641729ca921c19077562e59b407d06010d674520726493ce56db6c6b42c97ad3844f9b9f53c3be7f67d356105de169ab1fd2ad24657e14b9754e8811f
|
||||
checksum: 10/57509a894067c111b1e71b5915d24d4ba5901616f016b308486d77bd18e71a1cec2eb5b73964486643f19d15a149d15f5db89b37f77a6bdcb65f11de789aed0f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/middleware-stack@npm:^4.2.10":
|
||||
version: 4.2.10
|
||||
resolution: "@smithy/middleware-stack@npm:4.2.10"
|
||||
"@smithy/middleware-stack@npm:^4.2.12":
|
||||
version: 4.2.12
|
||||
resolution: "@smithy/middleware-stack@npm:4.2.12"
|
||||
dependencies:
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/bc37f3650b1e05f63e32156ef0c72b8cc7e2ede1ec5f122266e7042ba69f9165681c2633c73156a7195053e2022a14c66a4df021afd29613370f6a06cd90b926
|
||||
checksum: 10/0202c4607273f23485b26e716c98ee60af2900a26dd8d8f1df2f0ffd59383ddd21f44f62d977e5d8b2893bb516e2c4fb0054f52645bd5c9f17a08f1e016e3a1e
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/node-config-provider@npm:^4.3.10":
|
||||
version: 4.3.10
|
||||
resolution: "@smithy/node-config-provider@npm:4.3.10"
|
||||
"@smithy/node-config-provider@npm:^4.3.12":
|
||||
version: 4.3.12
|
||||
resolution: "@smithy/node-config-provider@npm:4.3.12"
|
||||
dependencies:
|
||||
"@smithy/property-provider": "npm:^4.2.10"
|
||||
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/property-provider": "npm:^4.2.12"
|
||||
"@smithy/shared-ini-file-loader": "npm:^4.4.7"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/49c6450b7a6b1871bc9f1eee4ecfa6170f022b4b5c47a320aae73041c4ec1aa1901e0d8babd772d71745d363a3bd735fd08e1ebfd28b4a33498bd38a4f3bf7e4
|
||||
checksum: 10/687a2dcc454e791e05cd85e4d476cc67a83de4997e15687398fe7149f0748543bd8aeebc9bf7a0c38eee55cb6bb0f438879f974770d7f93fdf5b1b2d9ed3a99f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/node-http-handler@npm:^4.4.12":
|
||||
version: 4.4.12
|
||||
resolution: "@smithy/node-http-handler@npm:4.4.12"
|
||||
"@smithy/node-http-handler@npm:^4.5.1":
|
||||
version: 4.5.1
|
||||
resolution: "@smithy/node-http-handler@npm:4.5.1"
|
||||
dependencies:
|
||||
"@smithy/abort-controller": "npm:^4.2.10"
|
||||
"@smithy/protocol-http": "npm:^5.3.10"
|
||||
"@smithy/querystring-builder": "npm:^4.2.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/protocol-http": "npm:^5.3.12"
|
||||
"@smithy/querystring-builder": "npm:^4.2.12"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/2c561c4af663a5d48778051fa23b31469045a00531cda14aadbd4b454d2f8e95f396505204f3990817a99872feae0a7d150abb2158d2c620d5a2f7cf2f594f67
|
||||
checksum: 10/30a60b59759b8aee97588aecf121b0ab8b16f3040382a26247fe1f779d863f76e544cfc28d14f49a8705124ec58c73e37291602a4253055f3f2abf4f484c8e35
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/property-provider@npm:^4.2.10":
|
||||
version: 4.2.10
|
||||
resolution: "@smithy/property-provider@npm:4.2.10"
|
||||
"@smithy/property-provider@npm:^4.2.12":
|
||||
version: 4.2.12
|
||||
resolution: "@smithy/property-provider@npm:4.2.12"
|
||||
dependencies:
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/4ad889be847e391ae5fd82b97c18db6c5c67174073c50c26d3458dad76f11bc08ebf45db2afb690a3935c85dbd5c3b4526270270248168f79af1c829d5e78d5f
|
||||
checksum: 10/f5cad886f96bd8f8aff8f718f9f053166c8b61bcabeb93e085b5e3acae97000c73d89103e925c4b8dc2862d56e876eeb7b9d9bab540b198d52e95ba984e196d5
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/protocol-http@npm:^5.3.10":
|
||||
version: 5.3.10
|
||||
resolution: "@smithy/protocol-http@npm:5.3.10"
|
||||
"@smithy/protocol-http@npm:^5.3.12":
|
||||
version: 5.3.12
|
||||
resolution: "@smithy/protocol-http@npm:5.3.12"
|
||||
dependencies:
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/617835e3f9ccc30e8d03c364ec6617335088e02ad9117b7c1bee868ae14ce904dffee686be7f75ab955e6fe11f1976a17298cba88dd17db48148d34ed7a40c9e
|
||||
checksum: 10/05322f09dae5b0187446dd0fca7c52bf8dcacc7e85932579180984668e2849c7ab337faf2654f71238e3591d3bcf40c085a3694511c6a46d2125ab4440b3fd5c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/querystring-builder@npm:^4.2.10":
|
||||
version: 4.2.10
|
||||
resolution: "@smithy/querystring-builder@npm:4.2.10"
|
||||
"@smithy/querystring-builder@npm:^4.2.12":
|
||||
version: 4.2.12
|
||||
resolution: "@smithy/querystring-builder@npm:4.2.12"
|
||||
dependencies:
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/util-uri-escape": "npm:^4.2.1"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/util-uri-escape": "npm:^4.2.2"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/3c5fa9eea099ec1087dc05deaba0d482136b23cc5548f46acfec6b18690bb2ce0f591b8c441c45fcc6139682b54e032e17749ef21f795422bf6ff0966ab5d5c8
|
||||
checksum: 10/42876f4fb36c4fb83a31eea9c43b89e8ce45d3437ec1134455ac91a5a2fb1beb974cee30db0fbb93eb8a5211370957cf2e209affc6fcb1cc67da139eaa607051
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/querystring-parser@npm:^4.2.10":
|
||||
version: 4.2.10
|
||||
resolution: "@smithy/querystring-parser@npm:4.2.10"
|
||||
"@smithy/querystring-parser@npm:^4.2.12":
|
||||
version: 4.2.12
|
||||
resolution: "@smithy/querystring-parser@npm:4.2.12"
|
||||
dependencies:
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/676763166c3c34e8553ca5981f59313bc6d07177b2db83027be90ff1e89b1fe41912f39c23f3eeea01a58686adf465dcd74d2ccd1661dfc2860e915acbf957f8
|
||||
checksum: 10/8f5edea9e8f0fd777b401aa2e71535ec4c9cec9a769758cedce89a0bea53b759f79d89217ae70ed16ed12dcfc4c28e6d3f5ef7723a624618beb866b363076bd8
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/service-error-classification@npm:^4.2.10":
|
||||
version: 4.2.10
|
||||
resolution: "@smithy/service-error-classification@npm:4.2.10"
|
||||
"@smithy/service-error-classification@npm:^4.2.12":
|
||||
version: 4.2.12
|
||||
resolution: "@smithy/service-error-classification@npm:4.2.12"
|
||||
dependencies:
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
checksum: 10/f535fddfb958440f008d6dabd50acf0bae3129923af5f3f94e9c30fe2695015ec2bae88e938ace195cae5f33337cc40fd32d376a199a48f6c37a01000e7510f3
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
checksum: 10/b552334c99cac79593307e679ac9a78c9ff9bf3c0f522c29bcb9a1d612c0b77c988e6ff945f51a233394ca588b8aaaa75de0365ff1982d0f68b7be01242bc45e
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/shared-ini-file-loader@npm:^4.4.5":
|
||||
version: 4.4.5
|
||||
resolution: "@smithy/shared-ini-file-loader@npm:4.4.5"
|
||||
"@smithy/shared-ini-file-loader@npm:^4.4.7":
|
||||
version: 4.4.7
|
||||
resolution: "@smithy/shared-ini-file-loader@npm:4.4.7"
|
||||
dependencies:
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/84fca675b277b5bcadc107628fcfe6c33da0af590467c239c796f3bd921b65b96c42bc9620790f246ecd8c7a2cd09ef7605346aea9576e2b4b2044a38125e9c1
|
||||
checksum: 10/d64795a6386ef4a165876ef9df312421fdf8123efc1d926894322dd3aeff88b48432e98c188b782952c8dcb0513172cf3cfcc519ea3e55a87c82efcf03bec36c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/signature-v4@npm:^5.3.10":
|
||||
version: 5.3.10
|
||||
resolution: "@smithy/signature-v4@npm:5.3.10"
|
||||
"@smithy/signature-v4@npm:^5.3.12":
|
||||
version: 5.3.12
|
||||
resolution: "@smithy/signature-v4@npm:5.3.12"
|
||||
dependencies:
|
||||
"@smithy/is-array-buffer": "npm:^4.2.1"
|
||||
"@smithy/protocol-http": "npm:^5.3.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/util-hex-encoding": "npm:^4.2.1"
|
||||
"@smithy/util-middleware": "npm:^4.2.10"
|
||||
"@smithy/util-uri-escape": "npm:^4.2.1"
|
||||
"@smithy/util-utf8": "npm:^4.2.1"
|
||||
"@smithy/is-array-buffer": "npm:^4.2.2"
|
||||
"@smithy/protocol-http": "npm:^5.3.12"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/util-hex-encoding": "npm:^4.2.2"
|
||||
"@smithy/util-middleware": "npm:^4.2.12"
|
||||
"@smithy/util-uri-escape": "npm:^4.2.2"
|
||||
"@smithy/util-utf8": "npm:^4.2.2"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/654f621ede3bdcb68e655e2a310e948e81b347d56525ba893ff126149d1172ee7a224aeb59c9887065352191178cff745ce1025c21ad5a6e1487c7bd1438cda4
|
||||
checksum: 10/e56fb5e16bf672ff0773b33b4045b0fa657a90c625e7eb9e34860c625543ec3eb1f94e87389349bae9747cb06837b64dc7abe5954c8aa7c84a28216e52046349
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/smithy-client@npm:^4.12.0":
|
||||
version: 4.12.0
|
||||
resolution: "@smithy/smithy-client@npm:4.12.0"
|
||||
"@smithy/smithy-client@npm:^4.12.8":
|
||||
version: 4.12.8
|
||||
resolution: "@smithy/smithy-client@npm:4.12.8"
|
||||
dependencies:
|
||||
"@smithy/core": "npm:^3.23.6"
|
||||
"@smithy/middleware-endpoint": "npm:^4.4.20"
|
||||
"@smithy/middleware-stack": "npm:^4.2.10"
|
||||
"@smithy/protocol-http": "npm:^5.3.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/util-stream": "npm:^4.5.15"
|
||||
"@smithy/core": "npm:^3.23.13"
|
||||
"@smithy/middleware-endpoint": "npm:^4.4.28"
|
||||
"@smithy/middleware-stack": "npm:^4.2.12"
|
||||
"@smithy/protocol-http": "npm:^5.3.12"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/util-stream": "npm:^4.5.21"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/aa339275f3a2de7cabc463c173d8cdc4faebf958be357efb47243eba65e69e244c285563825f4d091df368256f7beffcb7410839fce4e42608b00dbaf816ed4c
|
||||
checksum: 10/c78efec622cb9596fdeccb18910a4dad63b9ededd85e49a216746cd787c1f683c7e8b41d508cde726fc75155b8607a199cafe7b90044f772e1a91dbcccd04105
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -2051,52 +2048,52 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/types@npm:^4.13.0":
|
||||
version: 4.13.0
|
||||
resolution: "@smithy/types@npm:4.13.0"
|
||||
"@smithy/types@npm:^4.13.1":
|
||||
version: 4.13.1
|
||||
resolution: "@smithy/types@npm:4.13.1"
|
||||
dependencies:
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/abcc033be2ee9500f4befd988879a5dcedbe460e445207095a17eb974f9f07ec31cbf0b27754b704a9ca9a4fc17891948026438d34215b84d539e4bdaf5ac7b6
|
||||
checksum: 10/d6cb8a4f4ee4d09625f2e5f8d4290d44254b7e8599a96cd5d528f9225447e1da1193caa62d1e9dee59d5c0b890fe0fd9d6d9439566fff746c46acb66935122db
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/url-parser@npm:^4.2.10":
|
||||
version: 4.2.10
|
||||
resolution: "@smithy/url-parser@npm:4.2.10"
|
||||
"@smithy/url-parser@npm:^4.2.12":
|
||||
version: 4.2.12
|
||||
resolution: "@smithy/url-parser@npm:4.2.12"
|
||||
dependencies:
|
||||
"@smithy/querystring-parser": "npm:^4.2.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/querystring-parser": "npm:^4.2.12"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/e86ae3397434c58b8a831048f8bb2bf76e7f2627fec58262ac92aa34f18daa98e708c7ba6c2549c4d587e7c836a8e318ebbe5e509adc3d442e9f8892bbc34174
|
||||
checksum: 10/119395a684fdcfb58faf9647c1f0ec3c6475a5ec394e5bdebe3e9bb1f2f2b31c7f3c104d1a7525b29987792d8113cc92333b883cf98842659eaafa922d18120f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-base64@npm:^4.3.1":
|
||||
version: 4.3.1
|
||||
resolution: "@smithy/util-base64@npm:4.3.1"
|
||||
"@smithy/util-base64@npm:^4.3.2":
|
||||
version: 4.3.2
|
||||
resolution: "@smithy/util-base64@npm:4.3.2"
|
||||
dependencies:
|
||||
"@smithy/util-buffer-from": "npm:^4.2.1"
|
||||
"@smithy/util-utf8": "npm:^4.2.1"
|
||||
"@smithy/util-buffer-from": "npm:^4.2.2"
|
||||
"@smithy/util-utf8": "npm:^4.2.2"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/77dd092e73566ebb1a9942ec37bc0fcf861159a62f90c03a676c17826c1e43a6ad493fee65ddae2c0b4b3ce89b9f363cee2856fc6c2068fbb215320cf5e179b2
|
||||
checksum: 10/9246e1874c2e96c2059e97c88e039bf40abb8b0d6fb229e1aca9df896371c44a9dc951c99d2febbd8267033920cef4180852e6655f3de8c4743d9a9bbf6d96b4
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-body-length-browser@npm:^4.2.1":
|
||||
version: 4.2.1
|
||||
resolution: "@smithy/util-body-length-browser@npm:4.2.1"
|
||||
dependencies:
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/2a5221e7d1b233a1182f1d9f754eb116b7cc86e3152beaff6941c1c55b863099fcab73795cffa299d522069fc5f74f985b4d6713a0913247d13d8936a4de1a2c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-body-length-node@npm:^4.2.2":
|
||||
"@smithy/util-body-length-browser@npm:^4.2.2":
|
||||
version: 4.2.2
|
||||
resolution: "@smithy/util-body-length-node@npm:4.2.2"
|
||||
resolution: "@smithy/util-body-length-browser@npm:4.2.2"
|
||||
dependencies:
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/b6bea331247f3a81134fe2b3e07b3b00bab467dc45ccf4b1fb4dd98d51c9341ff7fdbd760532a84bd7b479387cc0af564760b06e58b9825e34c5ba171185c611
|
||||
checksum: 10/c3058710fddecee22d4bc03839310c13783a7593a0a1808998998c465f6408012b5ce34bbec379fff84fb56f4017747d7817c4a7f050b45834b2aada27a2e7a7
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-body-length-node@npm:^4.2.3":
|
||||
version: 4.2.3
|
||||
resolution: "@smithy/util-body-length-node@npm:4.2.3"
|
||||
dependencies:
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/ad271366f72505f66ac82b87f0964211c79f40cb5bebeceeb23d74613ce33f1e77a9e81b03b48aced35c76ddd7184103886ce13dde96c8ee6e05dec59239798b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -2110,115 +2107,115 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-buffer-from@npm:^4.2.1":
|
||||
version: 4.2.1
|
||||
resolution: "@smithy/util-buffer-from@npm:4.2.1"
|
||||
"@smithy/util-buffer-from@npm:^4.2.2":
|
||||
version: 4.2.2
|
||||
resolution: "@smithy/util-buffer-from@npm:4.2.2"
|
||||
dependencies:
|
||||
"@smithy/is-array-buffer": "npm:^4.2.1"
|
||||
"@smithy/is-array-buffer": "npm:^4.2.2"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/686c8feafb751942caa60bbd47c6214acf75e8ac6118e5d0f9cee3d5a60be2dfa8f95a5955bbe65a53f8ad1136b2d446642ec343e37c8440b1852779040da46a
|
||||
checksum: 10/111148eb7fb8c2913c0f09ca9991a409c69b2df643aa73378e64e14404ce040f67c716f7b4f55b76c0640f4357b649b9eb6a7f1539d7b37a2f0a7e0c3ba7062d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-config-provider@npm:^4.2.1":
|
||||
version: 4.2.1
|
||||
resolution: "@smithy/util-config-provider@npm:4.2.1"
|
||||
"@smithy/util-config-provider@npm:^4.2.2":
|
||||
version: 4.2.2
|
||||
resolution: "@smithy/util-config-provider@npm:4.2.2"
|
||||
dependencies:
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/3d17e618d9427d049ce51c41ae75ceb7800f29f59babe2823783cd585d0922205046a660c49c1afefa57f00a5f20e428cbaf9ede68ad1fc99b415455d47befb4
|
||||
checksum: 10/ff3989fc07b5162674ccce6aacf7c74dbaea9e7a731c05399a80ed758a67adf83e87d47431a69aa2b1c325497670ff7d1390d9441e3c0c2cea66e830f61f965a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-defaults-mode-browser@npm:^4.3.36":
|
||||
version: 4.3.36
|
||||
resolution: "@smithy/util-defaults-mode-browser@npm:4.3.36"
|
||||
"@smithy/util-defaults-mode-browser@npm:^4.3.44":
|
||||
version: 4.3.44
|
||||
resolution: "@smithy/util-defaults-mode-browser@npm:4.3.44"
|
||||
dependencies:
|
||||
"@smithy/property-provider": "npm:^4.2.10"
|
||||
"@smithy/smithy-client": "npm:^4.12.0"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/property-provider": "npm:^4.2.12"
|
||||
"@smithy/smithy-client": "npm:^4.12.8"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/8edbb9e7f5970bfabd29de066a8f59d18f437b11f1150e54421795cdf648b288c6019f07259c5a8cd63196252301f59b3963b959904c7df12bfd657a19f952f7
|
||||
checksum: 10/39ea98e4dd9a75390f07678982547e589386795cf939b3958c2da31b31e8f3f2009a6c65caf5831c5b40f51a461cb0e7d2aeb3199ba1e7e52768ce157e42a8b2
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-defaults-mode-node@npm:^4.2.39":
|
||||
version: 4.2.39
|
||||
resolution: "@smithy/util-defaults-mode-node@npm:4.2.39"
|
||||
"@smithy/util-defaults-mode-node@npm:^4.2.48":
|
||||
version: 4.2.48
|
||||
resolution: "@smithy/util-defaults-mode-node@npm:4.2.48"
|
||||
dependencies:
|
||||
"@smithy/config-resolver": "npm:^4.4.9"
|
||||
"@smithy/credential-provider-imds": "npm:^4.2.10"
|
||||
"@smithy/node-config-provider": "npm:^4.3.10"
|
||||
"@smithy/property-provider": "npm:^4.2.10"
|
||||
"@smithy/smithy-client": "npm:^4.12.0"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/config-resolver": "npm:^4.4.13"
|
||||
"@smithy/credential-provider-imds": "npm:^4.2.12"
|
||||
"@smithy/node-config-provider": "npm:^4.3.12"
|
||||
"@smithy/property-provider": "npm:^4.2.12"
|
||||
"@smithy/smithy-client": "npm:^4.12.8"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/999faa0a8abc2273a1134f0fbfb9fb68aee8da6b0a651c6a1453b492bbf2308bb0f26075f50c748c1e3ccf7159fe77db35714fe197f71c112b749f53e9cd8abe
|
||||
checksum: 10/aa11fb8e9e6748e1788153d27c5313db020799f79f0546730d852d961c148dbbcc1cdf59803944731b47b6fab0a747a1d287741f145be7e2c79425129506176f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-endpoints@npm:^3.3.1":
|
||||
version: 3.3.1
|
||||
resolution: "@smithy/util-endpoints@npm:3.3.1"
|
||||
"@smithy/util-endpoints@npm:^3.3.3":
|
||||
version: 3.3.3
|
||||
resolution: "@smithy/util-endpoints@npm:3.3.3"
|
||||
dependencies:
|
||||
"@smithy/node-config-provider": "npm:^4.3.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/node-config-provider": "npm:^4.3.12"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/75f6bc5d467981b8c4caf9e10ae1b47ca1534b2565fd33f36beffdd6b73c80951ed408df922a2d7ba013d988c1a73abea04317a99613012acb5b898a950484f8
|
||||
checksum: 10/101de268f2acfd69f1c26732bc3f809439f9853f2d9246d6024c57b3cfbea9dc8f187841a0edece041def2a1a523dbd68dc4f55d5eb43e2c8bcfc68a423ec4fe
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-hex-encoding@npm:^4.2.1":
|
||||
version: 4.2.1
|
||||
resolution: "@smithy/util-hex-encoding@npm:4.2.1"
|
||||
"@smithy/util-hex-encoding@npm:^4.2.2":
|
||||
version: 4.2.2
|
||||
resolution: "@smithy/util-hex-encoding@npm:4.2.2"
|
||||
dependencies:
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/5b1a486d9b36feffa542cfa012ca8067b95f512ee020113a666e78f879b103cd0e1826cfae4f668f2a0c2e0f58d322580176fea930d49511c4d885e2764ab86b
|
||||
checksum: 10/2b1dfed0fcbe13c9a449b06adf805814fb3ec5d0d614704bfb250875cec7cf19f5a77a81013c91b81f45b7193038268f92d59de339192d578c9ef77a1b51c4d9
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-middleware@npm:^4.2.10":
|
||||
version: 4.2.10
|
||||
resolution: "@smithy/util-middleware@npm:4.2.10"
|
||||
"@smithy/util-middleware@npm:^4.2.12":
|
||||
version: 4.2.12
|
||||
resolution: "@smithy/util-middleware@npm:4.2.12"
|
||||
dependencies:
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/609f3d0fc1ca3b47aaa3c8fea0b9cb7a9c2c651c3c8a4806633aa271daeba2b1e8bd5c32df04e0a8ad882cd0996d77434af28e9230ecd9382c0474a3fcb66a94
|
||||
checksum: 10/03dce2320d0a06d96ecf310d703bdbef9f55be1d2008567a98ab326361c395adc4dcb5455a1a4035697ba8b92b8189331c6f6ac83a4253ee20bb3c8ba7732936
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-retry@npm:^4.2.10":
|
||||
version: 4.2.10
|
||||
resolution: "@smithy/util-retry@npm:4.2.10"
|
||||
"@smithy/util-retry@npm:^4.2.13":
|
||||
version: 4.2.13
|
||||
resolution: "@smithy/util-retry@npm:4.2.13"
|
||||
dependencies:
|
||||
"@smithy/service-error-classification": "npm:^4.2.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/service-error-classification": "npm:^4.2.12"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/a47b04d3faeb195f5147bbf876e75d5cc2beabe1c55990b9b6c2ae6456243ab942fd9bedc5945f165c951c0d30d56f0e2c6042968047046c8773a30b35b9a9e5
|
||||
checksum: 10/8b3a467c77b09e662321dab459a9173a88969b90f8de60378bb6b20993767ff8c7069da9696eca16714a2a1a61639834c5968ff1992771c75dbcf5bdffa2c6de
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-stream@npm:^4.5.15":
|
||||
version: 4.5.15
|
||||
resolution: "@smithy/util-stream@npm:4.5.15"
|
||||
"@smithy/util-stream@npm:^4.5.21":
|
||||
version: 4.5.21
|
||||
resolution: "@smithy/util-stream@npm:4.5.21"
|
||||
dependencies:
|
||||
"@smithy/fetch-http-handler": "npm:^5.3.11"
|
||||
"@smithy/node-http-handler": "npm:^4.4.12"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/util-base64": "npm:^4.3.1"
|
||||
"@smithy/util-buffer-from": "npm:^4.2.1"
|
||||
"@smithy/util-hex-encoding": "npm:^4.2.1"
|
||||
"@smithy/util-utf8": "npm:^4.2.1"
|
||||
"@smithy/fetch-http-handler": "npm:^5.3.15"
|
||||
"@smithy/node-http-handler": "npm:^4.5.1"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
"@smithy/util-base64": "npm:^4.3.2"
|
||||
"@smithy/util-buffer-from": "npm:^4.2.2"
|
||||
"@smithy/util-hex-encoding": "npm:^4.2.2"
|
||||
"@smithy/util-utf8": "npm:^4.2.2"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/97b23cf181cfc39dd21f1d77ccc4723c3914408d3901e39e9f2c49b744886d6587efb54fca16b4ccab3b0fe525d1ff79cc3860edd84a2a8b715314a8ee6064ed
|
||||
checksum: 10/f1d188450923c75153737393cecbc6885fdc3ed992cdbc4912ee9c902df2519007de1f65231e3e00bfcbbae862d450db5c85b4ea532025b8125725f9b1e4cd00
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-uri-escape@npm:^4.2.1":
|
||||
version: 4.2.1
|
||||
resolution: "@smithy/util-uri-escape@npm:4.2.1"
|
||||
"@smithy/util-uri-escape@npm:^4.2.2":
|
||||
version: 4.2.2
|
||||
resolution: "@smithy/util-uri-escape@npm:4.2.2"
|
||||
dependencies:
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/16a75ad9686d1d972255f18fdf275b798ed9849917e02cac23213af28af5931149e0916c9742d1c45f78a232c2c89cd9a0dca653baa0db36becb1244e6b9c05c
|
||||
checksum: 10/2b649e431a92c89e4fb7cc817e7bfcbe547d07f725c401445ea81aaea37e4ede383e1e2b9c3f0dfb228dee597166e95805a2f3e57fa6ae1b5341abc48a397935
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -2232,33 +2229,32 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-utf8@npm:^4.2.1":
|
||||
version: 4.2.1
|
||||
resolution: "@smithy/util-utf8@npm:4.2.1"
|
||||
"@smithy/util-utf8@npm:^4.2.2":
|
||||
version: 4.2.2
|
||||
resolution: "@smithy/util-utf8@npm:4.2.2"
|
||||
dependencies:
|
||||
"@smithy/util-buffer-from": "npm:^4.2.1"
|
||||
"@smithy/util-buffer-from": "npm:^4.2.2"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/ff8ee4e26b6222d358cd3b9ef52bbdfb2500a2952f439aa0264a127c4235508681648600b6def3ce7d276c03b16fe79bb5a38430ec2e46e41185412790353ee7
|
||||
checksum: 10/4dd23ac07cab78279a9f4f250b43df69d3303458b741e38c447ba7e92f7c6b1651076479023687b9eb3996aa3269ee1a0d363a1c320d15e78247ca9ea74aca58
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-waiter@npm:^4.2.10":
|
||||
version: 4.2.10
|
||||
resolution: "@smithy/util-waiter@npm:4.2.10"
|
||||
"@smithy/util-waiter@npm:^4.2.14":
|
||||
version: 4.2.14
|
||||
resolution: "@smithy/util-waiter@npm:4.2.14"
|
||||
dependencies:
|
||||
"@smithy/abort-controller": "npm:^4.2.10"
|
||||
"@smithy/types": "npm:^4.13.0"
|
||||
"@smithy/types": "npm:^4.13.1"
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/0b310d9f9a523ba069a9251a80ecebf6e53bf7fb192bcc5defa9deb02ef33863a09621a9fb3d8be1ff149390562ef9ee5ee042fe5ccf8358464ba24d3d60c2b0
|
||||
checksum: 10/b2ce66060db441105ecd5c4bf9a80752aa41e9d2b1c673b8c32e0c55963a0301d21e178caeb0ee6cd24ba69629b87bbbf36a6b8d036864d365c659ccfe0cacad
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/uuid@npm:^1.1.1":
|
||||
version: 1.1.1
|
||||
resolution: "@smithy/uuid@npm:1.1.1"
|
||||
"@smithy/uuid@npm:^1.1.2":
|
||||
version: 1.1.2
|
||||
resolution: "@smithy/uuid@npm:1.1.2"
|
||||
dependencies:
|
||||
tslib: "npm:^2.6.2"
|
||||
checksum: 10/26acc5b818d219ec049c1877857afc783dd9c4cb62234b61d1c18b1465ec731ec0aea902bdf6f58f730a4bf72d9564559b1fb14c94ceaafe3d41f6923745a97c
|
||||
checksum: 10/35b77a2483a37755c2be1faf66036f5e0b7939a7c608b93982fce9d4f137f1778784f101a2874a6756d9fd25092c6a95dd07314df12dcb9a0a03244b4cc4d8c4
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -2647,6 +2643,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"agent-base@npm:9.0.0":
|
||||
version: 9.0.0
|
||||
resolution: "agent-base@npm:9.0.0"
|
||||
checksum: 10/3a61414cd10dbb17fa8dae35124ffaa55fbb00f495004b2e7a8f4eca3a2b6ed9879474d4e2ebc27ee2f4207265652341525b4154e85c4d479be4854acd786bfb
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"agent-base@npm:^7.0.2, agent-base@npm:^7.1.0":
|
||||
version: 7.1.0
|
||||
resolution: "agent-base@npm:7.1.0"
|
||||
@@ -2874,12 +2877,12 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"brace-expansion@npm:^1.1.7":
|
||||
version: 1.1.12
|
||||
resolution: "brace-expansion@npm:1.1.12"
|
||||
version: 1.1.13
|
||||
resolution: "brace-expansion@npm:1.1.13"
|
||||
dependencies:
|
||||
balanced-match: "npm:^1.0.0"
|
||||
concat-map: "npm:0.0.1"
|
||||
checksum: 10/12cb6d6310629e3048cadb003e1aca4d8c9bb5c67c3c321bafdd7e7a50155de081f78ea3e0ed92ecc75a9015e784f301efc8132383132f4f7904ad1ac529c562
|
||||
checksum: 10/b5f4329fdbe9d2e25fa250c8f866ebd054ba946179426e99b86dcccddabdb1d481f0e40ee5430032e62a7d0a6c2837605ace6783d015aa1d65d85ca72154d936
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -2892,6 +2895,15 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"brace-expansion@npm:^2.0.2":
|
||||
version: 2.0.3
|
||||
resolution: "brace-expansion@npm:2.0.3"
|
||||
dependencies:
|
||||
balanced-match: "npm:^1.0.0"
|
||||
checksum: 10/e9dd66caaf0784126e1654f1bc19adb28f3ef86f39f2226f833f7700ec727c141f6cd85eaa47bacf3426beda01c9fbc3a2f28174cf59330dc9b58ffaf9e09d96
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"brace-expansion@npm:^5.0.2":
|
||||
version: 5.0.4
|
||||
resolution: "brace-expansion@npm:5.0.4"
|
||||
@@ -3100,10 +3112,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"csv-parse@npm:^6.1.0":
|
||||
version: 6.1.0
|
||||
resolution: "csv-parse@npm:6.1.0"
|
||||
checksum: 10/607d92611435fdfb7631242644a2582bfb218fad8c6c6d6416db31647c2e63a3110f16c9837de6baaa3edf318212765cfc6e72d672d99690fd7f565d6c93d6f4
|
||||
"csv-parse@npm:^6.2.1":
|
||||
version: 6.2.1
|
||||
resolution: "csv-parse@npm:6.2.1"
|
||||
checksum: 10/7fbde1225c6df6aaea01a202934e1f15ce16ed55e544ead0d066b0c4dc9ae1a2fc881b412889cbf115cd74cbf14ea17388b394e8a31e05cb412dd7dc6114bebd
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -3143,9 +3155,9 @@ __metadata:
|
||||
resolution: "docker-login@workspace:."
|
||||
dependencies:
|
||||
"@actions/core": "npm:^3.0.0"
|
||||
"@aws-sdk/client-ecr": "npm:^3.1000.0"
|
||||
"@aws-sdk/client-ecr-public": "npm:^3.1000.0"
|
||||
"@docker/actions-toolkit": "npm:^0.77.0"
|
||||
"@aws-sdk/client-ecr": "npm:^3.1020.0"
|
||||
"@aws-sdk/client-ecr-public": "npm:^3.1020.0"
|
||||
"@docker/actions-toolkit": "npm:^0.86.0"
|
||||
"@eslint/js": "npm:^9.39.3"
|
||||
"@types/js-yaml": "npm:^4.0.9"
|
||||
"@types/node": "npm:^24.11.0"
|
||||
@@ -3158,8 +3170,8 @@ __metadata:
|
||||
eslint-config-prettier: "npm:^10.1.8"
|
||||
eslint-plugin-prettier: "npm:^5.5.5"
|
||||
globals: "npm:^17.3.0"
|
||||
http-proxy-agent: "npm:^7.0.2"
|
||||
https-proxy-agent: "npm:^7.0.6"
|
||||
http-proxy-agent: "npm:^9.0.0"
|
||||
https-proxy-agent: "npm:^9.0.0"
|
||||
js-yaml: "npm:^4.1.1"
|
||||
prettier: "npm:^3.8.1"
|
||||
typescript: "npm:^5.9.3"
|
||||
@@ -3575,25 +3587,25 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"fast-xml-parser@npm:5.3.6":
|
||||
version: 5.3.6
|
||||
resolution: "fast-xml-parser@npm:5.3.6"
|
||||
"fast-xml-builder@npm:^1.1.4":
|
||||
version: 1.1.4
|
||||
resolution: "fast-xml-builder@npm:1.1.4"
|
||||
dependencies:
|
||||
strnum: "npm:^2.1.2"
|
||||
bin:
|
||||
fxparser: src/cli/cli.js
|
||||
checksum: 10/03527ab0bdf49d960fdc8f6088cd0715c052e06b68b39459da87b1a1fbb3439a855b2d83cbf3c400e983b8e668b396296b072a4dd5c63403cf1e618c9326b6df
|
||||
path-expression-matcher: "npm:^1.1.3"
|
||||
checksum: 10/32937866aaf5a90e69d1f4ee6e15e875248d5b5d2afd70277e9e8323074de4980cef24575a591b8e43c29f405d5f12377b3bad3842dc412b0c5c17a3eaee4b6b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"fast-xml-parser@npm:^5.0.7":
|
||||
version: 5.3.4
|
||||
resolution: "fast-xml-parser@npm:5.3.4"
|
||||
"fast-xml-parser@npm:5.5.8, fast-xml-parser@npm:^5.0.7":
|
||||
version: 5.5.8
|
||||
resolution: "fast-xml-parser@npm:5.5.8"
|
||||
dependencies:
|
||||
strnum: "npm:^2.1.0"
|
||||
fast-xml-builder: "npm:^1.1.4"
|
||||
path-expression-matcher: "npm:^1.2.0"
|
||||
strnum: "npm:^2.2.0"
|
||||
bin:
|
||||
fxparser: src/cli/cli.js
|
||||
checksum: 10/0d7e6872fed7c3065641400d43cdf24c03177f05c343bfb31df53b79f0900b085c103f647852d0b00693125aa3f0e9d8b8cfc4273b168d4da0308f857dafe830
|
||||
checksum: 10/888f9a5d345e65e34b70d394798a1542603a216f06c140a9671d031b80b42c01ef2e68f2a0ceea45e7703fa80549f0e06da710f5a2faafdc910d1b6b354f0fa0
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -3639,9 +3651,9 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"flatted@npm:^3.2.9":
|
||||
version: 3.3.3
|
||||
resolution: "flatted@npm:3.3.3"
|
||||
checksum: 10/8c96c02fbeadcf4e8ffd0fa24983241e27698b0781295622591fc13585e2f226609d95e422bcf2ef044146ffacb6b68b1f20871454eddf75ab3caa6ee5f4a1fe
|
||||
version: 3.4.2
|
||||
resolution: "flatted@npm:3.4.2"
|
||||
checksum: 10/a9e78fe5c2c1fcd98209a015ccee3a6caa953e01729778e83c1fe92e68601a63e1e69cd4e573010ca99eaf585a581b80ccf1018b99283e6cbc2117bcba1e030f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -3701,33 +3713,19 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"glob@npm:^10.0.0":
|
||||
version: 10.3.15
|
||||
resolution: "glob@npm:10.3.15"
|
||||
"glob@npm:^10.0.0, glob@npm:^10.2.2, glob@npm:^10.3.10":
|
||||
version: 10.5.0
|
||||
resolution: "glob@npm:10.5.0"
|
||||
dependencies:
|
||||
foreground-child: "npm:^3.1.0"
|
||||
jackspeak: "npm:^2.3.6"
|
||||
minimatch: "npm:^9.0.1"
|
||||
minipass: "npm:^7.0.4"
|
||||
path-scurry: "npm:^1.11.0"
|
||||
jackspeak: "npm:^3.1.2"
|
||||
minimatch: "npm:^9.0.4"
|
||||
minipass: "npm:^7.1.2"
|
||||
package-json-from-dist: "npm:^1.0.0"
|
||||
path-scurry: "npm:^1.11.1"
|
||||
bin:
|
||||
glob: dist/esm/bin.mjs
|
||||
checksum: 10/b2b1c74309979b34fd6010afb50418a12525def32f1d3758d5827fc75d6143fc3ee5d1f3180a43111f6386c9e297c314f208d9d09955a6c6b69f22e92ee97635
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"glob@npm:^10.2.2, glob@npm:^10.3.10":
|
||||
version: 10.3.12
|
||||
resolution: "glob@npm:10.3.12"
|
||||
dependencies:
|
||||
foreground-child: "npm:^3.1.0"
|
||||
jackspeak: "npm:^2.3.6"
|
||||
minimatch: "npm:^9.0.1"
|
||||
minipass: "npm:^7.0.4"
|
||||
path-scurry: "npm:^1.10.2"
|
||||
bin:
|
||||
glob: dist/esm/bin.mjs
|
||||
checksum: 10/9e8186abc22dc824b5dd86cefd8e6b5621a72d1be7f68bacc0fd681e8c162ec5546660a6ec0553d6a74757a585e655956c7f8f1a6d24570e8d865c307323d178
|
||||
checksum: 10/ab3bccfefcc0afaedbd1f480cd0c4a2c0e322eb3f0aa7ceaa31b3f00b825069f17cf0f1fc8b6f256795074b903f37c0ade37ddda6a176aa57f1c2bbfe7240653
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -3780,8 +3778,8 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"handlebars@npm:^4.7.8":
|
||||
version: 4.7.8
|
||||
resolution: "handlebars@npm:4.7.8"
|
||||
version: 4.7.9
|
||||
resolution: "handlebars@npm:4.7.9"
|
||||
dependencies:
|
||||
minimist: "npm:^1.2.5"
|
||||
neo-async: "npm:^2.6.2"
|
||||
@@ -3793,7 +3791,7 @@ __metadata:
|
||||
optional: true
|
||||
bin:
|
||||
handlebars: bin/handlebars
|
||||
checksum: 10/bd528f4dd150adf67f3f857118ef0fa43ff79a153b1d943fa0a770f2599e38b25a7a0dbac1a3611a4ec86970fd2325a81310fb788b5c892308c9f8743bd02e11
|
||||
checksum: 10/e755433d652e8a15fc02f83d7478e652359e7a4d354c4328818853ed4f8a39d4a09e1d22dad3c7213c5240864a65b3c840970b8b181745575dd957dd258f2b8d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -3827,7 +3825,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"http-proxy-agent@npm:^7.0.0, http-proxy-agent@npm:^7.0.2":
|
||||
"http-proxy-agent@npm:^7.0.0":
|
||||
version: 7.0.2
|
||||
resolution: "http-proxy-agent@npm:7.0.2"
|
||||
dependencies:
|
||||
@@ -3837,7 +3835,17 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"https-proxy-agent@npm:^7.0.0, https-proxy-agent@npm:^7.0.6":
|
||||
"http-proxy-agent@npm:^9.0.0":
|
||||
version: 9.0.0
|
||||
resolution: "http-proxy-agent@npm:9.0.0"
|
||||
dependencies:
|
||||
agent-base: "npm:9.0.0"
|
||||
debug: "npm:^4.3.4"
|
||||
checksum: 10/8cf23a49ab274b2a5199011e5a96268d75dd6e4031cf72b723182c41b47d876c507c2fa125451743b87cd9f826cf60f5260dcc5e7db58f9dcc38823c9c07e625
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"https-proxy-agent@npm:^7.0.0":
|
||||
version: 7.0.6
|
||||
resolution: "https-proxy-agent@npm:7.0.6"
|
||||
dependencies:
|
||||
@@ -3857,6 +3865,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"https-proxy-agent@npm:^9.0.0":
|
||||
version: 9.0.0
|
||||
resolution: "https-proxy-agent@npm:9.0.0"
|
||||
dependencies:
|
||||
agent-base: "npm:9.0.0"
|
||||
debug: "npm:^4.3.4"
|
||||
checksum: 10/27457d671278c8c1074cc901fe305b70d1e340127433219124c4aefc44153a179a8921e4b16d67beb2868a3a39b6b7ec84d91d8f24f2ec1d39cf4ac385351a92
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"iconv-lite@npm:^0.6.2":
|
||||
version: 0.6.3
|
||||
resolution: "iconv-lite@npm:0.6.3"
|
||||
@@ -4046,16 +4064,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"jackspeak@npm:^2.3.6":
|
||||
version: 2.3.6
|
||||
resolution: "jackspeak@npm:2.3.6"
|
||||
"jackspeak@npm:^3.1.2":
|
||||
version: 3.4.3
|
||||
resolution: "jackspeak@npm:3.4.3"
|
||||
dependencies:
|
||||
"@isaacs/cliui": "npm:^8.0.2"
|
||||
"@pkgjs/parseargs": "npm:^0.11.0"
|
||||
dependenciesMeta:
|
||||
"@pkgjs/parseargs":
|
||||
optional: true
|
||||
checksum: 10/6e6490d676af8c94a7b5b29b8fd5629f21346911ebe2e32931c2a54210134408171c24cee1a109df2ec19894ad04a429402a8438cbf5cc2794585d35428ace76
|
||||
checksum: 10/96f8786eaab98e4bf5b2a5d6d9588ea46c4d06bbc4f2eb861fdd7b6b182b16f71d8a70e79820f335d52653b16d4843b29dd9cdcf38ae80406756db9199497cf3
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -4164,9 +4182,9 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"lodash@npm:^4.17.15":
|
||||
version: 4.17.23
|
||||
resolution: "lodash@npm:4.17.23"
|
||||
checksum: 10/82504c88250f58da7a5a4289f57a4f759c44946c005dd232821c7688b5fcfbf4a6268f6a6cdde4b792c91edd2f3b5398c1d2a0998274432cff76def48735e233
|
||||
version: 4.18.1
|
||||
resolution: "lodash@npm:4.18.1"
|
||||
checksum: 10/306fea53dfd39dad1f03d45ba654a2405aebd35797b673077f401edb7df2543623dc44b9effbb98f69b32152295fff725a4cec99c684098947430600c6af0c3f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -4251,7 +4269,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"make-fetch-happen@npm:^15.0.1, make-fetch-happen@npm:^15.0.3":
|
||||
"make-fetch-happen@npm:^15.0.1":
|
||||
version: 15.0.3
|
||||
resolution: "make-fetch-happen@npm:15.0.3"
|
||||
dependencies:
|
||||
@@ -4270,16 +4288,27 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"minimatch@npm:^10.1.1":
|
||||
version: 10.1.1
|
||||
resolution: "minimatch@npm:10.1.1"
|
||||
"make-fetch-happen@npm:^15.0.4":
|
||||
version: 15.0.5
|
||||
resolution: "make-fetch-happen@npm:15.0.5"
|
||||
dependencies:
|
||||
"@isaacs/brace-expansion": "npm:^5.0.0"
|
||||
checksum: 10/110f38921ea527022e90f7a5f43721838ac740d0a0c26881c03b57c261354fb9a0430e40b2c56dfcea2ef3c773768f27210d1106f1f2be19cde3eea93f26f45e
|
||||
"@gar/promise-retry": "npm:^1.0.0"
|
||||
"@npmcli/agent": "npm:^4.0.0"
|
||||
"@npmcli/redact": "npm:^4.0.0"
|
||||
cacache: "npm:^20.0.1"
|
||||
http-cache-semantics: "npm:^4.1.1"
|
||||
minipass: "npm:^7.0.2"
|
||||
minipass-fetch: "npm:^5.0.0"
|
||||
minipass-flush: "npm:^1.0.5"
|
||||
minipass-pipeline: "npm:^1.2.4"
|
||||
negotiator: "npm:^1.0.0"
|
||||
proc-log: "npm:^6.0.0"
|
||||
ssri: "npm:^13.0.0"
|
||||
checksum: 10/d2649effb06c00cb2b266057cb1c8c1e99cfc8d1378e7d9c26cc8f00be41bc63d59b77a5576ed28f8105acc57fb16220b64217f8d3a6a066a594c004aa163afa
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"minimatch@npm:^10.2.2":
|
||||
"minimatch@npm:^10.1.1, minimatch@npm:^10.2.2":
|
||||
version: 10.2.4
|
||||
resolution: "minimatch@npm:10.2.4"
|
||||
dependencies:
|
||||
@@ -4288,16 +4317,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"minimatch@npm:^3.0.4, minimatch@npm:^3.1.2":
|
||||
version: 3.1.2
|
||||
resolution: "minimatch@npm:3.1.2"
|
||||
dependencies:
|
||||
brace-expansion: "npm:^1.1.7"
|
||||
checksum: 10/e0b25b04cd4ec6732830344e5739b13f8690f8a012d73445a4a19fbc623f5dd481ef7a5827fde25954cd6026fede7574cc54dc4643c99d6c6b653d6203f94634
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"minimatch@npm:^3.1.3":
|
||||
"minimatch@npm:^3.0.4, minimatch@npm:^3.1.2, minimatch@npm:^3.1.3":
|
||||
version: 3.1.5
|
||||
resolution: "minimatch@npm:3.1.5"
|
||||
dependencies:
|
||||
@@ -4315,12 +4335,12 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"minimatch@npm:^9.0.1":
|
||||
version: 9.0.4
|
||||
resolution: "minimatch@npm:9.0.4"
|
||||
"minimatch@npm:^9.0.4":
|
||||
version: 9.0.9
|
||||
resolution: "minimatch@npm:9.0.9"
|
||||
dependencies:
|
||||
brace-expansion: "npm:^2.0.1"
|
||||
checksum: 10/4cdc18d112b164084513e890d6323370db14c22249d536ad1854539577a895e690a27513dc346392f61a4a50afbbd8abc88f3f25558bfbbbb862cd56508b20f5
|
||||
brace-expansion: "npm:^2.0.2"
|
||||
checksum: 10/b91fad937deaffb68a45a2cb731ff3cff1c3baf9b6469c879477ed16f15c8f4ce39d63a3f75c2455107c2fdff0f3ab597d97dc09e2e93b883aafcf926ef0c8f9
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -4413,7 +4433,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.0.4":
|
||||
"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3":
|
||||
version: 7.1.0
|
||||
resolution: "minipass@npm:7.1.0"
|
||||
checksum: 10/0cfc1bc95bfce2a0cf69fcb5e7b92f62ee7159f2787356e66b5804dba73546e1653bbc70bf9bb32acb031e6d0d4b6249628a014644a597a7e4a14b441a510ba5
|
||||
@@ -4619,6 +4639,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"package-json-from-dist@npm:^1.0.0":
|
||||
version: 1.0.1
|
||||
resolution: "package-json-from-dist@npm:1.0.1"
|
||||
checksum: 10/58ee9538f2f762988433da00e26acc788036914d57c71c246bf0be1b60cdbd77dd60b6a3e1a30465f0b248aeb80079e0b34cb6050b1dfa18c06953bb1cbc7602
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"pako@npm:~0.2.0":
|
||||
version: 0.2.9
|
||||
resolution: "pako@npm:0.2.9"
|
||||
@@ -4642,6 +4669,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"path-expression-matcher@npm:^1.1.3, path-expression-matcher@npm:^1.2.0":
|
||||
version: 1.2.0
|
||||
resolution: "path-expression-matcher@npm:1.2.0"
|
||||
checksum: 10/eab23babd9a97d6cf4841a99825c3e990b70b2b29ea6529df9fb6a1f3953befbc68e9e282a373d7a75aff5dc6542d05a09ee2df036ff9bfddf5e1627b769875b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"path-key@npm:^3.1.0":
|
||||
version: 3.1.1
|
||||
resolution: "path-key@npm:3.1.1"
|
||||
@@ -4649,17 +4683,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"path-scurry@npm:^1.10.2":
|
||||
version: 1.10.2
|
||||
resolution: "path-scurry@npm:1.10.2"
|
||||
dependencies:
|
||||
lru-cache: "npm:^10.2.0"
|
||||
minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0"
|
||||
checksum: 10/a2bbbe8dc284c49dd9be78ca25f3a8b89300e0acc24a77e6c74824d353ef50efbf163e64a69f4330b301afca42d0e2229be0560d6d616ac4e99d48b4062016b1
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"path-scurry@npm:^1.11.0":
|
||||
"path-scurry@npm:^1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "path-scurry@npm:1.11.1"
|
||||
dependencies:
|
||||
@@ -4705,9 +4729,9 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"picomatch@npm:^4.0.3":
|
||||
version: 4.0.3
|
||||
resolution: "picomatch@npm:4.0.3"
|
||||
checksum: 10/57b99055f40b16798f2802916d9c17e9744e620a0db136554af01d19598b96e45e2f00014c91d1b8b13874b80caa8c295b3d589a3f72373ec4aaf54baa5962d5
|
||||
version: 4.0.4
|
||||
resolution: "picomatch@npm:4.0.4"
|
||||
checksum: 10/f6ef80a3590827ce20378ae110ac78209cc4f74d39236370f1780f957b7ee41c12acde0e4651b90f39983506fd2f5e449994716f516db2e9752924aff8de93ce
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -5240,17 +5264,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"strnum@npm:^2.1.0":
|
||||
version: 2.1.1
|
||||
resolution: "strnum@npm:2.1.1"
|
||||
checksum: 10/d5fe6e4333cddc17569331048e403e876ffcf629989815f0359b0caf05dae9441b7eef3d7dd07427313ac8b3f05a8f60abc1f61efc15f97245dbc24028362bc9
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"strnum@npm:^2.1.2":
|
||||
version: 2.2.0
|
||||
resolution: "strnum@npm:2.2.0"
|
||||
checksum: 10/2969dbc8441f5af1b55db1d2fcea64a8f912de18515b57f85574e66bdb8f30ae76c419cf1390b343d72d687e2aea5aca82390f18b9e0de45d6bcc6d605eb9385
|
||||
"strnum@npm:^2.2.0":
|
||||
version: 2.2.2
|
||||
resolution: "strnum@npm:2.2.2"
|
||||
checksum: 10/c55813cfded750dc84556b4881ffc7cee91382ff15a48f1fba0ff7a678e1640ed96ca40806fbd55724940fd7d51cf752469b2d862e196e4adefb6c7d5d9cd73b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -5459,9 +5476,9 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"undici@npm:^6.23.0":
|
||||
version: 6.23.0
|
||||
resolution: "undici@npm:6.23.0"
|
||||
checksum: 10/56950995e7b628e62c996430445d17995ca9b70f6f2afe760a63da54205660d968bd08f0741b6f4fb008f40aa35c69cce979cd96ced399585d8c897a76a4f1d1
|
||||
version: 6.24.1
|
||||
resolution: "undici@npm:6.24.1"
|
||||
checksum: 10/4f84e6045520eef9ba8eabb96360b50c759f59905c1703b12187c2dbcc6d1584c5d7ecddeb45b0ed6cac84ca2d132b21bfd8a38f77fa30378b1ac5d2ae390fd9
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
||||
Reference in New Issue
Block a user